From f97832f3f2612ff28b6c4a0c389ab228574497d2 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 26 May 2023 14:36:29 +0200 Subject: [PATCH 01/80] #11382 fixed event cardboard in version open --- pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php | 1 + 1 file changed, 1 insertion(+) diff --git a/pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php b/pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php index 87e592c8af..89437723cc 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php +++ b/pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php @@ -135,6 +135,7 @@ class EventCardboard extends Widget include_once $config['homedir'].'/include/functions_agents.php'; include_once $config['homedir'].'/include/functions_modules.php'; + include_once $config['homedir'].'/include/functions_events.php'; // WARNING: Do not edit. This chunk must be in the constructor. parent::__construct( From fb8a54c42e4090080537bf46d193297937f4e834 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 29 May 2023 13:41:17 +0200 Subject: [PATCH 02/80] #11195 fixed widget groups when select all --- .../include/lib/Dashboard/Widgets/system_group_status.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php b/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php index 4b8924d668..02df4c2888 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php @@ -395,6 +395,12 @@ class SystemGroupStatusWidget extends Widget $user_groups = users_get_groups(false, 'AR', $return_all_group); $selected_groups = explode(',', $this->values['groupId'][0]); + if (in_array(0, $selected_groups) === true) { + $selected_groups = []; + foreach (groups_get_all() as $key => $name_group) { + $selected_groups[] = groups_get_id($name_group); + } + } // Recursion. if ($this->values['groupRecursion'] === true) { From 3ff8b115f709b4b4abf7d9d2edee8ba425b658fc Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Tue, 30 May 2023 13:46:43 +0200 Subject: [PATCH 03/80] #11354 The tips modal is hidden when the about modal is opened. --- pandora_console/include/javascript/pandora.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_console/include/javascript/pandora.js b/pandora_console/include/javascript/pandora.js index f5d444ae36..22815792e0 100644 --- a/pandora_console/include/javascript/pandora.js +++ b/pandora_console/include/javascript/pandora.js @@ -2298,6 +2298,8 @@ var formatterDataVerticalBar = function(value, ctx) { $(document).ready(function() { $("#icon_about").click(function() { $("#icon_about").addClass("selected"); + // Hidden tips modal. + $(".window").css("display", "none"); jQuery.post( "ajax.php", From 7d0eeab261de55281879bd43008db90ee427a8ce Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 1 Jun 2023 10:32:30 +0200 Subject: [PATCH 04/80] #11424 Check if group and secondary group match and remove. --- .../godmode/massive/massive_edit_agents.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pandora_console/godmode/massive/massive_edit_agents.php b/pandora_console/godmode/massive/massive_edit_agents.php index a5a31f6685..c7fadfc7f0 100755 --- a/pandora_console/godmode/massive/massive_edit_agents.php +++ b/pandora_console/godmode/massive/massive_edit_agents.php @@ -524,6 +524,17 @@ function edit_massive_agent( alerts_validate_alert_agent($id_agent); } } + + if (empty($values['id_grupo']) === false) { + // Check if group and secondary group match and remove. + $remove_sg = (bool) db_process_sql_delete( + 'tagent_secondary_group', + [ + 'id_agent' => (int) $id_agent, + 'id_group' => (int) $values['id_grupo'], + ] + ); + } } $info = []; From 9d5dc354b6dff74810b112d9b6ce18e618552e26 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 2 Jun 2023 13:11:41 +0200 Subject: [PATCH 05/80] #11444 fixed wizard in visual console meta --- .../godmode/reporting/visual_console_builder.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.php b/pandora_console/godmode/reporting/visual_console_builder.php index 670721111c..d39212e737 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.php +++ b/pandora_console/godmode/reporting/visual_console_builder.php @@ -635,15 +635,20 @@ switch ($activeTab) { } else { if (is_metaconsole() === true) { $agents_ids = []; + $servers_ids = []; foreach ($id_agents as $id_agent_id) { $server_and_agent = explode('|', $id_agent_id); $agents_ids[] = $server_and_agent[1]; + $servers_ids[] = $server_and_agent[0]; } $rows = db_get_all_rows_filter( 'tmetaconsole_agent', - ['id_tagente' => $agents_ids] + [ + 'id_tagente' => $agents_ids, + 'id_tmetaconsole_setup' => $servers_ids, + ] ); $agents = []; From 6f375f497ff152f362bcc814c229b5fde46195d9 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Fri, 2 Jun 2023 16:51:53 +0200 Subject: [PATCH 06/80] Force omnishell_client to use JSON::PP. The binary compiled with PAR::Packer for Pandora FMS doesn't work well with JSON:XS, probably because JSON::Backend::XS is defined in the __DATA__ section of JSON.pm and that doesn't work well with PAR::Filter. If this becomes a bottleneck, a workaround would be possible (e.g., redefining JSON::Backend::XS in omnishell_client.pl). --- pandora_agents/win32/omnishell/omnishell_client.pl | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pandora_agents/win32/omnishell/omnishell_client.pl b/pandora_agents/win32/omnishell/omnishell_client.pl index 9132c90d5b..fe7f5696da 100644 --- a/pandora_agents/win32/omnishell/omnishell_client.pl +++ b/pandora_agents/win32/omnishell/omnishell_client.pl @@ -12,6 +12,14 @@ use warnings; use File::Basename; BEGIN { push @INC, '/usr/lib/perl5'; } + +# NOTE: The binary compiled with PAR::Packer for Pandora FMS doesn't work well +# with JSON:XS, probably because JSON::Backend::XS is defined in the __DATA__ +# section of JSON.pm and that doesn't work well with PAR::Filter. If this +# becomes a bottleneck, a workaround would be possible (e.g., redefining +# JSON::Backend::XS here). +BEGIN { $ENV{PERL_JSON_BACKEND} = 'JSON::PP' }; + use PandoraFMS::PluginTools; use PandoraFMS::Omnishell; @@ -90,4 +98,4 @@ if ($@) { exit 0; } -exit 0; \ No newline at end of file +exit 0; From f33d21f06f084a8475e3caef98f351cbf5dba5d2 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Fri, 2 Jun 2023 17:07:54 +0200 Subject: [PATCH 07/80] Update omnishell_client.exe. --- pandora_agents/win32/bin/util/omnishell_client.exe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_agents/win32/bin/util/omnishell_client.exe b/pandora_agents/win32/bin/util/omnishell_client.exe index 3c3e4b04cb..e7903b3a77 100644 --- a/pandora_agents/win32/bin/util/omnishell_client.exe +++ b/pandora_agents/win32/bin/util/omnishell_client.exe @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a0d742e4e1944a599fe7609544719c82ab560590784f0a82733fdba8a7964a3 -size 7630848 +oid sha256:ad4d006cf2662a57f2e062b5adbfe8702d2147ec4c4d3dc9a1019938fe7d5b22 +size 16557020 From 1e0c62732a81f7ce6a33e95d76dd55d71af11691 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 5 Jun 2023 13:39:04 +0200 Subject: [PATCH 08/80] #11444 fixed bug in metacosole visual when added modules in differents node --- pandora_console/godmode/reporting/visual_console_builder.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.php b/pandora_console/godmode/reporting/visual_console_builder.php index d39212e737..a898ff017a 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.php +++ b/pandora_console/godmode/reporting/visual_console_builder.php @@ -693,7 +693,9 @@ switch ($activeTab) { foreach ($modules_serial as $data_serialized) { $data = explode('|', $data_serialized); - $id_modules[] = $data[0]; + if ($id_server == $data[2]) { + $id_modules[] = $data[0]; + } } } } else { From 7e829dd03ceb8631f46db481b4e0ea9fa5c94be3 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Tue, 25 Apr 2023 19:03:41 +0200 Subject: [PATCH 09/80] Make sure all results from WMI queries are consumed. If there are unconsumed results left from a WMI query an error is generated in the event log. --- pandora_agents/win32/windows/pandora_wmi.cc | 38 ++++++++++++--------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/pandora_agents/win32/windows/pandora_wmi.cc b/pandora_agents/win32/windows/pandora_wmi.cc index a7db16b017..a7b2c6302b 100644 --- a/pandora_agents/win32/windows/pandora_wmi.cc +++ b/pandora_agents/win32/windows/pandora_wmi.cc @@ -99,7 +99,7 @@ Pandora_Wmi::isServiceRunning (string service_name) { string query; char *state; string str_state; - int retval; + int retval = -1; query = "SELECT * FROM Win32_Service WHERE Name = \"" + service_name + "\""; @@ -112,23 +112,27 @@ Pandora_Wmi::isServiceRunning (string service_name) { FOR_EACH (quickfix, quickfixes, NULL) { dhGetValue (L"%s", &state, quickfix, L".State"); - str_state = state; - if (str_state == "Running") { - retval = 1; - } - else { - retval = 0; + if (retval == -1) { + str_state = state; + if (str_state == "Running") { + retval = 1; + } + else { + retval = 0; + } } dhFreeString (state); - - return retval; } NEXT_THROW (quickfix); } catch (string errstr) { pandoraLog ("isServiceRunning error. %s", errstr.c_str ()); } - pandoraDebug ("Service %s not found.", service_name.c_str ()); - return 0; + if (retval == -1) { + pandoraDebug ("Service %s not found.", service_name.c_str ()); + return 0; + } + + return retval; } /** @@ -1261,7 +1265,7 @@ Pandora_Wmi::getSystemAddress () { CDispPtr wmi_svc = NULL, nic_info = NULL; VARIANT ip_addresses; char *caption = NULL, *mac_address = NULL; - string ret = ""; + string str_addr, ret = ""; try { @@ -1274,12 +1278,12 @@ Pandora_Wmi::getSystemAddress () { dhGetValue (L"%v", &ip_addresses, nic_info_item, L".IPAddress"); - if (&ip_addresses != NULL) + if (&ip_addresses != NULL && ret == "") { - ret = getIPs(&ip_addresses); - if(ret != "0.0.0.0") { - break; - } + str_addr = getIPs(&ip_addresses); + if (str_addr != "0.0.0.0") { + ret = str_addr; + } } } NEXT_THROW (nic_info_item); } catch (string errstr) { From 635518eae9703ccdbf5abe8eaab90d67b864f1e4 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 5 Jun 2023 15:15:25 +0200 Subject: [PATCH 10/80] #11458 fixed visual console when setting background none --- .../include/rest-api/models/VisualConsole/Container.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/rest-api/models/VisualConsole/Container.php b/pandora_console/include/rest-api/models/VisualConsole/Container.php index 16f86884d9..edd5ea3c55 100644 --- a/pandora_console/include/rest-api/models/VisualConsole/Container.php +++ b/pandora_console/include/rest-api/models/VisualConsole/Container.php @@ -181,7 +181,7 @@ final class Container extends Model null ); - return ($backgroundImage === 'None.png') ? null : str_replace(' ', '%20', $backgroundImage); + return ($backgroundImage === 'None.png' || $backgroundImage === null) ? null : str_replace(' ', '%20', $backgroundImage); } From d72959fa7bfe61265ff6c44ca06fc924d2388b17 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 5 Jun 2023 15:16:28 +0200 Subject: [PATCH 11/80] Revert "#11458 fixed visual console when setting background none" This reverts commit 635518eae9703ccdbf5abe8eaab90d67b864f1e4. --- .../include/rest-api/models/VisualConsole/Container.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/rest-api/models/VisualConsole/Container.php b/pandora_console/include/rest-api/models/VisualConsole/Container.php index edd5ea3c55..16f86884d9 100644 --- a/pandora_console/include/rest-api/models/VisualConsole/Container.php +++ b/pandora_console/include/rest-api/models/VisualConsole/Container.php @@ -181,7 +181,7 @@ final class Container extends Model null ); - return ($backgroundImage === 'None.png' || $backgroundImage === null) ? null : str_replace(' ', '%20', $backgroundImage); + return ($backgroundImage === 'None.png') ? null : str_replace(' ', '%20', $backgroundImage); } From 151882859ab72a66289eb1a4df1c151268439a8c Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 5 Jun 2023 15:20:02 +0200 Subject: [PATCH 12/80] #11456 fixed visual console when setting background none --- .../include/rest-api/models/VisualConsole/Container.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/rest-api/models/VisualConsole/Container.php b/pandora_console/include/rest-api/models/VisualConsole/Container.php index 16f86884d9..edd5ea3c55 100644 --- a/pandora_console/include/rest-api/models/VisualConsole/Container.php +++ b/pandora_console/include/rest-api/models/VisualConsole/Container.php @@ -181,7 +181,7 @@ final class Container extends Model null ); - return ($backgroundImage === 'None.png') ? null : str_replace(' ', '%20', $backgroundImage); + return ($backgroundImage === 'None.png' || $backgroundImage === null) ? null : str_replace(' ', '%20', $backgroundImage); } From 73de090e60d340f87208f3b5edc63cec90f29b8b Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Mon, 5 Jun 2023 17:00:25 +0200 Subject: [PATCH 13/80] #11420 Fixed inventory --- pandora_console/operation/inventory/inventory.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pandora_console/operation/inventory/inventory.php b/pandora_console/operation/inventory/inventory.php index c41009d330..e530a89864 100755 --- a/pandora_console/operation/inventory/inventory.php +++ b/pandora_console/operation/inventory/inventory.php @@ -149,7 +149,11 @@ if (is_ajax() === true) { $tmp->alias .= $server['server_name'].' » '; } - $id = !empty($agent['id_agente']) ? $agent['id_agente'] : $agent['id_agent']; + if (is_metaconsole() === true) { + $id = !empty($agent['id_agente']) ? $agent['id_agente'] : $agent['id_tagente']; + } else { + $id = !empty($agent['id_agente']) ? $agent['id_agente'] : $agent['id_agent']; + } $tmp->alias .= $agent['alias']; $ip = ''.__('N/A').''; From 11a8bd688d3e0d8cdeb4fcb4a5f1d44122c6e645 Mon Sep 17 00:00:00 2001 From: artica Date: Tue, 6 Jun 2023 01:00:20 +0200 Subject: [PATCH 14/80] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index ffa848fc9d..e78897627b 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230605 +Version: 7.0NG.771-230606 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index de263ae568..b53d21b582 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.771-230605" +pandora_version="7.0NG.771-230606" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 86bddb4c8e..71899cd924 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230605'; +use constant AGENT_BUILD => '230606'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 7d99a72820..3f79168d10 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230605 +%define release 230606 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 0e02987128..10564720b8 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230605 +%define release 230606 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 44b7e405c9..5c92f3b928 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230605" +PI_BUILD="230606" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 1ca48a7bfe..fe704d2a25 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230605} +{230606} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 71f0ef5d7e..f5d6faf8cc 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.771 Build 230605") +#define PANDORA_VERSION ("7.0NG.771 Build 230606") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 52d52b18c0..3732d5976a 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.771(Build 230605))" + VALUE "ProductVersion", "(7.0NG.771(Build 230606))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index b6ab11de8a..a85d5a6ce4 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230605 +Version: 7.0NG.771-230606 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index 84374e378f..915e6bc340 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.771-230605" +pandora_version="7.0NG.771-230606" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index a4ee6993e6..e8dc60e6a7 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230605'; +$build_version = 'PC230606'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 318bc7d98d..84dd9b37fc 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 6be4c4a961..c354747685 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230605 +%define release 230606 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index f744bf305d..b443a481d0 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230605 +%define release 230606 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 749340a982..b8063be345 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230605" +PI_BUILD="230606" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 34c2ed8bf5..13812fbe5b 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.771 Build 230605"; +my $version = "7.0NG.771 Build 230606"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 1fdd4300a8..a4f7f6c547 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.771 Build 230605"; +my $version = "7.0NG.771 Build 230606"; # save program name for logging my $progname = basename($0); From 9269ef85d3b3b7fd5f6fcde1965ad28e11d7f7ae Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 6 Jun 2023 12:18:35 +0200 Subject: [PATCH 15/80] #11473 fixed redirect installer when config.php not exist --- pandora_console/index.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pandora_console/index.php b/pandora_console/index.php index aaf960eb91..a1304963c1 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -32,16 +32,6 @@ if (defined('__PAN_XHPROF__') === false) { define('__PAN_XHPROF__', 0); } -require 'vendor/autoload.php'; - -if (__PAN_XHPROF__ === 1) { - if (function_exists('tideways_xhprof_enable') === true) { - tideways_xhprof_enable(); - } else { - error_log('Cannot find tideways_xhprof_enable function'); - } -} - // Needed for InfoBox count. if (isset($_SESSION['info_box_count']) === true) { $_SESSION['info_box_count'] = 0; @@ -142,6 +132,16 @@ if ((file_exists('include/config.php') === false) exit; } +require 'vendor/autoload.php'; + +if (__PAN_XHPROF__ === 1) { + if (function_exists('tideways_xhprof_enable') === true) { + tideways_xhprof_enable(); + } else { + error_log('Cannot find tideways_xhprof_enable function'); + } +} + /* * DO NOT CHANGE ORDER OF FOLLOWING REQUIRES. */ From b6f586a6f4ed3ecc448077046ace7835841f6e19 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 6 Jun 2023 13:10:05 +0200 Subject: [PATCH 16/80] #11479 fixed color module tabs in open version --- .../include/lib/Dashboard/Widgets/ColorModuleTabs.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_console/include/lib/Dashboard/Widgets/ColorModuleTabs.php b/pandora_console/include/lib/Dashboard/Widgets/ColorModuleTabs.php index 21778baa42..75dec91342 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/ColorModuleTabs.php +++ b/pandora_console/include/lib/Dashboard/Widgets/ColorModuleTabs.php @@ -354,6 +354,8 @@ class ColorModuleTabs extends Widget { global $config; + include_once $config['homedir'].'/include/functions_graph.php'; + $size = parent::getSize(); $output = ''; From 219424bef6fbea386114ae750f4f3c450f3837b6 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 6 Jun 2023 13:40:57 +0200 Subject: [PATCH 17/80] #11478 added min height in popup modal widget --- pandora_console/include/styles/dashboards.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/styles/dashboards.css b/pandora_console/include/styles/dashboards.css index 08f43f9d38..908f673997 100644 --- a/pandora_console/include/styles/dashboards.css +++ b/pandora_console/include/styles/dashboards.css @@ -142,7 +142,9 @@ h1 { img { cursor: pointer; } - +#modal-add-widget { + min-height: 566px !important; +} #modal-add-widget .container-list-widgets { display: flex; flex-direction: row; From 7fa2f7772945328aef8929ea15237ac1bd5b214b Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 6 Jun 2023 15:06:15 +0200 Subject: [PATCH 18/80] #11482 fixed list modules in module histogram, only meta --- .../include/lib/Dashboard/Widgets/graph_module_histogram.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/lib/Dashboard/Widgets/graph_module_histogram.php b/pandora_console/include/lib/Dashboard/Widgets/graph_module_histogram.php index 128877d66e..a2bf912eaa 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/graph_module_histogram.php +++ b/pandora_console/include/lib/Dashboard/Widgets/graph_module_histogram.php @@ -351,7 +351,7 @@ class GraphModuleHistogramWidget extends Widget 'agent_id' => $values['agentId'], 'metaconsole_id' => $values['metaconsoleId'], 'style' => 'width: inherit;', - 'filter_modules' => (users_access_to_agent($values['agentId']) === false) ? [$values['moduleId']] : [], + 'filter_modules' => (users_access_to_agent($values['agentId'], 'AR', false, is_metaconsole()) === false) ? [$values['moduleId']] : [], 'nothing' => __('None'), 'nothing_value' => 0, ], From 75f227ec9f33868b01b4152748e863ba09767065 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 6 Jun 2023 17:12:13 +0200 Subject: [PATCH 19/80] #11481 fixed widgets dashboard styles --- .../include/lib/Dashboard/Widgets/module_icon.php | 8 +++++--- .../include/lib/Dashboard/Widgets/module_status.php | 6 ++++-- .../include/lib/Dashboard/Widgets/module_value.php | 6 ++++-- .../include/lib/Dashboard/Widgets/sla_percent.php | 4 +++- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_icon.php b/pandora_console/include/lib/Dashboard/Widgets/module_icon.php index 6790d70616..a58b046124 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_icon.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_icon.php @@ -384,7 +384,7 @@ class ModuleIconWidget extends Widget 'agent_id' => $values['agentId'], 'metaconsole_id' => $values['metaconsoleId'], 'style' => 'width: inherit;', - 'filter_modules' => users_access_to_agent($values['agentId']) === false ? [$values['moduleId']] : [], + 'filter_modules' => (users_access_to_agent($values['agentId'], 'AR', false, is_metaconsole()) === false) ? [$values['moduleId']] : [], 'nothing' => __('None'), 'nothing_value' => 0, ], @@ -563,10 +563,12 @@ class ModuleIconWidget extends Widget $output .= '
'; $orientation = ''; + $margin_bottom = ''; if ((int) $this->values['horizontal'] === 1) { $orientation = 'flex aligni_center'; } else { $orientation = 'grid'; + $margin_bottom = 'mrgn_btn_15px'; } // General div. @@ -596,7 +598,7 @@ class ModuleIconWidget extends Widget // Div image. $style_icon = 'flex: 0 1 '.$sizeIcon.'px;'; - $output .= '
'; + $output .= '
'; $output .= html_print_image( 'images/console/icons/'.$icon.$color_icon.'.png', true, @@ -604,7 +606,7 @@ class ModuleIconWidget extends Widget ); $output .= '
'; // Div value. - $output .= '
'; + $output .= '
'; $output .= remove_right_zeros( number_format($data_module, $config['graph_precision'], $config['decimal_separator'], $config['thousand_separator']) ).$unit; diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_status.php b/pandora_console/include/lib/Dashboard/Widgets/module_status.php index a9e72fd528..c4980f253f 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_status.php @@ -375,7 +375,7 @@ class ModuleStatusWidget extends Widget 'agent_id' => $values['agentId'], 'metaconsole_id' => $values['metaconsoleId'], 'style' => 'width: inherit;', - 'filter_modules' => (users_access_to_agent($values['agentId']) === false) ? [$values['moduleId']] : [], + 'filter_modules' => (users_access_to_agent($values['agentId'], 'AR', false, is_metaconsole()) === false) ? [$values['moduleId']] : [], 'nothing' => __('None'), 'nothing_value' => 0, ], @@ -560,17 +560,19 @@ class ModuleStatusWidget extends Widget $output .= '
'; $orientation = ''; + $margin_bottom = ''; if ((int) $this->values['horizontal'] === 1) { $orientation = 'flex aligni_center'; } else { $orientation = 'grid'; + $margin_bottom = 'mrgn_btn_15px'; } // General div. $output .= '
'; // Div image. - $output .= '
'; + $output .= '
'; $output .= html_print_image( 'images/console/icons/'.$icon, true, diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_value.php b/pandora_console/include/lib/Dashboard/Widgets/module_value.php index 83521f6b25..cf2f0e0e4a 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_value.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_value.php @@ -359,7 +359,7 @@ class ModuleValueWidget extends Widget 'agent_id' => $values['agentId'], 'metaconsole_id' => $values['metaconsoleId'], 'style' => 'width: inherit;', - 'filter_modules' => (users_access_to_agent($values['agentId']) === false) ? [$values['moduleId']] : [], + 'filter_modules' => (users_access_to_agent($values['agentId'], 'AR', false, is_metaconsole()) === false) ? [$values['moduleId']] : [], 'nothing' => __('None'), 'nothing_value' => 0, ], @@ -471,17 +471,19 @@ class ModuleValueWidget extends Widget $output .= '
'; $orientation = ''; + $margin_bottom = ''; if ((int) $this->values['horizontal'] === 1) { $orientation = 'flex aligni_center'; } else { $orientation = 'grid'; + $margin_bottom = 'mrgn_btn_20px'; } // General div. $output .= '
'; // Div value. - $output .= '
'; + $output .= '
'; if (is_numeric($data_module) === true) { $dataDatos = remove_right_zeros( diff --git a/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php b/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php index 2e7483d58e..e6b334b779 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php +++ b/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php @@ -516,16 +516,18 @@ class SLAPercentWidget extends Widget $output .= '
'; $orientation = ''; + $margin_bottom = ''; if ((int) $this->values['horizontal'] === 1) { $orientation = 'flex aligni_center'; } else { $orientation = 'grid'; + $margin_bottom = 'mrgn_btn_20px'; } // General div. $output .= '
'; // Div value. - $output .= '
'; + $output .= '
'; $output .= $sla_array['sla_fixed'].'%'; $output .= '
'; From 9519ab00568a0ac8b8bc4d43b98465051a41e207 Mon Sep 17 00:00:00 2001 From: slerena Date: Tue, 6 Jun 2023 17:50:36 +0000 Subject: [PATCH 20/80] Update pandora_agent.conf --- pandora_agents/unix/Linux/pandora_agent.conf | 61 ++++++++++++-------- 1 file changed, 37 insertions(+), 24 deletions(-) diff --git a/pandora_agents/unix/Linux/pandora_agent.conf b/pandora_agents/unix/Linux/pandora_agent.conf index e4a37617fc..d819206cae 100644 --- a/pandora_agents/unix/Linux/pandora_agent.conf +++ b/pandora_agents/unix/Linux/pandora_agent.conf @@ -1,31 +1,31 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.771, GNU/Linux +# Version 7.0.772 LTS Linux # Licensed under GPL license v2, -# Copyright (c) 2003-2021 Artica Soluciones Tecnologicas -# http://www.pandorafms.com +# Copyright (c) 2004-2023 Pandora FMS +# https://pandorafms.com # General Parameters # ================== -server_ip localhost -server_path /var/spool/pandora/data_in +server_ip localhost +server_path /var/spool/pandora/data_in temporal /tmp logfile /var/log/pandora/pandora_agent.log #include /etc/pandora/pandora_agent_alt.conf #broker_agent name_agent -# Interval in seconds, 300 by default -interval 300 +# Interval in seconds, 300 by default (5 minutes) +interval 300 # Debug mode renames XML in the temp folder and continues running -debug 0 +debug 0 # Optional. UDP Server to receive orders from outside # By default is disabled, set 1 to enable # Set port (41122 by default) # Set address to restrict who can order a agent restart (0.0.0.0 = anybody) -# + udp_server 0 udp_server_port 41122 udp_server_auth_address 0.0.0.0 @@ -33,12 +33,13 @@ udp_server_auth_address 0.0.0.0 #process_xeyes_start xeyes #process_xeyes_stop killall xeyes -# By default, agent takes machine name -#agent_name adama +# By default, agent takes hostname +#agent_name adama # To define agent name by specific command, define 'agent_name_cmd'. # (In the following example, agent name is 'hostname_IP') -# If set to __rand__ the agent will generate a random name. +# If set to __rand__ the agent will generate a random name, used by default to generate a unique name + #agent_name_cmd LANG=C; /bin/echo -n `hostname`; /bin/echo -n "_"; /bin/echo `/sbin/ifconfig eth0 | /bin/grep 'inet addr' | /usr/bin/awk '{print $2;}' | /usr/bin/cut -d: -f2` agent_name_cmd __rand__ @@ -52,7 +53,7 @@ agent_name_cmd __rand__ #agent_alias_cmd # Agent description -#description This is a demo agent for Linux +#description This is an agent running Linux # Group assigned for this agent (descriptive, p.e: Servers) group Servers @@ -78,20 +79,19 @@ address auto # Those parameters define the geographical position of the agent # gis_exec: Call a script that returns a string with a fixed -# format of latitude,longitude,altitude +# format of latitude, longitude, altitude. Used for custom integration with GIS # i.e.: 41.377,-5.105,2.365 -#gis_exec /tmp/gis.sh +#gis_exec /mypath/my_gis_script.sh # This sets the GIS coordinates as fixed values: -# latitude + #latitude 0 -# longitude #longitude 0 -# altitude #altitude 0 #GPS Position description + #position_description Madrid, centro # By default agent try to take default encoding defined in host. @@ -133,7 +133,8 @@ transfer_mode tentacle # is much more safe #cron_mode -# If set to 1 allows the agent to be configured via the web console (Only Enterprise version) +# If set to 1 allows the agent to be configured via the web console (Only use this in Enterprise version) +# when is set to 1, local .conf file changes are overwritten. Set to 0 if you want to edit the .conf file remote_config 0 # Default 0, set to 1 to avoid module executions and report to server @@ -157,7 +158,7 @@ remote_config 0 # Number of threads to execute modules in parallel #agent_threads 1 -# User the agent will run as +# User the agent will run as. By default uses root, but could be configured to run as other user #pandora_user pandora # Enable or disable XML buffer. @@ -177,9 +178,9 @@ temporal_max_files 1024 # Agent mode: Learn (default), No-learn, Autodisable # agent_mode autodisable -# eHorus agent configuration file path: +# Pandora RC (former eHorus) agent configuration file path. # The agent will create a custom field named eHorusID that contains -# the eHorus agent's identifying key +# the PandoraRC agent's identifying key ehorus_conf /etc/ehorus/ehorus_agent.conf # Secondary groups. You can select several groups separated by comma. @@ -272,10 +273,22 @@ module_plugin autodiscover --default # Plugin for inventory on the agent. #module_plugin inventory 1 cpu ram video nic hd cdrom software init_services filesystem users route -# Log collection modules. Only for enterprise version, this will collect log files for forensic analysis. -# This is for LOG monitoring, only on enterprise version +# Log collection modules. This will collect log files for forensic analysis and store everything +# This is for LOG monitoring. Different than log monitoring. #module_plugin grep_log_module /var/log/messages Syslog \.\* +# Another samples of monitoring modules + +# Command snapshot + +#module_begin +#module_name process_table +#module_type generic_data_string +#module_exec ps aux +#module_description Command snapshot of running processes +#module_group System +#module_end + #module_begin #module_name HTTPD_Status #module_type generic_proc From 8cb5e8769c0a28f75c76d234d39c73eacca95985 Mon Sep 17 00:00:00 2001 From: artica Date: Wed, 7 Jun 2023 01:00:27 +0200 Subject: [PATCH 21/80] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/Linux/pandora_agent.conf | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index e78897627b..49281be530 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230606 +Version: 7.0NG.771-230607 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index b53d21b582..1248cd98a8 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.771-230606" +pandora_version="7.0NG.771-230607" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/Linux/pandora_agent.conf b/pandora_agents/unix/Linux/pandora_agent.conf index d819206cae..efb7e45b6f 100644 --- a/pandora_agents/unix/Linux/pandora_agent.conf +++ b/pandora_agents/unix/Linux/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0.772 LTS Linux +# Version 7.0NG.771 # Licensed under GPL license v2, # Copyright (c) 2004-2023 Pandora FMS # https://pandorafms.com diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 71899cd924..cba3683d63 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230606'; +use constant AGENT_BUILD => '230607'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 3f79168d10..87eed5cdd5 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230606 +%define release 230607 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 10564720b8..6a7ac453f9 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230606 +%define release 230607 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 5c92f3b928..23038a0443 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230606" +PI_BUILD="230607" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index fe704d2a25..55feddb1ec 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230606} +{230607} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index f5d6faf8cc..6d6b83b581 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.771 Build 230606") +#define PANDORA_VERSION ("7.0NG.771 Build 230607") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 3732d5976a..dead47eaeb 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.771(Build 230606))" + VALUE "ProductVersion", "(7.0NG.771(Build 230607))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index a85d5a6ce4..840ef27ca7 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230606 +Version: 7.0NG.771-230607 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index 915e6bc340..f79ad89a02 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.771-230606" +pandora_version="7.0NG.771-230607" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index e8dc60e6a7..8721542bc1 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230606'; +$build_version = 'PC230607'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 84dd9b37fc..6e34c7d23a 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index c354747685..a1259cef25 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230606 +%define release 230607 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index b443a481d0..9b50a92602 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230606 +%define release 230607 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index b8063be345..f274d964f1 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230606" +PI_BUILD="230607" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 13812fbe5b..ccb6c1b0d8 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.771 Build 230606"; +my $version = "7.0NG.771 Build 230607"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index a4f7f6c547..e219d0ebc6 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.771 Build 230606"; +my $version = "7.0NG.771 Build 230607"; # save program name for logging my $progname = basename($0); From 674c49fc915d1f732618fd3c65c9961bf9f15bee Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 7 Jun 2023 08:12:14 +0200 Subject: [PATCH 22/80] mr and translates pandora_enterprise#11457 --- pandora_console/extras/mr/63.sql | 2 + pandora_console/include/languages/es.mo | Bin 812700 -> 822359 bytes pandora_console/include/languages/es.po | 12617 ++++++++--------- pandora_console/include/languages/fr.mo | Bin 836584 -> 846438 bytes pandora_console/include/languages/fr.po | 12603 ++++++++--------- pandora_console/include/languages/index.pot | 12618 +++++++++--------- pandora_console/pandoradb_data.sql | 6 +- 7 files changed, 19782 insertions(+), 18064 deletions(-) diff --git a/pandora_console/extras/mr/63.sql b/pandora_console/extras/mr/63.sql index 9aca7c604c..8d0b323acb 100644 --- a/pandora_console/extras/mr/63.sql +++ b/pandora_console/extras/mr/63.sql @@ -40,4 +40,6 @@ CREATE TABLE IF NOT EXISTS `tsesion_filter_log_viewer` ( ALTER TABLE `talert_template_module_actions` ADD COLUMN `recovered` TINYINT NOT NULL DEFAULT 0; +UPDATE tconfig SET value = 'Renaissance' WHERE token LIKE 'lts_name'; + COMMIT; diff --git a/pandora_console/include/languages/es.mo b/pandora_console/include/languages/es.mo index c224f28c31fe4fc77453a87e777031922c6deb5e..d620479ee3797b916f4af98a279755aa15e06b01 100644 GIT binary patch delta 210738 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℞8|>mE$W2~O+(kl zBJ}xJ@FoNgu7z>DKtZAjYEA&wA>PXZy?(KIP|1^7?Vc)bbR1VbT#il z=c-PVF!E05NCwC918B$d(UGo0JNgXG#3^)5WN#YoS3;+(6&gTqwEf$gvj3ZLF_j8W ztgYyX&!P=vGz$&1M0Y_yycs8>Q*#9C;(4rx)tiU89)^~eqpAJ|Z7;n=$YfbG(6%j- z>8ZbuA4G*CS`crn$LlG7fwiz~%kV;9bT02kGcp&=z-w3yKgM!+9{q-txHhbnO6Y;r z7Jcpxbij*~TsY!SqW{JRDz*xr+rDUnb1?(oK^NmeybOOs_x*Wvj*F{s` z1pS(Ji}sK8$)Q~Mm75ry79V&NovQ`WmFVw*O=yFkpblf z=;GUqsYQzp^gL##|3s1Yp~JG#8fZt2(T2OA4G%!)bVMwVLHF?kXv2@A9lwOWzaD*m zXDlB;7wajkh*>+tKmXU{!V$Jc8|;QQG#K62ccCxNL3hc^=x28azJ)oj3%lb(baxy< z-%oT5zmRfbe~Nk0k>7<*$rByf|6VMn!Z~>XP3ammpzY|$KS%%c`#t*n33Pj%LFfD* zGy~Uk3crjhpo^^^dQ?Av?xJVVZMzN2HKb66Z@(GKdNBWRA!T^BT<(dake zJ~YsoXn;%509T>Ut&R1Y(RMyX-#Zxn8O`+HNiK~1@-AW3mO#t(&=)$RbJ!o9(-F}m zx(gmhGw}i%(Cg^x{{S7>0W?E@p(kF>t|6d`=zGZqT-fln=p6S#=V%m~!pG4OyoCm` z9i8K^&^2%_);H)D>f57>bSOHdcf|6&Xoem@M?M2-FPT`#g(H1AKCm85;byd5Y6d_(BC2s(8Q(EHcL`XM*4|2+_OH4PC<9YtLOkeLEAZk9yD3|g!igr70P|l0nJEq zVM>;ui)}sH(5L9Z^9#Biuk0Ish*U=#z6A~FVf6m$SpFP+?{Bo7LjA&@oa&<~zZcEG zQuMjx+gw!R;viPVEBc2cv=N$_k=PI)L8sya^qX)P?Kp8`2&5DmSbMCEcc7VjHu?@a z;xEv(^fR)ZlZlJrB2nO`Fa@=+4iB_KGco~v;W2as%h9>~7;W$X8t8B6TFN;f1Xc?z z_d=hWfCfGX&A@Az&ENk!xM)Dd7tt$k4%@LUy2`tvyW*zk9kKp?e3bhC;bbf{F#KM4 z2Hno@qWgS1I>o!AKcN9+9>jC>pD5x5mO-~;)mW~LW}pcg!1ZWAgV6naC%V5U#``nS z6LLZHjp#1)JopLSu79B0^#Z2;{x8SikbxrDksH0RD?W>Md=9H)`YmB@>tH(N;poUl zVP~9y&iOucgs0KeXCD$4V+I;vQ*4QShOqx#h0jpoBHM(`@jN=RhPQ?kw#6lsyP@0k zEY`)$L&I|o&=Ix4;n))mWHTDb{&@d4%%GfUSjc$EVabs4N>sQwYM>o-MMpLeP4xtH zJ3SchKZ~YvEjlIdpr7B5qu)l)qJd?(Elgz|bWK!12Ush~g$*>vs@NG#*?nk(^UxPw z#Adh#os!?M7G@qEc0*nCy>_uY03FC^blXnB3|x$6{JmIC9*z~6Zx4Z#MkA|8f&E#bxLO@p|7#&xMT>}hmuEXUOTf13*<-HL9% z&(RF*M_>2>?f4`*RsW#@U2#V^>+_XX7Ell^^?$m7F(a>ViOmR zXonTJ7Y*oe^h~V3ga(#lRCulc+Cgcwor-8iUPkA9HQMe@wB4`Jz>Y*uV$zQO_;9}v zmZe+*4ZIzCzbD$>kYubF9V;fs@}p>ji_n8;O)T$>zC0eW4b*D;mf0b!ZBEpa)Vvbi{*W`8ITf zqtTA;M>}{dmKUKNzZ%_&_O~C4xNm>t!WXkl3NPkEw^wO2pl0Y?x5E-R2yI{*dcw^^ zNBlb4@iufyKSu*Q81Mgt#VKEi^+oPu{~K8aE?h)S(bd`$?Qjx0m-ErZ^fH?2SJ8}Y zMlt}D{?ANBdn!zAM@*#}9eF=AGq<1(-;D+~ z84dVpG{80JK(?bDABgp5qgmMI))z#ds}{?xl3dtOUo^7OSPQK;g>Rq%yo;uC7diz8 z&_#MN-Y@b%n6fJ9c5R0aWFR)jVb}p*LO(v|(EhGSP7ZTf2pwU?Sgspw6YYhr?px86 zkB;RBVtFPyH49_?Ds+*)74N@`4(O9u{t9g``2!cG2h0zErMH`?Uw~hCE z#qzDuyQ9;hbEC_nuSYjWKSKgeCcX<7i8Im6Q$q^#psTzJy2_iN0rf?9$1rqCrlP;| zXQLxpi)P}zSl$yoh(31$D`1Xkmf3%GxF}CWAN2b@C3Pc_Sc)Dz+t82DA+&=m4~C9& zp&2QPF3QSi2HT(k_D3^2KHmRdy#GAf&PGiA_kTX*!o~6>j>*L0LPyYLde~M2(M32G z9r1%$A0J28%ucl9eb^3v#j03$Mws&-6`PRZTq{-26&+xh50vjolPduY4gqTBT(`h4OM_P-tEek44Qfp%OC zt#20VJE9rrhi;z{Xv5Rc6fZ}&@mpx1yU^#qM%(!rZTGKO&N?$pQJ$IXU+1b?tmuHI zatPYcL~M@_p(EXm9#r3L)Xj; z0Tn@?tA?pR|JUcj2il_@bVm=Q-ss{SfOa?%eQpeTB;SXQbRnA3udpiqjs9LJ_e59& zmC)^34-Kp{`q}UI1pD6(Z=%AE2BRH}j!r})eK6jig)X9J&$v!&?BR-wCL zHP*q;&_$YML0Bu5(E&F?2bjE$3nT82rfMuYm-of`CFls=!lt+d8)BxX!oTy;82eCO zic9bxY=a9IhCllq#%n3x{B(L^BCfzynDI>N{bb@(E~-#bV^L^m05+z)0o~7kqN#jv zarn1emf~>AM{px{T9Tf4882U&p8D?uzlm)rS6ddIACJQ*Z@^En(eq&&x;S^D0qsT`K7e+70)74x`nk@tIxNzf_$}o+tJ(j)ko&c;9g5>!l&j$N zxD>C$-?0^`Z1#Fs_0!hG0MQPfK}Ys_tp5;eQT`k&;AL;be?I`rQyzx4KgZwqrMWmp zMOVzeHa#&C`{Eh=2xsDkH`7!970lM_!ryehiGB^!-wK(@hi0lc`t_`U2Gkh+m|c%P ze=BC-J+c0&Bp1H$3c8;+qpAB8J==dkKThY+BloKHA;p!@`}NS&w?R+1Zs@@@JUSVD zZUMUQU%(7}E0&Y{xiHcn(HH-VH}Y->BPxSVQMG6zbUU_1*T5ij4cvwXeh1p&L+E=? zU|n2>>v2Dx#5r%LrXrcR|DEs;kzYU?7_c#{h4E+u52C4^gPvGVqa$7w>)%4(dmkOh z*XSS3PNNyQ>fJD~a_CxViniN5Rc8MU;KI2Xi>BxybQ{gbR=60O;884rB{qc)uSMVM z7afVkDJRhkEkOf+8x4FLx{LOr?|p}<|NZY7E`0D3x(2ep7glLLEJwLnbSPG({1{fk zO=!bEqa*(}diCbePB}E-+UUr8p_#fJ&CFCx{qO&t;lf?;5|+hX(Lb;P2@c@)~wRJ7e^(F|>l?m;tkB;NmfYcf2LcU$PNEV_E@ql>I9 zR>bSkRNjX!o+ap9u0+?&T6C(mp{YKJcVeaw!ms4J(C5BE1O6F3pw1<^@JD0$?V+MG zcAz{3U4);a0qsR2KZbVj4>~nDKMa92zzoX$&^0s(J?S1sGr0zx`)z1D2eC0Ge~T5> zJ_`R#rZw8Z40K8sp($L68MqN`@Y`5_8a+xAABXq4qnR3po+po>Q?)FX-$dL01PLUW zILw8S{S|NI+z}oqjdt7sZJ-0Xm~KL+nC8=V~Q zKOCKfwYWbQUA!M+ZQP3nborNIH|0T(=u%&@|4n^UDzrVisCu9c+=9M%7dqFI(2>tY z7uyo_xmD-@-bT0U=ICeWTKEnP{51Nr{x9_W_&3RgsZHM-8Y+S=wu;flXv3Yc3-&-i zw=2+&UW%?q1N#sS?2A}Fgl6<)tWSIu-n$YVaIy#&zF00+)QaV%=*T*ttG+inlCkKE z5278-Mgv)dW@;5WvUTWl??rcD>L5ekI~MAbiL>#63+SrPx-V>_vSMmwXK>4OG# zd#t|~{YFef16+iT_*FEJE$9GuqHAp*8tBhh(BJ>(xUi$E_J;=xq7jyf)yUx!=o#G!4d@YcL{FlD zEJgSIN_50)qTA7L$~S0xiErWn(dP@I8Ogw;`>`??Hqa8?7QN6HN23oWu{_R17vEZ} zh#Sy9`yE5ig{B9>`~A^Wk4L`+kDwi|LNoFPI-sow*#C}bHx+jDHTvQYxE%k+@%Z$? z@IvlyL#i{P<A4;d_gW~?l_Mk=AZpcXoXEt6c>K__(ecSm2i z3k_^My2z%ZQ!)n~@sfCdRlL6u4PZOk@PSx=91Z9UI)Dpkz-foV8cP=B!pQ2P9X7?( zffMb4HqaLh?ABPm9er?U1KRONSPl21=Rvk3AtNQwIj@Vh+a7&>7^eRJ|J}odNASaF zs+XY+uS6Hk+p&Hxnt|`phK`}DKJ93Dt^~T68)Io~jg@gYnu#Z|E-pt0{57Wj{_g}A zM)*5A(#wv8InIwZR2ofndvrB-!#X$wZTM-l?UL-#ozW@o zcOn@U+3;BL0GhJL&{Qo!f788&X693LWCzfOPM{e$hj#oQx(%=XF|<<_eXcIL{jNoy z?|`<`Bgut7wQfdJy&3K312pAdAivNO`_MJ;b*w*(Ht+*Fva_-NFKkBn-*~^#Pw9!r zDYwO^@EbIsu|J3Rl9RbGRnyV!_BcBCFQNgwj&}4W8u|NZhdX2a9&}{iqU{_**VJir zK$(6CnYj!t7eohA3~4W!D9eQ-t{y59O{4A5DYzaDU~nvtLf6OxXdsKRBCbGp#b-Ey zlw~;?0(;=suxqBH{XC6M)k~Pq@BhYl;|p|A9FCqr*TN-qWI0cTk4hnQ8`ePQx;6S- zU-bRq=y`H)EYCqdMoZD>-a-fVA*TNS|Lo@?_3=O>yyA4|pb%PLHF_<2zc<>@tMZ-;8+EC0j$6kY-OyEf3%V#rql;!bx(FXbpMMIS zn&;3(_Zs^A7Ri?TMR)&x4I?eS6UhAz7Au_XSD4y^FMAydsU z>Bxq2F%V~=&*Gd<3t_P!m4#ny?23>3`&;hNCuE!fFe}KMU z^dkG;xu|h5Ja{Ae^LltJPeVsE2aWtGG=-bcwel?**l~1Go%S0Cg=igg_q0Ge z?h_sPAN$`MlVinG=v=)L%Udyn^1fL98-4zYOQE6C(fU}6`i|&!djNfIF1jdJVm;i8 z?yf7@ye{&R{`-%uxVRa8;W?ay@1h4#!%SIHyQ3qT(q3qQH=;jG#-JIR9bJH~iKUo2 z5z!8}pwI7%<#Xs-N@mZTB{heI&}~>OS{{9&Cc5gopo?xKn)*rT^ADnn?=f_3%tIIN zO7#78Xv)7p13!Ug=pynQ|NWP=&_H2yBpK+Omd6fQHydb&(-HzX2Is6YjpvqpBCGjBk z!nSx2?XYy#F!#;SK)av;^+%`X&ggV>Di>qYk-x%)4}O5||q2I(K%|3M%Wu&d_&R2 z^dK7Oa`d@%SPMT!M|cq(P@c;}z?Gv7(D&M)_xqyl-gPRY<7NR3w zhi2q6bPA5d`fNEvhb7RI)`(sk>wBUD7=mVI96GRRXuC_$_tvM%?7tmcn6jhjDox}H z4-`TdOJ#I~t){jF2e+b*)ax{RS(C7a_1IT`LmefbAG}>Q#%;o;SHCBwb zg7Umreh%$;3);}v$eShgk7x>^ z1H2>2g&mB=3OEaGcztv$+Q2S!)qaP*cm^HOpO^_V=L>5g9nCRN+KE2D7oD>2 zu&n$4EEkTfK>pA`MeIYl4mQQd&_%TitKbo|!(0Wjq<#x#pzk+BGt&(X@CLNwo6x|9 zp&gGw+j|I8|NEbXsSEx=BDyG6p(B15T?-$?@|Wn`AB_HlcKjzAP_}}hg96b?(WY3Q z``ys?C!p=l#MIyaFXY08UPgbhY(x)~J?Py1igs{Kq3~i!v|I!IN!0>fLpPv-k4D?O z7aj4;cz-dv2G-*M+=i+D|9_xI+KeVH#(14f6`)kp_lbgA)gFWc}KZb6b-_V9GpdDl@5i*e* zyAenC4r6YpO@ z1J6-1jI0>CIIE)_cShUkhju(X*58e`GX<}q|HLdVoSS7>9M_>E{0cq84`F>giZ)cF zRM=+a&?%^fHrN{du6IM*yCc?5MHky+==-mtQ?UUH`TgI?g&iJ`51c_q_Aj~%t}2}+ z_2>7J=oGa^*GPACHIG0WoPmybA-Wx3LeGzF=&tz*eJ)d(&|hv$y1I*UVTV<)95zSi zav0jdXmn(cq8WM_ZD$|pmF1|;#qwl3x2o^<;;<{*uP0^|AgLXU=ovLIqJ}?VC z$zDP`{2EQ&DRe~tp(D>(F}zp+?XVn{$L452w?!YshLo3~89IpWj^k)%(<_AmB};K( zhjlOmJD_uOd-Q&EJIz5euozA0Ygh(%pnth^1|4zk${|CA(J88lw$}z-Lw(Rc)Q&?2 z#DD*T3mbkGjr7e}elM2ypbZ>AQ+Ns;`2{qPyj8--s~Y-TH>`!Xpc!0%ru@Zte={1` z7nsNWeolIn6+9cS3t{+(2?JW zF7nA(!2SOu7e@XX+Td1i;J#Qs6Yr;256|UC1FeYeo;qlQEzm%2K-(FCw)+73{9N?8 z#qs`HO#S}qZFET`27^#!6;&{VcW=ejT2;2?CB--EU@HT@%C6#WNQD7RF1r5cIWZ#M zpNh`?W9Y7VBi4VNv0W8Ey_&oaS_j5Gx zuhBq%jQ)u}pI$fIPv+vn2Z~3lL>r;0Z;u{4-D9~wnweYCjz*&yxd(0dLA1R&=+rDh z2eu2%@KH2F7m)V(-+$E$FXls6ZOK@!i#FU6T|8aTkIxXag9p(O&W+{eXog-x7wKo{ zwmX5>WA^&tfa{O0jr*{I`+qqXHuMSF;Q=(lAJIAe8@pik1|cJT(E7o#JQiKm_oKUK zPW0L6o9F;OL^Js<+Wv7&{rUe-E*w$Th9MJq(G-`6Rz@4Hhj!FHmiuEh%6G)_Vss#{ zp;Pf5+U`ztyMB!Za2RdpXH5FwMJ_Thd!z6|MKp!=(fY3FS{NPgPeeO<7;Sg~+VE0z z_q>F5`~f=WU!WsCiN1FMeLhEH_P@Vo^E3`0kpkF+awBYv_oBb!*I`BcHP#nslKR7A zq9=BueiGh@JFp*?ZyGW%4PB(O(J6ZpYvPM&<_vs#b!RhEC-Gz2=3LQYP7U9nqJ<);9iRE3%SaEsFEUEtpO3b_D*PrTY%_vHAlzeiipp zD9H%rO7`B8y|YP3$d-%{68(IQie!XR%C4l0j1r=#RHCdDN|Z!G87&RJ_xpR!U$1k{ z^E_vK&Ul`CNzVNc^lN$?x|Sw}>xq(isN&jn}(@-7`^^vbT)c~&&O+MKV=CC51y51=r&9>nZ_!Bnf{CIeE|c(Mu~4(n<1W~M{9yD*UW<<4BecRj zXotUz`Jd7A;;&eqqj{#3M&xh7d$2dUh~Gtb%O11?7n`&HowNTa@co{>MF?#vbmW!M zhMHhh*hXO~?A06R% zG=wwI2VRV>Ku59#y?-~_fs<&5&!Zj5*eaM4lP@(i(p9k}cExm@oFGwx#A{dv_oEeL zXdOm;eKbFoqP!@U#dc`N#-sPoLOZe;T^q~M`?sNs^(^+l-_e7qQ=71B5|c^T!>7>$ zu( zp*`j9|C%HWRb8|rZP12#pcOrUJ~%#Je+G@%D`>=4qY?QKUFCbwx9AacAo=eO_ZLC$ zFOQy>4KZP&1&M0dK3BwKyTa--H-PC9M;ENUBZYu zp=;;?w4u>xJx`)*=T$Vao6wH`fG+C9ITFb^?3yY0Z@(2p&w+tx!;hmCFT(P;8hv|x z7q9<_F1ifeLdUYBA+Cby*aRK%{peIYip_9lC{Lt(L!t!*zoOf!)_q}hHb6(x934St zG^B%K`7|`N^Uwy?#{5TEnEW^B)bc-#O0M=abPZgGMj&4@&;GlOgbkHLdtMtIahq7) zJ(fR+u95Mvd=@&Q#nJWXs@{p#^A)-#enO`rLyz!jR}k%3ZA^3jHzMId(Gm@1f3%{J z(Fte-rlTWWjE>+fw1M}~$bE%Ae*~S<(`Y>zdWHii8#;A4(5cLg2}9C^grRMRHZTl5 zf}cPud)99cN6<)}MkDbzx~8)A3i+aF#H;sW|0g>@!R-{Z!$CL| zE8%7Iz$n{0Q_3gU78_x{K4G_X$GgctkA3hQ7RUB|!@J{uSdsifEP?yb-SZE6U*Ud< z@Ri%5Us$cfu^|_pMIShfb|B;Z;Y2KkeaW{+JNOQ|OMXFLR@d|opWCI;FQ0bkHd}#J z@gp3F|Dw-5ka!?0qQ}v%+!xRe976Z^Ed#>I*8@wFpMjNeGrof7(UCtlF#PfQzxW#Y zN`o?`9K<8&E?GY~bZi$I=?nN0CQ3h;DP=yduRZuI4j!5*`9G1!_)z$7_Fqeq4x!8TzL?#ugd_~59GF78F>TH1{Da0gcR{eSJK@S{;f zti^?K=;C`9%i%6`D*i!NbV6Ssc&8$Q_vInj247z5rKN{9V zeVj!5DP2f7*FT_hTkL;fuDf6-@=xMq{2rge0b|3|{DD5#j798zo`$aKckwnni4G|1 zxUlLg;vMAgL9aiH2_M)*!V~H^`Wc>KdR76codp6GLe3K-00mq{_dB)S>x;FoB}FU0(H zkA(xK6xy*G=zT5G?bshZf+s#kh^%-D1s)8q#2a>@C*hB1s4k-?Si#5R$%R(fB-#tp z$tN)RwnR_9)###qA3gC7p%FZV)}NYqBCPg&=;A7l-dHQz0zJd;MR!F%w8JCN4m^#1 z!mU6@`X*+@z&^W^yvK-?NFm9 z!w4ThSNTI&66d0e@I%aqr_jipMdvmOk9|Npx`7MwtP`kNOp^VG2D@}W~w z3EfV2plA9Jw1Fqkh&&t1H=zg49`v~j*cC6M1MM^|bg%~||NYOQB%GUZ=*VZH4=zQg zW)-?SHlr0BkL733=Psiix^{Z#P$BfJFOOxh7T$pa(R!DmQ@wgR``-$7QlQ_Ui|8ym zf=n~QYqJK< znZh%}B5H{)qET21=b;DHC(+-~IlpyQcx?|t7vBnOj$h%eSa^1@F*@@8(V^%79!ZdJ z4yT~oYc9HYR-^lPE4m0jMSFe#osyr?3jabwo#B~~&yGHy8x3($bS>3GBX}3Ocn8FM zB0<7M_Z(W$>sS}xMnm@}I_J5b4g2~QbP8&q4cvw9ios|@Q_=0X0DbO5bO4{BBR&}Y z36uN(G6_eLbxs)Bjp!H3t?0?u1?}MdXoX|YUGNyXT{of~*^kxn96His&xMZFK_l4} zt*0N_(b35~`+q74L$VN^igjp@-$x_zS-gH2eefJQ68@fU^8Os?{ppyFrO*zvh~>S} z4nBwuXbQSr=U@rn|L>4+v7JCyX_mQ}lK;JbMf510k50u#yb8ZWJA4Qo(OI;kDKCVd z1G1rODJRG(o3e5Zd!c(K()uhHe=ekvGu}?Lj;I z6?)d6L_2f_T~im(5nsmS0W~k=3q>o=WB+^NHK4!;JE4oE8`|Uh(S7_V+R#F@gKwaV z@m+KZK1MryI9@-4*84ZQ7OtNkrl5GV9@<{#1PLqdj!wZ4wBfO6L$lD3FGlBhMa*wR z@Ba`T**z8SdHoUF8cgYbSi#9rzUN&_p|>Bkg(#i=neJJj&w#xFbJ(+ zbS$5O?%(+_|2`VA184+}q9H$to{Yanvo8tvl}78Us_y^BBy6Yyx=(wdBX|@I*%WlO zzlffEOVAN~70b`W{6+Nn%rAulrw}@|HPM0fM|aP7G*a_1`S1U{LBa+%qc?tvHt;=q zF#UmTF#pTJf#}?CiJn0hYyMZl+p;7Yp$_Q4#-Ib3jJ7iaox=IAu>TFkIttw1AH)m0 z(FaeU*Ds()=v7O@eK(^WErDLI7xQhg4Eg@(_rr7Olx##tybaxU`_bnPElq^E|0x#y zi^=WsYG@#Lv@E(t8pnL+m>(8>0$npNpbe}bTJ)4dwd2T#H&_>iihEyZ?aDBsE?A!Y1Lz`t5p8faTHgm~WDenV z?*HQ?Z15sF_gAe7i|tx;I~9%jI?>MP>v%+T7FyvOXy`Yh+jKkn{AG08<$NOypd32) z4a~d$dysH0MxZ^Nh*fY-%q35S@z`($C@1Pz2crE+i3cjMi4~R4I!g;hj!@5vGZnS{{=od{XbPmg*Q_>QROfS402jYXc z6zxdvH^Wrjg6{Te=%?K62@;N|CfcJ0XvKHM{7`h;j7J-ujy^aGjm)!X#~0z<_)7F| zG!kv!3X5(4x@Z$KhPuhZ?vJ@>q7?%p{ue0Q0#2e;|=u-RQ_NZVZbrJNiHYw7fJr(yH-#{dm0% z8tU$7J)_a>Iw9s~$NYq}xg)w1>%8_u6E2AT+gRX^p&^aE0R`|b|pBk^vMI*8r z-OroR-Ea`C=Nwv3=FP!^=u}okBT#2E``@{4O@Sfnh4yeb+VI$ze+q5r+2~@lLo3ma zZ$|I`7zg7Q=xT4UCEV8?z5XD&tsjl~nOoTZhIBzJSb>gUBU-*Y=8vEcUPLR({B9UQ zE_CEY(DHg{M_ZvI?;OjAM#rK9eF`1;yaWkDu{vJZidL`}t?)=JKaDo@H`>8G?}gu( zmO(puHzp&9);B!*So9e*VlSgd@w#YY9|;>ek3RSxdO&2~8Z3%FSQ~A)B^rrdv3yi? z655eD=r(*AT?5Nv`TJN> zG3f4?j4rOH(N#Ye?f4e-`CZY2=zTw6HuwKo5?1gxdQx5eewdqU(2vMl&_z}k9eH!~ zrPUoB;Unl=&PEsSt7wSVU~6*NHSvL$+Cc0(H& zf_C7sczrH9lGo8~ybkT?26QSuz@oSpeeO^6h|cz5FddWM|CLDCKwY%K_UPH)7wz$Q zw8Cl87tw}aL+5fWIu-AuQ?whc???3Ly^J=TvORP(Ct6?L?d*R?T$BP=cX@Q*wm|2u zKN^Wq=zUM356+I|i_wbLq8-|f-uHPdKN$TPT@(MI?cDlN=xFVa65&6gzMFzZT$qnW z;5fP_enZ#9zvxIaejGY>BihlzXn9>UQf<%`B`WOzQf}92UfxKUEycN4roUo zM|Z_6WQ`?KUMJyPZ%0G;1v*E4(;^4FvH7e?p0BHGcK(YvFA(cLf!t#=k0 zu?6T9zk*ra|8J8p^dF)lIEaSu96CptJ`WERM7L7~bWwJ~y4WAR?{&0eAENc`N6&$i zXuYYsg9V}$G5P)9l!PJa5-$wLTI8pA1Ac<`_?vkB9J)9&?g$Vq4VFESDP=S!&`4ZHpSvybW%!ed4wzh}=t;H!8{(_zh|gd-O#Ld1 zyegV+jBd}7=u|Dnbo>mR%5!K0uAoy~=wRqzQ*;1{-XuKhN1`{*L`S#|-CpmbFPB|t zME1t(N6`k)p(D8+$ zA={CVzX`3V7+O&+bWOBIE9{SUYy>*enbEoET3U?W_c}VT_2_Q<0F(dz$M+!KAs7|RoA!&74U^XTGR7V{g?m(LFL#QOq`&`)S2e?!~J zk@!CRb(rEff`SKdIvzt0ln0N85j~H|MTCA*eS${lbF?F0p(8sHuU|kz{3p7Iul*rB zmk;e&dNfgrL~RPHVsa6o+i@m(^v*#mSRdVvejj{+R&*I1S*8;qLOG&^&<<8W@2i2{ z*9h%sTjab+q;w-;Xvd))csky&0)1d(%x_1x*}j z6t=}jaR7df>F)m;CqoDBMH?J|&dtLyKOK$43up&6ML$P7{yjSP7toXR>QnJ8hjy?M z`dnjl5q3uJABM@_|4$@gNM@s7GK)1m>1Wvgj$j@IuJYArh3~~1zCl)L%4tl7{%nX$UbKSZ zXvJ00=UZbb?1oO^lvw^cIh(2;$QPQe-Upvv%TxSoby&x*-`A`wcYR43uwbwV2+fay32t$1#{z5uOY4f+y# z2W{X0+R?AkNdAI$^xE^`dVVxgh0rN19?L6Z(d7P*1wGJ_^+O{v0$mGFp$Ez`w1aEV zIes^mpGHG{5j$Y^3*j#`_d!Rx76;=O*c%&M4D~F-atR9FB2gbtpa)O!OUN&I>!5Sg z;rHy|i{98cdRMeNTJaz>GNUlr^H@F!eQp-ok%j1DT!}8`kJ0D9MmzQ+djFqE z*?(5+NNzwYxD~CSJh}#&p=bGEbPlIS7o(AR6RmhF+Od7;6dgtzK8|k3b7+Sy#(Y|a z)bRiR$x6b8^P?4%Kp&`phP*1a$C}t2XQGiff_C5sEQi11N0@$97|=z;= z=x`0RBaJii?;qO3yD8BAXa)a^`PpbsUybE&p!XhJLX0 zMmsbKeSRg{-ba}jzZD&(z?a8g(Ojuv&MTlJZ;NH|ek_5{p%rY4*AGO`psW1qv{2uT z(eh|LEzswBp&ffTLBj3y0$TCQXh%LrA2=QJ88W9Pe_?PlI+E6S8;*$i7to5gVoCf0 z%it9(hGnv(CJ(B+(M3E2oyx>S5-z@{(K%m$HoOY0a69_IA#`faprO6$ny@!Xaruu zblid7cN*<@w(Ozfx1k>*)uSyjoqSL9Z8#B=fB$ze2}kfQTJdpogjuc&i={C7Kut6P zozch)K}Y%++OdUbgPWs!(JA;5jm(YLhk6^M?R3ZFzyJFL2}AQTT2Y1^;f7nVIQfQH z6bGSm`wZH__t4dR2%X~#Xb1D%5G;>Iq%j(yu4o6xp#y#v6W*|igd^M={RNYu%o(=V zZRjqk8NC->6Qj}lrlB2w8ST(EwBv`-NL_tnXgE)_G#Y_=H?se2xE}@f@Nu+f%i;~6 zp%q`mDtLXa)Z||@Y>eJF7Tq;3p%M8E?Z8PiA}P5;B#NUWuZ?#6F0^BPbF=?_a5M#; z)z6@>lQA#4%?hFQltp)0UG%v& ziFiW~tV+RPw5P8`H=#Y3q6KEa`|v94fp(}jI+sIY{t?VX{_$A;6eiaW zCf5!+=P#kpuSTEW9P`_wd+}<&|BsLuhu@*0>RB)}Fa*tyL__%)w!oLsxjc_HoHad| z2i+C7VtH(W?t)QhJ&VvavI;$t-^b+l|FqYb}--oG{G51{q@cxxgx`7_!@3hYR(!l^0Uu@KtB31|gR zM;D_FtwndiJ~WhPqM2_CA-)YAX>~MGO|crb!FzBrx-Gv?kT7&ri-ZW=fi~C(?O_MB zBfaAFq0upD2Of_ujBZ4yWPi+`LnE8HXo&0$=#<`s>6o}RCK^P0qjUE-dg48gj$}33 zv8~a)vHbh!1@tJss#ut+(rCx)qwk0|=+WE{Js-wly8C|t2^ZCSXajrW4d0_ZPbnVC zuR#}Aests|V|hb#M0cZ~Xx-4YG7bCTOEG_KiBL}=Y)pAYO#b^{kC3o}>F88EhmLq2 zx_Vcj4Ze+zXfGO}qv-t?(EI*CJA75iu$Ho-_vb}NUNl+%FRHN=lmBc^9dyKxqA#cQF<-fA zcy2Iy|6**0-(VFiRxJ#uD;k0M(eJ9U|GQIAqZ@0 zPmR=+y4VHl<9w`u$D%jf5hB?T-RC2)Fz&$H@GRQF8xl3cTy;fncm_RCHehl50&C*G z=(ed*D|{<b!+iwCI!6Mzl z)U-wy@jSc_k0(gD+8f*#ekAIPZl|f3j_;zY`Y2k_zv%tNx`%_L8G8Le^!hY(@x6_{ zw0=O>%70iCZ|V_VMs?92!4mh7FhmKgg)d=F{0F1JlF(XBLmRulaU8gR-q&P zG?xE?K6i7UFye-22k%3lpMXBU5N&Te7IpuhjTdh08$wnCt*AZv;21Q-&!dr8kB0Qi z=y^2sS^I_SRndk!ppkt9ZFoNBzz@*p4`A}||NTnB2Gi~jp(%?#&^hMEp%tz`N4y)Y z;GdY!(?6`4hS-ksk?8X~(AV}a=%TFtK-g6s(R!v}!V7Pc@MZHQy7;c3YoWq`FlP^< z2hY>!^=0V&htc!n>Ve^;tBh{j4p;}D#NTiS`WAd|P}oH|2Z!xhe=z&skqx0B9cM@1 z#P;M5;GJ0V!7zg1=v2(cbXqBnkuzC2E$2T7S>A>{X>pH?Gr9IiwoQ}&@Sw~f&bcS4_Af==xoEQEhx4ZLZ1 z7-0JZ2@jgrusI$<=cdGn@OJBfjma-S%TJ(->V}cw1gwfyJOW+S&!G{0FP49g-k6en-szj8>fEe_^#(K|eV9qKjz@w!n*MB9^~hui|lW-V~xg#`}(7y zosJ&eo6(V7zyG&^gbihw76u=wsp z_x}qx0e7Mw7Ofr+KQ~N4xA7J9`SwqQ$ZbNupmI!#`@jFBFo#pop1pxScmh30YD^9f zj7E3MK6LS=J{j(>h`q?)kDh?L&?zc7C4Bje#BSs_qUCv?3Ll{lK1GNP%{B`9;W>0f z9j1npZW4MfY(z(X3SA>br-ewhK=UKfdgh^#+z~y8uC1KYLwObSXTi?sIq*<|gh%iy zY=WQRP|P(WHDwr1LOXOBU0kJ}4xioa&Spz#mS}2_bLuTv)tsqKhr# z^I_ZFj(%!AgzkcuFcG*?_*3en*eu;`8}69{1J7ud)7u(7{_4g$@ly-x&+AiTnR=623edEDjgCqOaFY z=!eFESbiR-l5e#nY_G3z9u1_v6t?Y4FNbfwGgyuLX1o%<9Y4lL$d_Llw(aYJ*VI0_ps3qR*?!ItDpz7~I-hOY97=n3~Fx)!c~JvF62_CeRsZgdUR zTONE9A0l6DMQZXdqrQlV!4%|PnVS3?3XkIhyl+*gXeSONU+azF>u3XcR)_qP zct82y(GJ|VChYee=u55K+AyVK(CzmTdeGgxj{Wa}(RW?g*Gtgt^d-70{=tTr|IP3+ z>5eR#lqb<`xjB~qjDD)!_*Piu6|e>Qw&+Q?09{KvurX#_A9g|W_3VEO22;=$-$DLcU*`@ zC}nF{#N{vx+2-hdccUj};t3LkNSwwSFzdGPB~uWylCOYiSQ~xqHbzI*AJg$k^jq+C zw1NG24IV+KY>(NnTXZ01CqEi< z;FFjWUyS)TVtyMspaW=!P9Y7ZTtuJ0g315?U-l0|K|#Ep3uQ6c5%hu9Xb0{^AMB4d zJPIAz6tn{iWBIz6-;Q?R5E{WV=*Taj_5O?5obxOnhJrk3LxnLJ`e<#m;pXT_I-?cz ziRDAlj*pA^nK8cz9mpEAzHMmzpU3OpVDjJpI2#L6wuc_)Ku35R`ao5*frjWBxEozF zqhkJrnBRgP!AGNipl`eDJ_?JlIJ&(XqU8^K#Qyh)ok)R4@WOauBO2O$SPW01BfjqA zP@W&nm&eLj6J0Aq(T(}appne}Ng`Bu(M{<=;lHN$d!rtQzfvz70pCJztE5>_c?l zpGLP|o=?LWUJdQwTC~A;(K-JFecc{Jf1o*sPG#1ep#%BQ0VW!g@PXFoNbZaI!RR&| zi#9MZIs=Wwi|C?SikWa7`us*rb|88Xeg0IuehIH4fAy~9{fU%R60Io6h2Gd3pTZ%y z8vnr~xbm}b{i)AGsGq}B$`@i)T#9~F9>FPCWp{W7Y{e4fv+W7bRm0lk>tF-V+_5A) zi{D2>_z&8V)V-nn25d&Y1-^yPVO?ywFZ}XpI*ud%1Nz?Yvp+vf`Q!8~7t*YW?b0WXw}Uxtc0p%r&SBheE*i29?e{eNhE z&!9)~3bX?|(6zA}lYjnyf`kwJgKnRkUj>Vxi>4a-U?Vg#&Exfs=pyQm&iycSO^ipM zn~pv=FP1Ms7xf!x2ljo%{ zPtg(ofOa^;p>RDL+HgK}YRVsC|J(CBDDXsUhUqvE%i=V&;>~E!cc2xXiRFLBe5S); z)#pGvSP1Rlo#+61p(ox@G}2R|ixVUq*#`8+AJ86NKs%QC>rkF2S_JKRCA7lYXootY zk?e(@oDawHsp$RBV-b7_-JUzpMVL55!Z|#RR&)`q=n5v+!Z)D%z-$M?`s z{)+ct-tR(#!_Wp_L>qV=T{|1_4*VQ_S6uUbC@+adx-J@lj+p%Ke|nH`pFV=gmjZf5 zPew=Z6nfCiM%T!5=v2KF^Xt*o{(da~2EG3mbi^0Y4*nPOS&zq;*m3rMIv1)@&=Nag zNnDCf#a?t<{)%qD8-56ps)8=k#%M=6qmdhgzO)i(M;}9{@M&}{Ekir<7TVzten^B0 zk5J$mI2Zjd-kAMF2vq^J;-YAzN})$?1vEm{(a6io3bNzQL&v7!0Fg;oZZLkJfe^d1Nu2>ESVmD08 zBjIBB8x3WqQ(=+hMMqQ)ZLm6)#XHf^j*8`vp>zB!Iwgx@{!MhzzK4$ZB&K8PPhoo( zL-Oo@67K8XSOF)aUo4x@IXZ|od;tw*q0?bRwb2IdijIlCgl@;3=r+BCo_zU#4*7c6 zo&5b+%=iBe5oT_xsS$ejh!D-gp_E!_4PGL~ce`b2T*N4bkhJ(0T@;9r|Cq z{ye%?R>b`K=r6Or#Do`a{3SG060Nv;v=Q2&cIe2uq1&uKx|qhq@+q|+(S5!N-6ij%9Y26}@Mkn~ zf1n3W#tUK16hNOZj9#yVwpSM&VDkhCE9i`Npf7sk1aw3*;`K%7h*w}++=RXhvR(|k zr!UqgKLs7xXK20Oqa8knF5(QA!qJ==y`IQQVhD-6=*!|sbUVI=74b84L@B?8#g`Wi zX+?BO?nFm;Z*)K`9~1M_&?%XZ$+Z!$zZ3F_l+Q?5!FSQ~;X+D=-@|V#d9q ztS%an&IuAOp26tIMxv3h+>uQ~8=Qx(@)c-@-bF|D3A#HDp%q_1516c1r6nVj2fhDh zv;)P^`YNH%CmN7&?%Jab4?%lAHu^X^S5wglEk;MY0qyus^#1+meTUKdeu>wwy*hLt zC)S|+X0*edkmnOALrFODM=*Kvp&gkKogd4Wqn}_K&`4}SN30Ol|-MbiOK!nG@0-}LJ4c3CmNzr=!hnxBc6{wxEdYdW^@h@M$e#AmXayle;qoY zThZsrp;L1Qy5<_=jqd+0Bn<6PwC9u2p3X!ccq!&rp%raK8`_07@OAVQ`rL2meQBwo zgE`UNQVgxH47yFLW5WI1k%V(O42$7tEQ3qXhW4PJ-$&6AUzL`YJkfHa6_rIJ))JlD zuIS<#i9SCGo8TPu`ER2a()j&A#@FlM@RTXygmzE za`mJ2Hps&Mx1u%__!CQ)Xm>Osz43M&i0Fp4whVK9G(26f%a?#!xLZ2HAbzw|yFHCMP^!|=$sQbt3BVzeD%iaI8 zNHo9&Xe7Qz&w~=V!iegk9cqnsq!*^+NOW~S7hQ&~rHyEZwxH+9$LJBg2i-+qp;L1L z6J9t=!Vz6UAIz9LG@LzpGx|Vjd=@L?X#6ymH_8(t(Gp!Nonw9o8j=5@4NpcRGY6fT zxAL(6owIK#@PIjsj_~@tVZ?>8FZpUXob9s!eK2RfwB*lrHPOY^3)8VbCO_3;`4Y4P z%g`fx9hSx2=mGa%KK6e(5~cHp5q3d)+8gcIFnkop<52t$ovI-P(vtt3@S8Z4jy1VC zL~!FR;kg}XWDlbC9Ys5G7LCxKSOl{t3Wm^CMsKKxPDP7Y-UXeK{xSa$+VgSf{j1PL zwh?`9C(@skuhF?bg06`l(dSOb>v_||^+Y}r_OLLze=DFpuZknF7J8z+iB@z19l=j% zNUvZe%wH%i`P=W-=+Qd~2jIK7982Dsmi#FF5{Hrh8|%9N2Nz})Qt$?r#B#T#C4Udl z85@zGiiL0=a$uxf!ohfBk+kIBf|-a7$$y3(!8a65Oa6p39o_H8umesk7CLkoA0*$n zxGyDIUQePW1^?mQ*rG&Q^4IT6uq*k@CBvNe#g61($9i~GsSufl_&)g&_%v28otFF? z6FaaC`MG7%l7AR|8Vi%JRyGXqUM%Ctr;#wE@1VP2FFJRZ@G}03KKN(3u*wUR57t5# zQ8z4wk6|%f9j_lm>-!6DV^I{Sz;jryVz{qoB_i()Q%F?Cm1roxM?WTuRSqGphrW)V zLcbT5VKw{!{q*`9-94S zq}J`Bpf|dz6X-$mBD(0-Mfal-yNE?Gca8WwIt9Ja1LkS81MgvNJdLh}5_g1=kH-Gw z7bQp-fop1}CI3o9Bb-QnIZGNt z!`e6=FQ6S8UNG<4qb^}(;%F*xq|%npRu3_I>%)&9h)JGHDv&L#t%Yw#Y1RE9z_@5 zjOa?V!#nYM+=o}=akOJ6(K)|}zFo67bl0)}iX;2frLZ=x@w zZD=U>plANq=oiu1n7^uVD8CV%lA`GSrOTcMV#e6`kUn(CfFO_0&zoL?g7P z&Ct+wKo?_ov;%|D2Zy6`J_fDeX|&_dqPt=d8j*GA^Pgie{08l4#%5ucDa1<-dy z$)xQ6J4yJ!{pbjWpbbwzLpuXK2VOu|^Kx`5HlY=7Lq~WZdK5jFenR(sTFdZmxCY(# zRndsGLVo|nYA4}{I-?EuMIU?!-LE6j24-A-uFT*UxKcgmFQyIf<|sX zIVJdH#CDNFyte#G(LicXervz3Uowkq93CpI)YYs8jaKiw1X*a zLx-+IuNOk=DS_Ts7Cm2TCP=uAy5ns)4t?MiOokGDU<=xzozcDM$iIsDOVP_{1XJ3D z?~07*ZmNT>iO%SAqtHkto+VL-$$b-z#HG8!zWo=Sn(Nz#5Z;E)d0Cu`RnSGd8-4EU zc>M=#OnpD2&sXdat~bV3R(O?uK!(d>%R_ z>(I#UKu3BG%VU;KVcXTfBINsGQJji2oU$%?o&9$*nc#=YdqSw|pd)IDZo3ZH0J~#J zd>K39Zggsjbq;UGD(LQLg&sWjpw|bZyXR4K&5XrD_!Q=K|F0zBNI!}fj$k_ZE9e}h z-y8OE9rQKa5xqVH9r;XjajlQOgLY&qCf5wsCchV*vg^BqwNL<)fBsj4grRH`?Ta@2 zD7si)M0>m;dKhi^A9Rijbqyn~g0AXjXh#R52h}9>zJ)QrE?(c+HU9kn0|oB)i)aO< zyM+eYpd%T9hJG9x+U4j-wxSK~LK`}PhWKA}&ab&ISRP#)9niPrP;|hL-IoYIK)etO zcB9+zL^Mqn&o!gyghYsQUcn;g*njRrySNG&+%M5&DqUXXxy~6Vo z&<;&ckZ_J(Lqq-sx=KGsL-rfGHnQ{%BTYvmayxooLv)G;p!ZKk@1KY6mUZYzccZ)F z1p0jLKA}8Oh=e1mh8s8n8=wczKmEc8v)&)RcJrYT=#H+1acD(La2F$7iH3Ic1K|Xn zhVG(G=q~yI9pGo^RGq=c-TxT}gcENH`oJu-=P#lodK*34ccLRZ61^0?c3_x-ThY0% zhIXtW+Hh;M-h0rOQBO?AhwvJ||DPdYj~1elcsu4lKp*%Tt>_FI%HOd#W*roM3a)}4 zV1uwPE5BpnMpZ?cHngMeDqID*wZT{T!fj2gq~+dAIKB)x1b#?hIX)G zEU%5eY?{P;bM(IU=zaI0Z`A>4M+T!Ww;|C{L)ia@c3do&g63z%{5qxZ3ySUJG7;A+5n&IKk4-StA2i%P#nRD)MiBI5(1c`Yh20omYvH-J;N=sRa z%WyKbek3jBLp+E!IDd4Qnnl=+{Hr*L(4>wDzpk4;HvINH69a3)bw6_f)jn}`#bn=Ih-IPfAJ0wzaJRTk>hVJ9)=)P}+Zo7{701iT@<{-LgkE2ug z6FTR=p&j}cOJUj*AzukS0c&A84o;S{|7MVIBy-Ud?rn5`eubV3C$S`6K_|Q9q>wK) zIW75L$#=k~xPA&taeercoOHNoN?P(C9(eDm5RrSQhI)HOhhg&1|0j@e#BBOw1KJUoGwNqvn;v+T_c}h9sC-tFaL~CPc?Kv&C!FYD;nw1==ObnM*R7I zDFx{itVb*S3Jc?Dv?JM{4iA)x-VwbMjZ8;$*oKr8+YjZoU0P;ox=B&&cfrVi+chNBUB23$^phCKIk zp`McHwyu>l!Jqq+@P!)0j2AD|T-L+9$RXpZ@zp%Q3BZbzr0 z8QM@6bnb_t4a`9!@){b+EoghkqCd@N|9gO3puiLEGFm}~1>wOW=m>9*HjQ?~a+LSQ z+i?yW;yvhEIf?c05;nzZ3qwT4p&goz4q!=wgd<&t^>A0bkbP0Ou^<|mN-^IGo%5dP zOKChh@)c<0-p4w4G+JP32WmyH1uU&4!?k?i>`$+=vsOb?ZB(ZwoRn$CSgOrgaUr`5k{1b z&TUmRWKGc{w+q_9DD=6f(7Bx#^Y3AK@_W$8Wmp>ODS$=DmqoWBoi!QxzKiSF}}n2s-_A={2tbO3Ge0vdtT<)Pt1XvKBVf!vEWI2yhGDReh2L?gUv zIs4xmKBB;izCuHNA>NR6McA*mq1&_!8j&h!N1CD)_lf0?po?%Sx|?>Qq0hE5?3RLP z!_CkL_FS0=p?#PFD|#*7uqAo`-Ck$o^{ZEfe4c0-w4w&+QQHX}KrghT|3equ(=opu z9qUI6y#sCd6nX$%wK{km+OYy? z=!>BTT~)M$iCQGAs0|u{9%yJspmRA3T~w;m6uBW4~-DlAs#TKLOEyeKf|B`Su?!~+DAMB0o)`yDT#+KxFV1LZ>cKA)lc$`E2 z6xv{7LvSYAp_kApT_5xN(8!*^7Wm%=_J0!+%{PVyX5*dYze7*1Qk%j{rxg|@zYwkP zBea3V*Xt$M1C*Yfs603|I1PQm-F06s4 zu?iM>FO1+`bSehpc-)V*@b0Z)_0L8}xC|@fhiF9pLL0tmTWIh$bT?H;r=T5rFeL_% z=t^QHmd0Pu&=+_=d`{OvD;f|TiT(sM9$kFP(Z#qKYvQhGmJdRt8l%@cp^NZ-bTrMKS%31 zi%!)QWc~9im+j%;$bs&H(zq2nqH~q^qp+x>1%|HP=V1}HMMp3e9l;v( z!{j?`i`VQ9k?Ddi&N=AZF2;Je4&6n+p;J_9Px#v}t*{RH|Do@SEqfAS`y8ae3NE3m zGj(rxS=@pip?9E*rarnRTA&qlN9TGBI>)b}&+kXK<T`{!0F8W-T1PLFU zf=D73=u=u~`%M(!lK-ST}AB2g6m!KMpZ-#Dy> zi3KDa*_Y@Mdkme5v;$$=W~a~(jkGUAsB@#|N(c1% z#OM-a;E9xNB&_IXd=_(l6^`Q9&=BoJ=kPByz`w9XOse+?4DV!_JjF?8SO{5Gui2566;KpUQdMQ|Y+ zk?rUjIUl|8XlSrnv>AE;bwzhspO_zcG!YifSPGoO`SFIg(Vl;THh2_0dM{y5EOIPt zzscB(`~fr)w|^HJxDyMJ?~FC*`J?FKeEWy62){%ld^|zIk)Dp`I}s{shBn+8?eT-L zd>lGePoovgLEoP9(bc^aT@&lj2<<@6hhNZbe(jH;!@1CiBp!*0@#qMijLwa|hLtJb zh~4lU+F;9*;f(KqHheF7^4*Uv&T;5so)ydIqYb`=c4!MSkVML%c;P5!Pu)vH=Yjps^}u^fHpJ}YvWt!yWkQ!x0!zq9V~`E-xO`=0W6Kr#QZk&`JeFy_kYPV zVRhF+Lsk#nzb();&lqvKbADz2+oL5ExZO6RBi@fTa0;#HJUXXo=Yu8D1EwXqJ4T@$eiA*vo@imK+$dAQZnEGc} zObxLb`N8O-T8bW}`>~4m{S_is6J3Puu=-W(mY84pcc^za+FqjLKVkJxz^N3hK}S&g z-_Y=bScm*dbR=id2xR>)MBo;5SCm6Td>7jA1Lzb?jo076E#&v(e4KeD`CmpQIQ=pw zf2cf-OS#ZKL*|r$gz9e`K>q%#Gbb0%7wBvC7&_Pgp^GU?#$X||!Q0VA*(LfMdQ$F- z9zqYgV@cV6zmjk+Q!-^vF18%eV(3U~p%u4AM>-5$RCCaZ7NCoG6&it0&=c_}x(&~u z=fst0&eY7w^QIVPcmH=F;i~V0MR7Fd!^JVb89g$Oqr2e>+JRhYA%8Qbldps>*7o=V zc1547pE(S$8=8L*U9?YOa{oU|!lU#hY=}G1In16VbMo(Ol}CSQOkg@bk9K$?_QB85 z2vxo&bMkLScf<DxPC%cd0O@` z6-Chww2b+O(2l%-&g}~Hx%be9kHq{R(OlPsNdBLt`wrN-dIK>2nt74vXH>)^*?aF^ zds8wh*()T;DyxUGM-q~m5lIs%4Uv>mAtgekw6wG+A;0T-&iU(e&Uc(~pZlEeOQ<>; z!7gZy3`6^!nxx9tfc@8)f;aBK^7trb;4Z9=nG1%7YvDrb9b^4F^q|R9 zC`an(ZGhHC;4Szp_Qh;hh4u%byJ9iAr0?N%^q=+%1=ld|)gh^Bqifp+{d^9_Y%%I?Y?1Vlz7`;9L9qGeZ z9bZJB`vHCKKlHhLg+uO?M6a58!jJ&v}s3(c*4cn5xmW_^ci!$gK$%l@~6Nn9|* zv(b*{qoH4eo^&su4Zn>J^apg{|HOJ)(Qs1cMF-XkZD$E~!;N?oW-FE>Z6kKY1(+$B z$dUT}y+zoI3;&`?)2(=LI}V_pxGp5mG_>Pw=q}lbhI&6H@Yi_#iV|VqMR7RSt79>I z0*%;ibm@}ED7a>)F@ZU*58J9Ny6x(tFEm3VbbGws2R$!_U`d=4>zmQge}b;@33NC8 zh(@$r$q@QFm~j7hpx{jIMmxG6?RXKoG%L}OK83F3cJzQbgeK#E@p}GJq2mf@=Zp)xlXp%1=|uK6d?Q}OzL=>EODbdJ<-qh+99w+UzjH=)_S z7i;48Xf9k^CPeBMGY6bmtVmckkesgFqc5c-|y1MguoJdD0rq(WGV zQfP?lp#x}(cGMp|+sB|wH6O>~Q&VWE_oHj~9Xgg_S*wNjYoSZh8r?O0(TI+T_h+C3Ul!}hH56)dVJo`U zzn~$jRy};RI${R(N$7sxi8lN-I`FgT(p+9645S2_tXnt z{{0sUu4R3!k6qAgo{x649v$GT=r;WWeeSwiInqjFPxSd|SRI$4&+W%5cnKX~mD*w3 zwZK$lF!lfc8biU*&qimo5eFRe?#>V7i{1MG~{Q|0pw{IMw~#mPc8J9RvGA;w?mh%4?6Hs z=yrTCx&Uo=E!y!W^u1l!5DzzG|C`kXZV1^~8$F2bLbG-@8mi6cl6(~JUyK&c2+3O) z6Ws5FWpNa`_A9X(?n3)HgKpPCjlvP#I!VD$48v51XjX4V8#sza;y-jCc^iiaR7Q7A z12ke?V|^I<+zd2QPexxvx8<8?5`T|IB+0K1Qz6QSUMPk(SOs14R`Gg&^u^KWnm&Yv zb}8D?26PFw#{0Wt{Q&yhm(gF)_Roj={Qa+{;mExX?Vv)mIXd&6=zblJCf5`+%b!4J zx(8DyCz{>o(44xWS*Vvn2iO43jn-(yZ%bWIax_wKgb$(vn2$cV5uNF)=*-?hBXkJO z=I_vkGBpqNqUdvV(f3=S-;!I=_WPpAHyoYVR4haPX^Sa%ChtUNum>yQ=V$}DTZE5B zK{PpwV`>+m9koLn?jF4--k*jh+XD3Gfw$4;e?)WbUrhb?|KcsfK~V>dKqE9;Z;SQu z(S_*O>sf4%+t4J;-YUG8KnGSAP2v_<28UqujyV{?3DjrVu*P zvawzl4S8F%!-41wCZTKpB$^AaqVIhcJ%tsipF@|Rber%iqMGPL>a|IRHEqrX*Sc%G z(HEV`UFe#Q!vxMm&+d&_3%^0Lxp3R?GhuZ!Cx)X-G8e1hnppoB9mo%uz_UpTCRL$! zVMJxnwXcrOtS{QYXl#w^(cSPH`d-%dInr8U0lXP|paXva?PxnD@O|{XpV1sk>kuNA zEEo$l(QVTi&4D}74yIsnT!fx%FQW~7g)Y_K=#r%080sa^bE77@_8rlQj6)BgxoE_; zAnhg7-lt&5&cqv6-V_E<4ij8&iiWa3n*C$Zh8D;B+tCPpfoAy?9mDfA&>6QzPtqRf z`;*cB9>>(*|9_o=$#W2Y#ozHXp13(&KhP;e=5#cB=MeI1(Z~!yBQ`zOS78I{yU>|m zLX+^yE+J_fp%J?Si@X0PQ*efBqua1D^$)Q+UX1msUBgWJpi3|n4e>H`yY0pV{*2D> z@>{|W9OcmKUC@D!LEoE)slWfXjluvf?85}sxHZ0jJ*baCx7#O}I=iF)yDikqqZ4R~ zhWJ*j;d|)7o{rZ)MhEsgx+HnJvHueks&xyW$xdi}TC6{bCf!jq*|OdqW>gRzNMm%r z--ezKgVEfWf+q7uG#TGSXZ|_5yUt=}EZLp?Z=p>0uqNfv{oWkiKAq8#_C=Fv8rtDf zG=v+`nSYE%=m#v0SM&%!FI2^P)O(;ae+uF$=DV*Vo5-@(l_e7`yN?+#eq}j3(J> z^kmG|I}9iv8q&h(5n3CwVG}e`twoKF}+`iToJt1U;kI4 z;8&>~rbdpbk)x5BjX&aJXoMc@A7_Myb_u$lUqWYg0FBJ|cqjf5@An)KlJq|G`2|?i z{r@ZlXYv8o#wQE6bXJC>(D3tjV<(6xOR&H5AQ1kR%aFMLPHq4HRPdI$7`9FHdF zGuRmSVe0Sy^8A81ajm%MW|Nf3HRgs}#TXsg@AC2b3 zENp>K#{0jbp}*p;Z~#@shSYl}DY(s6qBDFE8{jc?A73>r93UOBDfKzn1P`ED{=d7! ze<^8=wlfPI*eWzKN6;Mj8(o^~hlg)V2AXrpyD1o|CFl&FMh~D}=$e0vCf8XsYYW~J zW>^K?PVLdP?~S+MLNr1@V_hsXB5cc!n1lLQw7&R1_*WeF$`KTOepWs<+h3}6JxsiWN=(q^laWnKA&>n4fU`qDieH2WNS<$8F ziM0_uc($RD_%vSs9uw5hpzjsDH-xqnR-)b*eQ!7#(TC7vTNmrEU>WKMuo(TPougnV zuf8udSOM*@0Vc40ygm$V=zes7kD$r63VnV%+VMVgU_Zy}7tn+4^0DE$BIvHDh)F|I zkAfrZgf=)N)~BOOu`>E9dZd1eqGJ z|GRH9#)k(7pfgwzeGPr_Gjs<3U}d~)LfCG#aR&8vcn=;zpKm!agU+-Z+J1F3=XxN|C)37IZ~zO?q<9V;`P=9K4#xW@&|PvK9Y~%jp~LH<8R)^) z9TS*D2eJwc{YI>gThaGVVG+Oo7b!TxYo>;omq3%PJo+P3y?Ffw^x$cMHn<7R^4GC5 z9zk=X;HdF$LIR&hXLtbX<4J6T#b$&xAA*j2 z68hZ2Sbq|0P=77fe~b6C&J52NLYJsK7Q&90z`>Yw#Iq>a;BveNpGT9e_^hx5Rnaxi zK%eW3F4Z0J`u))b=q}iRZo~cP^S`1=n`w5~-i6TjYtCl>d!ro}3}Ih%8@`Og@i2NG zw3-td9Eh&zR5Ul{VFg@)rExDh&_B@UE}I+P&xcj0S4P|KjsCDYX)fE$kUS9|d>sw( zQA~{-Z7|bAVQmZI0_tVZYmm8hV5$ zAEQv2!fs69U(o^!!vRzajYLcIN3L$@O!{Ii91-hJq1*Tsbl{(04g3MC;kApxfNnyU z^bX{JOQubw;C6cyZEzhnz~kr|Uj1lTs}g9#EzyQ=$C~&s8p?Oj@Lq34p&@dN1E?!ZQP3f=GJmWFLq6CLpFn7|=uWM-pFw*XD* zmoOWCfF|idbRd_|rMY$){n9^w-8Q^~!x(W&TBIS-xr2DE|K(Iq*G#qk$xhF2^P zc18!X1kIh-(FuNp4)hFW$BUSBW?5InpH9(jRTX_81D#0=bjIDIccRaYLr=~b=q{Qc zeG2XHO>{!vB5R#?8Y^Mi%5c5%O7_1qtIGwmvVF7{I>UR=j;5d|*du7xZ$mpcgg$o; z&57KPhb3!_jj2C?Uf+%Ob1r)Ms_^|UzA71h{ojcTu2olb=H1b3?uYK*`>{Gck4EAo zx(oh5b0zcY9H~D&R{>4RSI{LnjYhD>n$T_=^!<*}-pN?F8y(^OXviKxJ6Im?KZEAN zYv`JOf=1?4y#IHsXI~pS$d5*}1o~dhSnq&le{Zz?WRikwGY=ivs_66afj6T2(C5BD zKhLM*^$X~d%t4y zqa&`44xlNz8*YmChsEm?(f4Pexv>mw_c=7#Uq=V92aEar|CEAjbT&Sadwp1|LO44U z|EE&)=-v2an89vz367vy{|jbdwhiIA=4i*g&}}#ZUD8Ep1Rh8C{}$`+|GgA!@C$T? zf1)$U@>DQC8i|r zq9i)Px$%M3(P!iRSI~j%K@XB|uqpnGeX+{ZIa2>t>;mlUb?lCfp9x905*_%1KXbuQT|n!_o((Tl#su|NXoLo%1HK<^XkM&8i{+@lfe!E#n)TVA3-w~?nm0fr z)fP)*pXb>Bek^8k!56lo1KEeg@OQMMe9wo0RK`lwZ$hsp(Q{%2+QBw-3HHS6-=PD~ z^g{S-7ew2yh8|#Dk`zp?v1o$}&>3z*Be4q`;z2ajc{hb0KssYh>OY_j72O=Ny9t(} z-X7hCqoUK$b{|83es~JaiR9byfg|z4kJyD97tvhkv?b)m9ca>wMjM)pZo@~=kUx$- z|2p~$jRWYCoIyjKcrpC`Kr3uSeHGSl|9?fneOYj8h(PgZ2D&6YqGRIqdFafZMQ5-B z{R$q8_y0l%a^*`QGNsUZ8%$tNG_pxd{rR7H6wKyj=s?z@A$ks7n!V_^;T!a8_ai#6 zKhd?${c`vQlt&}c1rscC3xR zV;wB}O8A9EUoa4$OJ71#t{ zMnn5AI`Sf~=ScleIcwBRN5W}-V$B&LFngt0eb%xG${{aMLdVLTlx+5zsc14 zjU1_e|GOKuqW%*4z$L7T#dqXL{TuF`FhPAIcEtD58D6_H?2ZO#@=ijx*{A4)&Y?5@ z--BzK1pRYW^(f&LUc3?1P*^u;&PBl8P1d(WVu&h~cbxC$Dv z?$`+LM?<~?U4rk>B)k+Y_D*;{nL)t^`k*ry7hR8bd=Q<I^zcKg>1bQeeeNv0FR>seH+~sU!X_p zm3zZUSQ_h7?}3JP3HtsfG_w29fu2QoL;m+25c}^23f}06j(7r^l*`bNJ`?ZnLr=D! z5oIl zy|5Yec{mzBK_k)Tlknm|%%Hv+8{=2;dWl2f{hnyY51|uy4$YYl(A@YIZLj#JVVgGm zl>OhI3!S*o2)CgjI)~1%@Zm6n8_=ccg$;2AdLq7q>3AM}KHHISz?8uz)O%x1T#F6x zvv|GWXW^i`ElI(VtwB$yFVK-+bu?ssE%f8m9o_f+@qai9&GH%O&xEVcnLderrgx&x ze}GQtIQk>rf9PjB_p$I5O)I_TLf;X8F_T3!kC;_(yb2^L!byzA8G9uIK>oj3&{U zEkJW*9s1rrG`WAr)Q{gM;t!$d^KCKp`~N*CxK(PDuV)T7D~D+|%d)U-%~e`hOo6%*wCPnV-fS_&53^S=zTD z+jF6zD}g3eO*EPAjy{T2sBe$;U(uy4@LkA_rs)3fiMBuPyJT3C2f2{o!XxO6wxHYV zT{PKFpdrireR#1TI^bex1S_DS%|Hiu6S|~*HNx>IRq79ru*E;(T z!E4d1u7O74#(2FOI?#L22uwpecosbY_oMBeM&HYHDoiLh`Zc{C{b(iI#KKr~CL7R! zyoUaO@d0+kztMrT{xMwdkFM=J^uSqy9z^TV&_06>a4R~Hz3BVL(dYg~BA873kAg4c z`YCjr9}Q7Sbl)~bPqv$*ccKkViT5AJtEoSS4*Xp-^qZi4m^vuX2M3{{oQUSais)8!#vh_T>wSiHd>VZ}?U#`4SD+CpfKISjv<&)ORZRW& z|3>jfFHCieCfh``=*hq65zHEBoKj zT}?r&N83m5KpUKlcDx9EaT)qGdj>1uDKrTSo(@NALrhTbj%9HoR>3FZ{Uhjs^!I7@ zziXZUw{T=uLvM6J8ytc6;Sw|%ulzkU+z@@QCwf#*K==77G*|Ya2i5n;Mm8h3I8wS=H4gDN+hOb}- zeuaj-_}}6Aw&-)?upvGf{T7>2PnP&6G;jyn@jP^fC(wbVp9?=))j;e0(Qm~(^e3EM zXzpbDH|&;T=nON^>)p{vjX{@c5t>u4U}N|HhZNj?SDX(^Pzqg}4D`V}F@Z^RV5_he zzK1SR+J*2VRvk3d!!Uuf(B1Pi`b~KYo8$XvWb<8g_ptvnD7Y=!p&j;&jzDu`8oq$b z@KK-pFAU@)y03Fz3Kl>+EE=ta4yXeaR0qxO&gg#chrT}qeQ!J(v4`+xdJvGz2umSZ4 z&}7+xj{G8e(q+q>p89iwh0&jICZlWm1Ui6s(H!{(9oQ9F(o^4#nrISE#}@b^cER&m z(vzu?boSdM&vxY zB!zN>_e-I_9;k($2Sbw-{F==|KPv06BW^-xnk7AitN=QI?&$U!iq32%`rLA~!{@LH z?#0S@KGw_U4E65l^K;OgO0J~f44y$}@K$`_lUV;Q*8j$8+)vMyo;q3^U{&gU(19#K zBeot*-q$dJ`!Of}hIR2gnp-t#5))5mp z6zym(I)TM#NFPT-|16q>pQ8iGbwyah5}2EMbxi&HAB`y3aVNBaA<_HL2uwo{jQKbn z7o$m8EN>V{DKs})qVL~=wl@G>>j|;`5SonZ(4~A4lLIJxPhlpu&lmRXVRS7oqBFko z$`HDWI3W}NQ5iRLef$5?Q=jSK`O{PXINf4&iLNe?p60nS7LCw{=ztGnb^HQdiYp7U z|4pKj1=CZ%3cdyHcmaCgY{1g^20D}P(B%3DeJ*#QU~zO`*Fv|~ZRq>+&|R?(eg94D zjvr$Jt6atYw}XyXh3p@TZo^sV!SX1&wp-B zzl-&A=)^9dIg+Dr$c1D<3a(Mfc%gFi1~g0C$9gw(4F{vUVmLapu{Z%|q9M*+BnN z48{cBi$4DtI)Ina2)>U#cN|U1AJO)HK_mTFarVD6|CbAXRx@80lBNhcgWAzfXb#*R zor(^88QSqHXvat5^`Fs5<}4AGq%>O3KqJ>3Tj1al$uN=^xL^ccLL2%Ji{n@5+GV*u zbW|E0SPOKU_C;qj9&f=1Z~z`fbD>em5P@6K_6MR%H4#nLnMn$+@k%sg&!I`T1KkCC zWBqu%|2;auf6&n8E){a%8Z<&B&>7Z^^%iKm-O+*Hg+^>zmfCtdsaT0z00{VWTs-feu z(Tu9>f3v>}7kpp<+Tp$Eew~3HIP1{;{z3Fd^tl|>!qQxg)+?ejz5#8o6FPta==+n< zrCy09Z;Q@;~hFiF9Y6-M`cU33>TLl2%|XakR+`}aw7?cPF@^E33l-_e0xKnIeu zW*As;wEZ$@61PBq3$_~?p=2)#etz#kljKn}WXrJtS^6@LrT$^9@PkLo+F@;{qDi+B zZD>836Wh=b??#v88+71jup;KG69$@rOeC4so`NIlhc+|_9qBl9n>~ak)3aC`-@zC0 zKXm(TsT+Q#JArkmH>?-3e+-&CFJNgrj860t`rh^R{go2?uOo#77al-6T#JTu7uxZM z*Z{x78?Z!!@Dog5yp{S2bcScqCAqR;c)uK)8#U3KXn;oS#^^1W`t!fNC^+LG(fiSe zJQ7_TuP;ZF^#%01zaw6M7u|lx(QW%5+F`C6!t+JZ$W}y?IRkCKHIo1Q4h031=TBc8|w zXEY1V)&=O=ZHf;bL9_lO+R!;P+5U_7b2bVyFMuZBb!f*;(1|rim!?y!-x(d-C>gSJ zIv4EtF?1?#*4s2hN zfLAmT4B8gBz&-h8eh|d3x&qg7q18qJC$KbpOA8X*=+F zY~C_GZ5*D#syMt=dfHH2gB{%eSF{cf_C!OOr%ifVYpj5FJOS9ACJfH z?Er7X*KZCl7VMOs`qM6tV=t~>#JSj`bNKxJgqPD{@h;)FUMhDDk?W1`@Z3stw+y%? zJ@rpEFT%FezsBbDpH}JCFw#-jg!&0wf+cPX$+I0jNZv)Wem{DU9E+Yrv->ABS+jHt zUW6L&O0L$45lzt9<8 zLeGIhy<>xD64u3PI5yUw!Rpk1#?F}N6L!;Rw7vp|;~#z4|Nm0x*Ec=&=lXm03)%Vy z-of>|`iJdv2#w5-=zjhyUcZEH*Zc#*z$&8KuPK(pZs`4~=vQ?m8o^i4h`p1f;E{L& z&HmF^3@;xTXNaz0U9{uYn842HK{Xm(s+s7S{|ve`JFp}kK$rL|`fv#Nuq+zc z4ru6mpb@wajnrb~zkl(E$tc{;g)QiJ{))T8h})qZj6sv`F?0aWVQG8^4e_t&0P_zE zp)Q8zN>wx$>Z2378GUXbrXq|D=szt7W_x}Z~g&B8;Gkpx&z#6o}m(b83N0;PZ zOyFh1!vM>m_Zy+tdtz#>u_E;a=u*9jNq?gGmx42|dr#PgW3U8-3Oh~FmIFkD9xES}NxpK$7;k}9Il1|5}xEEXD1-u2DC+`abSb>gw z0~*@b(4+M;w1Kl|gzAnBAs>uBKNqXvDzxK|(Oqx~Z70vT^wdAwT>))xHoCMMFoDTm zD0pDx86UE;7`kQ^(d@kyo%!9^10O_xCj1J^<3)5^m7NeG(hBXkA9}(~j`d~e0A4|# z{}frGWZD@Dc9dsgc%dXFsAr&|?u`y$ZoI!59q?;tgCAfjhtL6LxFCI#CpN}952mN}&%||fSA97po&OfdZ$wUI|KCGlG6j?APjqJ4r-cEPMQ7GF+6&F% zkysPgq3<0-ch9fr!FBEQFrdz8dn3>zcoDjrUO;o;)#>s3{}~sua-rUg^t48pf!S~p z`jg7ESf3kRfK9l*1YP^%XjcD)c2IX_SgNMz0J@S`~RQ^QPx@EfVmvq4W-bInxIKH0L_Kr=mhRVlQtQB7|o^CUPv8@XsACz z4~B2i1{%%|A#RS|zZE^nhN8(e0d4ppG^-zv^&RNa96$$n67BF3I^lwILIjf6Q?Q}x z=nR^p9SuU0a01%Fe6+zeXy~@0A>EBO_))z6CHma2@p`7YA=|G&pDT+Mu{LskB+~{^ zu)+CghpW(SxHbAdx-?&*GyEl9zx<)F_9f5`>!a;-KqJ}%eQylf;REOZUO*%9MoRYo zp?KkEw4p5XVu;XCUyn9i16}*3=yUDRf%ZZNJ{oO!78=pj=mE6_ef|KtZBL>Rt@ALu zjQ-PFQ)q#Aq9fdluKi9lo8OJ~gXqkTqHFpmdQ@LAKfG5D?YI@Xd%B@Z*&7|mD0GSE zqY-%#Q~&<&*A&e9vsef7JrX)@gSDx5#=$rTOZy!9-7mTztZfr?Al=b{Pe-@qJanc{ zqD!$2o#1XXA_o_+|6ir>Ef<#Js)ZrM^%n)3McbpH?us>VDAvN&=**6w2g(_|9`ipM zp0A4}S=x>05{*YA^e{T0HIK6Y@1yV>7aV!%#i8TMn4n$6qIYrikne?$jx z0S#%cC1C)DouZ^Jd{bM4UkJ)*Irfs57oD0X$7cQb9&burmS50&vH=+^giGF;B zqd#b@M{{F$^e9%L{u}yy@#Uf2>S)I;&;ju zWnK}^_-oPKQ3mT{Z*&QlV_SR%9l$?myE#{e30;K_xEfyJ{%=L06yA!dpK_x!upZav zquKgFynY02@T=%)bVe7^WXhJ$freHG6!7R8iKJXaY zz*Etev^kJqVa{zaE4$CDx1ilPTjHT0lqgASlGI@3P! z{z$Z+*+}G)X-g>>>Wyf_+tG&K#{_u(P<%DbzdcWGnuyhU34sXS( zI0TF1a`Z@k10Co=%;(SlKgJsu(6!9_boiJg(C>K$HpQ;!8ZSi${5*P~?26aFM33gb z(2nvx6FRyc{Wvv1llFFWfMc-;{in^QPy#o^2R?`o{D^jV0qro~v%%}pfz?LWvIBa? z4?~l6K05Pf(2l-9+y4#S_xYa-&zHnxf(xxEcw;cy;W)IzdFTw+#QF}jki7IX>rJkS33g)g~a=>9;HFV71h7p_K^q%@kXwb21I z!UW!eW$-?9#;eh7{4tuW|6*gzv?=_4UsJTd7ttKsvx)t0h(70n9iK+)|Dqk`-W;}P z33MQ3qIJ*)TA|PNL?bd9J$UA!k=cND_zs%fpP}u1k4EC}Bn3mCYfEUL2%0Rl(CybH zdOO--A2bs8qH8}1ZD>{WMRYg3iyiPF+Hvt0gO$;*YeRHbB>Ph6OJPd9@jX_fo_lNf z#bO4Qqdoxb@L_cSzJLyJ2in2g@%qQ;%)gG;(_RYi=RtF#E*j~s*v|dmhk_A!4n3iE z#QOVa2glJ4zeYRy9sS&1!s=N6yk6gE4L+X>!q}+kE-2Z>a z8Z8pX{%OB`Sv{sW(Hn+Yoe3r^fms^!XRCDSm>6{HoW&^@eE9 z^g;5U?4@7?9`FJ#K)2xvwBgO@cG-ny^-=V5{S|J&Q<%Ui?qK zy7!Lon^zOinLmRbSa0oM{$BWw3l88S`kl_UGyFoMDw^%Lq1&=Ax-_HE5U)ma=I!W5 zX!3oIChd7Fi>2NS=fh1{k@^GZ(!KCzGR*LOE|?TwqT8&{uJAxbOzm@YpgplNjz%N2 z4xPz%Y>g+dIhK1X%zQZZralMz;V$p4oSF@2x3JES`dpoRsDKrvQ&>X0Po@njS zNQ^>rWFndy)6vK*MhEy5y0$wpf#1gK+209EbuAjP66jJVD^n;#p&^#WfoKRHLig!2 z=z}k#YyCDl^Y`QRlV}8fM+cC9Pl#N3^t@<+zCRF6-cjfT$A|05vrYL(4;+p9zZA2_tV}pN7#RtQD{WH z8rtDVG@HkwBcFk0|D))O%g{4^4SH0+hR*0H`ux|}7JtJVvBBPOe-65Y3(@3Vfu-F4 zZ&GN0KcF)z`F=RT+Ttwgv#}!<{2*lSAWY2=-JZ{(1KEWx#aHOevwj#NQwmc{jONBb zOl@OK{rA6>6l~yycw;{rs;^`H5_+Iqxi743TdZV5=s*^s`}|pSd%hRzXVK)ma({U4 zdNj8hpb_l0pZ)KejpTwOn}Lq}S#$vV(SiMpZ7|n?Q16O9HyVw=Vzi^D(SdA7-}?;R z|No#la@|K^=5^8M+I__Sw=jqchJFgV-#4NI+ld}XhtLscIvBhLeZD&S{B7tFemDBw zB&>~#&`^JfPUr;sbHYV*z=e_@hZ|)vwOwL;AllG_=nIdbGuVuF_#QfdFVUH1`y_O9 zJzB4gcGwk-)JXKbMQDyZjkcHE7cYE^xw(+zP#9T(XlXRWb))Uk?ClfpPsN(l7o$1y zAvVJ7pN3u35M&hSfzx;?1VE37xh`vddB;AL`R`V@8npY7wgN>_co%DdjlQ7Zghg5e$M{)#o&+gO(et1Mf_-*toI*`l02^|$hkJhTu4rqgSVk4Z24(J^;7d}Hf{t0d8Ji7g^ z{FcwM`@a%}s(1_9@yzH_w4tZb7v4YzdK6uR$PLfXgB^4ehMCjCeuo^!DlgnJJ11~ zK->8l9bn#5;d%))IV+!vKmRx2f+6aJHrNk6*+#_cbI}N`z#6z8Yhu#g3feztRF-N@_F<$ z+F+(%gL%-UDvVC-rg(h-+Rg}Mnm2FFMfy#{2CotmeXM-h0&#{ zhd$RHooQdRgR$uI)6w=HN6&*T==ty-lK&(H1<&x`u_gY6Mx?=SVJ2lRoeS1%Ld00e$fh+R!;n zVDY~~5;j4fAA}x6qtI-hi=Kc_p&yyI(1D%A1ZF-H2ZAnHW%T(bXW0K`D0Jt7Sw0nw z#M9^!ycg?7(2mcd9cDfoB2YA1A6@HPaWW1^*ZL21AUXaH11^o_sW(C+IP`D!e{~8o z*pnepu!}C}Li~bY-fWeLE3>TsidJ#?9<7foGLkE)UTzJ0(8mSg&WP71Y`XD-h zXOr=Py=W4hL>v4aO}6vsjC21R*0>DX@$JzEu^aWL(THU~A3|FIjcDaq?}A45ZZzU^ z(E%r4qTrewL-+HqSRB(XgrvI;9dUc~g?rKLT^{RCVS@TT^vFJq4lw7%kYv@+iQIuM z#eL{R7b6i#rmdsk+P;U5@DLipKhchJ{TD`D6J5KWn7~<>fls3i|AZAW=cO=#I%tTy zp){3iO`=V-((Mhj;N z&(}pG(iYujL(n9gf-cdDcz+wF{{G)#3N~~G&C>s64Kt~YcH9$PilOL1^eB4NzKMqR z2)gE(vW1SzqRH3_jl?bJZkm7&{Bd+3JF@Zj9}LA&E|?^Lpi7V?d(PBvxs=5L)GJ{_ zT!@DFAi8bOVFp&bENAMBzYFbPGTPqicztuc{tmhX-^F^49Q^lBA1sq2XKEMJMQ7X& zz1}T)XS_cF{g}){KRRpCCE121@h6zT6VXiRp}p%c8`rC#1FVI%!=Eh+p&WvSb}|~$ zXYevSgud`OdM;eV%6M7MoT(qbYoi~P8__Cb^He$0W7q3^FokLKr)c9Lnk zLm}+|dJr8)BXJrX={31S!)4HV1FVQ`&<^gyO85x&$2a5sQkRFM?2JA?0gb>$bRe(d zj3(7`bQ^8Mnz#pz&_#46dGm(cNuUkZMxSpU?Tju-KXl3N zMYrLD=m6JaGC^Srg?ji2I>IaRg%_?tA1oE?)uS0$f$MG24(~%FGaVh^Ds*>jL38L` zH2V*tOM3*{V3sS{{}wu2nKSh#pq8Kq&&0CQDZ%9fM3>~*XUl@XB^&0djJ&Y#VS!{+S3x#bs z1buEP*1`RlfjO?qnbrtfq4k;Qgx*6BvRqe(Txp%8;88jZU8||+QM?2_2VTYmp1@+5 z>6)CWUkMe*YScT$`ZTOeeH)r9Kj1PfS~zt4DmI~hA=WdBgm#jXDcH~!Y=qxoeJp)# z&eY#_>xZqVuR)XZCv;7-7Y#|57d;<}q9^8cm>H|1xl{{X`^M;mTE_dsF_Zg$WV|pM z2lK#v=yv%U&FX*9hO-w7^+H&ZdP%f{w&-r@isrxwbb#YxeF~byb7Fl7+U{yh{r^9n zr{IV`KxeW));~s<encD2k;s|$HeQLIY)8-~{0e>kA9TCrE*=JS6}nv$=x(Wk zK9_+#k`y{oFdH|a4edrdI)-kmZ_y+5zgRDPUHFRCKpXCgJ~t43KZ!={QFNwHqD#6J z-4(y12UeXD?0>i4O%x3IGIZpd&<3}oBmNW}@wb@3b7%+GT%R-bZ$_2JUeqU`6FH9M z@iaPs!X?8%%c7C2i}rI%N%p@-Z@>7!Xmm}dqUXTF=yrP%UBh$e46~QYnfh(CYtf|} ziZ0#V=zvE?AHXWq=cDiK!t3xebYK@sB}0cfONVbjfoN%T#&ywc*B%|%UGe&TXawfO z`UrWlD7dfR!8`CP^Z;pHKJ42hx~5an z7aof~jz(ZTnuIT-OR)z%G54bT{uJ8rX*8*`RtPiCgDh1t?K%qOxKR}!!|v#J{S3NB zS5yoQU5g&gCD4%G9t!p4NL7qB#JukR_7sX^Pc(Fs z&=Ee44&)Vd?cYWRaxD4-_NIOYU81g4!t;aCH*HsT8JBd4}SE&&i{taz7N6j$6dgw0ch;?upnq)iB0eylF^aQ%3|DwrQv{uNK z>(S?H)?)vgJZ<8I+tCMyqXQd*MrIe<@TcfZzD9r6ORF80tRxz-X6RAf4UO2n==OXh zx((fyUtoDGlB^R#(F#j(VKkP;<>&#j8(ZTUw84zJVP@UXkdHz;n1klfW~_^!pt+K# zUiitUFq&JT%}80j@=0~OH@YN0dgj7Fj- z8i|qUT0er$>~VDIHlfM(5_v`w^ zHlPh|MkDejI-rwS2LHhX7H<;XYl05!cDxzyLXY~LP1ye#6mDx8w!;$qn)=(=6*n}? znfl{2m+&s?&70>;{cm=*pkK#EEy58z9B-h$4Ba(HV?9^P@G)x>orDhXCG3n}woHZx zYP1STHUt}UV=6v~d+-))+dAxuwdfiiLAU9D*al0r3D@tzdej$VZ#;+|MAh4d2)9R< zq$j#NmM1B6qHqdruwlF40CXSE#Z9;e@58a}!_RVm;C||rI`GlS#6Zy9lKG}EkfPX| zdNX_)*WtT7*Rf+x9^yy0PGKpMg}dZT{cZPQ*o6n*#qn6QYtFQ1a49z6#g?~(rI>PS z&eZ=SZZFp0euLX`rVYb;Fo7q~ZJeoF&eWfNxeATQAauK~#kTkhGL&Rm-P^-2K$>B7 zZrqFRf~PToJFqyOK(}G$?xBOL&>2@oueU|FUmvWEQ_+vjcC_8Uuqu}65$uMg{q_GG z3hvhz(JcK4Q`wAW|3BCqv-b>3(+(?AABB~04HmK4|KPF2tft%5Ye2m`z4UNc^1Hw#8qsiG4ufxf){zUW( z?8Eh|28L}p4$D!01&z=*=s}d@4)(t%SgAY0N!A?wnDj>*o{0&3Cf@%L9njBc$ny*e zA+CfbT_a53Eofx!Lq9f;pa<9zbRe72em@_S49RwZ3$9t-!J*++=m|IoO|tQ5L>6NM zd=ZVv?`X1S9};GC4fK6Yg)Y^)czq9=V_%@{oelSsX@!S{h8v>$_$C~K1JMUR zM?bfj?+zX3K@X6|SPSQ(YrGp>lK0V$Phjf3;h~-fop}{>fb}r-|Nrhn!3Rf1lW3OC zMhEmf-iUAG04#7%_}q?1mud$3nO==Ga3ea9FQb28JQlj$%TnKSWzuF+xlT#L=P-UXe=Qgqj>L4Us3f%bC%egDhR z?ElIX&Tzq#uH=}QMCksXg^u`HOyHY10l!8g*6ZGIz&wa$sP94#rk~Idm%J}Ts3Df3 zJ_s{#9@fYG_p$#gP{=hl{6J9$UBf}>cX|bO#bekRtBngkPEW^P)Hk6^ly7`El53+8 z9UL8jPGEd=9vYFgXhe4=Dfq%6bU%K9uI(wj95YV{_w%9+U5#dYMRd(;pi9yi-JZSB z17-xe9p|Ilb3?qp8(q@F*c_9mD40Z*Cx(u?VS;);bY@e~P;W$!+1qBGi!cK8vx?apFV%>Fzx8g+lPdiD$HR|(V_-akW%+wd7xv&(C z%oenxchFFNj7H`-I>XFU!T^e+OVt8xcOcr%1L(w-q5J=NOlGC9mx3eSkB0C|G#O7t z|BCl7p`pKGYWSUy+tGpcz%1Asjb#5=9~r$D&5iNsww{hgbmLU^za78E1=sfdc;hrW z!nA2&AcfKGQVJb#eYC+wXhhnf+v+y-y)kGK&PQ|PDRk}kpc6b5{c{>gif|pm>yk<&h%MyV6USceT0VmbTrqDu#HQj1FMPtU~&^Wpdm>LzAy*f zRvXY6?LcSn0ou_w=vx1Y&fw~qAu=V<=PIG+MGLf}&hh%)*pT{kY>aQC1GsEfh+wif z1skl0&Y(7$BwcVi4#t}JJ37Qs7054)0dI8_`I1iw;BI ze*m4x9K789|0D(X>sIu|L)ZXMpd-F^UO4lsp#!OlHgF>*a0oWT+33se3Ih;auE=YvzZ~!L|J42|S? zbSb7_0vDkXeF;5L-$Qfl*dy$JLw+tkkYho}&cf*RnrJdLL)WY~I`XmTfLEZ~=p!_= zf1;7Oi2eX_)xr?L1lmqbG$I|*feu*6{x>^^als{+hK_7KdY12w*H2-BditV}z2(pj z8>1byMI+M*ooPRGren|n&%k||_=OC*q~jNd`wu56q>?RO*c$75V*O~W|BP;%OK3+0 z9}AX3XHqMgfkvPeI^%w5he>om3uApf8j0j<6ill9X!3lEhC1_-5Zc06o_a$xIR~Q+ zjY0=B4UNPKbXPoyF5Q-Re^Q?tHX`7e9OX5vlZ|$ zt}jA6sI)u`pdMDE-VPmbGWr-g<4tH}-a#X_A0612=zxF4MC$ub!6dqRMff_^N7ue5 zdi}w8eH|KschT(r7;nIDuo9M78A5(D8qs0s^(pAly#@w8|E&ofG(;nLD^|vd=zGti{Tx`s{x|!N zalxee6ewP9Q3MGuy%(2h%@&)yU=Yo6766-nky^O=QpC;dOQ03F?5N( zTAK_v{^o)|Ru_08gt7>lJXO&(tcR}IV03^pu|6)r(Rc{`{I*>eLVO!$qCOro<3!AY zlhF64pb=e|q~MFMqa)snKKLp6;!!kIpJP`10sG)DI2>!l{$6N~4MY1$&ZXeY=A#4Hgl6}4H1zw>q&gPwpGKGJe7t}8hS1#gVn`=SFH9`Daal9NCGPa(mL?dS_%;OqDU_QQ2gh2Mfr-EIaqca(fHZ%hb?FuwfyU^{m zFV=sE^}k|0&oiODYp_4hl|v&s51r_8tmOV*PrYvL~Ek& zwZRH_8`j2YXghD96WNPK=t#W&IXduDm~>lZc`h_mBw8LFX+8ABYKb=36W#Aa(6xLR zJs+Nqz8n1(-94F~58E#n8p)z)d$rK^+dt3#cZA)z;EV^MGa45kn29Feqv!xO#``bf zMCxy232gd8c<&Ch;W6mM9z@$;jxO!Sc>h&&Kzm+b|J&i0TyQ48qA%v!6kfa@-3`^S z3^qj%l%er{5`Awjnp_*v_qU=;wGZv+B-+k-bRfAmhXbfcl7b_whDM+fx*cyuLp%bj z<6Ly0Z=%l~Ku@r*(T4v)PsH>s@uWnP^#=4r?1%O<4SjwgCNQ~ z0Qp}GBd(0rGte1zL$~1wbP2|w16qp3@db404#xZ6q3!0}8kXq#Apidt3Z=MlL%cBn z9nc80gZb#l7opo`EgI@)vEu)^It%b9k2YK{37+8Yi#r5&E$;5_E-h}0yS2DOaf(x1 z3KVxJ?i6>2;^%&L-ux%$%+>8ZGvCbXGrI{Pz->?|d0@{!K^Yjh#nns_sFb9KD$3$e z?-k`?BEA1tr<0k9j!?xj14_UWs8sBN3gLCAT>pStmvpQ1JR?+ODns4r?VyTvGE_?D zLND9~bqudS|3wG=|NhS-b$IXvN^$gUE|lq@<_kkvT-8_?%7CU&A?^g_z+k9UtcFVE z8K{uohbp=sP$`PB-9tMgDS!vP##Z*ZQ*Lz6vo}<4C=9q^DlwJnb5n}L@0}=K^d?L%Hlmx9^Zk=?Pn;( z5qGIZ_|0nA_QS6jV)2hmyC^M@Q%MxIK6Ub-si5MD_o2`Q%WB^@chH zgP=k_9;z6Z!vgRCECs*A8t|vT+@Bduha(x^gdy0vLcK}+1QpT-P{q^%DrCPvg>XF7aa#d(ADn?o%{8dg@(?OTFQFnAaL~z( z2_+}JpPc{VbTTkeA8Nx;msK{}5gLQy9ZquQPXFF6)T!9MdODMyFPq=Y5 zC<7`&oq{G%#WfRZ-6|+WCv5x_YJIemPQLdf=U<)_XF|uYHp~S3K`CBp+zC|^XQ4cd zaLPp@KkUG`Caeqhz=<&aY4>%*QW(PcJX8%uIO8H&1?rTv@X@JErz@1_yP-DRhB6@5 zS*I{P%+0s~ED9&t{3)o@67HOPH%tg~FfIe-P#>t8ng>-Yo1x^~fQp1K_CL;&v``mK zPN>3m%H0O2V|fkghIO_H=9zx`ixsZRsSxiVmb^}jF+KO_YA7I!d-Nq|5HGnnzXPt%m!uf zGN^r9pzecXFt*1FySCrhqE)!cg~0)9ajnS>BHcSw0-9>Zd_%`~xaAhoM4t z%f@e@1Vz2!=CeXMP#nsEx=@Dpf|5HLO5QA}>fa2t|H%!`zZOKh>Ap>#94cpxpw4G^ zD1!z;rDCd$w?G+o!p8TYF0#*1`_tcYMO_%`RJ4T^-~>1xUWW5wYu{}bs_=K*!pu+# zt3w^Hwop0lWn&+dVH05lI0wqJMNppaw)yK&>;5&qgt~yfLZznkzwS8tI?>6-L=UJC zE{5`82h0agLmi(;cO4Tz6>EB^loWz`&!_@*tQtVAZ)fZSbq|b&a%{DY_d_D@^E_}J z&qrhAdoI+8pad0yI))XY6t#n@{vI~=L8WjU>;&h+9x%#%_aj_`U>?Q+58Uy~4<)xc z^ndNK2zx#3Nyh{k#8?ulYh$F-A>jyxU*W$8+&ob85Ed=ctx`5~0x z7f=QUzH*_A12yl3ibx(~C8$%<5@v^8pcKxBdK=yiCC7J=j*8_1RBm2DRqHof5c9R0 z_d;DbS)ml>g34hzC<9wV3GM_Xrw7#O83Oetv<}L#OHf7q3TDyy4|wA&%?=fbf>1?P z56a?h_IwhQ!r9OZw?YZJ45j!9l;Srw{{u#59P6$7M3oro{-_8gr!MrL{~mO7UME6r zSPLa+E0pC2Z2lS4y7#aajQ7rciPiyn8UGEt!h3KTto7cd@C#I}1b=XU{iYODB*wv# zz5qT@&`}jX{Lfh${gW%UVo<4Q2NlZxuo7Geb!t99r6l%eXIMh$Wt<->BK2WP*c>Wl z!=NHI6UvcQ(5Lf$jE-vH1ynAhd~wwr6RJp3Kow_pC_z6N>p`WcGt}uA5A|NM8Orc` zQ2RbY85H!@$&Uk7+=;(({-q!@6Z#xb2rh=Dp#(g(gy_C6B|Nt_?+qXnswQoDrzGF}q+BvAmK7uMj-xqrjHz3G=JTgJmKwc=pMW75S z3$?KkROq`xMa&0f=mMzYwZ_KV;Y!Abq4swVbaF>R$(aB#(C1m`I-U(sg7!lha0bfq zOHc}LL3#WV%ERwapW$ML5Axp|xuDinhpLt4P{r35D#8<>6wij*zXqn&=l{RxWMtw# z^uibsg8VrSff7_1N>FPk0ezti8xNJssZdw#JQyCXfLgZ(>Ui#j3iTnVnz;q#$Y&TH z{hlZhouKHjGvfrXAshh}i91l9J%Z)ne^5X3T_TdpY3azW*cw79`WedLaZvjg7?&B> zKo#eo(Es~?j?up>+d*T9_cJe1-{QC&)- zL)Ac1sQo#N<)a3<@BcMtLYDW3Dypea$L&v;1zv{Ab%Y={p8-l?C72fe0<*$dFgH95 zwf`&B@%07=`M(-22sPgn>Si1k%X38mM!pN_s!a22X3en5E?KbA8n zFO)&GVFox97KMM<^CwXIqr`R|WrO_~S27-kT^W~*6XgGLej^;pI5=*Qe$3bBnM6mH zM~oNb|CfsLL*;Y^ECP2!<^Bsy50l4thLwQ|VQVPEhd~wDY^dT~2j$3dsC7@F-_Qgu zqS;^yo&WlDw4g6k3T8kF+5(m1<4}U`7{euWwU81jgoU9ZR0}EV&m{hoS{jfB2pO2 zu$nd=Y~vYF4j+I%DfpL;JdKdlg(wMB6&HsR)EKJhdO#hU2~g|T!MyMwlp$Y@@sqi6 z2$TU8phDjp>VB9Db>p5+#`zDS^N9%w&XhdJQxR5z72r&$oZp2~6qLdVDhXwHTUZi~ zg)-nI)Vtn8s1*JOM*+JSY3;D3^<&JlF~S_W+a!@9cS$ zR8C<^sA9|rrLa7dVGUp>*a_-_xdQ9MD5>4sa!V+~y21j`2Xznlw$qtP=P;DOMrnfl zzqPtElp!0SJUjyx$}3RoUO}ZGTw0f+G*AjE85==Gs1uZ&9#F?}3Y5d^+`P|om`(>K z9>6ZJdOCOR_ri&czr)dRLV9=S$IrmAVO#{ZfSuqBcp9q6+GcbHj)(e^YaUdnk3vQC zIt&M2!vLNCw{%qPA7C(ylgVxHLghXe)O-<}uK-m8jiEx=9O{!#SE%CZ54CS3l)}kS z>zBe|a3$2fteN?IfPPOQItpnCsC%FWtOxr;h4?&_;Ezyuct92x@>no8;{s5}steTf zMNlDL4;AtwHh&K)m2aU8`wD$p7%QvuIHR#JR54bC^1MCt!d_6G&44=pi=Y&2wedet z`ySgkFq<DddP;W|$p^n=Hs49LB zm6EtQoT7YCp{xuQ+7?iTb%f2}3aH|alGA+_>;a{(A5=uf`shf&Jg5t3qb)dO3ob&X z=rNQ5;c__vUZ@*01ZutpR8e(@`sn3@{vx#JlcCnHgNoo;s7U$V(^2&Y<#viPKs_i9 zm8&{X2DXJd{{x_o-xTPD`)&R%R4sgly0YWvagi$urML;yMKu^o{%;UNe4Z6_RNW__ zJiP=JiI-5H0|N89`HWB@E&=s6TLCIngWy0o1A1Y+e9qv!P@%5~<=_^m{r^Bk=sNWO z`#*Q-D0Cm87e>hMa+40q^8!$xQ;agY+7J&r|I?wvRLX1Bca~2Bn{2Pw*4ofp%y@8?<@ z-U;RDU6>EPgt=k*pPb>1pw`WVx}x{O67c>{od4=tSjwH_zQ*0K4D;bi2l@Z%WI3qu zMX2+htc)8shuXga7KERnB9fV# z@k^+jr>Ps{|3QOBP#)fejbQY8LH@r%)e)*V_e0gdZJ1f-KSF(XPIExzaxRpGFJL-Y ztbzNC*9NK>S3(Jj(9nHFlp2<2TpbR8bD)YkVI${QZOBFA=>t*dnG27>BQUGp|EDx| zp6!F$_#Z3@^E7cq(+75Bd;_W`$~Se@I}?U5z6vwIpk^-AxuHC70OiP5SQkca?k=Kc za6IFIu#V1u)E3Ud=FlH{sCT_}&w^sOmld)59nBJa!j%42!{L%>M!_!}C!0L#nP$Uc0WGe}(1{6TiSH-CR`%Bx;Lo`P;Wv_p(4=}O71+UbvvL8xD9n&1A4hn zM!te{bUeyK-SM5FJR1*Hy(^${{t43^T||mOZR`Z);S{J-vJ=XIi%>Q5*`CMk z=jIC=n?XflIMljT(Es~C573d~$Mztgzgv(LNgo7d-J$r=TB{0l!17KLNckV3S3IJT{KmhXbN{gr6Tcg zmx5eSp{)$Nz+a$h;$J9%pP>v58R2TAIg}$4VGg*`=C46{9C@S*eF&7ErX%rC=dceG z3fXF?;)!*wt^RxGKoCIa4Zxv!5>hO%QV%^mx6Mn1=ML71Qm&6qR#&pIU3n9?bfY^bs4{es{XQb+`H%`C_^v9l<*_e^F(tw|E1|P zpX-jvawx@Lpca&z=Tb5j7G}I1Hi92uGgx!J`=IhCl%XjWxUZO6z}}2+8|y7}kvIbf zF#jDEf&CY8{&kUTU*z}_%G0#JyA7?Oie?JbDLDvLT+g69O0?LW|NKy)Z3p#y7Sv67 z2+EvMD(YA(odJblW5z?_3V0hT^1d;voX4l(JtkuO5#*T%-@$C* z_?mFF`$A;j8mBn_TK5IUT&QDo1Ioh;>s%zdLV3QxxC<6#dvdZ1bOx`4%y@cyn!Vc=lIi|f?r^C)=h#J;rz|6czbSj@-D&dtdG0R zUAZHn-c7H-dhiwW|Nf8i+nr@?VOJhZfE(dAs9dh!5ybEA##5-feBLhi9n;rPMKp4E zkpBmc4nP%Gfj#cMVGBIOIQCyo{uLOL@eeo{#@x#nw>tm7(h*bab2(f9BQyRCm9xP8 zt_Yh$LgtwQC&SxtEbRWb<5%OT18yAqpyNEK^%)MiZ$NH`8W%Z?UUg2<5t|-yd}SPR z)Qw{wb6jl9eLTqjYjh7n?W=vl-HZ>Q-rWkHbVWT0>Z{`SP#<6_oN_noP^fp!U8gwz zy3?OAp|{gWr`=uO5~?OKZg2b6zhij@R2T1Pi?Td4iNLMd7V^)9y&Dl*4y zeAoCD`hWj#ygP1VPN>k7gmGYPsH?O+lp&*y%WVFD@h((o1O9d2a!m`PGR_X=X+fw6 zRI_mlV;|`M_dh1u#0ujc7|e$AFdDpL^Dkjs#u4s1!HJC_P{maS%7JE3H{CB#4vd9z zV5N-@8y`UbpZ`U;=M-ju3UMB&uTUC5g?0?g1UK3ECQQLN@_ok)Q0vM;730rPwK5x~ zhJV9!@F7eIqd#z|3wgl#mxXnh&;`*GDu-*Ja<<#X7hrM5_n|_Y?x9Oj4ye;m8tR-6 zhpL_RPzIiaO67AX#o->g+DHvG&i%;eilhz`%28J+1BO5u@GDeES3(ulE+_*|Lao0H zm8vK9{3Fz7y~vN<2a+_#wosp#RvGWY5{#4jp17N?36v*u;7{->)VJ4?KMnFMhc%&c z`UUC>kl4>$4Wxvsk$g}&E^YHIq3(^oPzJ7nIt@FZBL0uj_lAznajfUgv&2vW(?T7~ zTu>1y1|z|$P(@f5N?|ACSg44sfQsA>$ocl1gNooK*cv{8l3(pbkpAYh&(nm?Tqe%L z+pzmfXGo1#&Va^H8`?ufrZ;Q^cfw^b;cNG<`4JN|RI3-`%c933hp37~SB8cJ|s zsG_S6byN0)y2|H3DOv=T^S^9-6Y6663jII-8~d~KAOqCKyike?Lsfk_sH(3Ib(~rm z`#^a(9%|nLs9ISHW#DGxDX5xw2z62YfRdl+3+G>*v|pT}98eceNtg$AhpFLmm>wR7 zQt%ea^T4m};_*V&NCl`FLB%K2B31b%Y{lz>uH11d!Q zpmIDJ>VwJxs8H^J5^x1-eT46Be^#iF7lm5a$k-pM_+~>z^dBe#@A+&Z{14|rJSc^! zq0VhisG=!m&znOj=xUq*CGZcZ6zzhF*kPzhJvDxTiiD&}ZUX+Vn(?Kfqw`!G%H!Hl z3Om9~Z~|1$w?PR!0rhTo9je%VK&32gxM2Tcir_J*$lQm#*Z4f) z1Kh%lP&v#CC7=|PryZb<fK8HGHM+1ZX#dHSBuqRNF_zY!mPr(YvK#7M?HrVcUttK$9Km_i2*kamKq_Q8Y-3MoCFo}Wl%-6A1YOkppM~ZCzuq8G*lv4j2Jt}708T>BZ9z}AdU**JF`_q+*= z!2D^>BxYEP*uDQW`%!4S^OHRC}YNTRbLn?GR>i${|wKTz3u)m zCQRUtTMnrC5m55xLm9Fj`v3jk12%C1%CpB%=l(PF!ng_DRhkFNkkU{&ZDjL(pcIUT zs-Z^dIj#pQEFc3ClJOS$bzJNLf z6_N$}zn%UwRLFNh73~G62;GK~_W=gNNXeZ+L2v})#8Ab&5bA#LouE^SPPh~G_O;f7V6mMg-S&oD380_cmmYE6%e^T&tG(YXW|M} zkqk)bayHwz3(E7GP>Ld^a!hW_3uSN>SQK`LUbr60kh4&ceGO~EA5f{QnL3!CFXa3U zr1Ox8;506z?_eax(b5L{KZeJHGOQ6)sQW=L906t6GN`IQ1*PyV%mf3|IYYBSMX(Ii zsb~h@!ilgE`aMI_yNlx%%*Qw|gDaXsP{mgfDyJQw4CxP*idirZTnBYp?n8wq&lBIt!H zp%fg0^88<@h3}xM{|i)ZBj#{5ks2zLrJ&@UL&-e^kgxs=7NGN7?*hC1s9gO86|##^ivEQ~;A^O3m_5In?+0}+jDeCj4@%x9 zsA4_<^{#l)cr`!gUxIHkQ5-&jMPcRw!Jdk+18ferz^*W1!C?P4t470|jMEl!>+8Y0 zjAy{9;kcp;yVS%i>Qa~lN^u4oXMsvx0UsTm+fqdEx2(>;!IX8|9b#o?! z{?GqjItpD5s86${;Q(0CcmzsO>GCcj)u0S*Y2!gqihqSNa6Z(1u@)A9m!J%cRl!|6 zsi9I(xdP{37fdTAy2D{`B**7HRA>iOay79D>SntIwf+HAjYO#IJV^y*U?!;4<$?KN zO(;3zU?I34%Jc6~rz&Ci8Xpx+fk&ML2N{w=NshxVXm0L=z$?HK|Q~rK2JG1dK2=& zl<*+bo5VxdAI7NfE{t(d$L9eY0<$#;_H=^l;S!jvp*!FEVQ0pP8wGm?!O^e^jMO;T z|MSIlU{l5`U`L(*$W4O%e}3NsHsZl!*cO&)>fQs^!s3iS!@jUkvtZ9*xEbn#8Q477 z{}+*hTKI1?PZy{nJqfeJXHXs|ZRt{18D?eN1V+^PA5SMC$(jOnRjzL3isv*;!T2f6 z2!mR?s?Gy7?hJJbWIR&#qZ(DbNRB7i@G90QlR>JD=HuV4bU(WXKMyd@Z za3Rz=-VL+ClTg+C73P8oJ2=6WpgbH3RT~>&I`|N(W}WRz;}PjDh-O^|2%8 zKP8&!3D3e(ux$5W|4&Gahrcqu<)gEMPWPXkAz6NLEDrUtxfU!28$%V{JlF-c?%|%F zhnl|ue}hYVy6=+Z?-lH+#JB@g@ok00;UlQrXYB1#?(0uSSL-3z2%dzpJX0T61C?M` z#*LufR8GKX@G{he@&M|d_|N8}^>sID5*Ug3Og7GG;}TF2E)OYopQk+?iq$h7%HxSp zie^BiWHD5+?1kER4@z+Oe$Iek7@l!*sJlNk)VdN-McW+eI1YqzY%Y}Hdtf-7|1)%S zrJjRQbQh|cBlUMVEexYD?hB*CVNh4`Z&2@+e?S?&0qQf}4k!cnKq))~z3>rKQAQcy z49fB63W{OwbGUww(@kg;F>j z>cW}_W#Aep1Ghk>Vn39^V^9u%gK{uvFdcnRh&9+vl!pp+RU3DJibyx82#km6;Q}bd zhoK^O3Mvw3pbWcZ&m#_Ta-%^NX&k7CCN!q?(UCOzo3h{QB6<&d9VWgq1*s?-Jwg%LV+73$JZ%~o)Eu^E+t%UM$JCvdmQ0Mw0l!B*F z9s~_@MHmxmeHvpvsC^ZnLSG9iGR>fBp#{|b&QON_3`sS=|AUUIe2?)WRIXn@35q@3 z&NozuQyX(a<+cQrq2-|>)&$D1-cYqQ7JA`2D38zB^DB@)|K|PK-{A&>5)^)fVs=H&pH_L3vsqdSOc#0Ea_ewWFXM*al_bb*PlygWC5LO3r&2fPPQFNOztiK!qv; zlqb2MLSG3g5}lylz4}1iXp>+{xE9LrGf?~QLxuVkR3zR*84`Jvi(pKsaSG`F_rKE9 zk>C)hoRx(VR36ImT2P^D2z67of-0(>P#4lTC_@%N$=PS)%TOOoK0_H8ceIn65z4^a zqdEVj=@ei>A@f0PSPbR)Zm5vmu<=7E10s!a>k~qSyf9RRIzt)U7bpahhI@}L@2XzM^3*vICF!a&BOVNp09swR#@y*E5DMjP+$ zi4Z8y=V8@NUMumE-}2`1WkBjTG+rY9^6=T>lk34SU`36}1?&SFiURSh`R-c5gR;+1*V0%6^WJJ~{6hCC{JJ)4r zLT1yHlxpGU}tABsDJQJN*TobF` zq4YJcxd@ug<{=o8mW}n9TkYi@r+V%%_bc92*O{`$S79EGxhEIOM&QU392$p#;fdg2 zWTnI4KI~JAN54PMu4A~b5X#k7qdWmt^=IP(LUx;t$93P*{`C6cX@j>5$(z~|lr2J8 z79yn98e?{O`GS;lTY>q-=4~Q8uVLYCjpDJE;_u=3g2(^&FW9^ki!ZXFFv72)SPkPm z{D_xlEDO~dYJzqRFWwQEvaFkfz-Ab|93%Q;bQ_Dv3Bv!Ymvc^3d(aPU*{v9x5D~Sb zskwho>1LoUXK_S~sEvZ@EbNQ7TL_a{4We|Gb>;DT7xPW|FXU!(JcklCL(__4$LE!TYQ8gH=A3N-xLVFj7O2^XVOKx3Ubs5CB@+* z1fF5TRSb(j_=i}?I-#r`-h{Rd7+Z)u{~){t!^~$z-eXdsHia->!l0g3GchePoiQw# z*T01L(}J;R4GZ6gv0n3Q5wMTVRoIvwp&tl$Jq)Tyk$q&(MK3Ai**VhF8)HvlcykOb ziVG8(K)@9QKj%RVJUNH(=vu($tSI>xg-Ljx1i=f5 zP%566MYvi*=GDfrw>K$ENREGC@C05pSg+QAS8R)79At*J5;_&=_tZgXHH7xy)sT=* zrpTI*o6A~YjW7HBt&x||VdMrB)h0#vn7xJP|6%Cw7&Y1|`yB>_w&Seb7f3O}xa{rA z`sBO{VT`X0;R)uVF2(**Fv@O4||MNmI~PTa&vYGDHcd$DxtY$n4ba@>qR54vk<^s2ab6j_{;ia(-2VG87> zM{X%}?WbZsvbP{Qe+x%lRSi==GC9Zn3ws45ttRvX8DL55GiS7r&8s4X$CN17-6{!C9xum6!} zK9=vqs3QnXj=(7>x$hqN|Gxs`@}uk`Yr?id7{8TJ^NV3UXLxz<; zc%GR3m07oyx#v7D#B;Tx;r-{Df+7X)u`WFe@=$CE7_Y|C#>_?HFsL;nDqk62!JyEV z0YlZQpkxRN=JN_qKQ57c!Ug@+>woN-!`w+6s)$2RaZv3L#oJZiS4_@CJ06t4gLNp# zj90TbxjRYC9aDA}BUT}>h1JRn)~g-kc|+#fVsv*5-XF+Y524<|{%B@+e)>yUdxEs7 zmGDyNMDsoSdgPO7-jmIX;Yn7#b)aL2;%3VdV zT2HL+fwvC{Z7~Gz;*}GHhY|9HmmY`4maokL%x+Y)q#pLJE-k^1RgASgzC`$|ki0SU(FzxnKZZ#>c2b z7!(NyYOud6dmdmwM-)Y*kdsjld+>TPhAd$m+9I;A3lTiU#4_E^PY@c>%b&UufdsfY zpZ;D8bvB-zLf~@dZsK7D1jR zv(sOTfxcZRt%Voiy;zJ@y9n12yeZFuYFJ(#rSTD zw~P5o>`97Y(@{1GLo+iU6z2X|iVVNJNaX*cm*T*HTvX&)`c(;`4{t`GJO;0bD9MD- z+4R*S;8k*t>U-Agp-AUobZJh)EYdieRLmzDrEn@bbAKTB8FL-Td3+ojjv=8fGUJrV z$p3L>HX-x?0@eDUXpC|ho}$4M{w~e`+9m7t<9Sg$OM;Ng%(caPHGX}yza7DuGDNM1 zmyeGY@*)`eoVoE9waKiR>;Ji8wj6f*Jb?&|g;KRADCmn}`B2swj}G9O+A|FN7>-kc zu&t~Kz|+vSnTj8amwz#r9?z!{xq5ag%EP0iVIX-Aq`#S3@~yIa`wIeF(cg-sHB@&d zUPDokO6M+2JBjea(9;cO&ls@?zm-1(fw=T+_lI0|%!O z?ZJWMzc3b-Gmjh5SBr?Zc@Q`SVKGq>6T$0k^JJoMk<`p)-9d!EK+psFamfE*<|7m4 zws={avD!q7&OZ7Fkykt=mk?=+hkX3!>a^Si`6p0@@;KzYJYFRsRBE+Nx%!{+sueZAMkV}#TZCPC(@s5(Mt;7g{d9wSF1%@O3HEc zd)kEwPeyVXjaR%dQR$5lZ7^^$Jd5SO!!;D<1fmiduf`*61e_cw(R>o3e-Y!f4c`5)$OL)(|1XsLB$?KYwqg;d-&Lqeka{l^lD?l_^!$ioW=Du-vGttrK&cAR__ z!_b5%cw|Z{nU{K=8KW+stRcd;;+a}oA`)l@9Ko3`?C(PK)LIgy2GNQCP(rEJjyx~2 zjbAW;zbEghg2llYuvUsOpf^I)_Tk-W1T8jC3b8gO%9dhSG>UOO&+1u3w^AeD>CYxg zY8!D-ZKe$H@lY)S)`xA+FklqQ6A{vEL}xU{4Q4!-w1jQXF>WcwW#L(98_M3+%>BpO zr^p?`cmM_+G97U-a)K4R>d$iz&qCWbFYj0=48+4b7}t;2PR7X*_>M^3XFP%;{F_KU zq@TzlG6%0-P#-faHD^$ElUEK5{KEcO^!s5@El$@&_Lo3jaaaFN^&xUOn(h-esC_{A zM_#vCIF2ZMr=N~+M}wQaTp$Q+idVse{hKMhMCgax{%2vFip07HIMg5I*9d!Ej6Fj- z3a0V<&-XJayhMa#2|@?*U?i5V#lzv8^Fu6dL4LoZ^a-8>nX*mnQG15c-w1zi_&fZH zoZUE+j-2nt_>}a2p!6`$My29zAxfLfxP-ni`MgV|X2H|CHg^F}JK&vK8;rWlD+NO8 z;KgeU>xLndnF}Jnhfv-V==knQ! z$Ab|X4+XdJ<`sfV;(=NoLivsU1vnLB)wbbfXj?;W-h<(I^^;EVY!#dPQ^!;h@@P_U~Z-BU0#Fg$HVN zynF;l$ZIz8pJz0Su2DE@gNzqZFb*M;SkT?lQqtlzv!ja1u zGnHs`B(lG;)|xN0AK1oR^7n2)Gf(h>95D z!$7YcQ(u_ecPAZT+d7V2MZDj_{@chO!8m|5pX@kh)mJ)qu{^ZxF#(%XapuWmMyuw~ z=VC(?CsK~AJ!k(a)(^+)<5sYT?er{T|1DB9k`%6EO!2#NT3R}RuMVbP<)NK zyQC=-wU#a}=l_jas&&iostvEG2sp|sDazDVStaMg(A-=m-R;C=!1LLxufX^d!e8@T z?Gv6ZC%?^kmMu(lm$Ems@mHfg?R5X|X5)4{I*o|HYgY7TZWR`vu+!0+xv9)m@`i5b z_QK1hnc8BEIEk?tiPl0C46=fYQioCOyfqf%M(MF70M}&fi zXgi(%ek@pJH`7i+zMofiHnygUYZHyxSkAu!<+;K59J$O+?zgg@pBC^0nu38=zyr*X zzc8$`)s^(O#Go#`q7$tfC?3i4NkrE-4FOqs<;AjzC>w3LOO0V|$Y~{%_rv1ssm%=# zjeb?ut}$hUQNEDk+{Y_D#!a%NZ3$^5yv~LpWl?xz);KCm{%T*LFh zyhb2%bUYu6Q4$G{-i6~!DK8e0hXSrMCvV`JYd{}2&E5QWV|1qBZ=~I zW>i$L69aTYubZ8r(k?OYDKLG4#nYF0iqRw0zbssr$lcwYf6y&Za69Z|7%s4_#0#DpfoQb zT2J`Y>RNgR!ynA6z2Lo}I+44Df^>GI+!Nl4U2Z)OaiA^f48r?3$a+mA)SjE%2=V-% zVR%D`He1~CMKTJnm0ukEY;Y1*^>e@stf*6_LMK&9EV4vDh zd`b|&nVSvON960ghj=(dk6?^cPuq6NOMq_^}UEvYSLK|Sw7ZmX3u?$*o~Z; zI5?FkO+cR7L;4?;|Jz_RQ{+RCxY30`p@01>39V?{H)z zx&E0tRLf=Z#uMea82T3mC&$3h<~xg}y|J){VBfIYqI*zBDL!9%sg7*oXZzQc;~ z79q}L${tZ@zp$<@5&9*7+nXqTrUstjh*~SFrMx(^m{&85Nfi12y^K9o&HHZ{v;E_-WYd|jwknmTnjv+7Y=mZd^8@5r;_L8Pt=5>8rUz9axNzYL`AzC*F??c;ZB2|~_ z|JyFGr}iwPkFX|VavB2fvidjrmEjC5JZxdkZ~1FL$ZC19o;1z0lr5(EL#*)jV9Z7O zS@1eFYbsgso+46eb1)zhQT@m(GO|Z8rvCqLYloGgtqO+yg)!Nfdxfz3ChRO}cy2je zmzwWOkcwg$7S4-6=9km|f&niWZ$QBmj9*W5dK2!Lq-Ga$do2oo^N&n=)W(s!YUbqz z^1U9V1KH4s*FS8yfd^Fx**YvwPb%i(b!bb>{9?N^9-+7f#ul=NL%n=SVUa3De>bv1 z+ep^V4#wKzc-j=fYUh}2uf83%+z9>}(f>|8WAE93@G|!Y0$UMgFYIqoc}o-`bKYm$ zzK(>qDszXeh9;8E;&}Zx`?9m{1>*}uPwgT7132}KLj4)zV_{DTdlnU2a`7xDuN6ek z_mRc%t?15L5p5$%>8%F%4Q8HgD1Yf>|L^}RF($3o4VSSd06C=)eh4n3Xd|R_&r;g) zKZCr(IQWcxU+e^J@RBZmtCgn{g1Qo^(DoBnKOj=sFyua#F1IMmAx)Ke7TUHWv_28< zjld9UVjSyFllF7w?MI^ZfyEJsP}o)`kek;phxngC=o_pKZLhJo1VYtnp?nS&_a#C{ zNljynZHAKbMC1$Jbi?B%Rx4>pM*F(p)DZ>ro)Kuc>RUR zRbD=p@lspLe0RGGZV-_QL@O$WT}4q^ygkRWJt$ht-b=`-z-vEiE}Q(T%Kv^g#6W3i zYoJ^a{!Cc>pH9yI*J9yWEb}b%(S}s6w+{!@lB47Y4)ujqnR|=ETFg%%k_UM$CfW^< zzezv4aD-fqLtzs_-@@*U^H>^TI}6{%aEA^Mvs> zYt*`V{UBsq=@^s;L2W4D>Q>>O82^JKC0V}-CxS6DCf@e9NcO?0GR$Y-`EgR_`tR3I08nmVE+=7^}qnN%nqLY z%(W(k?Oh~%{^^un-Ww2>)QTxN;SFuSqO=K{)KU?Z76@*HK_^+?msHdsf)!AnoCt<+ zB=eae^;y>#XFgfTwf`Oc$*d1;EA($7^<&dr3PmkEM?=j=ffexb9&d`L;%#o86-VGw zls0308)F(W7Yh&jSkB|IuPTP@BE>%=ciG>aQ!?L&5Vh-s zwVVk#fOnS=RFOQYy+X-RTX&jhgtq5|F#|%>%H#DmQn`lEt0gvW#+Yo@k8IIx!}uQZ zYGBliO=kmQDG5zcqSgup1F^mz<2TfUS^!p`qOhi++e}dLhC?Fy<`bJAk!6nA6`N-yy+l z9LrekJ&{ryhIj8VbQmGeLL}OT;|o)aeN7!K!q_q}8T;p00k0woOE7d#O#93b(L76n z;F5&?A`5pRZ~$R?iif>0qzs$JS_o`@)mZq6*lz+1eUp!^}S z3I<>hH4|*N;Lw-|pN=I}FrXrWcDSD^y=Up4#GcSr!1RnnMs;jy#&|l84`=H>D+R4R zM!y<%W+j6$>Ho(1J=h<%g(FbAQC$VqGkK-Qp0O|&c6QZoD^J6M2PmIHJ*pkU==nUn z!M$_Ej9P}^bd1BcgDB-M&vPc)h{f0GNFeDIzkFaJZ z`||Lwb$iM%@rX#iM}XRTJXWiKux<$X4JBDIWE=*B*gZ20!Krwut;X0|)ZHsi@oKVh zgNV*V*$zDYh4mYdzXxTdZ2c&&f1Ce*m-WXJ#lmrPN#__+toGIn$%?g!cy<&jG zBsuFJvaSb0)v}sF6;QUAbp?p#Ce}>F0JUJ!Hk4;4S)Z2(55mA>cwZkUGa?87IgMC% z&XoR#z;jsofQP&BJQkiGLRfyH@jFHiHo@B0z>Be#q8^0#8wRNTim~T0q8y4=P?Lk% zr?#F*sU1p%e0NRwJlD;WW_X&G#qF>%Dd}iP7*k@vClk7a!pcYllJP3Wo?EQziZ^OK z2z?|xI?4L5Ek__ZCL(H;tk5g7=OzVR)gSHr?qL(WJBxMI$Z>uI^+NbRJlf?Rdr}aU zzfi2U4}mS*higUeE79$0K2*oZ0zV8nsF%<;8sIpWo3-unD{T|bgNKg{#H__v8f zs3l{~eDiG(ahXg&``Mesf0$Z^{#s1*tt3+&u`4`_`V-OX*qP1C#f}d}iT)E_3z&aK z#5>r@9BxYef6WVJ*ANzmY{kR)%e+EcEF5b_K>tFfE)TW$$i2zfn$MFN1!}2K5JL8{ zAndp;K8!bAh=dpGkE6UVN}jVmH-RqB`sf5ZY8Zu2SU(=6`N`Bt)~sT$T0K*^nykep zQipNiMtD8(aV=;9#cHWwIxhlPxRLQ}~G)MDt+5y_&|z`r;%jEL-GU00N+AO(*w^bpbW>yO2W z+=A5?3GEFO#HarlWtZ^k7ULLrs#cqDUcsRIq+yH|tmX@<=2`m&1xe_~$G8U=wu4s@ z3^|Me@3qiceGH3&0clhH&wux%2ws*n5Au5XAdm9e6lh_EigpI0e5{E@bfzIZx6RMS z``E1YJEcXir&m=N4V9qeN{|o(@U>qzRLm2<$+@40*EemN8yy%XihX`EfHUf2)R)6d2kvz>SlJF=Q5Uds*JUqbD7EibeAAnV7Y|+wC45=whHa|nC+P`>xnKRvuy=qs9z%o-b-Y%~6UL3T()*Qm{ zy?*)Rzc-#;)GVzoiq)1OEHNI;NALiY@f$)s!%~uS(lil|Y7m(SM5Cb@sXfUs=z}R< z!@2|PdyedDy!4~rc}YhMWQMjtWTw^M2{=ejUXiCj8G?6@SX;?6wo5aT=mDA0@RA*on|iq!yCn`6u?5Wv)Gu7)NB) zuCQ+@MlZv-KJ2N@-Ua$&kYjd@ZYF$(@TNN(>tXRN!q*33RWa}vj7cj)F=Vb4QX=X= zZ3N?ac;AEdZ!xwR%2TJoFpNDyo%CYw2Xrj-@_84zDe$~sAYZAnKXY0vu8e>&mXq@c zD2k<#7`N7PqiH zC$LLxAVElJchMH?{u`UmG5?RnBrZNzx97eZ7#-Sbrwr}!R>0y|JS(I6rJo8RUZVaQ zzcyQto|{7Lx{ML)@#_%JRsYCG&zcG@oYyUM^&T532o% zkSe^wwuV-FnK57j>q?_+lht!&+c$%3HAR`)bUTq7Rbpf?s6)1yNbA_RPVv9RuRC z?mG(8;OL(g@iIiOj}I?uvFU*+%+2B=gl!LD%w>6<$EN*Upf62vOV<91p>t4BhBZl< zkLtqdnZep2?B9x#PvIyzlWVqk3gWO<`$2KkD!F$hbFGkM;^oRIPF2#$`RhX^Xq z>j6scal&S@NiA`h>th=Z^d`S`S)U69fxLPmcQuU9d>};|*&>_7PW@`;yXvoxs8wU( z97433XoR+8C~e|(qinXR9d*%xS4Up;@vbxM!mBHM}PUrT*WC0cx>c?Fi5Kolu?`78y6o zjZXxl;Y0}DH={6j*{L~2B*Jt2VsWb0=&d3=xjjb6e`TU3MN|X{o7nW0*8(E4$gGb< zNLL_m4(qF!@?tz!J7%03z%gTu+BoJOvNjrWhVoi%242A7&y1_G#@8DwLt6zCs_{S; zk0sxQiO4=Y4^O@xBX|}O*g>ksvL*`kvc{{`e7-dURBw&Kgt-@vvTh8XsbxaJVHEbakS{cu z2be3zaj#_cv@16Gzsu&UD89Oiq$gBV}BQrBKl?De6lER$S%4gP$Votx7$x|FbMeyuD1n)*scdtZo)v~!9 z^`Z8hu>V6SOIZ%Pv9=+5j<8?t3k8*tLfmY|Ttm(*oH&FLt#D$n?c0ycKkS&NU>^VZ z!iTVpVsjLVrvV|l!=`Nrnuo`g8UG)~&I3HEDr(p1h2DEPAwgOQz4zWb(%X;>A&_Lk zOhSi|CcT%T3IXX-1%@Jm1QZ47MT&H(3W6X-ko&HgH8^_zd!K(j&&fGw?^V9_t+n?# zGln=@gA_%#1t3HmjQyq$5xH-P<7qhbmaEv-0pw)@)}gsya9x!p*`0VD(0?xfe7qxT zKbh=2(vtvh89Pi_T9bt@40OhkNHv0f0k{feze|HPK+hw~vE2fjB8NCv!Oj=T8>0WQ zmR9EGQYMSbo<HftWfx-Xs3v*_$HAfplvI*`!EFeP#or;TtX zk`c%GNHA0r{~KWa8M}?mWX=}=A+i{dweexb?pMP#G_T*F88%-ZPR1leA&Pu@Vbp^Jh43_~^2e!h3sDC5P zd)5j$+>zy@QO4WCTEjLF2(@e*AqzGNYL5FCVBH;5Z(~J2hKB4KkCtcS?OnvNK^^ z7M*c8{|o@>(d(_W&!X-k4`}34tc)Uze~bMd#`h^(9|5dA36{afBP|E{^NfKqZ`nwF zQ*|B7crF|@$I0&+>;$0fY$3Y{P5=!!@;VT>`;rKHYM6NMs7_Lj72b$$3sH=(d*$khD71uws=X42Qm9Z7+ z$GAUwR|)nRzNf<0McsV1YR|dW{|##Kh1T<(QWd1NEJnx2VwBAJJNF=|(Ge|-2L)TUR zIXGBM=FX;Z{>Tlb7U0GU}jL;wCmGD z;V8XcjiVUKv=(67aHgx&r#=pR85h~Y+&qAM%zOwzUIX+3bL;V)#{3Hc9wmWxjNPU7 zpK~vg(++)qXr{La`b4i66TBPui?w5mYhRoI3^81imq7gi;gN8cus36%3&#uwzw#Fq-okM5Txpj3ZwXQqhEC8M9?1;2$(sE$vh
EU;ra`%XF>09W#Bw@ zyaMviDAyb2^3hz!Ng$Q$x!BagCJTKaM9hJa(y%a$n}ygC@04ht>ofh?vP@3)#<>dmM#8`%R9V zjPC_VX9LPXUkaUvplsmxCE8zTlGI)Z* zyXW}5p$Y5$M|TtW5wwW}LfIj$<09DUPGN%UfEt$Te1Iv`M%oJ-%++% zP;CM9d`kT_<@yHNbKt)?VB6U>PevLN#NyV{x!O{n4iP-V#W?}c%*6=`PT#4TP8Q)pba4UKutf*W+Mt7 z`JA~z9M7oz9IalId7?Yn&6wls=^lVfQLk#BIgN12fOr8r!wS=ylOCHEgk@BsxtB3ZEQ zrG2o0xg-*Zg@t&)cA~+n17f2xkb!c24%j)^ZIa)5c|)B>X=wY?L8 zcHm$dN+Jt!bVW1C2^f*tIGzIlKO7`V#suGw<8?UAL}riB?~QI&T>;0@&r5KRT-5~S zK7yciG#0n;k2C|#XVA7E%JOpL;XXUgHgXo3N?H80G_&Z1;o1*2dgKCna{%;;>#6k0 zed^u?0Lw{iEu}iiTtmjM!e%Z_XdE`*0V;cL;`e;`OaY@Fae3`VkRFn0xa9w(Hc=0q$W5JV z!A3hkbmwTzifD$zzcB6#kam>oS9I$VY&i@K2K;@3{>c4Rvc5w@=OepR?79MW1k70R zcYxCF$F4s*)A6yId3%axx{9o?l0^am29os|lx{&|0SunO&}yg@sSov4$U2#TiwP(a zfUQUe9RAGwMtbEu+1>$IHuR3*OXNDB`nfNC`ViyWywtyzW?h^BD?lhRAJq2&k{M=N za~}x$fdtv40bNS`C<7xRXVoqvfuv>DkzG8=h+H#VC)bbq0PKTb5i_i04}||0IIhRQ zx6t;U9ql=1e<=Y@MDoCb{3{=kPGseWp@}F}0239#LkV`e>-->swgbci#unl0jk4Aa zpCVr=Q$=9nH(2~mK1P>iqOJBoG{&Q$O{6N>ErZU60PvP59B-i?(gEUvHsx06T<`mj zmR%{Akq#tMNd0#;cqv6U5!-f>m?+Eu?Rlk8?q_muCqRBho00QxI0>Ot>kYP70CuBq zs*-IowZ5c!OSs;I-A7V$f{5%T0VlxnYM&KF=dOY~B!8p5Jv3Y((+s-ZK0x6zX!9xJ z0Il&t94Bh+erBu(j@NLXpujIunjpsh1gHg{BF6yH7TpByI|1S^gYp7e7HxuAcxp4*QWX^OW(TBy&J(FS>o{ z6Oj{uc?75f^v*4O>Hg=M^QnyCIHhtVH6DmVkq*#4os!&^=3>4SS)V4Oz64DLfG!}H z?i2#&A;?g`KV+NzP1y-lHXYR5#=OW|R+W7NL0*$lM<#mWa4H$U0^uD3_$rt^086h+ z?;d3+6^;|o7l6X5WZVNE^_ch9RZy8ZE5~Eq=bv*ee++pBdKCb;j$XJ6z%jWs|7!%i z28iE4){9{E0TYemwFDD6&G{Fcy>{RFn3b6)3UD@d69G^QHmbvpi6bi=?vdNf#{q5@ zer93Y#$elK<;3Np{|{ zK_4pOrZnXVf@MQrq%oj+a_#^Sr>^g;l%OZ28b**$0V>j!nmbA61OR5?I|qGM&pqdg z@6(9EEey_rqNYr=2E9$Q>kP^zT)#J%1LRBqOeH`XHqSJG1R0D@20;9w%dQW0MYZc? z{y1O~u$X(PT+P-1$7I`5#dM8*`M z+qFD{$n-V(Lt#rKBLPJ+lYKNcQ}8hmI}?7_+X?289ROKIRvxKixUYg><2;${MYlOe z9l+IRZUg#VQE5z5W#U>S3qdQR+mN8g$hHxQUB>4m0w++$-PoT(KZoku50Y^mkgsH* z2L>H5Si^elrV5Re&Y#HWG`evF8OXUE4oxstmHPtdp9R!2qXZ&*=mCE+ zuB#21nQSj=X=J`Dan`YfXOL(k&)?FKiHTaTL1Zu)hfNI`1`P7$B$@2Yg7AB4f1IS&1J|=_fYLuJn>|{5DjLV~Q zJ)G|c2zZ{7jbd&a0E0BEuLw8_ry{2T`6YgR0XU!gYuK96k06=$+9#LM{nV}$Jw!Q- z#`zhC8JSo?pnOofmO!5}KAvo^07RrdY@EcQNFjo520$@vN>X!=48ztV>D2BTVAfO8 zo9NF~dwY7aX#s5wK~{=}InQ!g$>ca{)B!60D;aPS0jS0V{E;jToOOb&^ejaOw(pg8 zu?y$A0*nTt_c^|QB&le04smXW-4pre!_hEMmI03haX(6zi;QK*$!apIMeRo5>?5t; zI%r(W_#y%)0;ViM=95fu80-#PBHI947=QQBTT7B6J7KR3x=l#3u>3Mqb&MkkxRL<3 zpzSxZ>qEzOgSHGXFqG`(V{{QmBM9&Zfm;*AMkcoaSChHQfEuXFRDxXBjVajRb0xYS z=|>Ob!R|J}zmz12@AD(aaV8oSVLfww6RIwukYA~shT~~~YDADqG~y{(_^*U8_Xrk$ z<(!=Wi5$xTCX$Q(5qV59zOc}RQZM8B8Z6m&K+VTE7dfCv^P_YQXKw*;gzWc#^a}G; zHN$y0Ffo>y`9}b%qIBoOSFrAQF?!CebK&?rMLBkn=sN6w<@y`>?|&W%qBEZ`aSPOi zD9Ih@K49>;1i%336tih-hyI}Y`G*{IPX%ShAe1YQ|`0z+ZXs=Eg z@&jIeJ#sE!j~g@|{x{;IA_>lx{r@1yIxtb4CGiW$YT~$%IyYgQ8-wmBr^8uQKux9$ z69MoXV2wCD5{I8X=+6Q~3QQKFkLEM~o?5>GTnheA5_lumBIogA&%jb>0J=dOw@}Uq z1M{iPD^@}l6k2l@Il(!C02KgSiy&QKWIk+sin9gi&7fhcGyW9df54_ko*Il}6Ha39 z0nk%>Egprr^2<=m$gH4tbb5>*;_wGD-N5)^R)oL5+f`n!TQfHpT174s{F1@mprt9{ z8g>5|u0dj{w@6zp(Jg$4!~@1H)PD_GcP5}nMpba%@wNl7(>Uu5?IPP@#>`kWju*nz z3fQ~FST)$G3OgQY0OcNO3*hg`d?X+m;=dJaiL4}<=JGdYJW^RR?Mdb$OTB9AubFJ3 z7hY1^NI>kx>8~(0hqH*C2CJtD1VH&X&X>Bfsw7cA~s`u3%wK6eKSXGKfWmiSTAT@qB?Gm zEMXE7Nm6DP!kmRNM1Ek_&NfLvkuoTEgQfynpPDf6OdDr00Y{Qm0s;Txd>Dp$;%utY z9jbcbXCIAOQGNVCA}s;s$9b6Q)>1ak;iI&W0~$r4GYODOunnRgE)ZDc3cYlMpyP2aa#u_Ey)Qim_!r#Qrtb9s zRT97BV7LzDP0+-8a6Q7HwAy2TOMwcIPpj)vhv7mf{kT`TtmkrqY1VM=OTS!uOWws;rhu=iSGyk)ko)3ZG+?gN|O9D zqwo{XJ(3-CBG+`RC{9{ooLSijA?N@Ok+x*G)Noz;kxlF<7s`2T}9!n!(TNXf-wM0FXol-UiA=ni;N>&lFe_ zc}rOuqW21>Pop!`V2758vjnb>HnN|hg0Vw|!CdrHx90y#Qec5b7sFi!{|R5kNerg{o=L_dpdXs38jD z_nbl>O>2*bn}?h~#m*xV->0NHybhTU6wFNxb_BvM>ADDq@SEf@#c-P!MfWshUk7w2 z^)a5QFs}d^2)Z2~7I^rGBpv|xN8;=w*;?`suwrqLO^Mt~5o&<`Ckm1TfZtIXiSj23 zW_<+DZeJ>_o$>=rZG$C`gkbklD=cH#0PK;+FtHLQo3a&!YrHL9P2lrLvz$x-5huYj zaQv;kFJl#PunUl3lxGg(-|J$NxrH3}2-u1F`6O`$AS3Ygj4tX3JL9?jh&hjJrnQIJ zaj={qA{98g5kTY%CaWqCxev$iDj6hzyk;1T5PS@5G(|r-ob8H$z7j~8*`p;$1jGr0 z6|aH2>-cF(mL7dq{Utyt4SbWp0XY61g+~|<@FO!;w8#yd7uT1JI+P_CAl_0=6M4_# z3&id%+fqf!W8&P3z}>j6iOy4!*Z^q6?lTRisnk*A2af(sJR#HebpA+CN8rpOeZ&!t zn-aJP4OM{a@ibI!90vjN3Vs>_JU`%CaviRI#r_y$8MMT59|?%!A>^OeV5isatw~+` z=#uKg_;ieNGIkyyU%zU!l7N{FVK6WEkPf{MqvWaXMP~}F*vMGd3xb!7)$GbR|yJp-;*OVER8hS z|41Z&>j0RU0$U>m2+|Q2G5}D-z7&NrWROfYA9JoqfJRK5V!SOzA|H7zvFdtVL^l?h zPeZRVR1XAXChQ8JGmLt-2f$$F*D}6}M1FwHh6LUTcoX{H`%(X&#e>RMf|SYWn$_Pp zco#s^fV?t|Ggj$)ZMY3AfX&CaM+W<%>(76!_Uf5m2rN<#kT(Fe0-t4Bb@#ZhCtoCr zj3;nat>+sitD%?;+K(BoX`fa&8BWGS7!%p1R3>qL2W!naT9eTxfqg2LBOe+qW0MDT7v)&(^K zo0d!L3>vFCghPV9Taaw&uQ|EhzcoCpi~X^vBZ7W5v; zN#+e0%fq>n!GlQ4lS9E51hB{;K<>b{1YabF@d-k^bw6l# zp&-&22b-zgK)U=2#@~T>AM9)9>#-) zxzDNhpPX;v{8z2HC)4@LWh3xDWuOI)tFz4d5vVo{wbsnaYrr+weT8$8zhUVy<(kU54SKn>QLDj> z$VUEW_dXRc7~{V8xdxbKFd#C501wG-AdPnu!-0S*ij%LYs{;V?=5(5DE-=@eZf{Ql zBDoDd_mFWs<;l*NK|)*5Yr^<^?nf~`S9`3d{P`@8JjLs?g7Iwuoy#*p%iv1rVVeB7u~km~Qzy!>Ru%ZHmGGsYHPL1ndvZ%{l&}aXj)2 zrrL3z9Y+JP$$|b9So6q20N3J3^ye!%fb}(4res z^?>o-(CY-$4V?C+OkHqn4x=mvJ0;^HJpep_u}Xkj0h^<_o{R6h99ggz$(x>k+3jFp z1PUU)nn@Odt-|0}y+6WScY;kec!egwAnw0pzMp2wtxr~fP5S4L`{&XmebmKJtym7! z-ay_$OgC|T3zwa_jswDa?fq$VM1QUyVe>1wuO(C$j@ocl1oEE(S!5D?TviAtfz=zn zno|_}6E3nEtZ1r}tR#v-PTJ!KC1@swXQ-w}z66ZOapo6j<;-lVo87~%pQj*hI9(#L zObeFkOFJrv_KZj7WKn$$vR=9)PxhmC$?g!rPQprWGAN3ZIDj2jmd-O*jjYZvHdEWA zpBK2vS|E!7a{w$vmLgMNsycRs6!3b+c8A(sb3Umo9+4YlJ%{Y-;G_+0Q9{x7B!l5N z_#KCN0Go)Tm9*X%#{b|Ptw9?>eP2L_8!mS~t%PwmX%#a6k)W#qQ#Jxe1kOO_L&(k}%Lyb>0EeB?nZtP+_t^~@ z<$(*UkFfJdUv2C|Br3AP^RM$JG4MBzGjld8m7*a3cI7rk;ku=iC&Rt4Qc+jRG8Ugy zs0!mF05e;e>qbIfqBn%hJBcHt4)-E+=%)whN1*${^V^xlm4TKx6!}>j>IC;=0k9Do zQvesFdTuSg{ee=COaOq$eQdXqc?AU{W4%bE7L<$Jq(rW>!B46G9qJcE_Kg@wqb7T_ z8MjfxI?PSfWwe$6iCzK6C<}|VNq^QJ`2imjq5Tqm!T>+k%jOBef1t@%k<3{@*}tWx z@!N&{tB-k1yu1@#`f#=L=aTOS&T46@ZZ&rBz&5>|I)x&$T~zW1Hc$V zFNzc}cpHJ3jhM~TvD08qrKPGcUxJD*=6*PY_2p>F8tAF*_5?qBvG+(Iq*#(e&QlyHLgHT#M}GtQ)w`F`P9e z%j^uq=;}6D(g%5D>0N`PaZKND`&=bi)@U!TO1Tfdrvq%B^6mYq* zyTRBL^j8Ct{1F`PCiC@Vl`Qq)x{9u5*E~P6C_`t-pbpM@;2;aY*Xu%wgx z`Fmw+9Zq_Y?I+B)0Kj|+jNYdNND*5W%oei!&5&?z2?ca*!+o7G6ZsbfWl;cpQ-ntX z3@pVU28Gc8$qL2WxL>XYp=8~c>`UnC-Ju!hq}C$I9J$C=WTvx>B zdO*K`iI%ckx8ZnCwj#Bd6d4cl3xIiMu%hspRHV}r@E06pW8iZo(N zd@b;Gk6cGbT{?-Jr!jw&>@LGjcltua%=k)< z<79D?qZM|G2y~INNB{{n)P(i|Bnbv{V=wY4W!fh_<`%n8Dp`uu2jOXq);il8q`uzU)3GMPugR!1CmC2%EbpPTGwa$OI`hLGVg0AEsHPdG0H^mpOnmCtg- zOOZdjbWthqgrh+?|ApH2$C1b-rBAMxQ4$dY!!!c)z;3G8(gUB7;bp*oh4Tl@eMU*P zz~p-RI&YvTD$gNF>R#91y4_%{wBarO$uU&v@I$iLJkDh<#l zjNb$3FErVwFjJ4~aoUVEp!`RIdCN9fjDfKn*mfql{MZ%3C;9Wrhw?hIThIBd0;s^` z9FArfeg=AP8HY|Woa_Q*Q?i>)Rxt#vKnadf&auq3qG!gy)Nin{*$YffZM<@n)Hi_m z6=<*lI5ZJ#8jgySl1QB_~@ez~taT-lcMLq_^RAoi(tKswvf%D_20GU<6@eIzV zpnoD|$O+9N_cVz{oY%s{aX^m6_aEp#7ci8-#s6UpGa2kk7-vIq77qS~rosfR5zd;| z^}PpX?kko3&^rsYyRqF%O&gQMasYjyOBB~G*@@3v3jVmxO;A>RnX_NT`C@`C!+1OB zRzYoB*jP${7{X&ezK7a=Y;LIRjfYS=xXM-J&e5o0q!Dm5&HPCy{{3d1j6MS6_ z<8?&-?Al(at_U4r1bakABQYLJ4YTNS^CRQg1ldinI5O>_0sTcn)aZZ19Z( z!9)s1(BTTiJ;L)J+u78(u~$Hu+XoYOm8CWWZ9+m#u-}e-4*5+(k*+ALm!|NNT(BXM zmAPH8%)nnLi5#SMp)fEFcG_qiixO}J)V)%tpE4eeePMJOYm*)1TBHs>MW&!Xh6LoB zP?0YH+L$uDrLUUHpWO;ZF`h0@#(^1Xdg1gIV47(5hO#mjCktsDj~vF%!u{XM$ov3Mrw=hWqFbUK;$k-45OU&@n4_j zornH9fOWzL_tWwNNOwV9&97D3N4t_u-J{wdUSj!rOff(U~b*>Cqi?m|?in8S%p)5GhPx(Fu*id{_<4BK>%7FOIt2A9H!HI&zZ$w?H zk?kjBc$o}DtT0lE^Dzu2LTP?&yx9?a&IM>GvdoR{b8MCp=q{|3#>Z~WRD4W?wMj7a z4T1VG_Z!zgDANOp`3#^hr2c=RI1M_6p!5KRCK!kWLhCRx6#0nb5H)Q^uVl#o=oJiBtk;DE%=9e@(H=21{*Wu_^HysLzbd*)x%yFVs%JNl9uNh|vg~ zltg(j4n-ybOeB@D)y#{0MetY3N+q(t3sVay%Qx6IBjA5!F!QCcFR2Wd;r@;MPe=OW z@D{=QF}Vd~ziY7OWVr#yi(n&-P92J#0s6+=pV8g0gYFSyu{)?>XTZcX63OewV!%fk z^tS;v2fiW!b{9Wy@b?~@8+oaJH;{;o21H+suani^it;*OmU869NuB>RS}HonsP}Tl zf1<%Q0PZb8!eO%pEY!j0Tmp&wjZSrZhzurhGpOHB!mj@BhLa__OZ|%B7!*$6Bpb$y zaax;ukIdDJ1Du!8*NOrFLJdADgLpT9MAlR5PXXP9Qf)xLr@<#+ zuKz;!zmlwA$3piGK=kJRa{zzkV$2=iCl>?3+Dzi$E(|2YKwqd^r5=BWLX-AI7j^oB zW+y7ebnF@++S5lLDdq0~n3LYR3+Nq`v_HBJVeKkXT|wSbklQW=l(6@-@>AZmGYb+aAm+u#s9~`9xS#cF_CcQ?CYT| z6Hd00{TBep$04$cu^XTaWBwG^GZ;TY{Y1XUP^6r$^JSDTKO4~`d}K6us%e=-=RRc; znGS%>3>0$JBlKfkat`Y>Ni{-yCgf;9)(dlb*Qnu6ux$L0a@jT}30z8eZ3 zYkd!)UzRc))Mh(QuXLqs+i|!+)-AdD1U6)%Hbq% zRuqSD-5p0Fd!gMUy9hRwn_tm8Ar2_TXUu;J^?za`(gI*+`XDP={!M^HgQp|M5dwMS zB)aurXDI-Cz=*5=`;x&>46G=|(eZ6iI?V9`#cw#bCHQM$2o|aVQly*GnopbQpw{^! zCAtm0H?S4?T9cV+@adX37qy3$asN!#e-B01Sq;Q!B>~5x_&v^(!l72FmbqyJSWPf( z5udsWNaj3ZA{mk2vAsv8u>c?8F<^WL%q?dnJn$v|)?`u*#H&!~#xV;9P7>rGin%zu zg!=BMCk9i;RyaHaE5B$z$owe+E{67}n#^i^_QltAWyh(F{S)Q-jO+Cz*8>19{vV-q z0_QWyWGO(#5-iXlh*#G4nLh`8-m;5e%jobpoHfVxAmEY#(trTX$b1vQ{PDFDpLW2u z!v2+(ElO8{y|UCC<^BY`h~f&I{mT6j$}v?bD@#*lV7`p>2H6i|S&HP>n#*-59R5h) zMF8pmy^^sJ*b$ty z49bp!))4j^_i2hV9b|q|$8;(RCt9=ss zX2>q5tGtlmE~w8rNc##PegvCBmVf9%`Voh3U`C`ZsIx|J(3_XY?kL38CU{ToQHeSf>Un0O6780Qnpcp#(nz^4~FBM&>6e z(u98|HS5{`fR@#lzOiKNJ zg8ssMC+audV1+_kVH~dq!~=}?5I6$Ry_he6oya)Db@Ca^m;;|H@bxEvjxqlu;3g1! z5=p_+^|{Z)MQVRWYbvhlQNz>hU+X~s1r9pkusWq$+b=+?PIcwBCB_^MH~iP(s&+7OPD%6sIex?|#Y=1iB<&c66?Xk!27WjAL#j z&DmY`({NG>z^}c^HC2KCg-vBG>lTtT0dOAv2Qc11SHWWdx;B*apmX57d$=24O{i@K z%_6<%_Wl?w0&NKA@)}?S)V9MWKTi6i^EJS}z|JFw3A&hoA|u^P&F3mfWmWJp9?Z4f zhNClNS`h~#_d%FZ4R!)-CbT!e@!vSx1`CJCswI7~l`>2s^REGvQ)@5wf#|PeJU|0Y z#NR0FCm6gN(R@F#Qo2g!NEy%n#ql?-nGB|bs=5YCgzP5k#_@u{=k!{14pQr51Q-j@ z&HyRN;Vs1gK1Jz&h`&F{d?f5aIhBCM{FI~>nKe;^%>-JC{a4Z}=njIV(tw@_b4!VH9e?tt zLeG)8N9=i_r6BcKLk7N}yRJh1LTEzgf^aAjct`uqzB9=Wc)}6lTZ!-+$I9uRsBi? zsG_AP#rObpR}f?&EZkwd2p|@bxfQ0S=o0-KfWahk3|3!a?;TrN;%v=G29Ad5-PDEmHk{2r9kV$*aBJY?F#9t_L zL#g#suTs6G6doyxzuF|wg9PkOs0}8d$d6EU4}@!>x-^rEps_H@Mc95PVDOt#pPLe` zCs-B&_k`MF1Zx41=>+)+J&{y0^hhsdBOZUfm|x=0l4Wd0DD{ui;G&!#04vBKmVhGF zVWFcg#}pWdCrDofanhiX0KYs`09$@bowg>A1=}T$LBl%O44+tSuUpxo`T9i5u8>;xeOqVVHnHY z0Q5xalby&4SnEjE>&Uo>!KMO;QCu4U{29MDDa$4Ryd--=8@Lgy1X3dVXG(8bl=nk# z4eHtsr%$>5O{twiFO&!QRlsGV3~yj2jQIit=}ETrxE3h{kWGwLMQ39XzRhFqG65qA zJem7J#1IKnzt`noT-nI(Jxb+4Dbn6>oqWy$%!xr1=k{d0nV=$fIS(bkOR}$o<0V`l z16VcY%E7__%5jp+nkqZ92pkL}4$cd_N|Fh`cm3i222LJ9&ss7Ud5D7r9J>HEj;wEy z-Jbxt!hL1}gmOMXmU(eHUfEm0SaocDDcdVb6$7Z^0Cw7Lund7hXAYw z!M@Y^2~r|_KGvqpj?OCWtx5EgeIRt!BESof9VGBR)}}}z-TE2K%*MfG9GF3T2E_3g zXCY`-0PP2GL7enw{ig#|6vrCC{8!50`<&q({T|j9ap?q5y!`2oE!vUu81w`ABudeV ze8WE^FBLgxJeJrh53 zD8(NnT1CE4FUdtsRo;v<=|c;O+o3vhgxf`7gD=kk)eeS6QtMn~yq&Rw*zV#u3{z3q z-e&$g*g8T0kq!R?8;`N~$ObzB=1}`m1oTKxp&i3TQ0|d3Tz?L|GXZ*?-q^wY-`GW~ z-7c8gOJI?jy1dfR`+}@RW;3=RoVO)d-NAV+_tjv_?u5E-IDSM;eLz-{%zVgPVjm#m zYt*SN^o=3FR|FWxS!4k=wS_8`yv)s~HzM%2lmt#f^LCt+5U}WW;`$T(?ZDq^Vod=2 zdim4sx5;R#2cfQig4HfTPj`3&Iak=;=; zJ3=s#5Xv*0vNYy;2r*tT?~yLD{||za-$3{&Mj{32@?xMAxdE6X%=g2|C0*+gG?>T; zSqU5s30}ou&Eq2@0d4}qAjo0PS7FlW#gc^{*+(L8VW%wMr^#Q)d;;z3p(g{hwS+E_ zf(qaf2466i8=ZU1Hv&*WvS|hr^9k?^3@wn2#7mA7@JIZvhM`;reF6w?X{w2y!k>Mh z7rJkC!lV2-2v-4M1|=E-Y6sWxu+fHqFSYUJ!bS(z% zqv^0C@{sxuRWMfUMJ_W|k1{=hnY!4Q$YbaAnZPO3a5w{PQK*jc2tarw42L%;ZfR6xDR>6f)7Li9<7AO947`#_v?=5|}A1d#EB137U<79oos~p7* zzIp*^OXikItB18@>!3FwFv!^d89 z*8|Kxjvsk&GMasSEm_{>ewe{7#^I4)$n+&mWRUGNU217KABp}7Y|m2rVF3Jwl2zjR zJms+y;7jcOD}R%4Hp==d_VwfowPU)RzVWJKc{2Qx%$vxP;t*M-Ov&|f=rA>`KAP_hcio9mjvr>2F~u06USZTxZaJaF5VmFy+A4clCK^-k%_O;&RkjzV-*b=Heby1E6#x$6>;V%g>aYops)6t&b0tB% znrtosWG&h3;K+gFi^|L|ev}Q}`y?PTkTNz!Kd&y&+5{G<#CbBlM9hHOp3%-0ieV1Q|(_y$0-Hr8yOvXR(TEl1xF8nc&XUXEBWA zA%@5;Wu>~Ej6}L%Fk2n8fQiN$58xjxVQC^D}@pp)Vc zpf&NAowyN@N9JfYk4NgSjF`mN`68V9^Ghjoc zADOo$tA*&6fQhyS|4mbEWWG1Y1~Sf%eg(=n9Cll2iK@{D3*;B-T5F?;K{j=K0OTuh zT-KmVaV#=c_W=V+O_Xd6Ky#5%aj4vhk0B9my*bQ(#k@#+KnD`2CFLE5PJeuKCK-_* zxo#ove|1?-PjM2>Ksac>uaZ!Otc^A+rj7BJo{PfTdB+bHn*K!ILrah)HQ% zz|zVN^(77W%o^&M44^rTWzp5sR0G$hgmZM&WCU0-SUO9|RuTOY;BQF$oS=#XQ4<`U z#%C9rZwl8*ZvQ@`a9WNUiqyb?$RNPoqenb4OfTZ3-mv8x&KD4z5261Aa2H5q89Ki( zwu3}QQSw9hoiE@2-2siA5F0y=(CQw>a8|rJ6MV9L(Vk_dlZw`RwT=vv#t*Sqo z1mehin-~3cNoX-iOd!^6N}7o6bU?n4^&bMt9nkcX(kJe>Ku?6o#F32y0@m(&pt;=x@ zFm+$flHL>(+Ar9L*^eyYwVwMt=oNh#V&KE%+5l0MHcty)j^0 z{&c550d{LPmq2umteZp81wcH2nF&gJB0zs3i+$WLRi^Htp9*l1Dd>L3%6W+M-?)Ed zuvsydmHEu{#cpga!sa^sh;-$gJ&5|JDK+16u7g514v{!&G!7d3gFF|2DiSysj&_ob zuL5{WrpL&1IaGV(v1WabGL*;eIezj2;ySh>4FLH;i0?BEg+NeuAmad5f(fGopc@WV zBE7jTrl=Dc8%uA5pmz;$!8Gn#0;NilVNZl!RDcxRe@iicb-u$kDTK= zo&2wxcAzjAN57E8Ivjk%c{&uY$H5qSA(W#lftwrbkWd-}`gPhbgDKfC#Z!M0bBoiBbvbM5j10MsvOnpm*r>;rcVmvA}@;2{<^X4r8G<7nF*;VBBM5(eEbVJQ<#2EnLE z8guqFQ1pZz=*@&kGR`ZhLU{m))C7dcO@H@!Cc&367C~l@DAfY(oj-8+st8}hLVbGt z7LH(v0kA&4&ytkLOMncbUs`Z3BL6rv6jUah{R)L5N0t5#^g>OXUE*AXV+28SXl83* zB(HX}MVF!lA9HcsTbVkB&P)K9w2b1r5ce+ubB>a`#m-*LpvXiNR~xK!M#To!q{9GoTvS;{eyFsr}~=4n1eo9#JK^?V!LTITcG1Dy{O(zigM6vUke9dTl7u?<`enNjc*KgUr@D%GJg!dB(O+H z*qExB$o(D+u4`MpgS8Ued!zw=M0%3dbAvV^+d#mIY*vQldJ};g=?)4zwgX}^^}o!ee^=KEM{e-8upthtyFZolomOG?>??8SiS+0 zo*0b>O#|xvn5;6;OzCl$Mz%j<^t*zoOx^y1ZeR2U!N_5}4rWZ`a}p8B35dVlm#&}d z34VIpT-TWL3&L+bM953~%=THno$U-C!!M=g1K^m+A`j^me zZMdd=Is$$?px#r)=lH$Kd~*_uCFoTWDaZZqEc5x?7b7|HcN=C<5OtyUE7t^#hrwEc z?I+vrIQb5z6}cV^8w1Fwxaz&ZVO@aLX1jfp>3=^* zVd=+coXzML7oTjlMj6eL4O6_$gDxCHMc}So~Tg zn|>CnVKzng7x$v!a`FMQVIFL@4kLlVW+NdkF(nyz#RXisvKSPz{o^#jVk4M4{}NF~ zo5c8GhH0=VF5c9a1p8Tht&XQrLD_wyoPIt1SNhsb@jy0A(aCX^M1y$dq2_4Z#~2o| zv?NBG{{<&G4nE@&p>eP&KGLw7V@=kWc(ctWob=x?$)H}&$j_?C<@l1&56(k97POT74^)>flgM>hf!%^(Ds;^Uop`uLv< z&6i}dni9;wFcRo6qc5~rV&eM6nPZ&S;`}QFIrAm?56bMEWcT;?uhza<$7T)cwfv_l zE@whtf@x@6LP~;B)KyaL8ds!5c#U#S9_v3QYer!8i;GR6PLSmEo990uB*>B^H;$O4 z{-1`p!M5q(yuH*vEg)M%%aFu)i;0|w;A&Cl(p3M${x$lWtjRtNEb(L#9dAjA(Q8U$ zj@RpCQ(v2QqfLh(I>qc9vfBSu`k=UEo6)9)GkTl)@jG(K>=l)Ev*6H`(|+MIp&x+ zSN$_42NVd7j)!Tp)sZhbpo(WJacxp`h))xXWULzuW{$?m0fU2OEZLIe+>;z|D_R!LH7rC}y&u-;K zvwH`OWT$H2Srnw7oFcVwdm}qxRMu%T-8TQ1ev6u|;<$6Y_N|+>ZesjD{5sPX1;hq^ zln6*jvC3w`dP{IEE!|Fpe%G?GIg2b07@plZXL~@Sbiwg)(dI;(*>Rw%e?#ZVuL52K zR+mk~Mt4x*7_)3u7AdQc=H`el|F9Fw=Hj)A4;%_G1*SJ_vOJ{2hC1^d4Okvj$P_)y z7#wFyF~y64JhY5v{~&bkJQ1)hAoN3vIit@8^iG$@4cDiYDcWjr|8!T>dHCmm8bOX+ zcLMSTy5c*-?gXTz%m3l|Bum>pGR^+CyMmhHv%;oiM)oVE;stAjE{yY?4~=F)Lw&mLGYy*mjbk^GT64)oOpFG>06~Y6*&7F^ueOQ2zvQ4?Sb8AYX!`SAZtEem!8i^;A zYuQ@*B@Z#tGw$cUfT1U5YcbWUs-7+Rn>`-0J?!-pqK<%*^IvZeGj+2~!9HM)OX zvN<}LR|V(jK7sZ!6{1tDHXhJE?RkQ_u8df#B_)ZlqU<&NVIanlG%BE~v+}IKnL!!6 z>2&N{5Lhcf+R6E3L11q7ed%e}qncMLdHi~Bo}SJI7TaN*B}QLeWOcFsvHO@3rJ-3T zvOsvOTctna*zM)1&$jcyeU$V4(!jriT zd#zI^(R5X)zZuRvk8k&0teY*B1e~mOm!_8eUkETxzA-Q`xG*mn zktAXrXilb|Bmdd?<%wd6bmrV1xF&C4ObpK%=eA>km3<4icOah*?#*7_Nrv;lq8z+( zIxaa)D9~Os=+aQP!nP7gw*?lFZR@{p6j(Y?OAd zbCw9RQ9Q6si345K$eX0=MK;><;YB6NnSNi;6Mtvh13@Vv&OP4+y$^AoJQZXLD8>63 zZ)QBtEJL7$4^li%K{UXk4MQ>pX~d?OBORsA2W^dvw?q$g0Z6hWv-`(Eo@eRFi<~ga zw$F=q3a@EDoe%mdv)v7+sLg073Q8{@IXoHmr>d?GNS@c~BnvMi^3efjW>!>RK9u#B zPdXo(%jjpdxYx9MTSieH2u8(n<;s^UlN_Do>V5hAWr_)uh?qY&at;+RGbiMlX$-**Wz4;VuHT8~*aXzdRJS?anpD1MQ{PV^wOVOI* z+OKTRJ~e}f`KGH}x@=`W;#MzL&3U_4@Vsgn1W9sSjH|;OgNFpiIPVP!9#zKP(zUdi z@|h%X7O7FMw-p>JH; zdY*td6n_b6U-Bh^#qBW8_4*~w#DU%8A)3eRpcL68SyTV^NE!P=yvgQr23uCTAtj-& z)f6AaLUiL!OZAR~gXFj*wnwPrp}?a$o<%JlWX214pJ-Ez$sJNYK>s(gYc@JAkt|(b z9$5JDfRB6bFAr=k#|devY;Wq4?+rTeDbchLbZkmmY9eW2%_lW+ zDR1w*wUMps>1^ULXXewIVNM(zXQKL4!`Whe@D$&Y0$#o{fERgpWNjH8n@Rp2G{m5D z`RwaFvmyAq48?I2V`kTIe_aqwcy`SMb0VDJm9G`jQu$ti_pXJ`;3@^3$Ib;W_OJf2 zt4w@mN}J9%32j6TFxaJ~^8JB@C$x7#T(c5izCnojDR`Ejs68t&YGCD@uRqvsP!bX?k(iO!;rgPUZ?-oYGij*jL%4XBnR z*NkJ}o8Xy+KTOCL2%|J_g30q*G}z*N{U-RAz_3`hYCbs)bYqS&+en%3Yy`b)OEB-e z5^~tjkB=Lv{vp?Wvvg#KclB4ad{1GvIqZQU`9cj|x>!ibCdc%^kciB@3qh+aAD5PM zYhXynOu1XSo(k;dfM+c+$A|vtWT#(_kR4Ga>+y(kp%=n|M3?Z+M&WB$hGXxapwch|4Rmxm8dB6b=V(az3|Sgkt?-Pddn>g#)6Rti70ZmBa_g$M z{Z<_+tBX%zQe@F0M||hW%3fko++Pr*ot|S%ev*Iz*Pdnnf6ymmvp>6${dT! z>c|!pTEaOoD0H}A4f(Fa%x}&#W0@F5^+%vcr=!1;^<>auJXtmou7o=LJi zWyZa4x(dx6!SayxvZhpM$Mp99Y{9x0#p}NAwF~2>sLQqcV~2W{cN{hm&r)aSiK9vX zwX6SsT^9d;`=qz(HSE-=eaA+v8#Jrud{H@cL12ihTF~k^T_HpEtgdH-t4-XC)8?F5 zGjvKWXHbVwbH?l~W!b5@!ItTU%?Hrt=BUR;LNcpWy z$GGx!jCqzmPmceQvxBjrr2@0XyI$=`yOF2WobTd8r~3x+5HzK2bF|5wKA*4IIVmyp zbx4r=>k!B6A;CEvb+cy(a`YS$n$9_9NN7+{a6MPU7|t=HLYMocYssGET2eM=@lQe* zq|2|GW7*8m@=ojAP*bMdQf$uy zifd0nokvnbuVo356)vOBMcYF+2RJ)BLr42%a)&FU4{qnVJ)w1js3LA zOZ?YdlxISgugx4Qk0u*R@)3wd>amhHa9NwqQAa~p1pC??n}?*!Fq$pcwZx<2od2gY>kDnGio;FY zG&kp5?es3)+N~N_+O8O*8|!odCtF)&phGFsPPdiYG#Sw@$?`|m^&#j~=s;u$9z^Dt zIL5>fhAS~?{#7>Ulsry6SgGu?I!VKbA)ZnF!%Q?S-dX& zt0lf`>;lbVGa5EH&4A~z%U=o_5etf-{ z-jwijm|VkFP!i+|4?&PPn_*b)EtJvTEb(7G_o8^SF_71Lvf^Y=4Ij4J)!?YLT0J>x zg;ca8`b;*nxg?H;D(F1THj*$AgVIuralx-TTfkW(nqePja!C9xW)@5iRW*o?W{5|@ z>|RFWwW{zarBoa#5^4&L%xDz$Ijg>z5{~|3N@T*uSVVehFZ|$!Pr|L|Hke+bVQ3K= zcGANjXLGceIhhGxF^s6Np+QDY@(1a0$IyP!5wc<|Fu$QJTo6!#Jf2JF(bq)D(l_1^ zRqOr%^gjjQ4VOm$3~|WZ00t$`aL4ppZ;La|U3Gthud*rE!yk$xc5pC*EmH0w;i$@t z5c<}q;z+<5GQ3Ry_GhookJyfyzZJ6e{u!~s>KX9;m3KP0QN-OClN8J`EIlDLraw3* zGEEi+V*Sz07eq8@`36X@nian_HnVA4c}es-+W>Lw2HSGu2i@peY^k69?Cs;KT7tTe zgW$4`PytH7r`4nD!yWhGyJRO9btb;cBr8jna^p2Ib?>sL_)di2#4anRKmJqPT;X7! zVHU=)XMl$BV*1@Sd10Ufp$|Mw+TDi;2xMvcA}Yp$e)c(8Z8;fnWtV>JRry{}9i5gd zcaewk(;vcx2MSzi?l0G>(L4%@&;sRV>&zJqLEnFnfMpV&oEHNDi%_P0AUrkS7hbLM z@5pe1(N)A9827HZXl~5Z`D9)5SrC_)iMlu~PgrTN4C{a8udURGDYiIE1LLXL?b^2;K{TtiFYqPnxtLkYF4{`k)1s* zB|tzG?z$)*BF{{Ag^31_f)gnr(&sP91I_x_6?rABcg)L2q!^;+7_fv9XuWE6s?WcL z`n6xR9R1UE83}HHVWq$ZwV6i>f-)q-h{PNQGE2#q@s?OiI#r}zVFEx_zyB=1eh6=l zP2?~Uwp5%HQ5n*D>wJyZ3vPLw-iqt5ZpzT|5ISXiY+UVbmG`iJj&>u!p@WY{A)$3} zVVoj{!Xmx$$Iw6qHMa`^5Iw+FfJ)aV42o{B5->1znDMi-_Q3!Ry={=@hUZBS%4}pO zF?R}yQgQWVceqz)8tp?O!bQRc1!oN7QmY<-R{mhy543FBLK;^BGBFgY6DnRLj6}U~ z=x;F$@ovuaqP64d@+YBHEl+Ubq+1>PcA(;Qe;8?zeftkRV8j0z0AKT4$U7qT&@yK$ zj2)T^)Xswd3N30tt!ocQdKwn~gTJGjVS%N@D2g->*W~2$T{bL%n0~t3o@neJV#+6U zVjQ%`sC24!bI@Eb$WN%H<_Mr@?7jM|*M46m*VgTuEwKmI7 vmvsAxJrexaa4Emro(Zja256@auHNRDi(bS_Mr<0g>hz6pL~l;ndjfv}0>wp0 delta 202361 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%0Aoqo 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 WwK-#eUt^2uJJiqgG9Qis`u_n7M_;r6 diff --git a/pandora_console/include/languages/es.po b/pandora_console/include/languages/es.po index 7e6b0bb062..0630536209 100644 --- a/pandora_console/include/languages/es.po +++ b/pandora_console/include/languages/es.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-09 10:50+0200\n" -"PO-Revision-Date: 2023-05-09 12:15+0200\n" +"POT-Creation-Date: 2023-06-06 09:26+0200\n" +"PO-Revision-Date: 2023-06-06 10:19+0200\n" "Last-Translator: Laura Cano \n" "Language-Team: Spanish\n" "Language: es\n" @@ -19,17 +19,38 @@ msgstr "" "X-Launchpad-Export-Date: 2021-04-22 12:47+0000\n" "X-Generator: Poedit 3.0\n" -#: ../../views/consoles/list.php:32 +#: ../../views/consoles/list.php:31 #, php-format msgid "%s registered consoles" msgstr "%s consolas registradas" -#: ../../views/consoles/list.php:68 +#: ../../views/consoles/list.php:40 +#: ../../enterprise/meta/advanced/servers.build_table.php:42 +#: ../../enterprise/meta/advanced/policymanager.apply.php:200 +#: ../../enterprise/godmode/servers/new_HA_cluster.php:86 +#: ../../enterprise/godmode/servers/HA_cluster.php:97 +#: ../../enterprise/godmode/servers/manage_export.php:69 +#: ../../enterprise/godmode/servers/manage_export_form.php:85 +#: ../../enterprise/godmode/servers/list_satellite.php:37 +#: ../../godmode/menu.php:298 ../../godmode/setup/os.php:225 +#: ../../godmode/reporting/visual_console_builder.wizard.php:353 +#: ../../godmode/servers/modificar_server.php:59 +#: ../../godmode/servers/modificar_server.php:219 +#: ../../godmode/servers/modificar_server.php:238 +#: ../../godmode/servers/modificar_server.php:293 +#: ../../godmode/servers/plugin_registration.php:73 +#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:355 +#: ../../godmode/servers/plugin.php:794 ../../mobile/include/functions_web.php:28 +#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:370 +msgid "Servers" +msgstr "Servidores" + +#: ../../views/consoles/list.php:69 #: ../../enterprise/include/functions_tasklist.php:177 msgid "Console ID" msgstr "ID de consola" -#: ../../views/consoles/list.php:69 ../../views/calendar/list.php:98 +#: ../../views/consoles/list.php:70 ../../views/calendar/list.php:98 #: ../../views/calendar/special_days_edit.php:137 #: ../../views/calendar/edit.php:112 ../../views/cluster/list.php:70 #: ../../views/cluster/view.php:285 @@ -67,7 +88,7 @@ msgstr "ID de consola" #: ../../enterprise/godmode/policies/policy_collections.php:323 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:143 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:407 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:302 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:182 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:241 @@ -196,21 +217,21 @@ msgstr "ID de consola" #: ../../godmode/modules/manage_network_templates_form.php:234 #: ../../godmode/modules/manage_inventory_modules.php:290 #: ../../godmode/modules/manage_network_components_form_common.php:346 -#: ../../godmode/modules/manage_network_components.php:777 +#: ../../godmode/modules/manage_network_components.php:780 #: ../../godmode/modules/manage_network_components_form_wizard.php:457 #: ../../godmode/modules/manage_inventory_modules_form.php:128 #: ../../godmode/modules/module_list.php:100 #: ../../godmode/modules/manage_network_templates.php:249 -#: ../../godmode/groups/configure_group.php:239 -#: ../../godmode/groups/group_list.php:884 ../../godmode/users/user_list.php:581 +#: ../../godmode/groups/configure_group.php:258 +#: ../../godmode/groups/group_list.php:885 ../../godmode/users/user_list.php:582 #: ../../godmode/agentes/agent_template.php:276 #: ../../godmode/agentes/inventory_manager.php:234 -#: ../../godmode/agentes/modificar_agente.php:699 +#: ../../godmode/agentes/modificar_agente.php:709 #: ../../godmode/agentes/planned_downtime.list.php:734 #: ../../godmode/agentes/planned_downtime.editor.php:914 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:170 #: ../../godmode/agentes/agent_manager.php:569 -#: ../../godmode/agentes/module_manager_editor_common.php:1019 +#: ../../godmode/agentes/module_manager_editor_common.php:1029 #: ../../godmode/agentes/module_manager.php:644 #: ../../godmode/netflow/nf_item_list.php:175 #: ../../godmode/snmpconsole/snmp_alert.php:769 @@ -218,7 +239,7 @@ msgstr "ID de consola" #: ../../godmode/snmpconsole/snmp_filters.php:203 #: ../../godmode/snmpconsole/snmp_filters.php:313 #: ../../godmode/massive/massive_edit_plugins.php:494 -#: ../../godmode/massive/massive_edit_agents.php:774 +#: ../../godmode/massive/massive_edit_agents.php:791 #: ../../godmode/massive/massive_edit_modules.php:758 #: ../../godmode/alerts/configure_alert_command.php:283 #: ../../godmode/alerts/alert_commands.php:752 @@ -230,8 +251,8 @@ msgstr "ID de consola" #: ../../godmode/reporting/graphs.php:363 #: ../../godmode/reporting/reporting_builder.item_editor.php:74 #: ../../godmode/reporting/reporting_builder.item_editor.php:84 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1157 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4002 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1159 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4011 #: ../../godmode/reporting/reporting_builder.main.php:140 #: ../../godmode/reporting/reporting_builder.php:885 #: ../../godmode/reporting/graph_builder.main.php:182 @@ -239,26 +260,26 @@ msgstr "ID de consola" #: ../../godmode/events/event_responses.list.php:67 #: ../../godmode/servers/modificar_server.php:99 #: ../../godmode/servers/plugin.php:449 ../../godmode/servers/plugin.php:567 -#: ../../godmode/tag/tag.php:230 ../../godmode/tag/tag.php:303 -#: ../../godmode/tag/edit_tag.php:196 ../../mobile/operation/tactical.php:352 +#: ../../godmode/tag/tag.php:231 ../../godmode/tag/tag.php:304 +#: ../../godmode/tag/edit_tag.php:200 #: ../../include/functions_reporting_html.php:156 -#: ../../include/functions_reporting_html.php:1608 -#: ../../include/functions_reporting_html.php:1764 -#: ../../include/functions_reporting_html.php:3663 -#: ../../include/functions_reporting_html.php:3711 -#: ../../include/functions_reporting_html.php:5491 -#: ../../include/functions_reporting_html.php:6371 +#: ../../include/functions_reporting_html.php:1617 +#: ../../include/functions_reporting_html.php:1773 +#: ../../include/functions_reporting_html.php:3691 +#: ../../include/functions_reporting_html.php:3739 +#: ../../include/functions_reporting_html.php:5519 +#: ../../include/functions_reporting_html.php:6405 #: ../../include/ajax/events_extended.php:91 -#: ../../include/ajax/heatmap.ajax.php:246 -#: ../../include/ajax/heatmap.ajax.php:285 -#: ../../include/ajax/heatmap.ajax.php:345 ../../include/ajax/module.php:1002 -#: ../../include/ajax/events.php:2668 ../../include/functions_treeview.php:126 -#: ../../include/functions_treeview.php:655 +#: ../../include/ajax/heatmap.ajax.php:288 +#: ../../include/ajax/heatmap.ajax.php:413 +#: ../../include/ajax/heatmap.ajax.php:473 ../../include/ajax/module.php:1025 +#: ../../include/ajax/events.php:2669 ../../include/functions_treeview.php:126 +#: ../../include/functions_treeview.php:659 #: ../../include/class/ConfigPEN.class.php:450 #: ../../include/class/ConfigPEN.class.php:601 #: ../../include/class/ManageNetScanScripts.class.php:404 -#: ../../include/class/ManageNetScanScripts.class.php:566 -#: ../../include/class/ManageNetScanScripts.class.php:615 +#: ../../include/class/ManageNetScanScripts.class.php:562 +#: ../../include/class/ManageNetScanScripts.class.php:611 #: ../../include/class/ModuleTemplates.class.php:849 #: ../../include/class/ModuleTemplates.class.php:1042 #: ../../include/class/ModuleTemplates.class.php:1186 @@ -266,12 +287,12 @@ msgstr "ID de consola" #: ../../include/class/AgentWizard.class.php:1284 #: ../../include/class/AgentWizard.class.php:4187 #: ../../include/functions_container.php:147 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:815 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:816 #: ../../include/lib/Group.php:582 ../../include/functions_snmp_browser.php:570 -#: ../../include/functions_snmp_browser.php:1884 +#: ../../include/functions_snmp_browser.php:1893 #: ../../operation/search_users.php:48 ../../operation/search_agents.php:43 #: ../../operation/search_agents.php:49 ../../operation/agentes/gis_view.php:222 -#: ../../operation/agentes/estado_agente.php:1027 +#: ../../operation/agentes/estado_agente.php:1034 #: ../../operation/agentes/pandora_networkmap.editor.php:368 #: ../../operation/agentes/custom_fields.php:69 #: ../../operation/agentes/pandora_networkmap.view.php:146 @@ -283,8 +304,7 @@ msgstr "ID de consola" #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:277 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:408 #: ../../operation/search_reports.php:43 ../../operation/search_reports.php:59 -#: ../../operation/inventory/inventory.php:1004 -#: ../../operation/inventory/inventory.php:1298 +#: ../../operation/inventory/inventory.php:1250 #: ../../operation/search_graphs.php:31 #: ../../operation/reporting/custom_reporting.php:35 #: ../../operation/reporting/graph_viewer.php:568 @@ -292,8 +312,8 @@ msgstr "ID de consola" msgid "Description" msgstr "Descripción" -#: ../../views/consoles/list.php:70 -#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../views/consoles/list.php:71 +#: ../../enterprise/meta/advanced/servers.build_table.php:80 #: ../../enterprise/meta/advanced/metasetup.consoles.php:927 #: ../../enterprise/godmode/servers/list_satellite.php:56 #: ../../enterprise/include/functions_reporting_csv.php:725 @@ -303,29 +323,29 @@ msgstr "Descripción" #: ../../godmode/extensions.php:160 #: ../../godmode/update_manager/update_manager.history.php:40 #: ../../godmode/reporting/reporting_builder.item_editor.php:78 -#: ../../godmode/servers/servers.build_table.php:80 -#: ../../include/functions_reporting_html.php:1628 -#: ../../include/functions_menu.php:953 +#: ../../godmode/servers/servers.build_table.php:82 +#: ../../include/functions_reporting_html.php:1637 +#: ../../include/functions_menu.php:958 #: ../../include/functions_snmp_browser.php:762 -#: ../../general/reporting_console_node.php:69 +#: ../../general/reporting_console_node.php:74 msgid "Version" msgstr "Versión" -#: ../../views/consoles/list.php:71 +#: ../../views/consoles/list.php:72 msgid "Last Execution" msgstr "Última ejecución" -#: ../../views/consoles/list.php:72 +#: ../../views/consoles/list.php:73 msgid "Console type" msgstr "Tipo de consola" -#: ../../views/consoles/list.php:73 ../../godmode/users/configure_user.php:1108 +#: ../../views/consoles/list.php:74 ../../godmode/users/configure_user.php:1172 #: ../../godmode/massive/massive_edit_users.php:469 -#: ../../operation/users/user_edit.php:537 +#: ../../operation/users/user_edit.php:530 msgid "Timezone" msgstr "Zona horaria" -#: ../../views/consoles/list.php:74 +#: ../../views/consoles/list.php:75 #: ../../enterprise/meta/advanced/metasetup.setup.php:237 #: ../../enterprise/meta/include/functions_meta.php:171 #: ../../godmode/setup/setup_general.php:480 @@ -333,7 +353,7 @@ msgstr "Zona horaria" msgid "Public URL" msgstr "URL pública" -#: ../../views/consoles/list.php:76 ../../views/calendar/list.php:99 +#: ../../views/consoles/list.php:77 ../../views/calendar/list.php:99 #: ../../views/cluster/list.php:75 ../../views/dashboard/header.php:81 #: ../../enterprise/views/ncm/snippets/list.php:71 #: ../../enterprise/views/ncm/agent/details.php:92 @@ -352,20 +372,21 @@ msgstr "URL pública" #: ../../enterprise/include/class/LogSource.class.php:606 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2376 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3013 -#: ../../godmode/menu.php:580 +#: ../../godmode/menu.php:578 #: ../../godmode/reporting/reporting_builder.list_items.php:429 -#: ../../include/ajax/events.php:2308 ../../include/class/ConfigPEN.class.php:603 +#: ../../include/ajax/events.php:2309 ../../include/class/ConfigPEN.class.php:603 #: ../../include/class/EventSound.class.php:308 #: ../../include/class/CredentialStore.class.php:819 #: ../../include/class/ExternalTools.class.php:412 #: ../../include/functions_events.php:310 -#: ../../operation/agentes/pandora_networkmap.view.php:2386 +#: ../../operation/agentes/pandora_networkmap.view.php:2387 +#: ../../operation/events/sound_events.php:185 msgid "Options" msgstr "Opciones" -#: ../../views/consoles/list.php:113 ../../views/consoles/list.php:123 +#: ../../views/consoles/list.php:114 ../../views/consoles/list.php:124 #: ../../views/dashboard/list.php:107 -#: ../../enterprise/meta/advanced/servers.build_table.php:142 +#: ../../enterprise/meta/advanced/servers.build_table.php:185 #: ../../enterprise/meta/advanced/metasetup.visual.php:454 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:688 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:719 @@ -389,15 +410,16 @@ msgstr "Opciones" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:805 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:871 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:887 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:200 #: ../../enterprise/godmode/agentes/plugins_manager.php:216 #: ../../enterprise/godmode/agentes/plugins_manager.php:302 #: ../../enterprise/godmode/policies/policy_plugins.php:188 #: ../../enterprise/godmode/policies/policy_alerts.php:590 -#: ../../enterprise/godmode/policies/policy_modules.php:1666 -#: ../../enterprise/godmode/policies/policy_modules.php:1715 -#: ../../enterprise/godmode/policies/policy_queue.php:307 -#: ../../enterprise/godmode/policies/policy_queue.php:715 -#: ../../enterprise/godmode/policies/policy_queue.php:762 +#: ../../enterprise/godmode/policies/policy_modules.php:1711 +#: ../../enterprise/godmode/policies/policy_modules.php:1760 +#: ../../enterprise/godmode/policies/policy_queue.php:309 +#: ../../enterprise/godmode/policies/policy_queue.php:717 +#: ../../enterprise/godmode/policies/policy_queue.php:766 #: ../../enterprise/godmode/policies/policies.php:662 #: ../../enterprise/godmode/policies/policy_external_alerts.php:600 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:316 @@ -405,7 +427,7 @@ msgstr "Opciones" #: ../../enterprise/godmode/policies/policy_agents.php:1534 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:434 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:239 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:149 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:151 #: ../../enterprise/godmode/setup/setup_acl.php:734 #: ../../enterprise/godmode/reporting/graph_template_list.php:257 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:614 @@ -433,8 +455,8 @@ msgstr "Opciones" #: ../../enterprise/include/class/AgentRepository.class.php:912 #: ../../enterprise/include/class/Omnishell.class.php:1398 #: ../../enterprise/include/class/Omnishell.class.php:1533 -#: ../../enterprise/include/class/LogSource.class.php:751 -#: ../../enterprise/include/class/LogSource.class.php:873 +#: ../../enterprise/include/class/LogSource.class.php:748 +#: ../../enterprise/include/class/LogSource.class.php:870 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2476 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3159 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3487 @@ -453,26 +475,26 @@ msgstr "Opciones" #: ../../godmode/modules/manage_nc_groups.php:363 #: ../../godmode/modules/manage_inventory_modules.php:342 #: ../../godmode/modules/manage_inventory_modules.php:385 -#: ../../godmode/modules/manage_network_components.php:857 -#: ../../godmode/modules/manage_network_components.php:906 +#: ../../godmode/modules/manage_network_components.php:860 +#: ../../godmode/modules/manage_network_components.php:909 #: ../../godmode/modules/manage_network_templates.php:289 #: ../../godmode/modules/manage_network_templates.php:302 -#: ../../godmode/groups/group_list.php:971 -#: ../../godmode/groups/group_list.php:972 +#: ../../godmode/groups/group_list.php:983 +#: ../../godmode/groups/group_list.php:984 #: ../../godmode/groups/modu_group_list.php:263 ../../godmode/extensions.php:282 #: ../../godmode/extensions.php:290 ../../godmode/extensions.php:300 #: ../../godmode/extensions.php:308 ../../godmode/users/profile_list.php:457 -#: ../../godmode/users/user_list.php:982 +#: ../../godmode/users/user_list.php:983 #: ../../godmode/agentes/agent_template.php:297 #: ../../godmode/agentes/module_manager_editor.php:802 -#: ../../godmode/agentes/inventory_manager.php:262 +#: ../../godmode/agentes/inventory_manager.php:263 #: ../../godmode/agentes/planned_downtime.list.php:748 #: ../../godmode/agentes/planned_downtime.list.php:904 #: ../../godmode/agentes/planned_downtime.editor.php:1419 #: ../../godmode/agentes/planned_downtime.editor.php:1459 #: ../../godmode/agentes/fields_manager.php:206 -#: ../../godmode/agentes/module_manager_editor_common.php:1538 -#: ../../godmode/agentes/module_manager.php:1000 +#: ../../godmode/agentes/module_manager_editor_common.php:1548 +#: ../../godmode/agentes/module_manager.php:1014 #: ../../godmode/netflow/nf_item_list.php:263 #: ../../godmode/netflow/nf_item_list.php:273 #: ../../godmode/netflow/nf_edit.php:203 ../../godmode/netflow/nf_edit.php:223 @@ -481,16 +503,16 @@ msgstr "Opciones" #: ../../godmode/snmpconsole/snmp_filters.php:337 #: ../../godmode/alerts/alert_actions.php:356 #: ../../godmode/alerts/alert_actions.php:478 -#: ../../godmode/alerts/alert_list.list.php:1023 -#: ../../godmode/alerts/alert_templates.php:475 ../../godmode/setup/news.php:354 +#: ../../godmode/alerts/alert_list.list.php:1022 +#: ../../godmode/alerts/alert_templates.php:479 ../../godmode/setup/news.php:358 #: ../../godmode/setup/gis.php:71 ../../godmode/setup/links.php:196 #: ../../godmode/setup/snmp_wizard.php:110 -#: ../../godmode/setup/setup_visuals.php:1873 -#: ../../godmode/setup/setup_visuals.php:1965 -#: ../../godmode/setup/setup_visuals.php:2040 -#: ../../godmode/reporting/reporting_builder.list_items.php:633 -#: ../../godmode/reporting/reporting_builder.list_items.php:677 -#: ../../godmode/reporting/reporting_builder.list_items.php:802 +#: ../../godmode/setup/setup_visuals.php:1888 +#: ../../godmode/setup/setup_visuals.php:1980 +#: ../../godmode/setup/setup_visuals.php:2055 +#: ../../godmode/reporting/reporting_builder.list_items.php:634 +#: ../../godmode/reporting/reporting_builder.list_items.php:678 +#: ../../godmode/reporting/reporting_builder.list_items.php:803 #: ../../godmode/reporting/create_container.php:747 #: ../../godmode/reporting/create_container.php:802 #: ../../godmode/reporting/map_builder.php:421 @@ -498,38 +520,38 @@ msgstr "Opciones" #: ../../godmode/reporting/map_builder.php:555 #: ../../godmode/reporting/graphs.php:419 ../../godmode/reporting/graphs.php:420 #: ../../godmode/reporting/graphs.php:450 ../../godmode/reporting/graphs.php:481 -#: ../../godmode/reporting/graph_builder.graph_editor.php:216 -#: ../../godmode/reporting/graph_builder.graph_editor.php:276 +#: ../../godmode/reporting/graph_builder.graph_editor.php:349 +#: ../../godmode/reporting/graph_builder.graph_editor.php:409 #: ../../godmode/reporting/visual_console_builder.elements.php:828 #: ../../godmode/reporting/reporting_builder.php:1209 #: ../../godmode/reporting/reporting_builder.php:1298 #: ../../godmode/events/event_filter.php:200 #: ../../godmode/events/event_filter.php:242 #: ../../godmode/events/event_responses.list.php:90 -#: ../../godmode/servers/servers.build_table.php:273 -#: ../../godmode/servers/plugin.php:1067 ../../godmode/category/category.php:190 +#: ../../godmode/servers/servers.build_table.php:286 +#: ../../godmode/servers/plugin.php:1059 ../../godmode/category/category.php:190 #: ../../godmode/category/category.php:227 ../../include/functions_cron.php:931 #: ../../include/functions_cron.php:958 #: ../../include/class/ConfigPEN.class.php:264 #: ../../include/class/SatelliteAgent.class.php:1147 -#: ../../include/class/NetworkMap.class.php:2943 +#: ../../include/class/NetworkMap.class.php:2949 #: ../../include/class/ManageNetScanScripts.class.php:405 #: ../../include/class/CredentialStore.class.php:1267 -#: ../../include/class/CredentialStore.class.php:1695 +#: ../../include/class/CredentialStore.class.php:1704 #: ../../include/class/SnmpConsole.class.php:466 #: ../../include/class/SnmpConsole.class.php:518 -#: ../../include/class/SnmpConsole.class.php:868 -#: ../../include/class/SnmpConsole.class.php:880 -#: ../../include/class/TipsWindow.class.php:458 +#: ../../include/class/SnmpConsole.class.php:870 +#: ../../include/class/SnmpConsole.class.php:882 +#: ../../include/class/TipsWindow.class.php:470 #: ../../include/class/ModuleTemplates.class.php:894 #: ../../include/class/ModuleTemplates.class.php:1187 #: ../../include/class/CalendarManager.class.php:737 #: ../../include/functions_container.php:191 #: ../../include/functions_container.php:325 #: ../../include/lib/ClusterViewer/ClusterManager.php:634 -#: ../../operation/visual_console/view.php:863 -#: ../../operation/agentes/pandora_networkmap.php:824 -#: ../../operation/agentes/status_monitor.php:2264 +#: ../../operation/visual_console/view.php:865 +#: ../../operation/agentes/pandora_networkmap.php:825 +#: ../../operation/agentes/status_monitor.php:2266 #: ../../operation/messages/message_list.php:197 #: ../../operation/messages/message_list.php:296 #: ../../operation/messages/message_list.php:332 @@ -541,7 +563,7 @@ msgstr "Opciones" msgid "Delete" msgstr "Eliminar" -#: ../../views/consoles/list.php:121 +#: ../../views/consoles/list.php:122 msgid "" "Are you sure?

WARNING: you also need to delete config." "php options in your console or delete the whole console." @@ -549,7 +571,7 @@ msgstr "" "¿Está seguro?

ADVERTENCIA: También debe eliminar las " "opciones de config.php en su consola o eliminar la consola completa." -#: ../../views/consoles/list.php:127 +#: ../../views/consoles/list.php:128 #: ../../views/calendar/special_days_edit.php:209 #: ../../views/calendar/special_days.php:430 #: ../../views/calendar/special_days.php:530 ../../views/dashboard/header.php:70 @@ -576,23 +598,23 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1824 #: ../../enterprise/include/class/AgentRepository.class.php:903 #: ../../enterprise/include/class/AgentRepository.class.php:1001 -#: ../../enterprise/include/class/LogSource.class.php:824 -#: ../../enterprise/include/class/LogSource.class.php:877 +#: ../../enterprise/include/class/LogSource.class.php:821 +#: ../../enterprise/include/class/LogSource.class.php:874 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3114 #: ../../enterprise/include/class/ManageBackups.class.php:455 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1435 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1459 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:926 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:949 -#: ../../update_manager_client/views/register.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:254 +#: ../../update_manager_client/views/register.php:86 +#: ../../godmode/agentes/status_monitor_custom_fields.php:274 #: ../../godmode/snmpconsole/snmp_alert.php:2226 #: ../../godmode/snmpconsole/snmp_alert.php:2241 #: ../../godmode/massive/massive_operations.php:416 #: ../../godmode/setup/snmp_wizard.php:100 #: ../../godmode/events/custom_events.php:234 -#: ../../include/functions_visual_map_editor.php:878 -#: ../../include/functions_visual_map_editor.php:882 +#: ../../include/functions_visual_map_editor.php:926 +#: ../../include/functions_visual_map_editor.php:930 #: ../../include/functions_register.php:179 #: ../../include/class/ConfigPEN.class.php:675 #: ../../include/class/ConfigPEN.class.php:699 @@ -601,23 +623,24 @@ msgstr "" #: ../../include/class/SatelliteAgent.class.php:1199 #: ../../include/class/SatelliteAgent.class.php:1261 #: ../../include/class/TreeGroupEdition.class.php:165 -#: ../../include/class/NetworkMap.class.php:2951 -#: ../../include/class/CredentialStore.class.php:1647 -#: ../../include/class/CredentialStore.class.php:1699 -#: ../../include/class/ModuleTemplates.class.php:1360 +#: ../../include/class/NetworkMap.class.php:2957 +#: ../../include/class/CredentialStore.class.php:1656 +#: ../../include/class/CredentialStore.class.php:1708 +#: ../../include/class/ModuleTemplates.class.php:1364 #: ../../include/class/WelcomeWindow.class.php:174 #: ../../include/class/SatelliteCollection.class.php:536 #: ../../include/class/SatelliteCollection.class.php:579 -#: ../../include/class/AgentWizard.class.php:6234 +#: ../../include/class/AgentWizard.class.php:6230 #: ../../operation/agentes/pandora_networkmap.editor.php:746 -#: ../../operation/snmpconsole/snmp_browser.php:174 -#: ../../operation/snmpconsole/snmp_browser.php:545 -#: ../../operation/snmpconsole/snmp_browser.php:625 -#: ../../operation/snmpconsole/snmp_browser.php:640 ../../general/header.php:834 +#: ../../operation/snmpconsole/snmp_browser.php:179 +#: ../../operation/snmpconsole/snmp_browser.php:550 +#: ../../operation/snmpconsole/snmp_browser.php:623 +#: ../../operation/snmpconsole/snmp_browser.php:684 +#: ../../operation/snmpconsole/snmp_browser.php:699 ../../general/header.php:834 msgid "Cancel" msgstr "Cancelar" -#: ../../views/consoles/list.php:164 +#: ../../views/consoles/list.php:165 #: ../../enterprise/godmode/services/services.elements.php:956 #: ../../enterprise/godmode/services/services.elements.php:967 #: ../../enterprise/godmode/setup/setup.php:595 @@ -627,24 +650,25 @@ msgstr "Cancelar" #: ../../enterprise/include/class/DeploymentCenter.class.php:1647 #: ../../enterprise/include/class/AgentRepository.class.php:944 #: ../../enterprise/include/class/Omnishell.class.php:1306 -#: ../../enterprise/include/class/LogSource.class.php:767 +#: ../../enterprise/include/class/LogSource.class.php:764 #: ../../enterprise/include/class/ManageBackups.class.php:482 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1079 #: ../../include/ajax/snmp_browser.ajax.php:260 #: ../../include/functions_ui.php:310 ../../include/class/ConfigPEN.class.php:743 #: ../../include/class/SatelliteAgent.class.php:1046 #: ../../include/class/HelpFeedBack.class.php:360 -#: ../../include/class/Diagnostics.class.php:2115 -#: ../../include/class/CredentialStore.class.php:1590 -#: ../../include/class/ModuleTemplates.class.php:1395 +#: ../../include/class/Diagnostics.class.php:2119 +#: ../../include/class/CredentialStore.class.php:1599 +#: ../../include/class/ModuleTemplates.class.php:1399 +#: ../../include/class/AgentDeployWizard.class.php:604 #: ../../include/class/SatelliteCollection.class.php:616 #: ../../include/class/WebServerModuleDebug.class.php:359 -#: ../../include/class/AgentWizard.class.php:6027 -#: ../../operation/visual_console/view.php:937 +#: ../../include/class/AgentWizard.class.php:6023 +#: ../../operation/visual_console/view.php:939 msgid "Success" msgstr "Finalizado correctamente" -#: ../../views/consoles/list.php:174 ../../views/consoles/list.php:179 +#: ../../views/consoles/list.php:175 ../../views/consoles/list.php:180 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:657 #: ../../enterprise/include/functions_HA_cluster.php:542 #: ../../enterprise/include/functions_HA_cluster.php:547 @@ -654,8 +678,8 @@ msgstr "Finalizado correctamente" #: ../../enterprise/include/class/AgentRepository.class.php:951 #: ../../enterprise/include/class/AgentRepository.class.php:956 #: ../../enterprise/include/class/Omnishell.class.php:1302 -#: ../../enterprise/include/class/LogSource.class.php:774 -#: ../../enterprise/include/class/LogSource.class.php:779 +#: ../../enterprise/include/class/LogSource.class.php:771 +#: ../../enterprise/include/class/LogSource.class.php:776 #: ../../enterprise/include/class/ManageBackups.class.php:493 #: ../../enterprise/include/class/ManageBackups.class.php:498 #: ../../enterprise/include/functions_ux_console.php:483 @@ -669,19 +693,21 @@ msgstr "Finalizado correctamente" #: ../../include/class/SatelliteAgent.class.php:1055 #: ../../include/class/SatelliteAgent.class.php:1060 #: ../../include/class/HelpFeedBack.class.php:355 -#: ../../include/class/Diagnostics.class.php:2114 -#: ../../include/class/CredentialStore.class.php:1597 -#: ../../include/class/CredentialStore.class.php:1602 -#: ../../include/class/ModuleTemplates.class.php:1402 -#: ../../include/class/ModuleTemplates.class.php:1407 +#: ../../include/class/Diagnostics.class.php:2118 +#: ../../include/class/CredentialStore.class.php:1606 +#: ../../include/class/CredentialStore.class.php:1611 +#: ../../include/class/ModuleTemplates.class.php:1406 +#: ../../include/class/ModuleTemplates.class.php:1411 +#: ../../include/class/AgentDeployWizard.class.php:611 +#: ../../include/class/AgentDeployWizard.class.php:616 #: ../../include/class/SatelliteCollection.class.php:626 #: ../../include/class/SatelliteCollection.class.php:631 #: ../../include/class/WebServerModuleDebug.class.php:366 #: ../../include/class/WebServerModuleDebug.class.php:371 -#: ../../include/class/AgentWizard.class.php:6034 -#: ../../include/class/AgentWizard.class.php:6039 -#: ../../operation/visual_console/view.php:944 -#: ../../operation/visual_console/view.php:949 +#: ../../include/class/AgentWizard.class.php:6030 +#: ../../include/class/AgentWizard.class.php:6035 +#: ../../operation/visual_console/view.php:946 +#: ../../operation/visual_console/view.php:951 msgid "Failed" msgstr "Fallo" @@ -707,21 +733,21 @@ msgstr "Fallo" #: ../../enterprise/include/functions_policies.php:3734 #: ../../enterprise/operation/agentes/tag_view.php:702 #: ../../enterprise/operation/services/massive/services.create.php:897 -#: ../../godmode/groups/configure_group.php:224 -#: ../../godmode/groups/group_list.php:880 ../../godmode/groups/tactical.php:181 +#: ../../godmode/groups/configure_group.php:243 +#: ../../godmode/groups/group_list.php:881 ../../godmode/groups/tactical.php:181 #: ../../godmode/agentes/configurar_agente.php:441 #: ../../godmode/agentes/configurar_agente.php:745 -#: ../../godmode/agentes/modificar_agente.php:829 -#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:265 +#: ../../godmode/agentes/modificar_agente.php:841 +#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:263 #: ../../godmode/massive/massive_copy_modules.php:216 #: ../../godmode/alerts/configure_alert_command.php:58 #: ../../godmode/alerts/alert_actions.php:70 #: ../../godmode/alerts/alert_commands.php:581 -#: ../../godmode/alerts/alert_templates.php:126 -#: ../../godmode/alerts/alert_templates.php:135 -#: ../../godmode/alerts/alert_templates.php:188 -#: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/alerts/alert_templates.php:129 +#: ../../godmode/alerts/alert_templates.php:138 +#: ../../godmode/alerts/alert_templates.php:192 +#: ../../godmode/alerts/alert_templates.php:215 +#: ../../godmode/alerts/alert_templates.php:236 #: ../../godmode/alerts/configure_alert_action.php:72 #: ../../godmode/alerts/configure_alert_action.php:92 #: ../../godmode/alerts/configure_alert_template.php:95 @@ -730,20 +756,20 @@ msgstr "Fallo" #: ../../godmode/alerts/alert_view.php:74 ../../godmode/alerts/alert_list.php:504 #: ../../godmode/alerts/alert_list.php:523 #: ../../mobile/include/functions_web.php:26 ../../mobile/operation/agents.php:98 -#: ../../mobile/operation/agents.php:407 ../../mobile/operation/home.php:74 -#: ../../mobile/operation/agent.php:355 ../../mobile/operation/alerts.php:194 -#: ../../include/functions_reporting_html.php:2594 -#: ../../include/functions_reporting_html.php:5671 -#: ../../include/functions_treeview.php:392 +#: ../../mobile/operation/agents.php:408 ../../mobile/operation/home.php:74 +#: ../../mobile/operation/agent.php:358 ../../mobile/operation/alerts.php:194 +#: ../../include/functions_reporting_html.php:2615 +#: ../../include/functions_reporting_html.php:5699 +#: ../../include/functions_treeview.php:396 #: ../../include/functions_reports.php:855 #: ../../include/functions_reports.php:859 #: ../../include/functions_reports.php:865 #: ../../include/functions_reports.php:871 #: ../../include/class/AgentsAlerts.class.php:567 #: ../../operation/search_agents.php:57 ../../operation/search_results.php:107 -#: ../../operation/agentes/estado_agente.php:1052 +#: ../../operation/agentes/estado_agente.php:1060 #: ../../operation/agentes/ver_agente.php:1436 -#: ../../operation/agentes/ver_agente.php:1848 +#: ../../operation/agentes/ver_agente.php:1844 msgid "Alerts" msgstr "Alertas" @@ -766,7 +792,7 @@ msgstr "Días especiales" #: ../../enterprise/godmode/policies/policy_alerts.php:68 #: ../../enterprise/godmode/policies/configure_policy.php:85 #: ../../enterprise/godmode/policies/policy_modules.php:481 -#: ../../enterprise/godmode/policies/policy_queue.php:211 +#: ../../enterprise/godmode/policies/policy_queue.php:213 #: ../../enterprise/godmode/policies/policies.php:268 #: ../../enterprise/godmode/policies/policy_linking.php:120 #: ../../enterprise/godmode/policies/policy_external_alerts.php:322 @@ -786,10 +812,10 @@ msgstr "Días especiales" #: ../../extensions/resource_registration.php:1105 #: ../../godmode/modules/manage_nc_groups.php:315 #: ../../godmode/modules/manage_inventory_modules.php:67 -#: ../../godmode/modules/manage_network_components.php:314 +#: ../../godmode/modules/manage_network_components.php:315 #: ../../godmode/groups/group_list.php:393 #: ../../godmode/groups/modu_group_list.php:95 -#: ../../godmode/users/profile_list.php:117 ../../godmode/users/user_list.php:537 +#: ../../godmode/users/profile_list.php:117 ../../godmode/users/user_list.php:538 #: ../../godmode/agentes/modificar_agente.php:118 #: ../../godmode/massive/massive_operations.php:433 #: ../../godmode/massive/massive_edit_users.php:47 @@ -798,7 +824,7 @@ msgstr "Días especiales" #: ../../godmode/alerts/configure_alert_command.php:194 #: ../../godmode/alerts/alert_actions.php:218 #: ../../godmode/alerts/alert_commands.php:730 -#: ../../godmode/alerts/alert_templates.php:266 +#: ../../godmode/alerts/alert_templates.php:270 #: ../../godmode/alerts/configure_alert_action.php:125 #: ../../godmode/alerts/configure_alert_template.php:429 #: ../../godmode/setup/os.list.php:49 @@ -817,7 +843,7 @@ msgstr "metaconsola" #: ../../enterprise/godmode/policies/policy_alerts.php:70 #: ../../enterprise/godmode/policies/configure_policy.php:87 #: ../../enterprise/godmode/policies/policy_modules.php:483 -#: ../../enterprise/godmode/policies/policy_queue.php:213 +#: ../../enterprise/godmode/policies/policy_queue.php:215 #: ../../enterprise/godmode/policies/policies.php:270 #: ../../enterprise/godmode/policies/policy_linking.php:122 #: ../../enterprise/godmode/policies/policy_external_alerts.php:324 @@ -835,10 +861,10 @@ msgstr "metaconsola" #: ../../extensions/resource_registration.php:1107 #: ../../godmode/modules/manage_nc_groups.php:317 #: ../../godmode/modules/manage_inventory_modules.php:69 -#: ../../godmode/modules/manage_network_components.php:316 +#: ../../godmode/modules/manage_network_components.php:317 #: ../../godmode/groups/group_list.php:395 #: ../../godmode/groups/modu_group_list.php:97 -#: ../../godmode/users/profile_list.php:119 ../../godmode/users/user_list.php:539 +#: ../../godmode/users/profile_list.php:119 ../../godmode/users/user_list.php:540 #: ../../godmode/agentes/modificar_agente.php:120 #: ../../godmode/massive/massive_operations.php:435 #: ../../godmode/massive/massive_edit_users.php:49 @@ -847,7 +873,7 @@ msgstr "metaconsola" #: ../../godmode/alerts/configure_alert_command.php:196 #: ../../godmode/alerts/alert_actions.php:220 #: ../../godmode/alerts/alert_commands.php:732 -#: ../../godmode/alerts/alert_templates.php:268 +#: ../../godmode/alerts/alert_templates.php:272 #: ../../godmode/alerts/configure_alert_action.php:127 #: ../../godmode/alerts/configure_alert_template.php:431 #: ../../godmode/setup/os.list.php:51 ../../godmode/tag/tag.php:188 @@ -872,7 +898,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_excel.php:207 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:778 #: ../../extensions/api_checker.php:286 ../../godmode/modules/module_list.php:97 -#: ../../godmode/groups/group_list.php:874 +#: ../../godmode/groups/group_list.php:875 #: ../../godmode/groups/modu_group_list.php:260 #: ../../godmode/agentes/fields_manager.php:152 #: ../../godmode/agentes/agent_manager.php:364 @@ -899,7 +925,7 @@ msgstr "ID" #: ../../enterprise/views/ncm/vendors/edit.php:67 #: ../../enterprise/views/ipam/sites/list.php:46 #: ../../enterprise/views/ipam/sites/edit.php:40 -#: ../../enterprise/meta/advanced/servers.build_table.php:61 +#: ../../enterprise/meta/advanced/servers.build_table.php:77 #: ../../enterprise/meta/advanced/collections.data.php:350 #: ../../enterprise/meta/include/functions_autoprovision.php:495 #: ../../enterprise/meta/include/functions_autoprovision.php:603 @@ -922,7 +948,7 @@ msgstr "ID" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:580 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 #: ../../enterprise/godmode/policies/configure_policy.php:112 -#: ../../enterprise/godmode/policies/policy_modules.php:1544 +#: ../../enterprise/godmode/policies/policy_modules.php:1589 #: ../../enterprise/godmode/policies/policies.php:437 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:270 #: ../../enterprise/godmode/policies/policy_collections.php:240 @@ -985,25 +1011,25 @@ msgstr "ID" #: ../../godmode/modules/manage_inventory_modules_form.php:115 #: ../../godmode/modules/module_list.php:99 #: ../../godmode/modules/manage_network_templates.php:248 -#: ../../godmode/groups/configure_group.php:132 -#: ../../godmode/groups/group_list.php:876 +#: ../../godmode/groups/configure_group.php:142 +#: ../../godmode/groups/group_list.php:877 #: ../../godmode/groups/configure_modu_group.php:82 #: ../../godmode/groups/modu_group_list.php:261 -#: ../../godmode/users/user_list.php:574 +#: ../../godmode/users/user_list.php:575 #: ../../godmode/agentes/inventory_manager.php:233 #: ../../godmode/agentes/planned_downtime.editor.php:882 #: ../../godmode/agentes/planned_downtime.editor.php:1356 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:128 #: ../../godmode/agentes/configure_field.php:115 #: ../../godmode/agentes/module_manager_editor_common.php:252 -#: ../../godmode/agentes/module_manager_editor_common.php:1430 +#: ../../godmode/agentes/module_manager_editor_common.php:1440 #: ../../godmode/agentes/module_manager.php:605 #: ../../godmode/netflow/nf_edit.php:166 -#: ../../godmode/netflow/nf_edit_form.php:199 +#: ../../godmode/netflow/nf_edit_form.php:242 #: ../../godmode/alerts/configure_alert_command.php:220 #: ../../godmode/alerts/alert_actions.php:351 #: ../../godmode/alerts/alert_commands.php:749 -#: ../../godmode/alerts/alert_templates.php:409 +#: ../../godmode/alerts/alert_templates.php:413 #: ../../godmode/alerts/configure_alert_action.php:183 #: ../../godmode/alerts/configure_alert_template.php:1080 #: ../../godmode/setup/os.builder.php:72 ../../godmode/setup/os.builder.php:73 @@ -1012,44 +1038,49 @@ msgstr "ID" #: ../../godmode/reporting/visual_console_builder.data.php:151 #: ../../godmode/reporting/create_container.php:247 #: ../../godmode/reporting/reporting_builder.item_editor.php:83 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1085 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1087 #: ../../godmode/reporting/reporting_builder.main.php:91 #: ../../godmode/reporting/reporting_builder.main.php:95 #: ../../godmode/reporting/graph_builder.main.php:128 #: ../../godmode/events/event_filter.php:144 #: ../../godmode/events/event_responses.editor.php:97 #: ../../godmode/events/event_responses.list.php:66 -#: ../../godmode/servers/servers.build_table.php:77 +#: ../../godmode/servers/servers.build_table.php:79 #: ../../godmode/servers/modificar_server.php:91 -#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:992 -#: ../../godmode/tag/tag.php:230 ../../godmode/tag/edit_tag.php:190 +#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:984 +#: ../../godmode/tag/tag.php:231 ../../godmode/tag/edit_tag.php:194 #: ../../godmode/category/edit_category.php:189 +#: ../../mobile/operation/module_data.php:264 +#: ../../mobile/operation/server_status.php:283 +#: ../../mobile/operation/server_status.php:321 +#: ../../mobile/operation/server_status.php:351 +#: ../../mobile/operation/server_status.php:447 #: ../../include/functions_reporting_html.php:1058 #: ../../include/functions_reporting_html.php:1066 -#: ../../include/functions_reporting_html.php:1760 -#: ../../include/functions_reporting_html.php:2643 -#: ../../include/functions_reporting_html.php:2993 -#: ../../include/functions_reporting_html.php:3709 -#: ../../include/functions_reporting_html.php:6370 +#: ../../include/functions_reporting_html.php:1769 +#: ../../include/functions_reporting_html.php:2662 +#: ../../include/functions_reporting_html.php:3021 +#: ../../include/functions_reporting_html.php:3737 +#: ../../include/functions_reporting_html.php:6404 #: ../../include/functions_treeview.php:69 #: ../../include/class/EventSound.class.php:306 -#: ../../include/class/NetworkMap.class.php:3063 -#: ../../include/class/NetworkMap.class.php:3109 -#: ../../include/class/NetworkMap.class.php:3121 -#: ../../include/class/NetworkMap.class.php:3491 +#: ../../include/class/NetworkMap.class.php:3069 +#: ../../include/class/NetworkMap.class.php:3115 +#: ../../include/class/NetworkMap.class.php:3127 +#: ../../include/class/NetworkMap.class.php:3497 #: ../../include/class/ManageNetScanScripts.class.php:403 -#: ../../include/class/ManageNetScanScripts.class.php:553 +#: ../../include/class/ManageNetScanScripts.class.php:549 #: ../../include/class/ModuleTemplates.class.php:848 #: ../../include/class/ModuleTemplates.class.php:1030 #: ../../include/class/CalendarManager.class.php:1026 #: ../../include/class/SatelliteCollection.class.php:132 -#: ../../include/functions_filemanager.php:644 -#: ../../include/functions_snmp_browser.php:1851 -#: ../../include/functions_events.php:4339 -#: ../../include/functions_events.php:4472 ../../operation/search_users.php:44 +#: ../../include/functions_filemanager.php:659 +#: ../../include/functions_snmp_browser.php:1860 +#: ../../include/functions_events.php:4344 +#: ../../include/functions_events.php:4477 ../../operation/search_users.php:44 #: ../../operation/search_helps.php:31 #: ../../operation/agentes/pandora_networkmap.editor.php:332 -#: ../../operation/agentes/pandora_networkmap.php:716 +#: ../../operation/agentes/pandora_networkmap.php:717 #: ../../operation/agentes/pandora_networkmap.view.php:137 #: ../../operation/gis_maps/gis_map.php:115 #: ../../operation/incidents/configure_integriaims_incident.php:232 @@ -1117,7 +1148,7 @@ msgstr "Nombre" #: ../../enterprise/include/class/Omnishell.class.php:861 #: ../../enterprise/include/class/DB2.app.php:477 #: ../../enterprise/include/class/Aws.S3.php:441 -#: ../../enterprise/include/class/SAP.app.php:635 +#: ../../enterprise/include/class/SAP.app.php:636 #: ../../enterprise/include/class/Aws.cloud.php:566 #: ../../enterprise/include/class/Aws.cloud.php:1252 #: ../../enterprise/include/class/MySQL.app.php:482 @@ -1133,31 +1164,31 @@ msgstr "Nombre" #: ../../enterprise/operation/agentes/tag_view.php:698 #: ../../enterprise/operation/agentes/ver_agente.php:70 #: ../../enterprise/operation/agentes/ver_agente.php:91 -#: ../../enterprise/operation/log/log_viewer.php:616 +#: ../../enterprise/operation/log/log_viewer.php:614 #: ../../enterprise/operation/services/services.service.php:112 #: ../../enterprise/operation/services/massive/services.create.php:678 #: ../../enterprise/operation/services/services.list.php:268 #: ../../enterprise/operation/services/services.list.php:540 #: ../../enterprise/operation/services/services.table_services.php:218 #: ../../enterprise/tools/ipam/ipam_editor.php:335 -#: ../../extensions/agents_modules.php:419 +#: ../../extensions/agents_modules.php:427 #: ../../godmode/modules/manage_network_templates_form.php:235 #: ../../godmode/modules/manage_network_templates_form.php:303 #: ../../godmode/modules/manage_network_templates_form.php:339 #: ../../godmode/modules/manage_network_components_form_common.php:131 -#: ../../godmode/modules/manage_network_components.php:659 -#: ../../godmode/modules/manage_network_components.php:778 -#: ../../godmode/users/user_list.php:469 +#: ../../godmode/modules/manage_network_components.php:662 +#: ../../godmode/modules/manage_network_components.php:781 +#: ../../godmode/users/user_list.php:470 #: ../../godmode/agentes/configurar_agente.php:518 #: ../../godmode/agentes/modificar_agente.php:314 -#: ../../godmode/agentes/modificar_agente.php:697 +#: ../../godmode/agentes/modificar_agente.php:707 #: ../../godmode/agentes/planned_downtime.list.php:735 #: ../../godmode/agentes/planned_downtime.editor.php:895 #: ../../godmode/agentes/planned_downtime.editor.php:1357 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141 #: ../../godmode/agentes/agent_incidents.php:91 #: ../../godmode/netflow/nf_edit.php:167 -#: ../../godmode/netflow/nf_edit_form.php:211 +#: ../../godmode/netflow/nf_edit_form.php:256 #: ../../godmode/snmpconsole/snmp_alert.php:837 #: ../../godmode/gis_maps/configure_gis_map.php:509 #: ../../godmode/gis_maps/configure_gis_map.php:646 @@ -1167,7 +1198,7 @@ msgstr "Nombre" #: ../../godmode/massive/massive_delete_action_alerts.php:210 #: ../../godmode/massive/massive_add_alerts.php:211 #: ../../godmode/massive/massive_enable_disable_alerts.php:170 -#: ../../godmode/massive/massive_edit_agents.php:694 +#: ../../godmode/massive/massive_edit_agents.php:711 #: ../../godmode/massive/massive_delete_profiles.php:153 #: ../../godmode/massive/massive_delete_alerts.php:290 #: ../../godmode/massive/massive_add_action_alerts.php:198 @@ -1177,10 +1208,10 @@ msgstr "Nombre" #: ../../godmode/alerts/alert_actions.php:353 #: ../../godmode/alerts/alert_list.list.php:220 #: ../../godmode/alerts/alert_commands.php:751 -#: ../../godmode/alerts/alert_templates.php:410 +#: ../../godmode/alerts/alert_templates.php:414 #: ../../godmode/alerts/configure_alert_action.php:220 #: ../../godmode/alerts/configure_alert_template.php:1116 -#: ../../godmode/setup/news.php:212 ../../godmode/setup/gis.php:70 +#: ../../godmode/setup/news.php:216 ../../godmode/setup/gis.php:70 #: ../../godmode/setup/gis_step_2.php:237 #: ../../godmode/setup/setup_integria.php:426 #: ../../godmode/setup/setup_integria.php:560 @@ -1195,10 +1226,10 @@ msgstr "Nombre" #: ../../godmode/reporting/visual_console_favorite.php:182 #: ../../godmode/reporting/reporting_builder.item_editor.php:72 #: ../../godmode/reporting/reporting_builder.item_editor.php:87 -#: ../../godmode/reporting/reporting_builder.item_editor.php:213 -#: ../../godmode/reporting/reporting_builder.item_editor.php:892 +#: ../../godmode/reporting/reporting_builder.item_editor.php:214 +#: ../../godmode/reporting/reporting_builder.item_editor.php:893 #: ../../godmode/reporting/reporting_builder.item_editor.php:1641 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3494 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3503 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.elements.php:343 #: ../../godmode/reporting/reporting_builder.main.php:119 @@ -1208,43 +1239,45 @@ msgstr "Nombre" #: ../../godmode/reporting/graph_builder.main.php:176 #: ../../godmode/events/event_filter.php:145 #: ../../godmode/events/event_responses.editor.php:120 -#: ../../godmode/events/event_edit_filter.php:334 +#: ../../godmode/events/event_edit_filter.php:336 #: ../../godmode/events/event_responses.list.php:68 #: ../../godmode/events/custom_events.php:98 -#: ../../godmode/wizards/HostDevices.class.php:933 -#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:157 -#: ../../mobile/operation/agents.php:234 ../../mobile/operation/agents.php:235 -#: ../../mobile/operation/agents.php:405 ../../mobile/operation/modules.php:171 +#: ../../godmode/wizards/HostDevices.class.php:935 +#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:158 +#: ../../mobile/operation/agents.php:235 ../../mobile/operation/agents.php:236 +#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:171 #: ../../mobile/operation/modules.php:176 ../../mobile/operation/modules.php:266 #: ../../mobile/operation/modules.php:267 ../../mobile/operation/alerts.php:113 #: ../../mobile/operation/alerts.php:118 ../../mobile/operation/alerts.php:231 #: ../../mobile/operation/alerts.php:232 #: ../../mobile/operation/visualmaps.php:113 #: ../../mobile/operation/visualmaps.php:118 -#: ../../mobile/operation/events.php:666 ../../mobile/operation/events.php:671 -#: ../../mobile/operation/events.php:832 ../../mobile/operation/events.php:954 -#: ../../mobile/operation/events.php:955 +#: ../../mobile/operation/events.php:695 ../../mobile/operation/events.php:700 +#: ../../mobile/operation/events.php:861 ../../mobile/operation/events.php:998 +#: ../../mobile/operation/events.php:999 +#: ../../mobile/operation/server_status.php:162 +#: ../../mobile/operation/server_status.php:167 #: ../../include/functions_visual_map_editor.php:70 -#: ../../include/functions_visual_map_editor.php:594 -#: ../../include/functions_visual_map_editor.php:1395 -#: ../../include/functions_reporting_html.php:1604 -#: ../../include/functions_reporting_html.php:2355 -#: ../../include/functions_reporting_html.php:3660 -#: ../../include/functions_reporting_html.php:6458 -#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:113 -#: ../../include/ajax/heatmap.ajax.php:358 +#: ../../include/functions_visual_map_editor.php:588 +#: ../../include/functions_visual_map_editor.php:1453 +#: ../../include/functions_reporting_html.php:1613 +#: ../../include/functions_reporting_html.php:2376 +#: ../../include/functions_reporting_html.php:3688 +#: ../../include/functions_reporting_html.php:6492 +#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:142 +#: ../../include/ajax/heatmap.ajax.php:523 #: ../../include/ajax/custom_fields.php:630 #: ../../include/ajax/custom_fields.php:679 -#: ../../include/functions_graph.php:4937 ../../include/functions_gis.php:228 +#: ../../include/functions_graph.php:4947 ../../include/functions_gis.php:228 #: ../../include/functions_profile.php:204 -#: ../../include/functions_visual_map.php:4215 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:551 -#: ../../include/rest-api/models/VisualConsole/Item.php:2140 -#: ../../include/functions_html.php:1561 +#: ../../include/functions_visual_map.php:4224 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:697 +#: ../../include/rest-api/models/VisualConsole/Item.php:2143 +#: ../../include/functions_html.php:1566 #: ../../include/functions_massive_operations.php:124 -#: ../../include/class/NetworkMap.class.php:2985 -#: ../../include/class/NetworkMap.class.php:3046 -#: ../../include/class/NetworkMap.class.php:3412 +#: ../../include/class/NetworkMap.class.php:2991 +#: ../../include/class/NetworkMap.class.php:3052 +#: ../../include/class/NetworkMap.class.php:3418 #: ../../include/class/AgentsAlerts.class.php:774 #: ../../include/class/CredentialStore.class.php:814 #: ../../include/class/CredentialStore.class.php:846 @@ -1252,37 +1285,37 @@ msgstr "Nombre" #: ../../include/class/CustomNetScan.class.php:506 #: ../../include/class/ModuleTemplates.class.php:728 #: ../../include/class/CalendarManager.class.php:1027 +#: ../../include/class/AgentDeployWizard.class.php:342 #: ../../include/functions_container.php:149 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:237 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:826 -#: ../../include/lib/Group.php:566 ../../include/functions_snmp_browser.php:1863 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:241 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:827 +#: ../../include/lib/Group.php:566 ../../include/functions_snmp_browser.php:1872 #: ../../include/functions_events.php:203 ../../include/functions_events.php:256 -#: ../../include/functions_events.php:5051 ../../operation/heatmap.php:122 +#: ../../include/functions_events.php:5056 ../../operation/heatmap.php:122 #: ../../operation/heatmap.php:124 ../../operation/search_agents.php:46 -#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:999 -#: ../../operation/visual_console/view.php:371 +#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:996 +#: ../../operation/visual_console/view.php:373 #: ../../operation/agentes/estado_agente.php:291 -#: ../../operation/agentes/estado_agente.php:1039 +#: ../../operation/agentes/estado_agente.php:1047 #: ../../operation/agentes/pandora_networkmap.editor.php:344 #: ../../operation/agentes/pandora_networkmap.editor.php:428 #: ../../operation/agentes/interface_view.functions.php:37 #: ../../operation/agentes/exportdata.php:328 -#: ../../operation/agentes/status_monitor.php:816 -#: ../../operation/agentes/group_view.php:240 +#: ../../operation/agentes/status_monitor.php:815 +#: ../../operation/agentes/group_view.php:243 #: ../../operation/agentes/pandora_networkmap.view.php:140 #: ../../operation/agentes/pandora_networkmap.view.php:176 #: ../../operation/agentes/ver_agente.php:1036 -#: ../../operation/agentes/estado_generalagente.php:492 +#: ../../operation/agentes/estado_generalagente.php:463 #: ../../operation/agentes/alerts_status.functions.php:73 #: ../../operation/gis_maps/gis_map.php:116 ../../operation/gis_maps/ajax.php:332 #: ../../operation/gis_maps/ajax.php:438 #: ../../operation/incidents/configure_integriaims_incident.php:269 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:340 #: ../../operation/incidents/list_integriaims_incidents.php:347 -#: ../../operation/inventory/inventory.php:510 -#: ../../operation/inventory/inventory.php:1002 -#: ../../operation/inventory/inventory.php:1296 -#: ../../operation/events/events.php:1687 ../../operation/search_maps.php:29 +#: ../../operation/inventory/inventory.php:512 +#: ../../operation/inventory/inventory.php:1248 +#: ../../operation/events/events.php:1741 ../../operation/search_maps.php:29 #: ../../general/ui/agents_list.php:76 msgid "Group" msgstr "Grupo" @@ -1297,7 +1330,7 @@ msgstr "Grupo" #: ../../enterprise/views/ipam/sites/list.php:73 #: ../../enterprise/meta/advanced/metasetup.consoles.php:965 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:744 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3295 #: ../../enterprise/include/class/LogSource.class.php:634 @@ -1308,16 +1341,16 @@ msgstr "Grupo" #: ../../godmode/update_manager/update_manager.history.php:67 #: ../../godmode/agentes/modificar_agente.php:381 #: ../../godmode/snmpconsole/snmp_alert.php:1742 -#: ../../godmode/events/event_edit_filter.php:409 -#: ../../mobile/operation/agents.php:253 ../../mobile/operation/modules.php:318 -#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:992 -#: ../../include/ajax/module.php:312 ../../include/class/ConfigPEN.class.php:630 +#: ../../godmode/events/event_edit_filter.php:411 +#: ../../mobile/operation/agents.php:254 ../../mobile/operation/modules.php:318 +#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:1036 +#: ../../include/ajax/module.php:335 ../../include/class/ConfigPEN.class.php:630 #: ../../include/class/EventSound.class.php:337 #: ../../include/class/CredentialStore.class.php:858 #: ../../include/class/SnmpConsole.class.php:374 #: ../../include/class/AuditLog.class.php:197 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:241 -#: ../../operation/events/events.php:1820 +#: ../../operation/events/events.php:1874 msgid "Free search" msgstr "Búsqueda libre" @@ -1369,8 +1402,8 @@ msgstr "Búsqueda libre" #: ../../enterprise/godmode/agentes/collections.php:593 #: ../../enterprise/godmode/policies/configure_policy.php:169 #: ../../enterprise/godmode/policies/policy_modules.php:433 -#: ../../enterprise/godmode/policies/policy_modules.php:1746 -#: ../../enterprise/godmode/policies/policy_modules.php:1871 +#: ../../enterprise/godmode/policies/policy_modules.php:1791 +#: ../../enterprise/godmode/policies/policy_modules.php:1916 #: ../../enterprise/godmode/policies/policies.php:728 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:42 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:165 @@ -1395,50 +1428,50 @@ msgstr "Búsqueda libre" #: ../../godmode/modules/manage_network_templates_form.php:180 #: ../../godmode/modules/manage_nc_groups.php:344 #: ../../godmode/modules/manage_inventory_modules.php:374 -#: ../../godmode/modules/manage_network_components_form.php:379 -#: ../../godmode/modules/manage_network_components.php:896 +#: ../../godmode/modules/manage_network_components_form.php:382 +#: ../../godmode/modules/manage_network_components.php:899 #: ../../godmode/modules/manage_inventory_modules_form.php:249 #: ../../godmode/modules/manage_network_templates.php:311 -#: ../../godmode/groups/configure_group.php:277 +#: ../../godmode/groups/configure_group.php:296 #: ../../godmode/groups/configure_modu_group.php:102 -#: ../../godmode/users/configure_user.php:1665 +#: ../../godmode/users/configure_user.php:1717 #: ../../godmode/agentes/module_manager_editor.php:817 #: ../../godmode/agentes/planned_downtime.list.php:680 #: ../../godmode/agentes/planned_downtime.list.php:989 -#: ../../godmode/agentes/agent_manager.php:1081 +#: ../../godmode/agentes/agent_manager.php:1087 #: ../../godmode/agentes/configure_field.php:203 -#: ../../godmode/agentes/module_manager.php:1119 -#: ../../godmode/netflow/nf_edit_form.php:338 +#: ../../godmode/agentes/module_manager.php:1134 +#: ../../godmode/netflow/nf_edit_form.php:454 #: ../../godmode/snmpconsole/snmp_alert.php:1711 #: ../../godmode/snmpconsole/snmp_alert.php:2177 #: ../../godmode/snmpconsole/snmp_filters.php:275 #: ../../godmode/snmpconsole/snmp_filters.php:366 #: ../../godmode/alerts/configure_alert_command.php:395 #: ../../godmode/alerts/alert_actions.php:502 -#: ../../godmode/alerts/alert_list.list.php:1096 +#: ../../godmode/alerts/alert_list.list.php:1095 #: ../../godmode/alerts/alert_commands.php:839 -#: ../../godmode/alerts/alert_templates.php:514 +#: ../../godmode/alerts/alert_templates.php:518 #: ../../godmode/alerts/configure_alert_action.php:446 -#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:321 +#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:325 #: ../../godmode/setup/gis.php:100 ../../godmode/setup/os.php:95 #: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:165 #: ../../godmode/reporting/create_container.php:383 #: ../../godmode/reporting/map_builder.php:586 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2330 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2339 #: ../../godmode/reporting/reporting_builder.main.php:45 #: ../../godmode/reporting/graph_builder.main.php:298 #: ../../godmode/events/event_responses.editor.php:328 -#: ../../godmode/events/event_edit_filter.php:957 -#: ../../godmode/servers/plugin.php:713 ../../godmode/tag/edit_tag.php:258 +#: ../../godmode/events/event_edit_filter.php:959 +#: ../../godmode/servers/plugin.php:705 ../../godmode/tag/edit_tag.php:262 #: ../../godmode/category/edit_category.php:201 -#: ../../include/functions_visual_map_editor.php:882 +#: ../../include/functions_visual_map_editor.php:930 #: ../../include/class/EventSound.class.php:199 #: ../../include/class/EventSound.class.php:282 -#: ../../include/class/ManageNetScanScripts.class.php:769 +#: ../../include/class/ManageNetScanScripts.class.php:765 #: ../../include/class/ModuleTemplates.class.php:933 #: ../../include/class/ModuleTemplates.class.php:987 -#: ../../include/functions_filemanager.php:859 -#: ../../include/functions_filemanager.php:920 +#: ../../include/functions_filemanager.php:878 +#: ../../include/functions_filemanager.php:940 #: ../../operation/gis_maps/gis_map.php:220 #: ../../operation/incidents/configure_integriaims_incident.php:406 #: ../../operation/incidents/list_integriaims_incidents.php:654 @@ -1464,27 +1497,27 @@ msgstr "Configurar día especial" #: ../../enterprise/include/functions_reporting.php:2234 #: ../../enterprise/include/functions_reporting.php:2252 #: ../../extensions/insert_data.php:196 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2200 -#: ../../mobile/operation/tactical.php:350 -#: ../../include/functions_reporting_html.php:2018 -#: ../../include/functions_reporting_html.php:2835 -#: ../../include/functions_reporting_html.php:2844 -#: ../../include/functions_reporting_html.php:2849 -#: ../../include/functions_reporting_html.php:2858 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2209 +#: ../../mobile/operation/tactical.php:351 +#: ../../include/functions_reporting_html.php:2034 #: ../../include/functions_reporting_html.php:2863 -#: ../../include/functions_reporting_html.php:2870 -#: ../../include/functions_reporting_html.php:2920 -#: ../../include/functions_reporting_html.php:2994 -#: ../../include/functions_reporting_html.php:6014 -#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1065 +#: ../../include/functions_reporting_html.php:2872 +#: ../../include/functions_reporting_html.php:2877 +#: ../../include/functions_reporting_html.php:2886 +#: ../../include/functions_reporting_html.php:2891 +#: ../../include/functions_reporting_html.php:2898 +#: ../../include/functions_reporting_html.php:2948 +#: ../../include/functions_reporting_html.php:3022 +#: ../../include/functions_reporting_html.php:6048 +#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1175 #: ../../include/class/AuditLog.class.php:112 -#: ../../include/functions_reporting.php:4728 -#: ../../include/functions_reporting.php:4769 +#: ../../include/functions_reporting.php:4737 +#: ../../include/functions_reporting.php:4778 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:624 -#: ../../operation/agentes/agent_inventory.php:127 +#: ../../operation/agentes/agent_inventory.php:135 #: ../../operation/incidents/list_integriaims_incidents.php:441 -#: ../../operation/inventory/inventory.php:681 -#: ../../operation/reporting/graph_viewer.php:321 ../../general/logon_ok.php:257 +#: ../../operation/inventory/inventory.php:682 +#: ../../operation/reporting/graph_viewer.php:321 ../../general/logon_ok.php:302 msgid "Date" msgstr "Fecha" @@ -1500,7 +1533,7 @@ msgstr "Fecha" #: ../../enterprise/include/functions_reporting.php:4403 #: ../../godmode/alerts/alert_templates.php:62 #: ../../godmode/reporting/reporting_builder.item_editor.php:1530 -#: ../../include/functions_html.php:2300 +#: ../../include/functions_html.php:2315 msgid "Monday" msgstr "Lunes" @@ -1516,7 +1549,7 @@ msgstr "Lunes" #: ../../enterprise/include/functions_reporting.php:4404 #: ../../godmode/alerts/alert_templates.php:63 #: ../../godmode/reporting/reporting_builder.item_editor.php:1538 -#: ../../include/functions_html.php:2301 +#: ../../include/functions_html.php:2316 msgid "Tuesday" msgstr "Martes" @@ -1532,7 +1565,7 @@ msgstr "Martes" #: ../../enterprise/include/functions_reporting.php:4405 #: ../../godmode/alerts/alert_templates.php:64 #: ../../godmode/reporting/reporting_builder.item_editor.php:1546 -#: ../../include/functions_html.php:2302 +#: ../../include/functions_html.php:2317 msgid "Wednesday" msgstr "Miércoles" @@ -1548,7 +1581,7 @@ msgstr "Miércoles" #: ../../enterprise/include/functions_reporting.php:4406 #: ../../godmode/alerts/alert_templates.php:65 #: ../../godmode/reporting/reporting_builder.item_editor.php:1554 -#: ../../include/functions_html.php:2303 +#: ../../include/functions_html.php:2318 msgid "Thursday" msgstr "Jueves" @@ -1564,7 +1597,7 @@ msgstr "Jueves" #: ../../enterprise/include/functions_reporting.php:4407 #: ../../godmode/alerts/alert_templates.php:66 #: ../../godmode/reporting/reporting_builder.item_editor.php:1562 -#: ../../include/functions_html.php:2304 +#: ../../include/functions_html.php:2319 msgid "Friday" msgstr "Viernes" @@ -1580,7 +1613,7 @@ msgstr "Viernes" #: ../../enterprise/include/functions_reporting.php:4408 #: ../../godmode/alerts/alert_templates.php:67 #: ../../godmode/reporting/reporting_builder.item_editor.php:1570 -#: ../../include/functions_html.php:2305 +#: ../../include/functions_html.php:2320 msgid "Saturday" msgstr "Sábado" @@ -1596,7 +1629,7 @@ msgstr "Sábado" #: ../../enterprise/include/functions_reporting.php:4409 #: ../../godmode/alerts/alert_templates.php:68 #: ../../godmode/reporting/reporting_builder.item_editor.php:1578 -#: ../../include/functions_html.php:2299 +#: ../../include/functions_html.php:2314 msgid "Sunday" msgstr "Domingo" @@ -1668,7 +1701,7 @@ msgstr "Mismo día de la semana" #: ../../enterprise/godmode/policies/policy_collections.php:352 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:153 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:429 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:345 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:350 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:355 @@ -1703,7 +1736,7 @@ msgstr "Mismo día de la semana" #: ../../enterprise/include/class/DatabaseHA.class.php:892 #: ../../enterprise/include/class/AgentRepository.class.php:1004 #: ../../enterprise/include/class/Omnishell.class.php:829 -#: ../../enterprise/include/class/LogSource.class.php:828 +#: ../../enterprise/include/class/LogSource.class.php:825 #: ../../enterprise/include/class/SAPView.class.php:325 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2314 #: ../../enterprise/operation/agentes/policy_view.php:209 @@ -1718,24 +1751,24 @@ msgstr "Mismo día de la semana" #: ../../godmode/modules/manage_nc_groups_form.php:95 #: ../../godmode/modules/manage_network_templates_form.php:178 #: ../../godmode/modules/manage_inventory_modules.php:338 -#: ../../godmode/modules/manage_network_components_form.php:373 +#: ../../godmode/modules/manage_network_components_form.php:376 #: ../../godmode/modules/manage_inventory_modules_form.php:245 -#: ../../godmode/groups/configure_group.php:268 +#: ../../godmode/groups/configure_group.php:287 #: ../../godmode/groups/configure_modu_group.php:99 #: ../../godmode/update_manager/update_manager.setup.php:406 #: ../../godmode/users/configure_profile.php:418 -#: ../../godmode/users/configure_user.php:1669 -#: ../../godmode/agentes/status_monitor_custom_fields.php:211 +#: ../../godmode/users/configure_user.php:1721 +#: ../../godmode/agentes/status_monitor_custom_fields.php:231 #: ../../godmode/agentes/module_manager_editor.php:795 #: ../../godmode/agentes/inventory_manager.php:184 -#: ../../godmode/agentes/inventory_manager.php:266 +#: ../../godmode/agentes/inventory_manager.php:267 #: ../../godmode/agentes/agent_conf_gis.php:161 #: ../../godmode/agentes/planned_downtime.list.php:891 #: ../../godmode/agentes/planned_downtime.list.php:936 #: ../../godmode/agentes/planned_downtime.editor.php:1305 -#: ../../godmode/agentes/agent_manager.php:1056 +#: ../../godmode/agentes/agent_manager.php:1062 #: ../../godmode/agentes/configure_field.php:199 -#: ../../godmode/netflow/nf_edit_form.php:334 +#: ../../godmode/netflow/nf_edit_form.php:450 #: ../../godmode/snmpconsole/snmp_alert.php:1700 #: ../../godmode/snmpconsole/snmp_alert.php:2002 #: ../../godmode/snmpconsole/snmp_filters.php:264 @@ -1743,18 +1776,18 @@ msgstr "Mismo día de la semana" #: ../../godmode/snmpconsole/snmp_filters.php:337 #: ../../godmode/alerts/configure_alert_command.php:386 #: ../../godmode/alerts/alert_list.list.php:227 -#: ../../godmode/alerts/alert_list.list.php:1041 +#: ../../godmode/alerts/alert_list.list.php:1040 #: ../../godmode/alerts/configure_alert_action.php:424 -#: ../../godmode/setup/news.php:329 ../../godmode/setup/setup_ehorus.php:216 +#: ../../godmode/setup/news.php:333 ../../godmode/setup/setup_ehorus.php:216 #: ../../godmode/setup/setup_sflow.php:95 -#: ../../godmode/setup/setup_websocket_engine.php:93 +#: ../../godmode/setup/setup_websocket_engine.php:117 #: ../../godmode/setup/os.php:73 ../../godmode/setup/os.php:142 #: ../../godmode/setup/setup_auth.php:515 #: ../../godmode/setup/setup_integria.php:728 ../../godmode/setup/links.php:168 #: ../../godmode/setup/snmp_wizard.php:100 -#: ../../godmode/setup/setup_netflow.php:95 -#: ../../godmode/setup/setup_visuals.php:2130 -#: ../../godmode/setup/setup_general.php:841 +#: ../../godmode/setup/setup_netflow.php:91 +#: ../../godmode/setup/setup_visuals.php:2145 +#: ../../godmode/setup/setup_general.php:867 #: ../../godmode/setup/performance.php:880 #: ../../godmode/reporting/visual_console_builder.data.php:313 #: ../../godmode/reporting/create_container.php:365 @@ -1762,24 +1795,24 @@ msgstr "Mismo día de la semana" #: ../../godmode/reporting/reporting_builder.main.php:56 #: ../../godmode/reporting/graph_builder.main.php:298 #: ../../godmode/events/event_responses.editor.php:332 -#: ../../godmode/events/event_edit_filter.php:954 +#: ../../godmode/events/event_edit_filter.php:956 #: ../../godmode/events/custom_events.php:192 #: ../../godmode/servers/modificar_server.php:134 -#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:721 -#: ../../godmode/tag/edit_tag.php:247 +#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:713 +#: ../../godmode/tag/edit_tag.php:251 #: ../../godmode/category/edit_category.php:196 -#: ../../include/functions_visual_map_editor.php:878 +#: ../../include/functions_visual_map_editor.php:926 #: ../../include/ajax/alert_list.ajax.php:564 #: ../../include/class/ConfigPEN.class.php:703 #: ../../include/class/ConfigPEN.class.php:704 -#: ../../include/class/ManageNetScanScripts.class.php:773 -#: ../../include/class/CredentialStore.class.php:1651 +#: ../../include/class/ManageNetScanScripts.class.php:769 +#: ../../include/class/CredentialStore.class.php:1660 #: ../../include/class/ModuleTemplates.class.php:992 #: ../../include/class/ExternalTools.class.php:420 -#: ../../include/functions_events.php:3512 -#: ../../include/functions_events.php:3594 -#: ../../operation/users/user_edit.php:951 -#: ../../operation/agentes/datos_agente.php:218 +#: ../../include/functions_events.php:3517 +#: ../../include/functions_events.php:3599 +#: ../../operation/users/user_edit.php:948 +#: ../../operation/agentes/datos_agente.php:220 #: ../../operation/incidents/configure_integriaims_incident.php:415 #: ../../operation/reporting/reporting_viewer.php:284 msgid "Update" @@ -1791,7 +1824,7 @@ msgstr "Actualizar" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4420 #: ../../godmode/agentes/planned_downtime.list.php:819 #: ../../godmode/alerts/configure_alert_template.php:1600 -#: ../../include/class/AgentWizard.class.php:6186 +#: ../../include/class/AgentWizard.class.php:6182 msgid "Loading, this operation might take several minutes..." msgstr "Cargando, esta operación podría llevar varios minutos..." @@ -1817,7 +1850,7 @@ msgstr "Marca esta casilla si quieres sobrescribir los días existentes." #: ../../enterprise/tools/ipam/ipam_vlan_config.php:535 #: ../../extensions/extension_uploader.php:134 #: ../../extensions/resource_registration.php:1145 -#: ../../godmode/servers/plugin_registration.php:123 +#: ../../godmode/servers/plugin_registration.php:119 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:234 msgid "Upload" msgstr "Subir" @@ -1841,25 +1874,26 @@ msgstr "Mostrar rango " #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:123 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129 #: ../../enterprise/operation/agentes/policy_view.php:333 -#: ../../godmode/users/configure_user.php:1102 +#: ../../godmode/users/configure_user.php:58 +#: ../../godmode/users/configure_user.php:1166 #: ../../godmode/users/user_management.php:37 -#: ../../godmode/users/user_management.php:564 -#: ../../godmode/agentes/module_manager_editor_common.php:681 +#: ../../godmode/users/user_management.php:570 +#: ../../godmode/agentes/module_manager_editor_common.php:686 #: ../../godmode/massive/massive_edit_users.php:242 #: ../../godmode/massive/massive_edit_users.php:273 -#: ../../godmode/massive/massive_edit_agents.php:1034 +#: ../../godmode/massive/massive_edit_agents.php:1051 #: ../../godmode/alerts/alert_list.list.php:702 #: ../../godmode/alerts/alert_view.php:58 ../../godmode/setup/gis_step_2.php:599 #: ../../godmode/setup/gis_step_2.php:685 -#: ../../godmode/setup/setup_visuals.php:402 -#: ../../godmode/setup/setup_visuals.php:433 -#: ../../godmode/setup/setup_visuals.php:573 -#: ../../godmode/setup/setup_visuals.php:689 -#: ../../godmode/setup/setup_visuals.php:729 -#: ../../godmode/setup/setup_visuals.php:1543 -#: ../../godmode/events/event_edit_filter.php:463 -#: ../../include/functions_ui.php:1404 -#: ../../include/class/AgentsAlerts.class.php:947 +#: ../../godmode/setup/setup_visuals.php:406 +#: ../../godmode/setup/setup_visuals.php:437 +#: ../../godmode/setup/setup_visuals.php:577 +#: ../../godmode/setup/setup_visuals.php:693 +#: ../../godmode/setup/setup_visuals.php:733 +#: ../../godmode/setup/setup_visuals.php:1558 +#: ../../godmode/events/event_edit_filter.php:465 +#: ../../include/auth/mysql.php:806 ../../include/functions_ui.php:1447 +#: ../../include/class/AgentsAlerts.class.php:948 #: ../../include/class/SnmpConsole.class.php:299 #: ../../operation/users/user_edit.php:429 #: ../../operation/users/user_edit.php:432 @@ -1874,7 +1908,7 @@ msgstr "Por defecto" #: ../../godmode/agentes/planned_downtime.editor.php:1059 #: ../../include/functions.php:1157 #: ../../include/class/CalendarManager.class.php:1035 -#: ../../include/functions_reporting.php:14913 +#: ../../include/functions_reporting.php:14986 msgid "Sun" msgstr "Dom" @@ -1883,7 +1917,7 @@ msgstr "Dom" #: ../../godmode/agentes/planned_downtime.editor.php:1053 #: ../../include/functions.php:1133 #: ../../include/class/CalendarManager.class.php:1029 -#: ../../include/functions_reporting.php:14883 +#: ../../include/functions_reporting.php:14956 msgid "Mon" msgstr "Lun" @@ -1892,7 +1926,7 @@ msgstr "Lun" #: ../../godmode/agentes/planned_downtime.editor.php:1054 #: ../../include/functions.php:1137 #: ../../include/class/CalendarManager.class.php:1030 -#: ../../include/functions_reporting.php:14888 +#: ../../include/functions_reporting.php:14961 msgid "Tue" msgstr "Mar" @@ -1901,7 +1935,7 @@ msgstr "Mar" #: ../../godmode/agentes/planned_downtime.editor.php:1055 #: ../../include/functions.php:1141 #: ../../include/class/CalendarManager.class.php:1031 -#: ../../include/functions_reporting.php:14893 +#: ../../include/functions_reporting.php:14966 msgid "Wed" msgstr "Mié" @@ -1910,7 +1944,7 @@ msgstr "Mié" #: ../../godmode/agentes/planned_downtime.editor.php:1056 #: ../../include/functions.php:1145 #: ../../include/class/CalendarManager.class.php:1032 -#: ../../include/functions_reporting.php:14898 +#: ../../include/functions_reporting.php:14971 msgid "Thu" msgstr "Jue" @@ -1919,7 +1953,7 @@ msgstr "Jue" #: ../../godmode/agentes/planned_downtime.editor.php:1057 #: ../../include/functions.php:1149 #: ../../include/class/CalendarManager.class.php:1033 -#: ../../include/functions_reporting.php:14903 +#: ../../include/functions_reporting.php:14976 msgid "Fri" msgstr "Vie" @@ -1928,7 +1962,7 @@ msgstr "Vie" #: ../../godmode/agentes/planned_downtime.editor.php:1058 #: ../../include/functions.php:1153 #: ../../include/class/CalendarManager.class.php:1034 -#: ../../include/functions_reporting.php:14908 +#: ../../include/functions_reporting.php:14981 msgid "Sat" msgstr "Sáb" @@ -2045,7 +2079,7 @@ msgstr "Mostrar plantillas" #: ../../enterprise/godmode/agentes/collections.data.php:300 #: ../../enterprise/godmode/agentes/collections.data.php:429 #: ../../enterprise/godmode/agentes/collections.editor.php:255 -#: ../../enterprise/godmode/policies/policy_modules.php:1944 +#: ../../enterprise/godmode/policies/policy_modules.php:1989 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:205 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:580 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:383 @@ -2066,34 +2100,34 @@ msgstr "Mostrar plantillas" #: ../../enterprise/tools/ipam/ipam_ajax.php:122 #: ../../enterprise/tools/ipam/ipam_ajax.php:530 #: ../../extensions/files_repo/files_repo_list.php:139 -#: ../../godmode/groups/group_list.php:951 -#: ../../godmode/groups/group_list.php:952 +#: ../../godmode/groups/group_list.php:963 +#: ../../godmode/groups/group_list.php:964 #: ../../godmode/users/profile_list.php:444 #: ../../godmode/agentes/agent_template.php:306 -#: ../../godmode/agentes/modificar_agente.php:810 +#: ../../godmode/agentes/modificar_agente.php:822 #: ../../godmode/agentes/planned_downtime.list.php:747 #: ../../godmode/agentes/planned_downtime.editor.php:1416 #: ../../godmode/agentes/fields_manager.php:191 #: ../../godmode/agentes/configure_field.php:83 #: ../../godmode/setup/snmp_wizard.php:110 -#: ../../godmode/reporting/reporting_builder.list_items.php:626 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2338 +#: ../../godmode/reporting/reporting_builder.list_items.php:627 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2347 #: ../../godmode/reporting/reporting_builder.php:1164 #: ../../godmode/events/event_responses.list.php:105 -#: ../../godmode/servers/servers.build_table.php:237 -#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1050 +#: ../../godmode/servers/servers.build_table.php:250 +#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1042 #: ../../godmode/category/category.php:182 #: ../../godmode/category/category.php:211 ../../include/functions_cron.php:918 #: ../../include/functions_cron.php:944 -#: ../../include/class/NetworkMap.class.php:3192 +#: ../../include/class/NetworkMap.class.php:3198 #: ../../include/class/CredentialStore.class.php:1263 -#: ../../include/class/TipsWindow.class.php:457 +#: ../../include/class/TipsWindow.class.php:469 #: ../../include/class/CalendarManager.class.php:703 #: ../../include/lib/ClusterViewer/ClusterManager.php:618 -#: ../../operation/visual_console/view.php:465 -#: ../../operation/agentes/estado_agente.php:1262 -#: ../../operation/agentes/pandora_networkmap.php:815 -#: ../../operation/agentes/status_monitor.php:2248 +#: ../../operation/visual_console/view.php:467 +#: ../../operation/agentes/estado_agente.php:1271 +#: ../../operation/agentes/pandora_networkmap.php:816 +#: ../../operation/agentes/status_monitor.php:2250 #: ../../operation/gis_maps/gis_map.php:203 #: ../../operation/incidents/list_integriaims_incidents.php:621 #: ../../operation/search_reports.php:68 @@ -2110,12 +2144,12 @@ msgstr "Editar" #: ../../enterprise/godmode/modules/local_components.php:743 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:78 #: ../../enterprise/godmode/policies/policy_alerts.php:565 -#: ../../enterprise/godmode/policies/policy_modules.php:1626 -#: ../../enterprise/godmode/policies/policy_modules.php:1642 -#: ../../enterprise/godmode/policies/policy_modules.php:1703 -#: ../../enterprise/godmode/policies/policy_queue.php:810 -#: ../../enterprise/godmode/policies/policy_queue.php:852 -#: ../../enterprise/godmode/policies/policy_queue.php:875 +#: ../../enterprise/godmode/policies/policy_modules.php:1671 +#: ../../enterprise/godmode/policies/policy_modules.php:1687 +#: ../../enterprise/godmode/policies/policy_modules.php:1748 +#: ../../enterprise/godmode/policies/policy_queue.php:814 +#: ../../enterprise/godmode/policies/policy_queue.php:856 +#: ../../enterprise/godmode/policies/policy_queue.php:879 #: ../../enterprise/godmode/policies/policies.php:633 #: ../../enterprise/godmode/policies/policies.php:652 #: ../../enterprise/godmode/policies/policies.php:687 @@ -2152,7 +2186,7 @@ msgstr "Editar" #: ../../enterprise/include/class/Omnishell.class.php:702 #: ../../enterprise/include/class/Omnishell.class.php:1390 #: ../../enterprise/include/class/Omnishell.class.php:1525 -#: ../../enterprise/include/class/LogSource.class.php:871 +#: ../../enterprise/include/class/LogSource.class.php:868 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3151 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3471 #: ../../enterprise/include/class/ManageBackups.class.php:452 @@ -2166,27 +2200,29 @@ msgstr "Editar" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:844 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:975 #: ../../update_manager_client/views/offline.php:72 -#: ../../update_manager_client/views/online.php:123 -#: ../../update_manager_client/views/online.php:164 +#: ../../update_manager_client/views/online.php:125 +#: ../../update_manager_client/views/online.php:166 #: ../../extensions/files_repo/files_repo_list.php:149 #: ../../godmode/modules/manage_nc_groups.php:300 #: ../../godmode/modules/manage_inventory_modules.php:341 -#: ../../godmode/modules/manage_network_components.php:852 +#: ../../godmode/modules/manage_network_components.php:855 #: ../../godmode/modules/manage_network_templates.php:274 #: ../../godmode/modules/manage_network_templates.php:289 -#: ../../godmode/groups/group_list.php:960 +#: ../../godmode/groups/group_list.php:972 #: ../../godmode/groups/modu_group_list.php:284 #: ../../godmode/groups/modu_group_list.php:287 ../../godmode/extensions.php:283 #: ../../godmode/extensions.php:301 ../../godmode/users/profile_list.php:452 -#: ../../godmode/users/configure_user.php:1935 -#: ../../godmode/users/configure_user.php:2171 +#: ../../godmode/users/user_list.php:984 +#: ../../godmode/users/configure_user.php:1987 +#: ../../godmode/users/configure_user.php:2223 #: ../../godmode/agentes/agent_template.php:298 -#: ../../godmode/agentes/inventory_manager.php:261 -#: ../../godmode/agentes/modificar_agente.php:941 +#: ../../godmode/agentes/inventory_manager.php:262 +#: ../../godmode/agentes/modificar_agente.php:953 #: ../../godmode/agentes/planned_downtime.editor.php:1453 #: ../../godmode/agentes/fields_manager.php:210 -#: ../../godmode/agentes/module_manager.php:1014 -#: ../../godmode/agentes/module_manager.php:1235 +#: ../../godmode/agentes/module_manager.php:1012 +#: ../../godmode/agentes/module_manager.php:1028 +#: ../../godmode/agentes/module_manager.php:1256 #: ../../godmode/netflow/nf_item_list.php:262 #: ../../godmode/netflow/nf_edit.php:202 #: ../../godmode/snmpconsole/snmp_alert.php:1945 @@ -2198,10 +2234,10 @@ msgstr "Editar" #: ../../godmode/massive/massive_edit_plugins.php:576 #: ../../godmode/massive/massive_enable_disable_alerts.php:227 #: ../../godmode/alerts/alert_actions.php:449 -#: ../../godmode/alerts/alert_list.list.php:1256 +#: ../../godmode/alerts/alert_list.list.php:1255 #: ../../godmode/alerts/alert_commands.php:812 #: ../../godmode/alerts/alert_commands.php:815 -#: ../../godmode/alerts/alert_templates.php:465 ../../godmode/setup/news.php:393 +#: ../../godmode/alerts/alert_templates.php:469 ../../godmode/setup/news.php:392 #: ../../godmode/setup/links.php:210 #: ../../godmode/reporting/create_container.php:801 #: ../../godmode/reporting/map_builder.php:544 @@ -2217,7 +2253,7 @@ msgstr "Editar" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1019 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1032 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 -#: ../../godmode/servers/plugin.php:1062 ../../godmode/tag/tag.php:420 +#: ../../godmode/servers/plugin.php:1054 ../../godmode/tag/tag.php:421 #: ../../godmode/category/category.php:186 #: ../../godmode/category/category.php:222 #: ../../include/functions_profile.php:319 @@ -2226,25 +2262,26 @@ msgstr "Editar" #: ../../include/class/SatelliteAgent.class.php:1193 #: ../../include/class/SatelliteAgent.class.php:1255 #: ../../include/class/TreeGroupEdition.class.php:166 -#: ../../include/class/CredentialStore.class.php:1693 +#: ../../include/class/CredentialStore.class.php:1702 #: ../../include/class/SnmpConsole.class.php:472 -#: ../../include/class/SnmpConsole.class.php:1266 -#: ../../include/class/SnmpConsole.class.php:1293 -#: ../../include/class/TipsWindow.class.php:618 +#: ../../include/class/SnmpConsole.class.php:1268 +#: ../../include/class/SnmpConsole.class.php:1295 +#: ../../include/class/TipsWindow.class.php:640 #: ../../include/class/ModuleTemplates.class.php:874 #: ../../include/class/ModuleTemplates.class.php:889 #: ../../include/class/WelcomeWindow.class.php:171 #: ../../include/class/SatelliteCollection.class.php:531 #: ../../include/class/SatelliteCollection.class.php:574 -#: ../../include/functions_filemanager.php:754 +#: ../../include/functions_filemanager.php:769 #: ../../include/functions_container.php:190 #: ../../include/functions_container.php:324 #: ../../include/lib/Dashboard/Widgets/events_list.php:655 -#: ../../include/functions_events.php:3655 -#: ../../operation/users/user_edit.php:1345 +#: ../../include/functions_events.php:3660 +#: ../../operation/users/user_edit.php:1342 #: ../../operation/agentes/pandora_networkmap.editor.php:743 #: ../../operation/messages/message_list.php:300 -#: ../../operation/snmpconsole/snmp_browser.php:637 +#: ../../operation/snmpconsole/snmp_browser.php:620 +#: ../../operation/snmpconsole/snmp_browser.php:696 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:213 #: ../../operation/incidents/list_integriaims_incidents.php:625 msgid "Are you sure?" @@ -2257,12 +2294,12 @@ msgstr "¿Estás seguro?" #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4418 #: ../../godmode/alerts/configure_alert_template.php:1598 -#: ../../godmode/events/event_edit_filter.php:681 -#: ../../godmode/events/event_edit_filter.php:746 -#: ../../include/functions_ui.php:7521 ../../include/functions_ui.php:7569 +#: ../../godmode/events/event_edit_filter.php:683 +#: ../../godmode/events/event_edit_filter.php:748 +#: ../../include/functions_ui.php:7605 ../../include/functions_ui.php:7661 #: ../../include/rest-api/index.php:363 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:546 -#: ../../operation/events/events.php:1284 ../../operation/events/events.php:1356 +#: ../../operation/events/events.php:1311 ../../operation/events/events.php:1401 msgid "Remove" msgstr "Eliminar" @@ -2272,7 +2309,7 @@ msgstr "Cargar calendario" #: ../../views/cluster/list.php:31 msgid "Cluster view" -msgstr "Visor de clústers" +msgstr "Vista de clústers" #: ../../views/cluster/list.php:40 #: ../../enterprise/meta/general/main_header.php:91 @@ -2291,11 +2328,12 @@ msgstr "Visor de clústers" #: ../../enterprise/include/class/SAPView.class.php:155 #: ../../enterprise/include/class/SAPView.class.php:199 #: ../../enterprise/operation/agentes/tag_view.php:50 -#: ../../enterprise/operation/log/log_viewer.php:494 +#: ../../enterprise/operation/log/log_viewer.php:492 #: ../../enterprise/tools/ipam/ipam_editor.php:303 -#: ../../extensions/agents_modules.php:552 ../../extensions/module_groups.php:260 +#: ../../extensions/agents_modules.php:560 ../../extensions/module_groups.php:260 #: ../../extensions/realtime_graphs.php:67 ../../godmode/groups/tactical.php:71 -#: ../../godmode/groups/tactical.php:126 +#: ../../godmode/groups/tactical.php:125 +#: ../../godmode/agentes/status_monitor_custom_fields.php:44 #: ../../godmode/snmpconsole/snmp_trap_generator.php:47 #: ../../godmode/snmpconsole/snmp_filters.php:55 #: ../../include/class/AgentsAlerts.class.php:751 @@ -2303,17 +2341,17 @@ msgstr "Visor de clústers" #: ../../operation/tree.php:185 ../../operation/agentes/alerts_status.php:198 #: ../../operation/agentes/estado_agente.php:246 #: ../../operation/agentes/interface_view.php:72 -#: ../../operation/agentes/status_monitor.php:336 +#: ../../operation/agentes/status_monitor.php:335 #: ../../operation/agentes/group_view.php:98 #: ../../operation/agentes/tactical.php:81 #: ../../operation/network/network_usage_map.php:48 -#: ../../operation/netflow/nf_live_view.php:139 +#: ../../operation/netflow/nf_live_view.php:144 #: ../../operation/netflow/netflow_explorer.php:55 #: ../../operation/snmpconsole/snmp_statistics.php:100 -#: ../../operation/snmpconsole/snmp_browser.php:86 +#: ../../operation/snmpconsole/snmp_browser.php:88 #: ../../operation/snmpconsole/snmp_mib_uploader.php:56 #: ../../operation/menu.php:159 ../../operation/menu.php:276 -#: ../../operation/inventory/inventory.php:310 +#: ../../operation/inventory/inventory.php:312 #: ../../general/first_task/cluster_builder.php:38 msgid "Monitoring" msgstr "Monitorización" @@ -2326,13 +2364,13 @@ msgid "Clusters" msgstr "Clústers" #: ../../views/cluster/list.php:72 -#: ../../enterprise/meta/advanced/servers.build_table.php:63 +#: ../../enterprise/meta/advanced/servers.build_table.php:79 #: ../../enterprise/meta/advanced/metasetup.relations.php:335 #: ../../enterprise/meta/advanced/metasetup.relations.php:413 #: ../../enterprise/meta/advanced/metasetup.relations.php:548 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 #: ../../enterprise/godmode/modules/configure_local_component.php:214 -#: ../../enterprise/godmode/policies/policy_modules.php:1545 +#: ../../enterprise/godmode/policies/policy_modules.php:1590 #: ../../enterprise/godmode/services/services.elements.php:113 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:72 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:93 @@ -2349,46 +2387,46 @@ msgstr "Clústers" #: ../../enterprise/operation/agentes/ver_agente.php:50 #: ../../godmode/modules/manage_network_templates_form.php:232 #: ../../godmode/modules/manage_network_components_form_common.php:64 -#: ../../godmode/modules/manage_network_components.php:776 +#: ../../godmode/modules/manage_network_components.php:779 #: ../../godmode/update_manager/update_manager.history.php:41 #: ../../godmode/agentes/agent_template.php:275 -#: ../../godmode/agentes/modificar_agente.php:696 +#: ../../godmode/agentes/modificar_agente.php:706 #: ../../godmode/agentes/planned_downtime.list.php:736 #: ../../godmode/agentes/planned_downtime.editor.php:926 #: ../../godmode/agentes/module_manager_editor_common.php:293 -#: ../../godmode/agentes/module_manager_editor_common.php:1536 +#: ../../godmode/agentes/module_manager_editor_common.php:1546 #: ../../godmode/agentes/module_manager.php:630 #: ../../godmode/alerts/alert_templates.php:35 -#: ../../godmode/alerts/alert_templates.php:307 -#: ../../godmode/alerts/alert_templates.php:412 ../../godmode/setup/news.php:350 +#: ../../godmode/alerts/alert_templates.php:311 +#: ../../godmode/alerts/alert_templates.php:416 ../../godmode/setup/news.php:354 #: ../../godmode/setup/gis_step_2.php:256 #: ../../godmode/setup/setup_integria.php:479 #: ../../godmode/setup/setup_integria.php:613 #: ../../godmode/reporting/reporting_builder.list_items.php:245 #: ../../godmode/reporting/reporting_builder.list_items.php:374 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1055 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1057 #: ../../godmode/reporting/visual_console_builder.wizard.php:131 #: ../../godmode/reporting/visual_console_builder.wizard.php:315 #: ../../godmode/events/event_responses.editor.php:234 -#: ../../godmode/servers/servers.build_table.php:79 +#: ../../godmode/servers/servers.build_table.php:81 #: ../../godmode/servers/modificar_server.php:105 -#: ../../godmode/servers/plugin.php:993 ../../mobile/operation/visualmaps.php:125 +#: ../../godmode/servers/plugin.php:985 ../../mobile/operation/visualmaps.php:125 #: ../../mobile/operation/visualmaps.php:126 -#: ../../mobile/operation/events.php:658 ../../mobile/operation/events.php:659 -#: ../../mobile/operation/events.php:812 ../../mobile/operation/events.php:972 -#: ../../mobile/operation/events.php:973 -#: ../../include/functions_visual_map_editor.php:700 -#: ../../include/functions_visual_map_editor.php:718 -#: ../../include/functions_visual_map_editor.php:846 +#: ../../mobile/operation/events.php:687 ../../mobile/operation/events.php:688 +#: ../../mobile/operation/events.php:841 ../../mobile/operation/events.php:1016 +#: ../../mobile/operation/events.php:1017 +#: ../../include/functions_visual_map_editor.php:750 +#: ../../include/functions_visual_map_editor.php:768 +#: ../../include/functions_visual_map_editor.php:894 #: ../../include/functions_reporting_html.php:1056 #: ../../include/functions_reporting_html.php:1065 #: ../../include/functions_reporting_html.php:1306 #: ../../include/functions_reporting_html.php:1314 -#: ../../include/functions_reporting_html.php:2638 -#: ../../include/functions_reporting_html.php:5490 -#: ../../include/ajax/heatmap.ajax.php:77 +#: ../../include/functions_reporting_html.php:2657 +#: ../../include/functions_reporting_html.php:5518 +#: ../../include/ajax/heatmap.ajax.php:96 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 -#: ../../include/functions_reports.php:1086 ../../include/functions_html.php:5952 +#: ../../include/functions_reports.php:1086 ../../include/functions_html.php:5976 #: ../../include/class/ModuleTemplates.class.php:1185 #: ../../include/class/CalendarManager.class.php:1028 #: ../../include/class/CalendarManager.class.php:1062 @@ -2401,27 +2439,27 @@ msgstr "Clústers" #: ../../include/lib/Dashboard/Widgets/clock.php:221 #: ../../include/functions_snmp_browser.php:564 #: ../../include/functions_events.php:2525 -#: ../../include/functions_events.php:4958 -#: ../../operation/agentes/estado_agente.php:1043 +#: ../../include/functions_events.php:4963 +#: ../../operation/agentes/estado_agente.php:1051 #: ../../operation/agentes/ver_agente.php:1171 -#: ../../operation/netflow/nf_live_view.php:495 +#: ../../operation/netflow/nf_live_view.php:568 #: ../../operation/incidents/configure_integriaims_incident.php:251 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:342 -#: ../../operation/search_modules.php:34 +#: ../../operation/search_modules.php:37 #: ../../operation/reporting/graph_viewer.php:363 msgid "Type" msgstr "Tipo" #: ../../views/cluster/list.php:73 -#: ../../include/functions_reporting_html.php:5925 +#: ../../include/functions_reporting_html.php:5953 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:325 -#: ../../operation/agentes/pandora_networkmap.php:717 +#: ../../operation/agentes/pandora_networkmap.php:718 msgid "Nodes" msgstr "Nodos" #: ../../views/cluster/list.php:74 #: ../../enterprise/views/ncm/devices/list.php:120 -#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../enterprise/meta/advanced/servers.build_table.php:78 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:584 #: ../../enterprise/meta/advanced/policymanager.queue.php:225 #: ../../enterprise/meta/monitoring/custom_fields_view.php:719 @@ -2432,8 +2470,8 @@ msgstr "Nodos" #: ../../enterprise/godmode/agentes/collection_manager.php:164 #: ../../enterprise/godmode/agentes/collection_manager.php:264 #: ../../enterprise/godmode/policies/policy_alerts.php:368 -#: ../../enterprise/godmode/policies/policy_modules.php:1546 -#: ../../enterprise/godmode/policies/policy_queue.php:335 +#: ../../enterprise/godmode/policies/policy_modules.php:1591 +#: ../../enterprise/godmode/policies/policy_queue.php:337 #: ../../enterprise/godmode/policies/policies.php:436 #: ../../enterprise/godmode/policies/policy_collections.php:243 #: ../../enterprise/godmode/policies/policy_collections.php:324 @@ -2469,15 +2507,15 @@ msgstr "Nodos" #: ../../enterprise/operation/services/services.table_services.php:183 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:490 #: ../../godmode/groups/tactical.php:180 -#: ../../godmode/agentes/status_monitor_custom_fields.php:97 -#: ../../godmode/agentes/status_monitor_custom_fields.php:146 +#: ../../godmode/agentes/status_monitor_custom_fields.php:117 +#: ../../godmode/agentes/status_monitor_custom_fields.php:166 #: ../../godmode/agentes/agent_incidents.php:88 #: ../../godmode/agentes/module_manager.php:645 #: ../../godmode/massive/massive_copy_modules.php:121 #: ../../godmode/massive/massive_copy_modules.php:281 #: ../../godmode/massive/massive_delete_modules.php:415 #: ../../godmode/massive/massive_edit_users.php:501 -#: ../../godmode/massive/massive_edit_agents.php:926 +#: ../../godmode/massive/massive_edit_agents.php:943 #: ../../godmode/alerts/alert_list.list.php:174 #: ../../godmode/alerts/alert_list.list.php:569 #: ../../godmode/alerts/alert_view.php:120 @@ -2486,63 +2524,72 @@ msgstr "Nodos" #: ../../godmode/reporting/reporting_builder.item_editor.php:77 #: ../../godmode/events/custom_events.php:99 #: ../../godmode/wizards/DiscoveryTaskList.class.php:605 -#: ../../godmode/servers/servers.build_table.php:78 -#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:144 -#: ../../mobile/operation/agents.php:243 ../../mobile/operation/agents.php:244 -#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:163 +#: ../../godmode/servers/servers.build_table.php:80 +#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:145 +#: ../../mobile/operation/agents.php:244 ../../mobile/operation/agents.php:245 +#: ../../mobile/operation/agents.php:407 ../../mobile/operation/modules.php:163 #: ../../mobile/operation/modules.php:164 ../../mobile/operation/modules.php:275 -#: ../../mobile/operation/modules.php:276 ../../mobile/operation/modules.php:603 -#: ../../mobile/operation/modules.php:609 ../../mobile/operation/modules.php:615 -#: ../../mobile/operation/modules.php:621 ../../mobile/operation/modules.php:632 -#: ../../mobile/operation/modules.php:640 ../../mobile/operation/modules.php:648 -#: ../../mobile/operation/modules.php:720 ../../mobile/operation/modules.php:732 -#: ../../mobile/operation/modules.php:850 ../../mobile/operation/alerts.php:105 +#: ../../mobile/operation/modules.php:276 ../../mobile/operation/modules.php:614 +#: ../../mobile/operation/modules.php:620 ../../mobile/operation/modules.php:626 +#: ../../mobile/operation/modules.php:632 ../../mobile/operation/modules.php:643 +#: ../../mobile/operation/modules.php:651 ../../mobile/operation/modules.php:659 +#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:742 +#: ../../mobile/operation/modules.php:751 ../../mobile/operation/modules.php:763 +#: ../../mobile/operation/modules.php:909 ../../mobile/operation/alerts.php:105 #: ../../mobile/operation/alerts.php:106 ../../mobile/operation/alerts.php:247 -#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:350 -#: ../../mobile/operation/events.php:649 ../../mobile/operation/events.php:650 -#: ../../mobile/operation/events.php:824 ../../mobile/operation/events.php:963 -#: ../../mobile/operation/events.php:964 +#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:334 +#: ../../mobile/operation/module_data.php:262 +#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679 +#: ../../mobile/operation/events.php:853 ../../mobile/operation/events.php:1007 +#: ../../mobile/operation/events.php:1008 +#: ../../mobile/operation/server_status.php:154 +#: ../../mobile/operation/server_status.php:155 +#: ../../mobile/operation/server_status.php:281 +#: ../../mobile/operation/server_status.php:319 +#: ../../mobile/operation/server_status.php:349 +#: ../../mobile/operation/server_status.php:445 #: ../../include/functions_reporting_html.php:553 #: ../../include/functions_reporting_html.php:1055 #: ../../include/functions_reporting_html.php:1064 #: ../../include/functions_reporting_html.php:1305 #: ../../include/functions_reporting_html.php:1313 -#: ../../include/functions_reporting_html.php:1624 -#: ../../include/functions_reporting_html.php:2356 -#: ../../include/functions_reporting_html.php:2637 -#: ../../include/functions_reporting_html.php:2996 -#: ../../include/functions_reporting_html.php:3664 -#: ../../include/functions_reporting_html.php:3714 -#: ../../include/functions_reporting_html.php:5303 +#: ../../include/functions_reporting_html.php:1633 +#: ../../include/functions_reporting_html.php:2377 +#: ../../include/functions_reporting_html.php:2656 +#: ../../include/functions_reporting_html.php:3024 +#: ../../include/functions_reporting_html.php:3692 +#: ../../include/functions_reporting_html.php:3742 +#: ../../include/functions_reporting_html.php:5331 +#: ../../include/ajax/heatmap.ajax.php:391 #: ../../include/ajax/alert_list.ajax.php:296 -#: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:1003 +#: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:1026 #: ../../include/ajax/custom_fields.php:416 ../../include/functions_snmp.php:369 #: ../../include/functions_massive_operations.php:152 -#: ../../include/class/NetworkMap.class.php:3064 -#: ../../include/class/AgentsAlerts.class.php:913 +#: ../../include/class/NetworkMap.class.php:3070 +#: ../../include/class/AgentsAlerts.class.php:914 #: ../../include/class/SnmpConsole.class.php:273 #: ../../include/class/SnmpConsole.class.php:382 #: ../../include/class/SnmpConsole.class.php:500 #: ../../include/class/ExternalTools.class.php:877 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:322 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:264 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:547 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:562 #: ../../include/lib/Group.php:562 ../../include/functions_snmp_browser.php:594 #: ../../include/functions_events.php:204 ../../include/functions_events.php:259 #: ../../include/functions_events.php:2543 -#: ../../include/functions_events.php:5004 ../../operation/search_agents.php:56 +#: ../../include/functions_events.php:5009 ../../operation/search_agents.php:56 #: ../../operation/agentes/estado_agente.php:324 -#: ../../operation/agentes/estado_agente.php:1049 +#: ../../operation/agentes/estado_agente.php:1057 #: ../../operation/agentes/interface_view.functions.php:516 -#: ../../operation/agentes/status_monitor.php:1566 +#: ../../operation/agentes/status_monitor.php:1568 #: ../../operation/agentes/alerts_status.functions.php:108 #: ../../operation/messages/message_list.php:188 #: ../../operation/incidents/integriaims_export_csv.php:83 #: ../../operation/incidents/configure_integriaims_incident.php:305 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:338 #: ../../operation/incidents/list_integriaims_incidents.php:334 -#: ../../operation/search_modules.php:36 ../../operation/search_policies.php:38 +#: ../../operation/search_modules.php:39 ../../operation/search_policies.php:38 msgid "Status" msgstr "Estado" @@ -2566,10 +2613,10 @@ msgstr "Estado" #: ../../enterprise/include/ajax/log_viewer.ajax.php:352 #: ../../enterprise/include/class/Omnishell.class.php:1016 #: ../../enterprise/include/class/Omnishell.class.php:1095 -#: ../../include/ajax/module.php:2251 ../../include/ajax/agent.php:598 -#: ../../include/ajax/events.php:804 ../../include/functions_html.php:1276 -#: ../../include/functions_html.php:1427 -#: ../../include/functions_snmp_browser.php:1617 +#: ../../include/ajax/module.php:2280 ../../include/ajax/agent.php:598 +#: ../../include/ajax/events.php:805 ../../include/functions_html.php:1281 +#: ../../include/functions_html.php:1432 +#: ../../include/functions_snmp_browser.php:1626 msgid "Filter group" msgstr "Filtrar grupo" @@ -2615,27 +2662,27 @@ msgstr "Editar el clúster" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2055 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3323 #: ../../enterprise/include/lib/NetworkManager.php:190 -#: ../../godmode/groups/group_list.php:942 -#: ../../godmode/agentes/modificar_agente.php:779 +#: ../../godmode/groups/group_list.php:954 +#: ../../godmode/agentes/modificar_agente.php:791 #: ../../godmode/agentes/module_manager_editor_common.php:253 -#: ../../godmode/agentes/module_manager_editor_common.php:696 -#: ../../godmode/agentes/module_manager_editor_common.php:1311 -#: ../../godmode/agentes/module_manager.php:974 -#: ../../godmode/agentes/module_manager.php:987 -#: ../../godmode/massive/massive_edit_agents.php:938 -#: ../../godmode/massive/massive_edit_agents.php:1138 +#: ../../godmode/agentes/module_manager_editor_common.php:702 +#: ../../godmode/agentes/module_manager_editor_common.php:1321 +#: ../../godmode/agentes/module_manager.php:988 +#: ../../godmode/agentes/module_manager.php:1001 +#: ../../godmode/massive/massive_edit_agents.php:955 +#: ../../godmode/massive/massive_edit_agents.php:1154 #: ../../godmode/massive/massive_edit_modules.php:780 #: ../../godmode/alerts/alert_list.list.php:172 #: ../../godmode/alerts/configure_alert_template.php:918 -#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:167 +#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:173 #: ../../mobile/operation/alerts.php:68 -#: ../../include/functions_visual_map_editor.php:824 -#: ../../include/functions_reporting_html.php:3676 +#: ../../include/functions_visual_map_editor.php:872 +#: ../../include/functions_reporting_html.php:3704 #: ../../include/functions_agents.php:1472 #: ../../include/functions_treeview.php:66 -#: ../../include/functions_treeview.php:602 +#: ../../include/functions_treeview.php:606 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 -#: ../../include/functions_reporting.php:6992 +#: ../../include/functions_reporting.php:7001 #: ../../operation/search_agents.php:93 #: ../../operation/agentes/estado_generalagente.php:92 #: ../../operation/agentes/alerts_status.functions.php:101 @@ -2646,24 +2693,24 @@ msgstr "Deshabilitado" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 #: ../../enterprise/godmode/services/services.service.php:773 #: ../../enterprise/operation/services/massive/services.create.php:839 -#: ../../godmode/agentes/modificar_agente.php:788 +#: ../../godmode/agentes/modificar_agente.php:800 #: ../../godmode/agentes/planned_downtime.list.php:778 #: ../../godmode/agentes/planned_downtime.editor.php:929 -#: ../../godmode/agentes/agent_manager.php:826 -#: ../../godmode/agentes/module_manager_editor_common.php:1394 +#: ../../godmode/agentes/agent_manager.php:834 +#: ../../godmode/agentes/module_manager_editor_common.php:1404 #: ../../godmode/agentes/module_manager.php:765 -#: ../../godmode/massive/massive_edit_agents.php:1108 +#: ../../godmode/massive/massive_edit_agents.php:1125 #: ../../godmode/massive/massive_edit_modules.php:1119 -#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1114 -#: ../../include/class/Tree.class.php:936 ../../operation/search_agents.php:100 -#: ../../operation/agentes/estado_agente.php:1145 +#: ../../mobile/operation/agent.php:180 ../../include/ajax/module.php:1137 +#: ../../include/class/Tree.class.php:964 ../../operation/search_agents.php:100 +#: ../../operation/agentes/estado_agente.php:1153 #: ../../operation/agentes/estado_generalagente.php:94 msgid "Quiet" msgstr "Modo silencioso" #: ../../views/cluster/view.php:177 ../../views/cluster/view.php:185 #: ../../operation/search_agents.php:111 -#: ../../operation/agentes/estado_agente.php:1153 +#: ../../operation/agentes/estado_agente.php:1161 msgid "Agent in scheduled downtime" msgstr "Agente en parada programada" @@ -2688,25 +2735,24 @@ msgstr "Forzar cálculo del estado del clúster" #: ../../enterprise/tools/ipam/ipam_network.php:426 #: ../../godmode/modules/manage_inventory_modules.php:291 #: ../../godmode/modules/manage_inventory_modules_form.php:140 -#: ../../godmode/agentes/modificar_agente.php:694 +#: ../../godmode/agentes/modificar_agente.php:704 #: ../../godmode/agentes/planned_downtime.editor.php:1358 #: ../../godmode/agentes/agent_manager.php:523 -#: ../../godmode/massive/massive_edit_agents.php:733 +#: ../../godmode/massive/massive_edit_agents.php:750 #: ../../godmode/reporting/reporting_builder.item_editor.php:71 -#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404 -#: ../../include/functions_reporting_html.php:1600 -#: ../../include/functions_reporting_html.php:3661 -#: ../../include/ajax/heatmap.ajax.php:339 +#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:405 +#: ../../include/functions_reporting_html.php:1609 +#: ../../include/functions_reporting_html.php:3689 +#: ../../include/ajax/heatmap.ajax.php:467 #: ../../include/class/Diagnostics.class.php:769 #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:345 -#: ../../include/functions_events.php:4377 ../../operation/search_agents.php:44 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:348 +#: ../../include/functions_events.php:4382 ../../operation/search_agents.php:44 #: ../../operation/search_agents.php:50 ../../operation/tree.php:79 -#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1031 +#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1038 #: ../../operation/agentes/estado_generalagente.php:216 #: ../../operation/gis_maps/ajax.php:297 -#: ../../operation/inventory/inventory.php:1005 -#: ../../operation/inventory/inventory.php:1299 +#: ../../operation/inventory/inventory.php:1251 msgid "OS" msgstr "SO" @@ -2716,12 +2762,12 @@ msgid "IP address" msgstr "Dirección IP" #: ../../views/cluster/view.php:277 ../../views/cluster/view.php:292 -#: ../../enterprise/meta/advanced/servers.build_table.php:101 -#: ../../enterprise/meta/advanced/servers.build_table.php:102 -#: ../../enterprise/meta/advanced/servers.build_table.php:108 +#: ../../enterprise/meta/advanced/servers.build_table.php:125 +#: ../../enterprise/meta/advanced/servers.build_table.php:126 +#: ../../enterprise/meta/advanced/servers.build_table.php:132 #: ../../enterprise/meta/advanced/metasetup.visual.php:964 #: ../../enterprise/include/functions_visual_map.php:320 -#: ../../enterprise/include/functions_servicemap.php:471 +#: ../../enterprise/include/functions_servicemap.php:483 #: ../../enterprise/include/functions_aws.php:509 #: ../../enterprise/include/functions_aws.php:510 #: ../../enterprise/include/functions_reporting.php:6178 @@ -2734,92 +2780,92 @@ msgstr "Dirección IP" #: ../../enterprise/tools/ipam/ipam_network.php:543 #: ../../enterprise/tools/ipam/ipam_ajax.php:369 #: ../../enterprise/tools/ipam/ipam_ajax.php:390 -#: ../../godmode/modules/manage_network_components.php:802 -#: ../../godmode/modules/manage_network_components.php:803 +#: ../../godmode/modules/manage_network_components.php:805 +#: ../../godmode/modules/manage_network_components.php:806 #: ../../godmode/extensions.php:207 ../../godmode/extensions.php:222 #: ../../godmode/agentes/planned_downtime.list.php:942 #: ../../godmode/alerts/alert_view.php:141 -#: ../../godmode/servers/servers.build_table.php:151 -#: ../../godmode/servers/servers.build_table.php:152 -#: ../../godmode/servers/servers.build_table.php:158 -#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200 -#: ../../mobile/operation/events.php:307 ../../mobile/operation/events.php:319 -#: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443 -#: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509 -#: ../../include/functions_servers.php:1275 +#: ../../godmode/servers/servers.build_table.php:153 +#: ../../godmode/servers/servers.build_table.php:154 +#: ../../godmode/servers/servers.build_table.php:160 +#: ../../mobile/operation/agent.php:198 ../../mobile/operation/agent.php:203 +#: ../../mobile/operation/events.php:303 ../../mobile/operation/events.php:315 +#: ../../mobile/operation/events.php:327 ../../mobile/operation/events.php:435 +#: ../../mobile/operation/events.php:485 ../../mobile/operation/events.php:501 +#: ../../include/functions_servers.php:1298 #: ../../include/functions_reporting_html.php:659 #: ../../include/functions_reporting_html.php:662 -#: ../../include/functions_reporting_html.php:5564 -#: ../../include/functions_reporting_html.php:5617 +#: ../../include/functions_reporting_html.php:5592 +#: ../../include/functions_reporting_html.php:5645 #: ../../include/functions.php:1180 ../../include/functions.php:1186 -#: ../../include/functions.php:1190 ../../include/ajax/module.php:1156 +#: ../../include/functions.php:1190 ../../include/ajax/module.php:1183 #: ../../include/functions_treeview.php:153 #: ../../include/functions_treeview.php:311 -#: ../../include/functions_treeview.php:410 -#: ../../include/functions_treeview.php:639 ../../include/functions_ui.php:2874 -#: ../../include/functions_ui.php:2882 ../../include/functions_db.php:241 -#: ../../include/class/SnmpConsole.class.php:794 -#: ../../include/class/SnmpConsole.class.php:812 -#: ../../include/functions_events.php:3684 -#: ../../include/functions_events.php:3818 -#: ../../include/functions_events.php:3838 -#: ../../include/functions_events.php:3847 -#: ../../include/functions_events.php:3856 -#: ../../include/functions_events.php:3857 -#: ../../include/functions_events.php:3869 -#: ../../include/functions_events.php:3929 -#: ../../include/functions_events.php:3962 -#: ../../include/functions_events.php:4028 -#: ../../include/functions_events.php:4045 -#: ../../include/functions_events.php:4052 -#: ../../include/functions_events.php:4118 -#: ../../include/functions_events.php:4210 -#: ../../include/functions_events.php:4334 -#: ../../include/functions_events.php:4373 -#: ../../include/functions_events.php:4413 -#: ../../include/functions_events.php:4436 -#: ../../include/functions_events.php:4466 -#: ../../include/functions_events.php:4549 -#: ../../include/functions_events.php:4630 -#: ../../include/functions_events.php:4640 -#: ../../include/functions_events.php:4857 -#: ../../include/functions_events.php:4938 -#: ../../include/functions_events.php:5043 -#: ../../include/functions_events.php:5072 -#: ../../include/functions_events.php:5087 -#: ../../include/functions_events.php:5097 -#: ../../include/functions_events.php:5107 -#: ../../include/functions_events.php:5590 -#: ../../include/functions_events.php:5604 +#: ../../include/functions_treeview.php:414 +#: ../../include/functions_treeview.php:643 ../../include/functions_ui.php:2917 +#: ../../include/functions_ui.php:2925 ../../include/functions_db.php:241 +#: ../../include/class/SnmpConsole.class.php:796 +#: ../../include/class/SnmpConsole.class.php:814 +#: ../../include/functions_events.php:3689 +#: ../../include/functions_events.php:3823 +#: ../../include/functions_events.php:3843 +#: ../../include/functions_events.php:3852 +#: ../../include/functions_events.php:3861 +#: ../../include/functions_events.php:3862 +#: ../../include/functions_events.php:3874 +#: ../../include/functions_events.php:3934 +#: ../../include/functions_events.php:3967 +#: ../../include/functions_events.php:4033 +#: ../../include/functions_events.php:4050 +#: ../../include/functions_events.php:4057 +#: ../../include/functions_events.php:4123 +#: ../../include/functions_events.php:4215 +#: ../../include/functions_events.php:4339 +#: ../../include/functions_events.php:4378 +#: ../../include/functions_events.php:4418 +#: ../../include/functions_events.php:4441 +#: ../../include/functions_events.php:4471 +#: ../../include/functions_events.php:4554 +#: ../../include/functions_events.php:4635 +#: ../../include/functions_events.php:4645 +#: ../../include/functions_events.php:4862 +#: ../../include/functions_events.php:4943 +#: ../../include/functions_events.php:5048 +#: ../../include/functions_events.php:5077 +#: ../../include/functions_events.php:5092 +#: ../../include/functions_events.php:5102 +#: ../../include/functions_events.php:5112 +#: ../../include/functions_events.php:5595 #: ../../include/functions_events.php:5609 -#: ../../include/functions_events.php:5612 -#: ../../include/functions_events.php:5620 -#: ../../include/functions_events.php:5629 -#: ../../include/functions_events.php:5641 -#: ../../include/functions_events.php:5694 -#: ../../include/functions_events.php:5721 -#: ../../include/functions_events.php:5746 -#: ../../include/functions_events.php:5790 -#: ../../operation/agentes/estado_agente.php:1222 +#: ../../include/functions_events.php:5614 +#: ../../include/functions_events.php:5617 +#: ../../include/functions_events.php:5625 +#: ../../include/functions_events.php:5634 +#: ../../include/functions_events.php:5646 +#: ../../include/functions_events.php:5699 +#: ../../include/functions_events.php:5726 +#: ../../include/functions_events.php:5751 +#: ../../include/functions_events.php:5795 +#: ../../operation/agentes/estado_agente.php:1231 #: ../../operation/agentes/interface_view.functions.php:742 #: ../../operation/agentes/interface_view.functions.php:743 #: ../../operation/agentes/interface_view.functions.php:744 #: ../../operation/agentes/interface_view.functions.php:745 #: ../../operation/agentes/interface_view.functions.php:746 -#: ../../operation/agentes/status_monitor.php:1945 +#: ../../operation/agentes/status_monitor.php:1947 #: ../../operation/agentes/estado_generalagente.php:234 #: ../../operation/agentes/estado_generalagente.php:251 #: ../../operation/agentes/estado_generalagente.php:254 -#: ../../operation/agentes/estado_generalagente.php:440 -#: ../../operation/agentes/estado_generalagente.php:454 -#: ../../operation/agentes/estado_generalagente.php:513 -#: ../../operation/inventory/inventory.php:153 -#: ../../operation/inventory/inventory.php:173 -#: ../../operation/inventory/inventory.php:200 +#: ../../operation/agentes/estado_generalagente.php:411 +#: ../../operation/agentes/estado_generalagente.php:425 +#: ../../operation/agentes/estado_generalagente.php:484 +#: ../../operation/inventory/inventory.php:155 +#: ../../operation/inventory/inventory.php:175 +#: ../../operation/inventory/inventory.php:202 msgid "N/A" msgstr "N/A" -#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:839 +#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:843 #: ../../operation/agentes/estado_generalagente.php:250 #: ../../operation/gis_maps/ajax.php:341 msgid "Agent Version" @@ -2830,12 +2876,12 @@ msgid "Cluster agent" msgstr "Agente del clúster" #: ../../views/cluster/view.php:364 -#: ../../operation/agentes/estado_generalagente.php:1012 +#: ../../operation/agentes/estado_generalagente.php:919 msgid "Events (Last 24h)" msgstr "Eventos (últimas 24h)" -#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:453 -#: ../../operation/agentes/interface_traffic_graph_win.php:278 +#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:469 +#: ../../operation/agentes/interface_traffic_graph_win.php:294 msgid "Reload" msgstr "Actualizar" @@ -2853,24 +2899,24 @@ msgstr "Nuevo widget" #: ../../views/dashboard/header.php:43 #: ../../extensions/disabled/matrix_events.php:35 -#: ../../extensions/agents_modules.php:380 -#: ../../extensions/agents_modules.php:387 -#: ../../extensions/agents_modules.php:390 -#: ../../operation/visual_console/view.php:231 -#: ../../operation/visual_console/legacy_view.php:201 +#: ../../extensions/agents_modules.php:388 +#: ../../extensions/agents_modules.php:395 +#: ../../extensions/agents_modules.php:398 +#: ../../operation/visual_console/view.php:233 +#: ../../operation/visual_console/legacy_view.php:200 #: ../../operation/gis_maps/render_view.php:137 #: ../../operation/reporting/reporting_viewer.php:185 #: ../../operation/reporting/graph_viewer.php:234 msgid "Full screen mode" msgstr "Modo pantalla completa" -#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:603 -#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:500 -#: ../../operation/visual_console/legacy_view.php:249 +#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:611 +#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:502 +#: ../../operation/visual_console/legacy_view.php:260 #: ../../operation/gis_maps/render_view.php:139 #: ../../operation/reporting/reporting_viewer.php:194 #: ../../operation/reporting/graph_viewer.php:243 -#: ../../operation/events/events.php:1410 +#: ../../operation/events/events.php:1464 msgid "Back to normal mode" msgstr "Volver a modo normal" @@ -2898,11 +2944,11 @@ msgstr "Actualizar el panel de control" #: ../../enterprise/operation/services/services.list.php:590 #: ../../godmode/snmpconsole/snmp_alert.php:2227 #: ../../godmode/snmpconsole/snmp_alert.php:2242 -#: ../../godmode/massive/massive_edit_agents.php:1043 -#: ../../godmode/reporting/graph_builder.graph_editor.php:241 -#: ../../godmode/reporting/graph_builder.graph_editor.php:262 -#: ../../include/functions_config.php:1333 -#: ../../include/functions_config.php:3537 +#: ../../godmode/massive/massive_edit_agents.php:1060 +#: ../../godmode/reporting/graph_builder.graph_editor.php:374 +#: ../../godmode/reporting/graph_builder.graph_editor.php:395 +#: ../../include/functions_config.php:1349 +#: ../../include/functions_config.php:3561 #: ../../include/class/SatelliteAgent.class.php:1269 #: ../../operation/gis_maps/render_view.php:167 msgid "Ok" @@ -2927,23 +2973,23 @@ msgstr "Mostrar el enlace al dashboard público" #: ../../views/dashboard/header.php:163 #: ../../enterprise/views/ncm/devices/list.php:172 #: ../../enterprise/meta/advanced/policymanager.queue.php:238 -#: ../../enterprise/godmode/policies/policy_queue.php:849 +#: ../../enterprise/godmode/policies/policy_queue.php:853 #: ../../enterprise/godmode/servers/HA_cluster.php:437 #: ../../enterprise/include/class/Omnishell.class.php:559 #: ../../enterprise/include/class/Omnishell.class.php:1712 #: ../../enterprise/include/functions_ipam.php:1400 -#: ../../extensions/agents_modules.php:615 +#: ../../extensions/agents_modules.php:623 #: ../../godmode/wizards/DiscoveryTaskList.class.php:196 -#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1285 -#: ../../include/functions_ui.php:1284 ../../include/functions_ui.php:7720 -#: ../../include/class/NetworkMap.class.php:2946 ../../operation/heatmap.php:175 -#: ../../operation/visual_console/view.php:513 +#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1313 +#: ../../include/functions_ui.php:1321 ../../include/functions_ui.php:7815 +#: ../../include/class/NetworkMap.class.php:2952 ../../operation/heatmap.php:175 +#: ../../operation/visual_console/view.php:515 #: ../../operation/visual_console/legacy_public_view.php:141 -#: ../../operation/visual_console/legacy_view.php:263 +#: ../../operation/visual_console/legacy_view.php:274 #: ../../operation/visual_console/public_view.php:129 #: ../../operation/agentes/pandora_networkmap.editor.php:553 #: ../../operation/gis_maps/render_view.php:161 -#: ../../operation/events/events.php:1422 ../../general/login_page.php:97 +#: ../../operation/events/events.php:1476 ../../general/login_page.php:97 #: ../../general/login_page.php:408 msgid "Refresh" msgstr "Actualizar" @@ -2955,9 +3001,10 @@ msgstr "Añadir celda" #: ../../views/dashboard/header.php:298 #: ../../enterprise/extensions/vmware/vmware_view.php:1377 #: ../../enterprise/extensions/vmware/vmware_view.php:1414 +#: ../../godmode/users/configure_user.php:66 #: ../../godmode/users/user_management.php:45 #: ../../godmode/massive/massive_edit_users.php:280 -#: ../../mobile/include/functions_web.php:22 +#: ../../mobile/include/functions_web.php:22 ../../include/auth/mysql.php:814 #: ../../include/class/OrderInterpreter.class.php:219 #: ../../operation/users/user_edit.php:475 ../../operation/menu.php:478 msgid "Dashboard" @@ -2968,7 +3015,7 @@ msgid "Hello! These are the tips of the day." msgstr "¡Hola! Estos son los tips del día." #: ../../views/dashboard/tipsWindow.php:44 -#: ../../godmode/users/user_management.php:378 +#: ../../godmode/users/user_management.php:384 msgid "Show usage tips at startup" msgstr "Mostrar tips de uso al inicio" @@ -3008,11 +3055,11 @@ msgstr "Dashboards" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:132 #: ../../extensions/files_repo.php:206 #: ../../godmode/modules/manage_nc_groups.php:176 -#: ../../godmode/modules/manage_network_components.php:562 +#: ../../godmode/modules/manage_network_components.php:565 #: ../../godmode/users/profile_list.php:142 ../../godmode/users/user_list.php:357 #: ../../godmode/users/user_list.php:411 -#: ../../godmode/users/configure_user.php:101 -#: ../../godmode/users/configure_user.php:121 +#: ../../godmode/users/configure_user.php:871 +#: ../../godmode/users/configure_user.php:891 #: ../../godmode/agentes/planned_downtime.list.php:290 #: ../../godmode/netflow/nf_item_list.php:120 #: ../../godmode/netflow/nf_item_list.php:148 @@ -3024,7 +3071,7 @@ msgstr "Dashboards" #: ../../godmode/massive/massive_delete_alerts.php:201 #: ../../godmode/alerts/alert_actions.php:208 #: ../../godmode/alerts/alert_commands.php:698 -#: ../../godmode/alerts/alert_templates.php:257 +#: ../../godmode/alerts/alert_templates.php:261 #: ../../godmode/alerts/alert_list.php:239 #: ../../godmode/alerts/alert_list.php:346 ../../godmode/setup/news.php:137 #: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:89 @@ -3048,7 +3095,7 @@ msgstr "Eliminado correctamente" #: ../../enterprise/godmode/modules/local_components.php:432 #: ../../enterprise/godmode/policies/policy_alerts.php:267 #: ../../enterprise/godmode/policies/policy_alerts.php:315 -#: ../../enterprise/godmode/policies/policy_modules.php:1329 +#: ../../enterprise/godmode/policies/policy_modules.php:1374 #: ../../enterprise/godmode/policies/policy_external_alerts.php:159 #: ../../enterprise/godmode/policies/policy_external_alerts.php:186 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:174 @@ -3065,18 +3112,18 @@ msgstr "Eliminado correctamente" #: ../../enterprise/tools/ipam/ipam_action.php:100 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 #: ../../extensions/files_repo.php:206 -#: ../../godmode/modules/manage_network_components.php:563 -#: ../../godmode/users/configure_user.php:102 +#: ../../godmode/modules/manage_network_components.php:566 +#: ../../godmode/users/configure_user.php:872 #: ../../godmode/massive/massive_delete_action_alerts.php:171 #: ../../godmode/massive/massive_delete_alerts.php:202 #: ../../godmode/alerts/alert_actions.php:209 #: ../../godmode/alerts/alert_commands.php:699 -#: ../../godmode/alerts/alert_templates.php:258 +#: ../../godmode/alerts/alert_templates.php:262 #: ../../godmode/alerts/alert_list.php:240 #: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:138 #: ../../godmode/setup/gis.php:59 #: ../../godmode/reporting/reporting_builder.php:632 -#: ../../operation/agentes/pandora_networkmap.php:563 +#: ../../operation/agentes/pandora_networkmap.php:564 #: ../../operation/messages/message_list.php:110 #: ../../operation/gis_maps/gis_map.php:100 #: ../../operation/incidents/list_integriaims_incidents.php:306 @@ -3105,15 +3152,15 @@ msgstr "Favorito" #: ../../views/dashboard/list.php:103 ../../operation/heatmap.php:90 #: ../../operation/agentes/networkmap.dinamic.php:115 -#: ../../operation/agentes/pandora_networkmap.view.php:2364 +#: ../../operation/agentes/pandora_networkmap.view.php:2365 #: ../../operation/snmpconsole/snmp_statistics.php:54 #: ../../operation/snmpconsole/snmp_browser.php:68 -#: ../../operation/events/events.php:1460 +#: ../../operation/events/events.php:1514 msgid "Full screen" msgstr "Pantalla completa" #: ../../views/dashboard/list.php:106 -#: ../../enterprise/godmode/policies/policy_modules.php:1796 +#: ../../enterprise/godmode/policies/policy_modules.php:1841 #: ../../enterprise/godmode/policies/policies.php:643 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:229 #: ../../godmode/agentes/planned_downtime.list.php:746 @@ -3121,8 +3168,8 @@ msgstr "Pantalla completa" #: ../../godmode/agentes/planned_downtime.list.php:925 #: ../../godmode/alerts/alert_actions.php:355 #: ../../godmode/reporting/map_builder.php:420 -#: ../../include/functions_filemanager.php:985 -#: ../../operation/agentes/pandora_networkmap.php:806 +#: ../../include/functions_filemanager.php:1007 +#: ../../operation/agentes/pandora_networkmap.php:807 msgid "Copy" msgstr "Copiar" @@ -3148,8 +3195,8 @@ msgid "Please select widget" msgstr "Seleccione un widget" #: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76 -#: ../../include/class/SnmpConsole.class.php:1550 -#: ../../operation/events/events.php:3160 +#: ../../include/class/SnmpConsole.class.php:1552 +#: ../../operation/events/events.php:3219 msgid "Until next" msgstr "Hasta el próximo" @@ -3170,7 +3217,7 @@ msgstr "Favorito" msgid "Configure widget" msgstr "Configurar widget" -#: ../../views/dashboard/cell.php:68 +#: ../../views/dashboard/cell.php:69 msgid "Delete widget" msgstr "Eliminar widget" @@ -3187,13 +3234,13 @@ msgstr "Cambiar cada" #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 -#: ../../include/functions.php:3943 ../../include/functions_ui.php:2381 +#: ../../include/functions.php:3969 ../../include/functions_ui.php:2424 msgid "Previous" msgstr "Anterior" #: ../../views/dashboard/slides.php:218 #: ../../enterprise/meta/general/main_menu.php:287 ../../operation/menu.php:572 -#: ../../operation/events/events.php:1518 +#: ../../operation/events/events.php:1572 msgid "Stop" msgstr "Parar" @@ -3221,9 +3268,9 @@ msgstr "Pausar" #: ../../godmode/alerts/configure_alert_template.php:1227 #: ../../godmode/alerts/configure_alert_template.php:1239 #: ../../godmode/wizards/HostDevices.class.php:779 -#: ../../include/functions_ui.php:2462 -#: ../../include/class/CustomNetScan.class.php:556 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1238 +#: ../../include/functions_ui.php:2505 +#: ../../include/class/CustomNetScan.class.php:555 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1239 msgid "Next" msgstr "Siguiente" @@ -3263,7 +3310,7 @@ msgstr "" #: ../../enterprise/views/ncm/models/edit.php:37 #: ../../enterprise/views/ncm/vendors/list.php:32 #: ../../enterprise/views/ncm/vendors/edit.php:35 -#: ../../include/functions.php:1294 ../../include/functions_events.php:3178 +#: ../../include/functions.php:1294 ../../include/functions_events.php:3183 msgid "Network configuration manager" msgstr "Administrador de configuración de red" @@ -3336,7 +3383,7 @@ msgid "Device model" msgstr "Modelo del dispositivo" #: ../../enterprise/views/ncm/agent/manage.php:102 -#: ../../godmode/agentes/module_manager_editor_network.php:502 +#: ../../godmode/agentes/module_manager_editor_network.php:507 msgid "Connection method" msgstr "Modo de conexión" @@ -3358,11 +3405,11 @@ msgstr "conectarse mediante telnet" #: ../../enterprise/include/class/Aws.S3.php:580 #: ../../enterprise/include/class/Aws.cloud.php:544 #: ../../extensions/quick_shell.php:183 -#: ../../godmode/modules/manage_network_components_form_network.php:53 -#: ../../godmode/agentes/module_manager_editor_network.php:83 +#: ../../godmode/modules/manage_network_components_form_network.php:83 +#: ../../godmode/agentes/module_manager_editor_network.php:84 #: ../../godmode/massive/massive_edit_modules.php:1160 #: ../../godmode/servers/modificar_server.php:117 -#: ../../include/functions_config.php:1651 +#: ../../include/functions_config.php:1663 #: ../../include/class/AgentWizard.class.php:648 #: ../../include/functions_snmp_browser.php:724 msgid "Port" @@ -3413,7 +3460,7 @@ msgstr "Estado de NCM" #: ../../extensions/insert_data.php:256 ../../godmode/setup/gis_step_2.php:542 #: ../../godmode/setup/snmp_wizard.php:100 #: ../../godmode/reporting/visual_console_builder.data.php:310 -#: ../../include/ajax/module.php:2211 ../../operation/agentes/graphs.php:377 +#: ../../include/ajax/module.php:2240 ../../operation/agentes/graphs.php:377 msgid "Save" msgstr "Guardar" @@ -3440,10 +3487,10 @@ msgstr "Tipo de script" #: ../../enterprise/views/ncm/agent/details.php:90 #: ../../enterprise/include/class/CommandCenter.class.php:470 #: ../../extensions/api_checker.php:363 ../../extensions/api_checker.php:371 -#: ../../include/functions_reporting_html.php:4310 -#: ../../include/functions_reporting_html.php:4457 -#: ../../include/functions_reporting_html.php:4800 -#: ../../include/functions_reporting_html.php:4811 +#: ../../include/functions_reporting_html.php:4338 +#: ../../include/functions_reporting_html.php:4485 +#: ../../include/functions_reporting_html.php:4828 +#: ../../include/functions_reporting_html.php:4839 #: ../../include/functions_db.php:1959 msgid "Result" msgstr "Resultado" @@ -3508,9 +3555,9 @@ msgstr "Ejecutar snippet" #: ../../enterprise/meta/include/functions_wizard_meta.php:1632 #: ../../enterprise/meta/include/functions_wizard_meta.php:1757 #: ../../enterprise/meta/include/functions_wizard_meta.php:1832 -#: ../../godmode/setup/setup_visuals.php:1549 -#: ../../include/class/TipsWindow.class.php:777 -#: ../../include/class/TipsWindow.class.php:944 +#: ../../godmode/setup/setup_visuals.php:1564 +#: ../../include/class/TipsWindow.class.php:797 +#: ../../include/class/TipsWindow.class.php:964 msgid "Preview" msgstr "Vista previa" @@ -3539,7 +3586,7 @@ msgstr "Vista previa" #: ../../enterprise/operation/services/services.list.php:208 #: ../../enterprise/operation/services/services.list.php:609 #: ../../enterprise/operation/services/services.table_services.php:144 -#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1104 +#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1116 #: ../../godmode/massive/massive_copy_modules.php:118 #: ../../godmode/massive/massive_copy_modules.php:278 #: ../../godmode/massive/massive_delete_modules.php:421 @@ -3547,42 +3594,42 @@ msgstr "Vista previa" #: ../../godmode/massive/massive_edit_modules.php:388 #: ../../godmode/massive/massive_edit_modules.php:474 #: ../../godmode/alerts/alert_list.builder.php:326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3833 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3842 #: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72 -#: ../../include/graphs/functions_flot.php:310 -#: ../../include/functions_reporting_html.php:2563 -#: ../../include/functions_reporting_html.php:2576 -#: ../../include/functions_reporting_html.php:3563 -#: ../../include/functions_reporting_html.php:3966 -#: ../../include/functions.php:1281 ../../include/functions.php:4181 -#: ../../include/ajax/module.php:1057 ../../include/ajax/module.php:1946 +#: ../../include/graphs/functions_flot.php:311 +#: ../../include/functions_reporting_html.php:2584 +#: ../../include/functions_reporting_html.php:2597 +#: ../../include/functions_reporting_html.php:3591 +#: ../../include/functions_reporting_html.php:3994 +#: ../../include/functions.php:1281 ../../include/functions.php:4207 +#: ../../include/ajax/module.php:1080 ../../include/ajax/module.php:1974 #: ../../include/functions_ui.php:606 ../../include/functions_ui.php:607 #: ../../include/functions_visual_map.php:2457 #: ../../include/functions_visual_map.php:2485 #: ../../include/functions_visual_map.php:2503 #: ../../include/functions_visual_map.php:2521 #: ../../include/functions_alerts.php:702 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:439 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:585 #: ../../include/functions_reports.php:569 ../../include/functions_maps.php:54 #: ../../include/functions_massive_operations.php:149 #: ../../include/functions_netflow.php:1884 -#: ../../include/functions_reporting.php:6772 -#: ../../include/functions_filemanager.php:708 +#: ../../include/functions_reporting.php:6781 +#: ../../include/functions_filemanager.php:723 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:256 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:401 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:435 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:719 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:404 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:439 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:712 #: ../../include/lib/ClusterViewer/ClusterManager.php:582 -#: ../../include/functions_events.php:3126 ../../operation/tree.php:211 -#: ../../operation/tree.php:301 ../../operation/tree.php:523 +#: ../../include/functions_events.php:3131 ../../operation/tree.php:211 +#: ../../operation/tree.php:302 ../../operation/tree.php:525 #: ../../operation/agentes/estado_agente.php:276 -#: ../../operation/agentes/status_monitor.php:567 -#: ../../operation/agentes/group_view.php:242 -#: ../../operation/agentes/group_view.php:247 -#: ../../operation/agentes/estado_monitores.php:521 -#: ../../operation/agentes/pandora_networkmap.view.php:1804 -#: ../../operation/agentes/tactical.php:200 ../../operation/events/events.php:815 -#: ../../general/logon_ok.php:151 +#: ../../operation/agentes/status_monitor.php:566 +#: ../../operation/agentes/group_view.php:245 +#: ../../operation/agentes/group_view.php:250 +#: ../../operation/agentes/estado_monitores.php:518 +#: ../../operation/agentes/pandora_networkmap.view.php:1805 +#: ../../operation/agentes/tactical.php:200 ../../operation/events/events.php:820 +#: ../../general/logon_ok.php:160 msgid "Unknown" msgstr "Desconocido" @@ -3666,31 +3713,32 @@ msgstr "Diferencia" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1208 #: ../../enterprise/tools/ipam/ipam_ajax.php:535 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:807 -#: ../../godmode/groups/group_list.php:887 ../../godmode/users/user_list.php:583 +#: ../../godmode/groups/group_list.php:888 ../../godmode/users/user_list.php:584 #: ../../godmode/agentes/inventory_manager.php:237 -#: ../../godmode/agentes/modificar_agente.php:700 +#: ../../godmode/agentes/modificar_agente.php:710 #: ../../godmode/agentes/planned_downtime.editor.php:1369 -#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:279 +#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:277 #: ../../godmode/alerts/alert_list.list.php:136 #: ../../godmode/alerts/alert_list.list.php:571 #: ../../godmode/alerts/alert_commands.php:753 #: ../../godmode/alerts/alert_view.php:307 #: ../../godmode/alerts/alert_list.builder.php:112 +#: ../../godmode/setup/os.list.php:69 #: ../../godmode/reporting/reporting_builder.item_editor.php:2092 -#: ../../godmode/events/event_responses.list.php:69 ../../godmode/tag/tag.php:309 +#: ../../godmode/events/event_responses.list.php:69 ../../godmode/tag/tag.php:310 #: ../../godmode/category/category.php:161 -#: ../../include/functions_reporting_html.php:3450 -#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1008 -#: ../../include/functions_treeview.php:400 +#: ../../include/functions_reporting_html.php:3478 +#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1031 +#: ../../include/functions_treeview.php:404 #: ../../include/class/SatelliteAgent.class.php:148 #: ../../include/class/AgentsAlerts.class.php:254 #: ../../include/class/AgentsAlerts.class.php:332 #: ../../include/class/SnmpConsole.class.php:281 #: ../../include/class/SatelliteCollection.class.php:135 -#: ../../include/functions_reporting.php:3233 -#: ../../include/functions_filemanager.php:647 -#: ../../operation/agentes/pandora_networkmap.php:721 -#: ../../operation/agentes/status_monitor.php:1605 +#: ../../include/functions_reporting.php:3242 +#: ../../include/functions_filemanager.php:662 +#: ../../operation/agentes/pandora_networkmap.php:722 +#: ../../operation/agentes/status_monitor.php:1607 msgid "Actions" msgstr "Acciones" @@ -3744,9 +3792,9 @@ msgstr "Diferencia entre: copia de seguridad - seleccionada" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1390 #: ../../enterprise/include/class/AgentRepository.class.php:692 #: ../../godmode/modules/manage_inventory_modules.php:54 -#: ../../godmode/modules/manage_network_components.php:298 +#: ../../godmode/modules/manage_network_components.php:299 #: ../../godmode/modules/manage_inventory_modules_form.php:45 -#: ../../godmode/agentes/planned_downtime.list.php:738 ../../godmode/menu.php:255 +#: ../../godmode/agentes/planned_downtime.list.php:738 ../../godmode/menu.php:254 #: ../../godmode/massive/massive_operations.php:332 #: ../../godmode/massive/massive_operations.php:354 #: ../../godmode/events/events.php:138 ../../include/functions_reports.php:917 @@ -3754,6 +3802,7 @@ msgstr "Diferencia entre: copia de seguridad - seleccionada" #: ../../include/class/ConfigPEN.class.php:329 #: ../../include/class/ModuleTemplates.class.php:195 #: ../../include/class/ModuleTemplates.class.php:213 +#: ../../include/class/AgentDeployWizard.class.php:727 msgid "Configuration" msgstr "Configuración" @@ -3822,11 +3871,11 @@ msgid "Customize script execution" msgstr "Personalizar la ejecución del script" #: ../../enterprise/views/ncm/agent/details.php:690 -#: ../../include/ajax/events.php:2199 +#: ../../include/ajax/events.php:2200 #: ../../include/class/ExternalTools.class.php:646 #: ../../include/functions_snmp_browser.php:974 -#: ../../include/functions_snmp_browser.php:1134 -#: ../../include/functions_events.php:3710 +#: ../../include/functions_snmp_browser.php:1142 +#: ../../include/functions_events.php:3715 msgid "Execute" msgstr "Ejecutar" @@ -3841,13 +3890,13 @@ msgstr "Ejecutar" #: ../../enterprise/godmode/reporting/visual_console_template.php:123 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2137 #: ../../enterprise/include/functions_reporting.php:146 -#: ../../enterprise/include/functions_reporting.php:8001 -#: ../../enterprise/include/functions_reporting.php:8029 -#: ../../enterprise/include/functions_reporting.php:8100 -#: ../../godmode/modules/manage_network_components.php:302 -#: ../../godmode/menu.php:172 ../../godmode/menu.php:275 +#: ../../enterprise/include/functions_reporting.php:8010 +#: ../../enterprise/include/functions_reporting.php:8038 +#: ../../enterprise/include/functions_reporting.php:8109 +#: ../../godmode/modules/manage_network_components.php:303 +#: ../../godmode/menu.php:172 ../../godmode/menu.php:273 #: ../../godmode/reporting/reporting_builder.item_editor.php:2027 -#: ../../include/functions_menu.php:585 +#: ../../include/functions_menu.php:587 #: ../../include/class/ConfigPEN.class.php:334 #: ../../include/class/ModuleTemplates.class.php:196 #: ../../include/class/ModuleTemplates.class.php:214 @@ -4009,7 +4058,7 @@ msgstr "Configurar agentes para usar plantillas NCM" #: ../../enterprise/tools/ipam/ipam_excel.php:139 #: ../../enterprise/tools/ipam/ipam_ajax.php:362 #: ../../enterprise/tools/ipam/ipam_calculator.php:69 -#: ../../godmode/setup/setup_general.php:878 +#: ../../godmode/setup/setup_general.php:904 #: ../../operation/agentes/ver_agente.php:1199 msgid "Address" msgstr "Dirección" @@ -4033,14 +4082,14 @@ msgstr "Última tarea en cola" #: ../../enterprise/operation/services/services.service.php:124 #: ../../enterprise/operation/services/services.list.php:548 #: ../../enterprise/tools/ipam/ipam_list.php:738 -#: ../../extensions/agents_modules.php:317 +#: ../../extensions/agents_modules.php:325 #: ../../operation/agentes/group_view.php:80 #: ../../operation/agentes/tactical.php:63 msgid "Last update" msgstr "Última actualización" #: ../../enterprise/views/ncm/devices/list.php:123 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:157 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:154 #: ../../enterprise/godmode/policies/policy_alerts.php:368 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:243 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:488 @@ -4048,7 +4097,7 @@ msgstr "Última actualización" #: ../../godmode/massive/massive_copy_modules.php:185 #: ../../godmode/alerts/alert_list.list.php:572 #: ../../godmode/wizards/DiscoveryTaskList.class.php:617 -#: ../../godmode/servers/plugin.php:996 +#: ../../godmode/servers/plugin.php:988 #: ../../operation/agentes/alerts_status.php:234 #: ../../operation/agentes/alerts_status.php:235 msgid "Operations" @@ -4100,7 +4149,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:1587 #: ../../enterprise/meta/include/functions_wizard_meta.php:1707 #: ../../enterprise/meta/include/functions_wizard_meta.php:1727 -#: ../../enterprise/meta/index.php:947 ../../enterprise/meta/index.php:1016 +#: ../../enterprise/meta/index.php:948 ../../enterprise/meta/index.php:1017 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:328 #: ../../enterprise/godmode/agentes/manage_config_remote.php:344 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120 @@ -4126,51 +4175,51 @@ msgstr "" #: ../../update_manager_client/views/offline.php:80 #: ../../extensions/dbmanager.php:124 #: ../../godmode/modules/manage_network_components_form_wizard.php:384 -#: ../../godmode/groups/group_list.php:1099 -#: ../../godmode/users/configure_user.php:1013 -#: ../../godmode/users/configure_user.php:1974 +#: ../../godmode/groups/group_list.php:1111 +#: ../../godmode/users/configure_user.php:1061 +#: ../../godmode/users/configure_user.php:2026 #: ../../godmode/massive/massive_copy_modules.php:116 #: ../../godmode/massive/massive_copy_modules.php:276 #: ../../godmode/massive/massive_delete_modules.php:419 #: ../../godmode/massive/massive_delete_modules.php:440 -#: ../../godmode/massive/massive_edit_agents.php:1061 +#: ../../godmode/massive/massive_edit_agents.php:1078 #: ../../godmode/massive/massive_edit_modules.php:386 #: ../../godmode/massive/massive_edit_modules.php:472 #: ../../godmode/setup/setup_sflow.php:84 -#: ../../godmode/setup/setup_netflow.php:84 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3831 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3840 #: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70 -#: ../../include/functions_reporting_html.php:2575 +#: ../../include/functions_reporting_html.php:2596 #: ../../include/functions.php:1091 ../../include/functions.php:1329 #: ../../include/functions.php:1332 ../../include/functions.php:1371 -#: ../../include/ajax/module.php:1942 ../../include/functions_graph.php:3341 -#: ../../include/functions_graph.php:3343 ../../include/functions_graph.php:4846 -#: ../../include/functions_ui.php:314 ../../include/functions_ui.php:2869 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:425 +#: ../../include/ajax/module.php:1970 ../../include/functions_graph.php:3351 +#: ../../include/functions_graph.php:3353 ../../include/functions_graph.php:4856 +#: ../../include/functions_ui.php:314 ../../include/functions_ui.php:2912 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:571 #: ../../include/functions_massive_operations.php:147 #: ../../include/class/SatelliteAgent.class.php:1337 #: ../../include/class/SatelliteAgent.class.php:1362 -#: ../../include/class/Diagnostics.class.php:1837 +#: ../../include/class/Diagnostics.class.php:1841 #: ../../include/class/AgentWizard.class.php:1401 #: ../../include/class/AgentWizard.class.php:4147 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:316 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:255 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:562 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:399 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:433 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:714 -#: ../../include/functions_events.php:3222 ../../index.php:1243 -#: ../../operation/tree.php:209 ../../operation/tree.php:299 -#: ../../operation/tree.php:518 ../../operation/users/user_edit.php:305 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:402 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:437 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:707 +#: ../../include/functions_events.php:3227 ../../index.php:1244 +#: ../../operation/tree.php:209 ../../operation/tree.php:300 +#: ../../operation/tree.php:520 ../../operation/users/user_edit.php:305 #: ../../operation/agentes/estado_agente.php:274 -#: ../../operation/agentes/status_monitor.php:565 -#: ../../operation/agentes/group_view.php:245 -#: ../../operation/agentes/group_view.php:250 -#: ../../operation/agentes/estado_monitores.php:520 +#: ../../operation/agentes/status_monitor.php:564 +#: ../../operation/agentes/group_view.php:248 +#: ../../operation/agentes/group_view.php:253 +#: ../../operation/agentes/estado_monitores.php:517 #: ../../operation/agentes/tactical.php:198 -#: ../../operation/netflow/nf_live_view.php:339 -#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:149 +#: ../../operation/netflow/nf_live_view.php:348 +#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:158 msgid "Warning" msgstr "Advertencia" @@ -4189,15 +4238,15 @@ msgstr "icono" #: ../../enterprise/views/ipam/sites/list.php:48 #: ../../enterprise/views/ipam/sites/edit.php:54 #: ../../godmode/modules/manage_nc_groups_form.php:73 -#: ../../godmode/groups/configure_group.php:206 -#: ../../godmode/groups/group_list.php:882 -#: ../../godmode/agentes/agent_manager.php:645 -#: ../../godmode/massive/massive_edit_agents.php:655 +#: ../../godmode/groups/configure_group.php:225 +#: ../../godmode/groups/group_list.php:883 +#: ../../godmode/agentes/agent_manager.php:649 +#: ../../godmode/massive/massive_edit_agents.php:672 #: ../../godmode/reporting/visual_console_builder.elements.php:124 -#: ../../include/functions_visual_map_editor.php:954 -#: ../../include/rest-api/models/VisualConsole/Item.php:2176 +#: ../../include/functions_visual_map_editor.php:1002 +#: ../../include/rest-api/models/VisualConsole/Item.php:2179 #: ../../operation/agentes/ver_agente.php:1236 -#: ../../operation/agentes/estado_generalagente.php:511 +#: ../../operation/agentes/estado_generalagente.php:482 msgid "Parent" msgstr "Padre" @@ -4223,9 +4272,9 @@ msgstr "Padre" #: ../../enterprise/godmode/modules/configure_local_component.php:727 #: ../../enterprise/godmode/modules/configure_local_component.php:733 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1074 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:501 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:632 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:728 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:499 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:630 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:726 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:152 #: ../../enterprise/godmode/policies/policy_external_alerts.php:637 #: ../../enterprise/godmode/policies/policy_agents.php:391 @@ -4246,12 +4295,12 @@ msgstr "Padre" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:250 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:270 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:121 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:162 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:123 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:144 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:164 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 @@ -4344,8 +4393,8 @@ msgstr "Padre" #: ../../enterprise/include/class/Omnishell.class.php:1062 #: ../../enterprise/include/class/Omnishell.class.php:1063 #: ../../enterprise/include/class/SAP.app.php:604 -#: ../../enterprise/include/class/SAP.app.php:818 #: ../../enterprise/include/class/SAP.app.php:819 +#: ../../enterprise/include/class/SAP.app.php:820 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:922 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:949 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1059 @@ -4356,7 +4405,7 @@ msgstr "Padre" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2590 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3594 #: ../../enterprise/operation/agentes/ver_agente.php:56 -#: ../../enterprise/operation/log/log_viewer.php:881 +#: ../../enterprise/operation/log/log_viewer.php:879 #: ../../enterprise/tools/ipam/ipam_network.php:622 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:565 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:748 @@ -4369,40 +4418,40 @@ msgstr "Padre" #: ../../godmode/modules/manage_nc_groups_form.php:80 #: ../../godmode/modules/manage_network_components_form_plugin.php:41 #: ../../godmode/modules/manage_network_components_form_common.php:354 -#: ../../godmode/modules/manage_network_components_form_network.php:248 -#: ../../godmode/modules/manage_network_components_form.php:669 -#: ../../godmode/modules/manage_network_components_form.php:675 -#: ../../godmode/modules/manage_network_components_form.php:684 -#: ../../godmode/modules/manage_network_components_form.php:690 -#: ../../godmode/groups/configure_group.php:170 -#: ../../godmode/groups/configure_group.php:192 -#: ../../godmode/users/configure_user.php:1270 -#: ../../godmode/users/configure_user.php:1286 -#: ../../godmode/users/configure_user.php:1437 -#: ../../godmode/users/configure_user.php:1449 -#: ../../godmode/users/configure_user.php:1573 -#: ../../godmode/users/configure_user.php:1588 -#: ../../godmode/users/configure_user.php:1750 -#: ../../godmode/users/configure_user.php:1758 -#: ../../godmode/users/configure_user.php:1767 -#: ../../godmode/users/configure_user.php:1774 -#: ../../godmode/users/user_management.php:577 -#: ../../godmode/users/user_management.php:600 -#: ../../godmode/agentes/status_monitor_custom_fields.php:230 -#: ../../godmode/agentes/status_monitor_custom_fields.php:278 +#: ../../godmode/modules/manage_network_components_form_network.php:266 +#: ../../godmode/modules/manage_network_components_form.php:672 +#: ../../godmode/modules/manage_network_components_form.php:678 +#: ../../godmode/modules/manage_network_components_form.php:687 +#: ../../godmode/modules/manage_network_components_form.php:693 +#: ../../godmode/groups/configure_group.php:189 +#: ../../godmode/groups/configure_group.php:211 +#: ../../godmode/users/configure_user.php:1334 +#: ../../godmode/users/configure_user.php:1350 +#: ../../godmode/users/configure_user.php:1486 +#: ../../godmode/users/configure_user.php:1502 +#: ../../godmode/users/configure_user.php:1627 +#: ../../godmode/users/configure_user.php:1642 +#: ../../godmode/users/configure_user.php:1802 +#: ../../godmode/users/configure_user.php:1810 +#: ../../godmode/users/configure_user.php:1819 +#: ../../godmode/users/configure_user.php:1826 +#: ../../godmode/users/user_management.php:583 +#: ../../godmode/users/user_management.php:610 +#: ../../godmode/agentes/status_monitor_custom_fields.php:250 +#: ../../godmode/agentes/status_monitor_custom_fields.php:298 #: ../../godmode/agentes/module_manager_editor_plugin.php:55 -#: ../../godmode/agentes/module_manager_editor_network.php:181 -#: ../../godmode/agentes/module_manager_editor_network.php:514 +#: ../../godmode/agentes/module_manager_editor_network.php:182 +#: ../../godmode/agentes/module_manager_editor_network.php:519 #: ../../godmode/agentes/agent_manager.php:558 -#: ../../godmode/agentes/agent_manager.php:750 -#: ../../godmode/agentes/agent_manager.php:1008 -#: ../../godmode/agentes/module_manager_editor_common.php:766 -#: ../../godmode/agentes/module_manager_editor_common.php:1125 -#: ../../godmode/agentes/module_manager_editor_common.php:1360 -#: ../../godmode/agentes/module_manager_editor_common.php:1654 -#: ../../godmode/agentes/module_manager_editor_common.php:1661 -#: ../../godmode/agentes/module_manager_editor_common.php:1672 -#: ../../godmode/agentes/module_manager_editor_common.php:1680 +#: ../../godmode/agentes/agent_manager.php:754 +#: ../../godmode/agentes/agent_manager.php:1014 +#: ../../godmode/agentes/module_manager_editor_common.php:776 +#: ../../godmode/agentes/module_manager_editor_common.php:1135 +#: ../../godmode/agentes/module_manager_editor_common.php:1370 +#: ../../godmode/agentes/module_manager_editor_common.php:1664 +#: ../../godmode/agentes/module_manager_editor_common.php:1671 +#: ../../godmode/agentes/module_manager_editor_common.php:1682 +#: ../../godmode/agentes/module_manager_editor_common.php:1690 #: ../../godmode/snmpconsole/snmp_alert.php:40 #: ../../godmode/snmpconsole/snmp_alert.php:1781 #: ../../godmode/massive/massive_copy_modules.php:374 @@ -4419,13 +4468,13 @@ msgstr "Padre" #: ../../godmode/massive/massive_delete_modules.php:835 #: ../../godmode/massive/massive_edit_users.php:338 #: ../../godmode/massive/massive_edit_users.php:399 -#: ../../godmode/massive/massive_edit_users.php:609 -#: ../../godmode/massive/massive_edit_users.php:617 -#: ../../godmode/massive/massive_edit_users.php:628 -#: ../../godmode/massive/massive_edit_users.php:636 +#: ../../godmode/massive/massive_edit_users.php:610 +#: ../../godmode/massive/massive_edit_users.php:618 +#: ../../godmode/massive/massive_edit_users.php:629 +#: ../../godmode/massive/massive_edit_users.php:637 #: ../../godmode/massive/massive_add_alerts.php:304 #: ../../godmode/massive/massive_edit_plugins.php:338 -#: ../../godmode/massive/massive_edit_agents.php:754 +#: ../../godmode/massive/massive_edit_agents.php:771 #: ../../godmode/massive/massive_delete_alerts.php:366 #: ../../godmode/massive/massive_add_action_alerts.php:342 #: ../../godmode/massive/massive_edit_modules.php:458 @@ -4452,23 +4501,23 @@ msgstr "Padre" #: ../../godmode/alerts/configure_alert_template.php:730 #: ../../godmode/alerts/configure_alert_template.php:824 #: ../../godmode/setup/os.builder.php:51 -#: ../../godmode/setup/setup_visuals.php:611 -#: ../../godmode/setup/setup_visuals.php:651 -#: ../../godmode/setup/setup_visuals.php:1084 -#: ../../godmode/setup/setup_general.php:1051 -#: ../../godmode/setup/setup_general.php:1068 +#: ../../godmode/setup/setup_visuals.php:615 +#: ../../godmode/setup/setup_visuals.php:655 +#: ../../godmode/setup/setup_visuals.php:1088 #: ../../godmode/setup/setup_general.php:1077 #: ../../godmode/setup/setup_general.php:1094 +#: ../../godmode/setup/setup_general.php:1103 +#: ../../godmode/setup/setup_general.php:1120 #: ../../godmode/reporting/create_container.php:572 -#: ../../godmode/reporting/graph_builder.graph_editor.php:373 -#: ../../godmode/reporting/reporting_builder.item_editor.php:209 -#: ../../godmode/reporting/reporting_builder.item_editor.php:991 +#: ../../godmode/reporting/graph_builder.graph_editor.php:296 +#: ../../godmode/reporting/reporting_builder.item_editor.php:210 +#: ../../godmode/reporting/reporting_builder.item_editor.php:993 #: ../../godmode/reporting/reporting_builder.item_editor.php:2175 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2248 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2269 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2301 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3232 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3393 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2257 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2278 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2310 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3241 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3402 #: ../../godmode/reporting/visual_console_builder.elements.php:525 #: ../../godmode/reporting/visual_console_builder.elements.php:676 #: ../../godmode/reporting/visual_console_builder.elements.php:686 @@ -4482,25 +4531,25 @@ msgstr "Padre" #: ../../godmode/reporting/visual_console_builder.wizard.php:783 #: ../../godmode/reporting/visual_console_builder.wizard.php:793 #: ../../godmode/reporting/visual_console_builder.wizard.php:825 -#: ../../godmode/events/event_edit_filter.php:977 +#: ../../godmode/events/event_edit_filter.php:979 #: ../../godmode/events/custom_events.php:210 #: ../../godmode/events/custom_events.php:258 -#: ../../godmode/wizards/HostDevices.class.php:1119 -#: ../../mobile/operation/events.php:930 -#: ../../include/functions_visual_map_editor.php:404 -#: ../../include/functions_visual_map_editor.php:406 -#: ../../include/functions_visual_map_editor.php:622 -#: ../../include/functions_visual_map_editor.php:955 -#: ../../include/functions_visual_map_editor.php:1008 -#: ../../include/functions_visual_map_editor.php:1070 +#: ../../godmode/wizards/HostDevices.class.php:1115 +#: ../../mobile/operation/events.php:974 +#: ../../include/functions_visual_map_editor.php:398 +#: ../../include/functions_visual_map_editor.php:400 +#: ../../include/functions_visual_map_editor.php:616 +#: ../../include/functions_visual_map_editor.php:1003 +#: ../../include/functions_visual_map_editor.php:1056 +#: ../../include/functions_visual_map_editor.php:1122 #: ../../include/functions.php:1129 ../../include/functions_cron.php:680 #: ../../include/functions_networkmap.php:1524 #: ../../include/ajax/audit_log.php:156 #: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../include/ajax/module.php:2155 ../../include/ajax/module.php:2614 +#: ../../include/ajax/module.php:2184 ../../include/ajax/module.php:2643 #: ../../include/ajax/agent.php:500 ../../include/ajax/agent.php:838 #: ../../include/ajax/agent.php:921 ../../include/ajax/agent.php:987 -#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:589 +#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:590 #: ../../include/functions_integriaims.php:135 #: ../../include/functions_profile.php:349 #: ../../include/functions_profile.php:367 @@ -4510,24 +4559,24 @@ msgstr "Padre" #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:622 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:634 -#: ../../include/rest-api/models/VisualConsole/Item.php:2088 -#: ../../include/rest-api/models/VisualConsole/Item.php:2207 -#: ../../include/rest-api/models/VisualConsole/Item.php:2325 -#: ../../include/rest-api/models/VisualConsole/Item.php:2447 +#: ../../include/rest-api/models/VisualConsole/Item.php:2091 +#: ../../include/rest-api/models/VisualConsole/Item.php:2210 +#: ../../include/rest-api/models/VisualConsole/Item.php:2328 +#: ../../include/rest-api/models/VisualConsole/Item.php:2450 #: ../../include/functions_html.php:397 ../../include/functions_html.php:848 -#: ../../include/functions_html.php:1271 ../../include/functions_html.php:1323 -#: ../../include/functions_html.php:1370 ../../include/functions_html.php:1371 -#: ../../include/functions_html.php:1422 ../../include/functions_html.php:1472 -#: ../../include/functions_html.php:6508 -#: ../../include/class/NetworkMap.class.php:2934 -#: ../../include/class/NetworkMap.class.php:3203 -#: ../../include/class/NetworkMap.class.php:3226 -#: ../../include/class/NetworkMap.class.php:3299 -#: ../../include/class/NetworkMap.class.php:3309 -#: ../../include/class/NetworkMap.class.php:3420 -#: ../../include/class/NetworkMap.class.php:3441 +#: ../../include/functions_html.php:1276 ../../include/functions_html.php:1328 +#: ../../include/functions_html.php:1375 ../../include/functions_html.php:1376 +#: ../../include/functions_html.php:1427 ../../include/functions_html.php:1477 +#: ../../include/functions_html.php:6536 +#: ../../include/class/NetworkMap.class.php:2940 +#: ../../include/class/NetworkMap.class.php:3209 +#: ../../include/class/NetworkMap.class.php:3232 +#: ../../include/class/NetworkMap.class.php:3305 +#: ../../include/class/NetworkMap.class.php:3315 +#: ../../include/class/NetworkMap.class.php:3426 +#: ../../include/class/NetworkMap.class.php:3447 #: ../../include/class/SnmpConsole.class.php:314 -#: ../../include/class/SnmpConsole.class.php:1375 +#: ../../include/class/SnmpConsole.class.php:1377 #: ../../include/class/AgentWizard.class.php:729 #: ../../include/class/AgentWizard.class.php:785 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:369 @@ -4539,6 +4588,8 @@ msgstr "Padre" #: ../../include/lib/Dashboard/Widgets/network_map.php:365 #: ../../include/lib/Dashboard/Widgets/events_list.php:312 #: ../../include/lib/Dashboard/Widgets/events_list.php:470 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:401 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:413 #: ../../include/lib/Dashboard/Widgets/module_icon.php:388 #: ../../include/lib/Dashboard/Widgets/module_value.php:363 #: ../../include/lib/Dashboard/Widgets/module_table_value.php:336 @@ -4554,29 +4605,28 @@ msgstr "Padre" #: ../../include/lib/Dashboard/Widgets/single_graph.php:352 #: ../../include/lib/Dashboard/Widgets/reports.php:552 #: ../../include/lib/Dashboard/Widgets/top_n.php:241 -#: ../../include/functions_events.php:3501 -#: ../../operation/users/user_edit.php:520 -#: ../../operation/users/user_edit.php:532 -#: ../../operation/users/user_edit.php:581 -#: ../../operation/users/user_edit.php:616 -#: ../../operation/users/user_edit.php:631 -#: ../../operation/users/user_edit.php:1081 -#: ../../operation/users/user_edit.php:1088 -#: ../../operation/users/user_edit.php:1097 -#: ../../operation/users/user_edit.php:1104 +#: ../../include/functions_events.php:3506 +#: ../../operation/users/user_edit.php:525 +#: ../../operation/users/user_edit.php:578 +#: ../../operation/users/user_edit.php:613 +#: ../../operation/users/user_edit.php:628 +#: ../../operation/users/user_edit.php:1078 +#: ../../operation/users/user_edit.php:1085 +#: ../../operation/users/user_edit.php:1094 +#: ../../operation/users/user_edit.php:1101 #: ../../operation/agentes/pandora_networkmap.editor.php:488 #: ../../operation/agentes/pandora_networkmap.view.php:227 #: ../../operation/agentes/ver_agente.php:1182 #: ../../operation/agentes/ver_agente.php:1238 #: ../../operation/agentes/ver_agente.php:1253 -#: ../../operation/snmpconsole/snmp_browser.php:383 -#: ../../operation/snmpconsole/snmp_browser.php:398 -#: ../../operation/snmpconsole/snmp_browser.php:408 -#: ../../operation/snmpconsole/snmp_browser.php:527 +#: ../../operation/snmpconsole/snmp_browser.php:388 +#: ../../operation/snmpconsole/snmp_browser.php:403 +#: ../../operation/snmpconsole/snmp_browser.php:413 +#: ../../operation/snmpconsole/snmp_browser.php:532 #: ../../operation/gis_maps/render_view.php:164 #: ../../operation/incidents/list_integriaims_incidents.php:601 #: ../../operation/incidents/list_integriaims_incidents.php:605 -#: ../../operation/events/events.php:2647 +#: ../../operation/events/events.php:2701 msgid "None" msgstr "Ninguno" @@ -4584,12 +4634,21 @@ msgstr "Ninguno" msgid "Create visualmap" msgstr "Crear mapa visual" -#: ../../enterprise/meta/advanced/servers.build_table.php:34 +#: ../../enterprise/meta/advanced/servers.build_table.php:33 +#: ../../godmode/servers/modificar_server.php:63 +#: ../../godmode/servers/modificar_server.php:223 +#: ../../godmode/servers/modificar_server.php:242 +#: ../../godmode/servers/modificar_server.php:284 +#, php-format +msgid "%s servers" +msgstr "Servidores de %s" + +#: ../../enterprise/meta/advanced/servers.build_table.php:50 #: ../../godmode/servers/servers.build_table.php:52 msgid "There are no servers configured into the database" msgstr "No hay ningún servidor configurado en la base de datos" -#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../enterprise/meta/advanced/servers.build_table.php:81 #: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:63 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:379 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:647 @@ -4600,7 +4659,7 @@ msgstr "No hay ningún servidor configurado en la base de datos" #: ../../enterprise/meta/include/functions_wizard_meta.php:406 #: ../../enterprise/meta/include/functions_wizard_meta.php:1821 #: ../../enterprise/meta/agentsearch.php:138 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:132 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135 #: ../../enterprise/godmode/policies/policy_modules.php:459 #: ../../enterprise/godmode/policies/policy_modules.php:472 #: ../../enterprise/godmode/policies/policies.php:581 @@ -4616,10 +4675,10 @@ msgstr "No hay ningún servidor configurado en la base de datos" #: ../../enterprise/operation/services/massive/services.create.php:986 #: ../../enterprise/operation/services/massive/service.create.elements.php:380 #: ../../enterprise/operation/services/services.service_map.php:153 -#: ../../extensions/agents_modules.php:841 +#: ../../extensions/agents_modules.php:865 #: ../../godmode/agentes/configurar_agente.php:423 #: ../../godmode/agentes/configurar_agente.php:735 -#: ../../godmode/agentes/modificar_agente.php:820 +#: ../../godmode/agentes/modificar_agente.php:832 #: ../../godmode/agentes/planned_downtime.list.php:85 #: ../../godmode/agentes/planned_downtime.list.php:116 #: ../../godmode/agentes/planned_downtime.editor.php:1360 @@ -4632,12 +4691,12 @@ msgstr "No hay ningún servidor configurado en la base de datos" #: ../../godmode/reporting/reporting_builder.item_editor.php:1946 #: ../../godmode/reporting/reporting_builder.item_editor.php:2167 #: ../../godmode/reporting/visual_console_builder.wizard.php:447 -#: ../../godmode/servers/servers.build_table.php:81 -#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:409 +#: ../../godmode/servers/servers.build_table.php:83 +#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:410 #: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88 -#: ../../mobile/operation/agent.php:327 -#: ../../include/functions_reporting_html.php:2094 -#: ../../include/functions_reporting_html.php:5662 +#: ../../mobile/operation/agent.php:330 +#: ../../include/functions_reporting_html.php:2115 +#: ../../include/functions_reporting_html.php:5690 #: ../../include/functions_reports.php:745 #: ../../include/functions_reports.php:749 #: ../../include/functions_reports.php:753 @@ -4646,53 +4705,53 @@ msgstr "No hay ningún servidor configurado en la base de datos" #: ../../include/functions_reports.php:765 #: ../../include/functions_reports.php:769 #: ../../include/functions_reports.php:773 -#: ../../include/functions_reports.php:777 ../../include/functions_html.php:1745 -#: ../../include/functions_html.php:5982 +#: ../../include/functions_reports.php:777 ../../include/functions_html.php:1755 +#: ../../include/functions_html.php:6006 #: ../../include/class/AgentsAlerts.class.php:253 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:414 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:420 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:432 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:344 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:424 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:430 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:445 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:347 #: ../../operation/search_agents.php:55 ../../operation/tree.php:115 #: ../../operation/search_results.php:159 -#: ../../operation/agentes/estado_agente.php:1046 +#: ../../operation/agentes/estado_agente.php:1054 #: ../../operation/agentes/graphs.php:203 #: ../../operation/agentes/exportdata.php:354 #: ../../operation/agentes/group_view.php:185 -#: ../../operation/agentes/group_view.php:235 +#: ../../operation/agentes/group_view.php:238 msgid "Modules" msgstr "Módulos" -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:82 +#: ../../enterprise/meta/advanced/servers.build_table.php:82 +#: ../../godmode/servers/servers.build_table.php:84 msgid "Lag" msgstr "Retraso" -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:82 +#: ../../enterprise/meta/advanced/servers.build_table.php:82 +#: ../../godmode/servers/servers.build_table.php:84 msgid "Avg. Delay(sec)/Modules delayed" msgstr "Media de retraso (seg.)/Módulos retrasados" -#: ../../enterprise/meta/advanced/servers.build_table.php:67 -#: ../../godmode/servers/servers.build_table.php:83 +#: ../../enterprise/meta/advanced/servers.build_table.php:83 +#: ../../godmode/servers/servers.build_table.php:85 msgid "T/Q" msgstr "H/C" -#: ../../enterprise/meta/advanced/servers.build_table.php:67 -#: ../../godmode/servers/servers.build_table.php:83 +#: ../../enterprise/meta/advanced/servers.build_table.php:83 +#: ../../godmode/servers/servers.build_table.php:85 msgid "Threads / Queued modules currently" msgstr "Hilos/Cola actual de módulos" -#: ../../enterprise/meta/advanced/servers.build_table.php:69 +#: ../../enterprise/meta/advanced/servers.build_table.php:85 #: ../../enterprise/include/class/DatabaseHA.class.php:800 #: ../../enterprise/tools/ipam/ipam_ajax.php:497 #: ../../godmode/agentes/agent_incidents.php:92 -#: ../../godmode/servers/servers.build_table.php:85 +#: ../../godmode/servers/servers.build_table.php:87 #: ../../operation/incidents/integriaims_export_csv.php:86 msgid "Updated" msgstr "Actualizado" -#: ../../enterprise/meta/advanced/servers.build_table.php:73 +#: ../../enterprise/meta/advanced/servers.build_table.php:89 #: ../../enterprise/meta/include/functions_autoprovision.php:701 #: ../../enterprise/godmode/modules/local_components.php:648 #: ../../enterprise/godmode/policies/policy_alerts.php:368 @@ -4701,47 +4760,54 @@ msgstr "Actualizado" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 #: ../../godmode/users/profile_list.php:359 #: ../../godmode/alerts/alert_list.list.php:572 -#: ../../godmode/alerts/alert_templates.php:413 +#: ../../godmode/alerts/alert_templates.php:417 #: ../../godmode/reporting/reporting_builder.list_items.php:429 #: ../../godmode/reporting/graphs.php:375 #: ../../godmode/reporting/reporting_builder.php:931 #: ../../godmode/reporting/reporting_builder.php:1151 -#: ../../godmode/servers/servers.build_table.php:89 -#: ../../godmode/servers/plugin.php:996 ../../include/functions_container.php:157 +#: ../../godmode/servers/servers.build_table.php:91 +#: ../../include/functions_container.php:157 #: ../../operation/gis_maps/gis_map.php:122 msgid "Op." msgstr "Op." -#: ../../enterprise/meta/advanced/servers.build_table.php:92 -#: ../../godmode/servers/servers.build_table.php:138 +#: ../../enterprise/meta/advanced/servers.build_table.php:116 +#: ../../godmode/servers/servers.build_table.php:140 msgid "This is a master server" msgstr "Este es un servidor maestro" -#: ../../enterprise/meta/advanced/servers.build_table.php:107 -#: ../../enterprise/meta/advanced/servers.build_table.php:113 -#: ../../godmode/servers/servers.build_table.php:157 -#: ../../godmode/servers/servers.build_table.php:163 +#: ../../enterprise/meta/advanced/servers.build_table.php:131 +#: ../../enterprise/meta/advanced/servers.build_table.php:137 +#: ../../godmode/servers/servers.build_table.php:159 +#: ../../godmode/servers/servers.build_table.php:165 msgid "of" msgstr "de" -#: ../../enterprise/meta/advanced/servers.build_table.php:143 -#: ../../godmode/servers/servers.build_table.php:274 +#: ../../enterprise/meta/advanced/servers.build_table.php:170 +#: ../../godmode/servers/servers.build_table.php:262 +msgid "Manage server conf" +msgstr "Gestionar configuración del servidorservidor Satélite" + +#: ../../enterprise/meta/advanced/servers.build_table.php:186 +#: ../../godmode/servers/servers.build_table.php:287 msgid "Modules run by this server will stop working. Do you want to continue?" msgstr "" "Los módulos ejecutados por este servidor podrían dejar de funcionar. ¿Quieres " "continuar?" -#: ../../enterprise/meta/advanced/servers.build_table.php:170 -#: ../../godmode/servers/servers.build_table.php:301 +#: ../../enterprise/meta/advanced/servers.build_table.php:213 +#: ../../godmode/servers/servers.build_table.php:314 msgid "Tactical server information" msgstr "Vista táctica del servidor" -#: ../../enterprise/meta/advanced/servers.build_table.php:180 +#: ../../enterprise/meta/advanced/servers.build_table.php:223 +#: ../../godmode/servers/servers.build_table.php:327 #: ../../include/help/clippy/server_queued_modules.php:35 msgid "Excesive Queued." msgstr "Demasiados módulos en cola" -#: ../../enterprise/meta/advanced/servers.build_table.php:181 +#: ../../enterprise/meta/advanced/servers.build_table.php:224 +#: ../../godmode/servers/servers.build_table.php:328 msgid "" "You have too many items in the processing queue. This can happen if your " "server is overloaded and/or improperly configured. This could be something " @@ -4751,10 +4817,10 @@ msgstr "" "Tiene demasiados elementos en la cola de procesamiento. Esto puede suceder si " "su servidor está sobrecargado y/o configurado incorrectamente. Podría tratarse " "de algo temporal o un cuello de botella. Si está asociado con un retraso en la " -"monitorizaión, con módulos que pasan a desconocido, intente aumentar el número " -"de subprocesos." +"monitorización, con módulos que pasan a desconocido, intente aumentar el " +"número de subprocesos." -#: ../../enterprise/meta/advanced/servers.build_table.php:182 +#: ../../enterprise/meta/advanced/servers.build_table.php:225 #: ../../enterprise/meta/advanced/cron_main.php:408 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:956 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1163 @@ -4762,39 +4828,41 @@ msgstr "" #: ../../enterprise/godmode/wizards/consoletask_js.php:47 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4106 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4416 -#: ../../enterprise/operation/log/log_viewer.php:1201 -#: ../../enterprise/operation/log/log_viewer.php:1216 +#: ../../enterprise/operation/log/log_viewer.php:1199 +#: ../../enterprise/operation/log/log_viewer.php:1214 #: ../../enterprise/operation/services/services.treeview_services.php:416 #: ../../extensions/insert_data.php:285 -#: ../../godmode/agentes/planned_downtime.editor.php:2017 +#: ../../godmode/agentes/planned_downtime.editor.php:2013 #: ../../godmode/alerts/configure_alert_template.php:1512 #: ../../godmode/alerts/configure_alert_template.php:1596 -#: ../../godmode/setup/news.php:437 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5168 +#: ../../godmode/setup/news.php:436 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5177 #: ../../godmode/wizards/HostDevices.class.php:797 -#: ../../mobile/include/ui.class.php:691 ../../mobile/include/ui.class.php:749 -#: ../../include/functions_menu.php:941 +#: ../../godmode/servers/servers.build_table.php:329 +#: ../../mobile/include/ui.class.php:717 ../../mobile/include/ui.class.php:775 +#: ../../include/functions_menu.php:946 ../../include/functions_clippy.php:323 #: ../../include/class/WelcomeWindow.class.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:743 -#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:631 -#: ../../operation/agentes/stat_win.php:591 -#: ../../operation/agentes/interface_traffic_graph_win.php:442 -#: ../../operation/agentes/datos_agente.php:318 -#: ../../operation/agentes/estado_monitores.php:470 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:736 +#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:633 +#: ../../operation/agentes/stat_win.php:607 +#: ../../operation/agentes/interface_traffic_graph_win.php:451 +#: ../../operation/agentes/datos_agente.php:320 +#: ../../operation/agentes/estado_monitores.php:467 #: ../../operation/network/network_report.php:463 #: ../../operation/network/network_usage_map.php:300 -#: ../../operation/netflow/nf_live_view.php:871 +#: ../../operation/netflow/nf_live_view.php:982 +#: ../../operation/search_modules.php:359 #: ../../operation/reporting/reporting_viewer.php:366 #: ../../operation/reporting/reporting_viewer.php:385 #: ../../operation/reporting/graph_viewer.php:472 -#: ../../operation/events/events.php:3229 +#: ../../operation/events/events.php:3288 msgid "Close" msgstr "Cerrar" #: ../../enterprise/meta/advanced/massive_operations.php:55 #: ../../enterprise/meta/monitoring/wizard/wizard.php:71 #: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:64 -#: ../../general/node_deactivated.php:59 +#: ../../general/node_deactivated.php:64 msgid "command center" msgstr "command center" @@ -4809,7 +4877,7 @@ msgstr "" "favor, vaya a %s" #: ../../enterprise/meta/advanced/component_management.php:35 -#: ../../include/functions_menu.php:614 +#: ../../include/functions_menu.php:618 msgid "Tags management" msgstr "Gestión de etiquetas" @@ -4826,7 +4894,7 @@ msgstr "Administración de SO" #: ../../godmode/groups/configure_modu_group.php:43 #: ../../godmode/groups/modu_group_list.php:83 ../../godmode/menu.php:116 #: ../../godmode/reporting/reporting_builder.item_editor.php:86 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:343 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:346 #: ../../operation/tree.php:103 msgid "Module groups" msgstr "Grupos de módulos" @@ -4870,56 +4938,56 @@ msgid "Successfully update" msgstr "Actualizado correctamente" #: ../../enterprise/meta/advanced/metasetup.visual.php:100 -#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:137 +#: ../../godmode/menu.php:364 ../../godmode/setup/setup.php:137 #: ../../godmode/setup/setup.php:285 msgid "Visual styles" msgstr "Estilos visuales" #: ../../enterprise/meta/advanced/metasetup.visual.php:106 #: ../../enterprise/meta/include/functions_meta.php:1364 -#: ../../godmode/setup/setup_visuals.php:1757 -#: ../../include/functions_config.php:973 +#: ../../godmode/setup/setup_visuals.php:1772 +#: ../../include/functions_config.php:985 msgid "Date format string" msgstr "Formato de fecha a mostrar" #: ../../enterprise/meta/advanced/metasetup.visual.php:108 #: ../../enterprise/tools/ipam/ipam_editor.php:147 -#: ../../godmode/setup/setup_visuals.php:1766 +#: ../../godmode/setup/setup_visuals.php:1781 msgid "Example" msgstr "Ejemplo" #: ../../enterprise/meta/advanced/metasetup.visual.php:138 -#: ../../godmode/setup/setup_visuals.php:1801 +#: ../../godmode/setup/setup_visuals.php:1816 msgid "Timestamp, time comparison, or compact mode" msgstr "Marca horaria, comparación horaria o modo compacto" #: ../../enterprise/meta/advanced/metasetup.visual.php:140 -#: ../../godmode/setup/setup_visuals.php:1611 +#: ../../godmode/setup/setup_visuals.php:1626 msgid "Comparation in rollover" msgstr "Fecha en comparación" #: ../../enterprise/meta/advanced/metasetup.visual.php:147 -#: ../../godmode/setup/setup_visuals.php:1618 +#: ../../godmode/setup/setup_visuals.php:1633 msgid "Timestamp in rollover" msgstr "Fecha literal" #: ../../enterprise/meta/advanced/metasetup.visual.php:154 -#: ../../godmode/setup/setup_visuals.php:1625 +#: ../../godmode/setup/setup_visuals.php:1640 msgid "Compact mode" msgstr "Modo compacto" #: ../../enterprise/meta/advanced/metasetup.visual.php:164 -#: ../../include/functions_config.php:985 +#: ../../include/functions_config.php:997 msgid "Graph color #1" msgstr "Color de la gráfica #1" #: ../../enterprise/meta/advanced/metasetup.visual.php:175 -#: ../../include/functions_config.php:989 +#: ../../include/functions_config.php:1001 msgid "Graph color #2" msgstr "Color de la gráfica #2" #: ../../enterprise/meta/advanced/metasetup.visual.php:186 -#: ../../include/functions_config.php:993 +#: ../../include/functions_config.php:1005 msgid "Graph color #3" msgstr "Color de la gráfica #3" @@ -4933,10 +5001,10 @@ msgstr "La precisión debe ser un número entero entre 0 y 5" #: ../../enterprise/meta/advanced/metasetup.visual.php:215 #: ../../enterprise/meta/include/functions_meta.php:1414 -#: ../../godmode/setup/setup_visuals.php:1256 +#: ../../godmode/setup/setup_visuals.php:1260 #: ../../godmode/reporting/visual_console_builder.elements.php:233 #: ../../godmode/reporting/visual_console_builder.wizard.php:288 -#: ../../include/functions_visual_map_editor.php:684 +#: ../../include/functions_visual_map_editor.php:734 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458 msgid "Percentile" msgstr "Percentil" @@ -4947,46 +5015,46 @@ msgstr "Mostrar el percentil 95 en los gráficos" #: ../../enterprise/meta/advanced/metasetup.visual.php:231 #: ../../enterprise/meta/include/functions_meta.php:1499 -#: ../../godmode/setup/setup_visuals.php:1160 -#: ../../include/functions_config.php:1025 +#: ../../godmode/setup/setup_visuals.php:1164 +#: ../../include/functions_config.php:1037 msgid "Value to interface graphics" msgstr "Valor para la interfaz gráfica" #: ../../enterprise/meta/advanced/metasetup.visual.php:247 #: ../../enterprise/meta/include/functions_meta.php:1512 -#: ../../godmode/users/configure_user.php:1380 -#: ../../godmode/users/user_management.php:583 +#: ../../godmode/users/configure_user.php:1429 +#: ../../godmode/users/user_management.php:589 #: ../../godmode/massive/massive_edit_users.php:263 -#: ../../godmode/setup/setup_visuals.php:92 -#: ../../godmode/events/event_edit_filter.php:457 -#: ../../include/functions_config.php:1042 +#: ../../godmode/setup/setup_visuals.php:96 +#: ../../godmode/events/event_edit_filter.php:459 +#: ../../include/functions_config.php:1054 #: ../../operation/users/user_edit.php:420 msgid "Block size for pagination" msgstr "Tamaño de bloque para la paginación" #: ../../enterprise/meta/advanced/metasetup.visual.php:263 #: ../../enterprise/meta/include/functions_meta.php:1428 -#: ../../godmode/setup/setup_visuals.php:1185 +#: ../../godmode/setup/setup_visuals.php:1189 msgid "Number of elements in Custom Graph" msgstr "Número de elementos en gráfica personalizada" #: ../../enterprise/meta/advanced/metasetup.visual.php:278 #: ../../enterprise/meta/include/functions_meta.php:1522 -#: ../../godmode/setup/setup_visuals.php:1199 -#: ../../include/functions_config.php:1046 +#: ../../godmode/setup/setup_visuals.php:1203 +#: ../../include/functions_config.php:1058 msgid "Use round corners" msgstr "Usar bordes redondeados" #: ../../enterprise/meta/advanced/metasetup.visual.php:288 #: ../../enterprise/meta/include/functions_meta.php:1533 -#: ../../godmode/setup/setup_visuals.php:1210 -#: ../../include/functions_config.php:1050 +#: ../../godmode/setup/setup_visuals.php:1214 +#: ../../include/functions_config.php:1062 msgid "Chart fit to content" msgstr "Tabla adaptada al contenido" #: ../../enterprise/meta/advanced/metasetup.visual.php:298 #: ../../enterprise/meta/include/functions_meta.php:1544 -#: ../../include/functions_config.php:1278 +#: ../../include/functions_config.php:1294 msgid "Disable help" msgstr "Deshabilitar ayuda" @@ -5013,10 +5081,10 @@ msgstr "Deshabilitar ayuda" #: ../../enterprise/godmode/modules/local_components.php:555 #: ../../enterprise/godmode/modules/local_components.php:588 #: ../../enterprise/godmode/agentes/collections.data.php:485 -#: ../../enterprise/godmode/policies/policy_queue.php:292 -#: ../../enterprise/godmode/policies/policy_queue.php:304 -#: ../../enterprise/godmode/policies/policy_queue.php:329 -#: ../../enterprise/godmode/policies/policy_queue.php:732 +#: ../../enterprise/godmode/policies/policy_queue.php:294 +#: ../../enterprise/godmode/policies/policy_queue.php:306 +#: ../../enterprise/godmode/policies/policy_queue.php:331 +#: ../../enterprise/godmode/policies/policy_queue.php:734 #: ../../enterprise/godmode/policies/policy_external_alerts.php:383 #: ../../enterprise/godmode/policies/policy_agents.php:453 #: ../../enterprise/godmode/policies/policy_agents.php:588 @@ -5053,15 +5121,15 @@ msgstr "Deshabilitar ayuda" #: ../../enterprise/operation/agentes/tag_view.php:316 #: ../../enterprise/operation/agentes/tag_view.php:328 #: ../../enterprise/operation/agentes/tag_view.php:430 -#: ../../enterprise/operation/log/log_viewer.php:755 -#: ../../enterprise/operation/log/log_viewer.php:776 -#: ../../enterprise/operation/log/log_viewer.php:830 +#: ../../enterprise/operation/log/log_viewer.php:753 +#: ../../enterprise/operation/log/log_viewer.php:774 +#: ../../enterprise/operation/log/log_viewer.php:828 #: ../../enterprise/operation/snmpconsole/snmp_view.php:33 #: ../../extensions/resource_registration.php:1137 -#: ../../extensions/agents_modules.php:454 +#: ../../extensions/agents_modules.php:462 #: ../../extensions/files_repo/files_repo_form.php:44 #: ../../godmode/modules/manage_network_templates_form.php:303 -#: ../../godmode/modules/manage_network_components.php:665 +#: ../../godmode/modules/manage_network_components.php:668 #: ../../godmode/massive/massive_copy_modules.php:127 #: ../../godmode/massive/massive_copy_modules.php:287 #: ../../godmode/massive/massive_delete_modules.php:327 @@ -5076,11 +5144,11 @@ msgstr "Deshabilitar ayuda" #: ../../godmode/alerts/alert_list.list.php:152 #: ../../godmode/alerts/alert_list.list.php:169 #: ../../godmode/alerts/alert_list.list.php:201 -#: ../../godmode/alerts/alert_templates.php:313 +#: ../../godmode/alerts/alert_templates.php:317 #: ../../godmode/alerts/alert_list.php:553 #: ../../godmode/alerts/alert_list.php:574 #: ../../godmode/alerts/alert_list.php:588 ../../godmode/setup/gis_step_2.php:238 -#: ../../godmode/setup/setup_visuals.php:1085 +#: ../../godmode/setup/setup_visuals.php:1089 #: ../../godmode/reporting/reporting_builder.list_items.php:217 #: ../../godmode/reporting/reporting_builder.list_items.php:234 #: ../../godmode/reporting/reporting_builder.list_items.php:251 @@ -5088,28 +5156,28 @@ msgstr "Deshabilitar ayuda" #: ../../godmode/reporting/reporting_builder.item_editor.php:1710 #: ../../godmode/reporting/reporting_builder.item_editor.php:1728 #: ../../godmode/reporting/reporting_builder.item_editor.php:2153 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3007 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3034 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3685 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3766 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3788 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3846 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3016 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3043 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3694 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3775 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3797 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3855 #: ../../godmode/reporting/visual_console_builder.wizard.php:359 -#: ../../godmode/events/event_edit_filter.php:358 -#: ../../godmode/events/event_edit_filter.php:378 -#: ../../godmode/events/event_edit_filter.php:762 +#: ../../godmode/events/event_edit_filter.php:360 +#: ../../godmode/events/event_edit_filter.php:380 +#: ../../godmode/events/event_edit_filter.php:764 #: ../../mobile/operation/agents.php:56 ../../mobile/operation/modules.php:68 #: ../../mobile/operation/modules.php:289 ../../mobile/operation/modules.php:304 #: ../../mobile/operation/alerts.php:65 ../../mobile/operation/alerts.php:72 -#: ../../mobile/operation/events.php:974 ../../mobile/operation/events.php:984 -#: ../../mobile/operation/events.php:1460 ../../mobile/operation/events.php:1489 +#: ../../mobile/operation/events.php:1018 ../../mobile/operation/events.php:1028 +#: ../../mobile/operation/events.php:1585 ../../mobile/operation/events.php:1614 #: ../../include/functions.php:1127 ../../include/functions.php:1387 -#: ../../include/ajax/events.php:521 ../../include/functions_groupview.php:96 +#: ../../include/ajax/events.php:522 ../../include/functions_groupview.php:96 #: ../../include/functions_modules.php:3604 #: ../../include/functions_modules.php:3606 ../../include/functions_users.php:428 #: ../../include/functions_users.php:686 #: ../../include/functions_notifications.php:105 -#: ../../include/functions_html.php:947 ../../include/functions_html.php:1606 +#: ../../include/functions_html.php:952 ../../include/functions_html.php:1614 #: ../../include/functions_massive_operations.php:158 #: ../../include/functions_massive_operations.php:172 #: ../../include/class/EventSound.class.php:347 @@ -5119,23 +5187,23 @@ msgstr "Deshabilitar ayuda" #: ../../include/class/SnmpConsole.class.php:308 #: ../../include/class/AuditLog.class.php:232 #: ../../include/class/AuditLog.class.php:242 -#: ../../include/class/TipsWindow.class.php:719 -#: ../../include/class/TipsWindow.class.php:886 -#: ../../include/functions_reporting.php:3343 -#: ../../include/functions_reporting.php:3440 +#: ../../include/class/TipsWindow.class.php:739 +#: ../../include/class/TipsWindow.class.php:906 +#: ../../include/functions_reporting.php:3352 +#: ../../include/functions_reporting.php:3449 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:422 #: ../../include/lib/Dashboard/Widgets/events_list.php:412 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:397 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:431 -#: ../../include/functions_groups.php:646 ../../include/functions_groups.php:1959 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:400 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:435 +#: ../../include/functions_groups.php:671 ../../include/functions_groups.php:1984 #: ../../operation/heatmap.php:122 ../../operation/tree.php:205 -#: ../../operation/tree.php:296 ../../operation/agentes/estado_agente.php:330 -#: ../../operation/agentes/status_monitor.php:599 -#: ../../operation/agentes/status_monitor.php:680 -#: ../../operation/agentes/status_monitor.php:977 -#: ../../operation/agentes/estado_monitores.php:515 -#: ../../operation/agentes/estado_monitores.php:536 -#: ../../operation/agentes/agent_inventory.php:122 +#: ../../operation/tree.php:297 ../../operation/agentes/estado_agente.php:330 +#: ../../operation/agentes/status_monitor.php:598 +#: ../../operation/agentes/status_monitor.php:679 +#: ../../operation/agentes/status_monitor.php:979 +#: ../../operation/agentes/estado_monitores.php:512 +#: ../../operation/agentes/estado_monitores.php:533 +#: ../../operation/agentes/agent_inventory.php:124 #: ../../operation/agentes/alerts_status.functions.php:98 #: ../../operation/agentes/alerts_status.functions.php:134 #: ../../operation/agentes/alerts_status.functions.php:165 @@ -5146,24 +5214,24 @@ msgstr "Deshabilitar ayuda" #: ../../operation/incidents/list_integriaims_incidents.php:407 #: ../../operation/inventory/inventory.php:78 #: ../../operation/inventory/inventory.php:79 -#: ../../operation/inventory/inventory.php:319 -#: ../../operation/inventory/inventory.php:320 -#: ../../operation/inventory/inventory.php:496 -#: ../../operation/inventory/inventory.php:529 -#: ../../operation/inventory/inventory.php:564 -#: ../../operation/events/events.php:840 ../../operation/events/events.php:1745 -#: ../../operation/events/events.php:1839 ../../operation/events/events.php:2039 +#: ../../operation/inventory/inventory.php:321 +#: ../../operation/inventory/inventory.php:322 +#: ../../operation/inventory/inventory.php:498 +#: ../../operation/inventory/inventory.php:531 +#: ../../operation/inventory/inventory.php:566 +#: ../../operation/events/events.php:845 ../../operation/events/events.php:1799 +#: ../../operation/events/events.php:1893 ../../operation/events/events.php:2093 #: ../../general/subselect_data_module.php:62 msgid "All" msgstr "Todo" #: ../../enterprise/meta/advanced/metasetup.visual.php:310 -#: ../../godmode/setup/setup_visuals.php:1086 +#: ../../godmode/setup/setup_visuals.php:1090 msgid "On Boolean graphs" msgstr "En gráficos booleanos" #: ../../enterprise/meta/advanced/metasetup.visual.php:313 -#: ../../godmode/setup/setup_visuals.php:1268 +#: ../../godmode/setup/setup_visuals.php:1272 msgid "Graph TIP view" msgstr "Visor de gráfico TIP" @@ -5172,17 +5240,17 @@ msgid "This option may cause performance issues" msgstr "Esta opción puede generar problemas de rendimiento" #: ../../enterprise/meta/advanced/metasetup.visual.php:328 -#: ../../godmode/setup/setup_visuals.php:1089 +#: ../../godmode/setup/setup_visuals.php:1093 msgid "Show only average by default" msgstr "Mostrar solo la media por defecto" #: ../../enterprise/meta/advanced/metasetup.visual.php:329 -#: ../../godmode/setup/setup_visuals.php:1090 +#: ../../godmode/setup/setup_visuals.php:1094 msgid "Show MAX/AVG/MIN by default" msgstr "Mostrar MÁX/MEDIA/MÍN por defecto" #: ../../enterprise/meta/advanced/metasetup.visual.php:332 -#: ../../godmode/setup/setup_visuals.php:1284 +#: ../../godmode/setup/setup_visuals.php:1288 msgid "Graph mode" msgstr "Modo de gráfico" @@ -5191,16 +5259,16 @@ msgid "Zoom graphs:" msgstr "Gráficas ampliadas:" #: ../../enterprise/meta/advanced/metasetup.visual.php:369 -#: ../../godmode/setup/setup_visuals.php:1220 +#: ../../godmode/setup/setup_visuals.php:1224 msgid "Type of module charts" msgstr "Tipo de gráficos de módulos" #: ../../enterprise/meta/advanced/metasetup.visual.php:371 #: ../../enterprise/godmode/reporting/graph_template_editor.php:260 -#: ../../godmode/setup/setup_visuals.php:1227 +#: ../../godmode/setup/setup_visuals.php:1231 #: ../../godmode/reporting/create_container.php:430 #: ../../godmode/reporting/graph_builder.main.php:208 -#: ../../include/functions_visual_map_editor.php:558 +#: ../../include/functions_visual_map_editor.php:552 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:642 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:352 #: ../../operation/agentes/graphs.php:251 ../../operation/agentes/graphs.php:258 @@ -5211,16 +5279,16 @@ msgstr "Área" #: ../../enterprise/meta/advanced/metasetup.visual.php:378 #: ../../enterprise/godmode/reporting/graph_template_editor.php:262 -#: ../../godmode/setup/setup_visuals.php:1239 +#: ../../godmode/setup/setup_visuals.php:1243 #: ../../godmode/reporting/create_container.php:431 #: ../../godmode/reporting/visual_console_builder.elements.php:365 #: ../../godmode/reporting/graph_builder.main.php:210 #: ../../include/functions_visual_map_editor.php:72 -#: ../../include/functions_visual_map_editor.php:557 -#: ../../include/functions_visual_map_editor.php:1397 +#: ../../include/functions_visual_map_editor.php:551 +#: ../../include/functions_visual_map_editor.php:1455 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:641 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:354 -#: ../../operation/visual_console/view.php:381 +#: ../../operation/visual_console/view.php:383 #: ../../operation/agentes/graphs.php:253 ../../operation/agentes/graphs.php:259 #: ../../operation/agentes/graphs.php:451 ../../operation/agentes/graphs.php:465 #: ../../operation/reporting/graph_viewer.php:356 @@ -5239,33 +5307,33 @@ msgstr "Número de elementos recuperados para cada instancia en algunas vistas" #: ../../enterprise/meta/advanced/metasetup.visual.php:401 #: ../../enterprise/meta/advanced/metasetup.visual.php:919 #: ../../enterprise/meta/advanced/metasetup.visual.php:920 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:467 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:480 #: ../../enterprise/include/ajax/log_viewer.ajax.php:282 #: ../../godmode/snmpconsole/snmp_alert.php:1608 -#: ../../godmode/setup/setup_visuals.php:1319 -#: ../../godmode/setup/setup_visuals.php:1320 -#: ../../godmode/setup/setup_visuals.php:1898 -#: ../../include/functions_visual_map_editor.php:1221 -#: ../../include/functions_visual_map_editor.php:1222 +#: ../../godmode/setup/setup_visuals.php:1323 +#: ../../godmode/setup/setup_visuals.php:1324 +#: ../../godmode/setup/setup_visuals.php:1913 +#: ../../include/functions_visual_map_editor.php:1279 +#: ../../include/functions_visual_map_editor.php:1280 #: ../../include/functions.php:509 ../../include/functions.php:640 -#: ../../include/ajax/events.php:2352 ../../include/ajax/events.php:2353 -#: ../../include/ajax/events.php:2354 ../../include/ajax/events.php:2355 -#: ../../include/ajax/events.php:2359 ../../include/ajax/events.php:2360 -#: ../../include/ajax/events.php:2361 ../../include/ajax/events.php:2362 -#: ../../include/ajax/events.php:2363 ../../include/ajax/events.php:2364 -#: ../../include/functions_html.php:2135 -#: ../../operation/events/sound_events.php:199 -#: ../../operation/events/sound_events.php:200 -#: ../../operation/events/sound_events.php:201 -#: ../../operation/events/sound_events.php:202 -#: ../../operation/events/sound_events.php:206 -#: ../../operation/events/sound_events.php:207 -#: ../../operation/events/sound_events.php:208 -#: ../../operation/events/sound_events.php:209 -#: ../../operation/events/sound_events.php:210 -#: ../../operation/events/sound_events.php:211 +#: ../../include/ajax/events.php:2353 ../../include/ajax/events.php:2354 +#: ../../include/ajax/events.php:2355 ../../include/ajax/events.php:2356 +#: ../../include/ajax/events.php:2360 ../../include/ajax/events.php:2361 +#: ../../include/ajax/events.php:2362 ../../include/ajax/events.php:2363 +#: ../../include/ajax/events.php:2364 ../../include/ajax/events.php:2365 +#: ../../include/functions_html.php:2143 +#: ../../operation/events/sound_events.php:229 +#: ../../operation/events/sound_events.php:230 +#: ../../operation/events/sound_events.php:231 +#: ../../operation/events/sound_events.php:232 +#: ../../operation/events/sound_events.php:236 +#: ../../operation/events/sound_events.php:237 +#: ../../operation/events/sound_events.php:238 +#: ../../operation/events/sound_events.php:239 +#: ../../operation/events/sound_events.php:240 +#: ../../operation/events/sound_events.php:241 msgid "seconds" msgstr "segundos" @@ -5275,45 +5343,45 @@ msgstr "segundos" #: ../../enterprise/meta/advanced/metasetup.visual.php:923 #: ../../enterprise/meta/advanced/metasetup.visual.php:924 #: ../../enterprise/include/ajax/log_viewer.ajax.php:284 -#: ../../godmode/setup/setup_visuals.php:1321 -#: ../../godmode/setup/setup_visuals.php:1322 -#: ../../godmode/setup/setup_visuals.php:1323 -#: ../../godmode/setup/setup_visuals.php:1324 -#: ../../godmode/setup/setup_visuals.php:1899 -#: ../../include/functions_visual_map_editor.php:1223 -#: ../../include/functions_visual_map_editor.php:1224 -#: ../../include/functions_visual_map_editor.php:1225 -#: ../../include/functions_visual_map_editor.php:1226 +#: ../../godmode/setup/setup_visuals.php:1325 +#: ../../godmode/setup/setup_visuals.php:1326 +#: ../../godmode/setup/setup_visuals.php:1327 +#: ../../godmode/setup/setup_visuals.php:1328 +#: ../../godmode/setup/setup_visuals.php:1914 +#: ../../include/functions_visual_map_editor.php:1281 +#: ../../include/functions_visual_map_editor.php:1282 +#: ../../include/functions_visual_map_editor.php:1283 +#: ../../include/functions_visual_map_editor.php:1284 #: ../../include/functions.php:513 ../../include/functions.php:644 -#: ../../include/functions_html.php:2136 +#: ../../include/functions_html.php:2144 msgid "minutes" msgstr "minutos" #: ../../enterprise/meta/advanced/metasetup.visual.php:403 #: ../../enterprise/include/ajax/log_viewer.ajax.php:286 -#: ../../godmode/setup/setup_visuals.php:1900 ../../include/functions.php:514 +#: ../../godmode/setup/setup_visuals.php:1915 ../../include/functions.php:514 #: ../../include/functions.php:645 ../../include/functions_snmp.php:402 -#: ../../include/functions_html.php:2137 +#: ../../include/functions_html.php:2145 msgid "hours" msgstr "horas" #: ../../enterprise/meta/advanced/metasetup.visual.php:404 #: ../../enterprise/include/ajax/log_viewer.ajax.php:288 #: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92 -#: ../../godmode/setup/setup_visuals.php:1901 ../../include/functions.php:510 -#: ../../include/functions.php:641 ../../include/functions_html.php:2138 +#: ../../godmode/setup/setup_visuals.php:1916 ../../include/functions.php:510 +#: ../../include/functions.php:641 ../../include/functions_html.php:2146 msgid "days" msgstr "días" #: ../../enterprise/meta/advanced/metasetup.visual.php:405 -#: ../../godmode/setup/setup_visuals.php:1902 ../../include/functions.php:511 -#: ../../include/functions.php:642 ../../include/functions_html.php:2140 +#: ../../godmode/setup/setup_visuals.php:1917 ../../include/functions.php:511 +#: ../../include/functions.php:642 ../../include/functions_html.php:2148 msgid "months" msgstr "meses" #: ../../enterprise/meta/advanced/metasetup.visual.php:406 -#: ../../godmode/setup/setup_visuals.php:1903 ../../include/functions.php:512 -#: ../../include/functions.php:643 ../../include/functions_html.php:2141 +#: ../../godmode/setup/setup_visuals.php:1918 ../../include/functions.php:512 +#: ../../include/functions.php:643 ../../include/functions_html.php:2149 msgid "years" msgstr "años" @@ -5372,66 +5440,66 @@ msgstr "Añadir nuevo valor personalizado para intervalos" #: ../../godmode/agentes/planned_downtime.editor.php:1493 #: ../../godmode/snmpconsole/snmp_alert.php:2135 #: ../../godmode/gis_maps/configure_gis_map.php:642 -#: ../../godmode/alerts/alert_list.list.php:893 ../../godmode/setup/news.php:402 -#: ../../godmode/setup/links.php:226 ../../godmode/setup/setup_visuals.php:1833 -#: ../../godmode/setup/setup_visuals.php:1923 -#: ../../godmode/setup/setup_visuals.php:2005 -#: ../../godmode/reporting/graph_builder.graph_editor.php:397 +#: ../../godmode/alerts/alert_list.list.php:893 ../../godmode/setup/news.php:401 +#: ../../godmode/setup/links.php:226 ../../godmode/setup/setup_visuals.php:1848 +#: ../../godmode/setup/setup_visuals.php:1938 +#: ../../godmode/setup/setup_visuals.php:2020 +#: ../../godmode/reporting/graph_builder.graph_editor.php:324 #: ../../godmode/reporting/visual_console_builder.wizard.php:575 -#: ../../godmode/events/event_edit_filter.php:647 -#: ../../godmode/events/event_edit_filter.php:712 +#: ../../godmode/events/event_edit_filter.php:649 +#: ../../godmode/events/event_edit_filter.php:714 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:483 #: ../../include/functions_notifications.php:970 #: ../../include/class/SatelliteAgent.class.php:1147 -#: ../../include/class/ManageNetScanScripts.class.php:475 -#: ../../include/functions_snmp_browser.php:1713 +#: ../../include/class/ManageNetScanScripts.class.php:473 +#: ../../include/functions_snmp_browser.php:1722 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:287 -#: ../../operation/events/events.php:1267 ../../operation/events/events.php:1341 +#: ../../operation/events/events.php:1294 ../../operation/events/events.php:1386 msgid "Add" msgstr "Añadir" #: ../../enterprise/meta/advanced/metasetup.visual.php:443 #: ../../enterprise/meta/include/functions_meta.php:1853 -#: ../../include/functions_config.php:1449 +#: ../../include/functions_config.php:1465 msgid "Delete interval" msgstr "Borrar intervalo" #: ../../enterprise/meta/advanced/metasetup.visual.php:475 #: ../../enterprise/meta/include/functions_meta.php:1644 -#: ../../godmode/setup/setup_visuals.php:1736 +#: ../../godmode/setup/setup_visuals.php:1751 msgid "Show only the group name" msgstr "Mostrar solo el nombre del grupo" #: ../../enterprise/meta/advanced/metasetup.visual.php:475 -#: ../../include/functions_config.php:1306 +#: ../../include/functions_config.php:1322 msgid "Show the group name instead the group icon." msgstr "Mostrar el nombre del grupo en lugar de icono del grupo" #: ../../enterprise/meta/advanced/metasetup.visual.php:485 #: ../../enterprise/meta/include/functions_meta.php:1945 -#: ../../godmode/setup/setup_visuals.php:129 -#: ../../include/functions_config.php:1330 +#: ../../godmode/setup/setup_visuals.php:133 +#: ../../include/functions_config.php:1346 msgid "Display data of proc modules in other format" msgstr "Mostrar los datos de los módulos proc en otro formato" #: ../../enterprise/meta/advanced/metasetup.visual.php:495 #: ../../enterprise/meta/include/functions_meta.php:1955 -#: ../../godmode/setup/setup_visuals.php:140 -#: ../../include/functions_config.php:1334 +#: ../../godmode/setup/setup_visuals.php:144 +#: ../../include/functions_config.php:1350 msgid "Display text proc modules have state is ok" msgstr "Texto mostrado cuando el estado del módulo proc es OK" #: ../../enterprise/meta/advanced/metasetup.visual.php:507 #: ../../enterprise/meta/include/functions_meta.php:1965 -#: ../../godmode/setup/setup_visuals.php:144 -#: ../../include/functions_config.php:1338 +#: ../../godmode/setup/setup_visuals.php:148 +#: ../../include/functions_config.php:1354 msgid "Display text when proc modules have state critical" msgstr "Texto mostrado cuando el estado del módulo proc es Crítico" #: ../../enterprise/meta/advanced/metasetup.visual.php:528 #: ../../enterprise/meta/include/functions_meta.php:1684 -#: ../../godmode/setup/setup_visuals.php:393 -#: ../../include/functions_config.php:1070 +#: ../../godmode/setup/setup_visuals.php:397 +#: ../../include/functions_config.php:1082 msgid "Custom favicon" msgstr "Personalizar favicon" @@ -5444,7 +5512,7 @@ msgstr "" "estar en formato .ico y tener un tamaño de 16x16." #: ../../enterprise/meta/advanced/metasetup.visual.php:563 -#: ../../godmode/setup/setup_visuals.php:424 +#: ../../godmode/setup/setup_visuals.php:428 msgid "Custom background logo" msgstr "Fondo del logo personalizado" @@ -5462,108 +5530,107 @@ msgstr "Puedes poner tus propias imágenes en el directorio images/backgrounds/" #: ../../enterprise/operation/agentes/policy_view.php:70 #: ../../godmode/agentes/configurar_agente.php:386 #: ../../godmode/agentes/modificar_agente.php:83 -#: ../../godmode/agentes/modificar_agente.php:837 ../../godmode/menu.php:596 -#: ../../godmode/setup/setup_visuals.php:375 -#: ../../godmode/setup/setup_visuals.php:442 -#: ../../godmode/setup/setup_visuals.php:465 -#: ../../godmode/setup/setup_visuals.php:490 -#: ../../godmode/setup/setup_visuals.php:516 -#: ../../godmode/setup/setup_visuals.php:541 -#: ../../godmode/setup/setup_visuals.php:582 -#: ../../godmode/setup/setup_visuals.php:620 -#: ../../godmode/setup/setup_visuals.php:660 -#: ../../godmode/setup/setup_visuals.php:698 -#: ../../godmode/setup/setup_visuals.php:738 -#: ../../godmode/setup/setup_visuals.php:924 -#: ../../godmode/reporting/visual_console_builder.php:841 +#: ../../godmode/agentes/modificar_agente.php:849 ../../godmode/menu.php:594 +#: ../../godmode/setup/setup_visuals.php:379 +#: ../../godmode/setup/setup_visuals.php:446 +#: ../../godmode/setup/setup_visuals.php:469 +#: ../../godmode/setup/setup_visuals.php:494 +#: ../../godmode/setup/setup_visuals.php:520 +#: ../../godmode/setup/setup_visuals.php:545 +#: ../../godmode/setup/setup_visuals.php:586 +#: ../../godmode/setup/setup_visuals.php:624 +#: ../../godmode/setup/setup_visuals.php:664 +#: ../../godmode/setup/setup_visuals.php:702 +#: ../../godmode/setup/setup_visuals.php:742 +#: ../../godmode/setup/setup_visuals.php:928 +#: ../../godmode/reporting/visual_console_builder.php:849 #: ../../godmode/module_library/module_library_view.php:59 -#: ../../include/functions_ui.php:1299 ../../include/functions_ui.php:1312 #: ../../include/lib/ClusterViewer/ClusterManager.php:601 -#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:212 +#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:214 #: ../../operation/visual_console/legacy_view.php:189 #: ../../operation/agentes/status_monitor.php:77 -#: ../../operation/agentes/status_monitor.php:306 +#: ../../operation/agentes/status_monitor.php:305 msgid "View" msgstr "Vista" #: ../../enterprise/meta/advanced/metasetup.visual.php:602 -#: ../../godmode/setup/setup_visuals.php:460 +#: ../../godmode/setup/setup_visuals.php:464 msgid "Custom logo (menu)" msgstr "Logo personalizado (menu)" #: ../../enterprise/meta/advanced/metasetup.visual.php:633 -#: ../../godmode/setup/setup_visuals.php:485 +#: ../../godmode/setup/setup_visuals.php:489 msgid "Custom logo collapsed (menu)" msgstr "Icono menú reducido" #: ../../enterprise/meta/advanced/metasetup.visual.php:663 -#: ../../godmode/setup/setup_visuals.php:511 +#: ../../godmode/setup/setup_visuals.php:515 msgid "Custom logo (header white background)" msgstr "Logo personalizado (fondo blanco de cabecera)" #: ../../enterprise/meta/advanced/metasetup.visual.php:694 -#: ../../godmode/setup/setup_visuals.php:536 +#: ../../godmode/setup/setup_visuals.php:540 msgid "Custom logo (login)" msgstr "Logo personalizado (inicio de sesión)" #: ../../enterprise/meta/advanced/metasetup.visual.php:724 -#: ../../godmode/setup/setup_visuals.php:564 +#: ../../godmode/setup/setup_visuals.php:568 msgid "Custom Splash (login)" msgstr "Splash personalizado (inicio de sesión)" #: ../../enterprise/meta/advanced/metasetup.visual.php:754 #: ../../enterprise/meta/advanced/metasetup.visual.php:847 #: ../../enterprise/meta/include/functions_meta.php:1714 -#: ../../godmode/setup/setup_visuals.php:798 -#: ../../include/functions_config.php:1146 +#: ../../godmode/setup/setup_visuals.php:802 +#: ../../include/functions_config.php:1158 msgid "Product name" msgstr "Nombre del producto" #: ../../enterprise/meta/advanced/metasetup.visual.php:767 #: ../../enterprise/meta/advanced/metasetup.visual.php:859 #: ../../enterprise/meta/include/functions_meta.php:1724 -#: ../../godmode/setup/setup_visuals.php:803 -#: ../../include/functions_config.php:1150 +#: ../../godmode/setup/setup_visuals.php:807 +#: ../../include/functions_config.php:1162 msgid "Copyright notice" msgstr "Aviso de copyright" #: ../../enterprise/meta/advanced/metasetup.visual.php:780 #: ../../enterprise/meta/include/functions_meta.php:1614 -#: ../../godmode/setup/setup_visuals.php:809 -#: ../../include/functions_config.php:1154 -#: ../../include/functions_config.php:1158 +#: ../../godmode/setup/setup_visuals.php:813 +#: ../../include/functions_config.php:1166 +#: ../../include/functions_config.php:1170 msgid "Background opacity % (login)" msgstr "% de opacidad de fondo (inicio de sesión)" #: ../../enterprise/meta/advanced/metasetup.visual.php:786 -#: ../../godmode/setup/setup_visuals.php:762 +#: ../../godmode/setup/setup_visuals.php:766 msgid "Title (header)" msgstr "Título (encabezado)" #: ../../enterprise/meta/advanced/metasetup.visual.php:792 -#: ../../godmode/setup/setup_visuals.php:768 +#: ../../godmode/setup/setup_visuals.php:772 msgid "Subtitle (header)" msgstr "Subtítulo (encabezado)" #: ../../enterprise/meta/advanced/metasetup.visual.php:798 -#: ../../godmode/setup/setup_visuals.php:776 +#: ../../godmode/setup/setup_visuals.php:780 msgid "Title 1 (login)" msgstr "Título 1 (inicio de sesión)" #: ../../enterprise/meta/advanced/metasetup.visual.php:811 -#: ../../godmode/setup/setup_visuals.php:781 +#: ../../godmode/setup/setup_visuals.php:785 msgid "Title 2 (login)" msgstr "Título 2 (inicio de sesión)" #: ../../enterprise/meta/advanced/metasetup.visual.php:823 #: ../../enterprise/meta/include/functions_meta.php:1774 -#: ../../godmode/setup/setup_visuals.php:787 +#: ../../godmode/setup/setup_visuals.php:791 msgid "Docs URL (login)" msgstr "URL de documentos (inicio de sesión)" #: ../../enterprise/meta/advanced/metasetup.visual.php:835 #: ../../enterprise/meta/include/functions_meta.php:1784 -#: ../../godmode/setup/setup_visuals.php:792 +#: ../../godmode/setup/setup_visuals.php:796 msgid "Support URL (login)" msgstr "URL soporte (inicio de sesión)" @@ -5573,17 +5640,17 @@ msgstr "Familia tipográfica de las gráficas" #: ../../enterprise/meta/advanced/metasetup.visual.php:884 #: ../../enterprise/meta/include/functions_meta.php:1594 -#: ../../godmode/setup/setup_visuals.php:864 +#: ../../godmode/setup/setup_visuals.php:868 msgid "Visual effects and animation" msgstr "Efectos visuales y animación" #: ../../enterprise/meta/advanced/metasetup.visual.php:894 -#: ../../godmode/setup/setup_visuals.php:875 +#: ../../godmode/setup/setup_visuals.php:879 msgid "Random background (login)" msgstr "Fondo aleatorio (inicio de sesión)" #: ../../enterprise/meta/advanced/metasetup.visual.php:906 -#: ../../godmode/setup/setup_visuals.php:1340 +#: ../../godmode/setup/setup_visuals.php:1344 msgid "Legacy Visual Console View" msgstr "Vista de la consola visual heredada" @@ -5592,26 +5659,26 @@ msgid "To use the old view when using the Visual Console visor" msgstr "Para usar la vista antigua al utilizar el visor de la Consola visual" #: ../../enterprise/meta/advanced/metasetup.visual.php:925 -#: ../../godmode/setup/setup_visuals.php:1325 -#: ../../include/functions_visual_map_editor.php:1227 +#: ../../godmode/setup/setup_visuals.php:1329 +#: ../../include/functions_visual_map_editor.php:1285 msgid "hour" msgstr "hora" #: ../../enterprise/meta/advanced/metasetup.visual.php:928 -#: ../../godmode/setup/setup_visuals.php:1350 +#: ../../godmode/setup/setup_visuals.php:1354 msgid "Default cache expiration" msgstr "Caducidad del caché por defecto" #: ../../enterprise/meta/advanced/metasetup.visual.php:933 -#: ../../godmode/setup/setup_visuals.php:1355 -#: ../../include/functions_visual_map_editor.php:1253 +#: ../../godmode/setup/setup_visuals.php:1359 +#: ../../include/functions_visual_map_editor.php:1311 msgid "No cache" msgstr "No hay chaché" #: ../../enterprise/meta/advanced/metasetup.visual.php:955 #: ../../enterprise/meta/include/functions_meta.php:1992 -#: ../../godmode/setup/setup_visuals.php:1369 -#: ../../include/functions_config.php:1202 +#: ../../godmode/setup/setup_visuals.php:1373 +#: ../../include/functions_config.php:1214 msgid "Default interval for refresh on Visual Console" msgstr "Intervalo de actualización por defecto en la consola visual" @@ -5620,34 +5687,36 @@ msgid "This interval will affect to Visual Console pages" msgstr "Este intervalo afectará todas las páginas de la consola visual." #: ../../enterprise/meta/advanced/metasetup.visual.php:973 -#: ../../godmode/setup/setup_visuals.php:1710 +#: ../../godmode/setup/setup_visuals.php:1725 msgid "Use 1024 when module unit are bytes" msgstr "Utilizar 1024 cuando la unidad del módulo sea bytes" #: ../../enterprise/meta/advanced/metasetup.visual.php:974 -#: ../../godmode/setup/setup_visuals.php:1711 +#: ../../godmode/setup/setup_visuals.php:1726 msgid "Use always 1000" msgstr "Utilizar siempre 1000" #: ../../enterprise/meta/advanced/metasetup.visual.php:975 -#: ../../godmode/setup/setup_visuals.php:1712 +#: ../../godmode/setup/setup_visuals.php:1727 msgid "Use always 1024" msgstr "Utilizar siempre 1024" #: ../../enterprise/meta/advanced/metasetup.visual.php:978 -#: ../../godmode/setup/setup_visuals.php:2072 +#: ../../godmode/setup/setup_visuals.php:2087 msgid "Data multiplier to use in graphs/data" msgstr "Multiplicador de datos para usar en gráficas/datos" #: ../../enterprise/meta/advanced/metasetup.visual.php:993 #: ../../enterprise/meta/include/functions_meta.php:1997 -#: ../../godmode/setup/setup_visuals.php:1416 -#: ../../include/functions_config.php:1218 +#: ../../godmode/setup/setup_visuals.php:1420 +#: ../../include/functions_config.php:1230 msgid "Mobile view not allow visual console orientation" msgstr "No permitir orientación de la consola visual en la vista móvil" #: ../../enterprise/meta/advanced/metasetup.visual.php:1003 #: ../../enterprise/meta/include/functions_meta.php:2002 +#: ../../godmode/setup/setup_visuals.php:1430 +#: ../../include/functions_config.php:1234 msgid "Display item frame on alert triggered" msgstr "Mostrar fotograma de elemento al activarse la alerta" @@ -5656,7 +5725,7 @@ msgid "Reports configuration" msgstr "Configuración de informes" #: ../../enterprise/meta/advanced/metasetup.visual.php:1028 -#: ../../godmode/setup/setup_visuals.php:1482 +#: ../../godmode/setup/setup_visuals.php:1497 msgid "Show report info with description" msgstr "Mostrar la información del informe con la descripción" @@ -5669,7 +5738,7 @@ msgstr "" "informes por defecto." #: ../../enterprise/meta/advanced/metasetup.visual.php:1042 -#: ../../godmode/setup/setup_visuals.php:1492 +#: ../../godmode/setup/setup_visuals.php:1507 msgid "Custom report front page" msgstr "Portada de informe personalizado" @@ -5683,21 +5752,21 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1055 #: ../../enterprise/meta/include/functions_meta.php:1459 -#: ../../godmode/setup/setup_visuals.php:1503 -#: ../../include/functions_config.php:1480 +#: ../../godmode/setup/setup_visuals.php:1518 +#: ../../include/functions_config.php:1496 msgid "PDF font size (px)" msgstr "Tamaño de fuente de PDF (px)" #: ../../enterprise/meta/advanced/metasetup.visual.php:1060 #: ../../enterprise/meta/include/functions_meta.php:1449 -#: ../../godmode/setup/setup_visuals.php:1507 -#: ../../include/functions_config.php:1476 +#: ../../godmode/setup/setup_visuals.php:1522 +#: ../../include/functions_config.php:1492 msgid "HTML font size for SLA (em)" msgstr "Tamaño de fuente en SLA (em)" #: ../../enterprise/meta/advanced/metasetup.visual.php:1065 #: ../../enterprise/meta/include/functions_meta.php:1574 -#: ../../godmode/setup/setup_visuals.php:1513 +#: ../../godmode/setup/setup_visuals.php:1528 msgid "Graph image height for HTML reports" msgstr "Altura de la imagen de la gráfica en informes HTML" @@ -5711,21 +5780,21 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1127 #: ../../enterprise/meta/include/functions_meta.php:1479 -#: ../../godmode/setup/setup_visuals.php:2061 -#: ../../include/functions_config.php:1508 +#: ../../godmode/setup/setup_visuals.php:2076 +#: ../../include/functions_config.php:1524 msgid "CSV divider" msgstr "Separador CSV" #: ../../enterprise/meta/advanced/metasetup.visual.php:1136 #: ../../enterprise/meta/include/functions_meta.php:1489 -#: ../../godmode/setup/setup_visuals.php:2066 -#: ../../include/functions_config.php:1512 +#: ../../godmode/setup/setup_visuals.php:2081 +#: ../../include/functions_config.php:1528 msgid "CSV decimal separator" msgstr "Separador decimal CSV" #: ../../enterprise/meta/advanced/metasetup.visual.php:1146 #: ../../enterprise/meta/include/functions_meta.php:1469 -#: ../../godmode/setup/setup_visuals.php:1517 +#: ../../godmode/setup/setup_visuals.php:1532 msgid "Interval description" msgstr "Descripción del intervalo" @@ -5742,9 +5811,9 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1905 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:113 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:125 -#: ../../godmode/setup/setup_visuals.php:1534 -#: ../../include/functions_config.php:1074 -#: ../../include/functions_config.php:1492 +#: ../../godmode/setup/setup_visuals.php:1549 +#: ../../include/functions_config.php:1086 +#: ../../include/functions_config.php:1508 msgid "Custom logo" msgstr "Logo personalizado" @@ -5769,17 +5838,17 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1915 #: ../../enterprise/meta/include/functions_meta.php:1925 #: ../../enterprise/meta/include/functions_meta.php:1935 -#: ../../godmode/setup/setup_visuals.php:1534 #: ../../godmode/setup/setup_visuals.php:1549 -#: ../../godmode/setup/setup_visuals.php:1555 -#: ../../godmode/setup/setup_visuals.php:1568 -#: ../../godmode/setup/setup_visuals.php:1582 -#: ../../include/functions_config.php:1484 -#: ../../include/functions_config.php:1488 -#: ../../include/functions_config.php:1492 -#: ../../include/functions_config.php:1496 +#: ../../godmode/setup/setup_visuals.php:1564 +#: ../../godmode/setup/setup_visuals.php:1570 +#: ../../godmode/setup/setup_visuals.php:1583 +#: ../../godmode/setup/setup_visuals.php:1597 #: ../../include/functions_config.php:1500 #: ../../include/functions_config.php:1504 +#: ../../include/functions_config.php:1508 +#: ../../include/functions_config.php:1512 +#: ../../include/functions_config.php:1516 +#: ../../include/functions_config.php:1520 msgid "Custom report front" msgstr "Portada de informe personalizado" @@ -5787,8 +5856,8 @@ msgstr "Portada de informe personalizado" #: ../../enterprise/meta/include/functions_meta.php:1915 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:139 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:137 -#: ../../godmode/setup/setup_visuals.php:1555 -#: ../../include/functions_config.php:1496 +#: ../../godmode/setup/setup_visuals.php:1570 +#: ../../include/functions_config.php:1512 msgid "Header" msgstr "Encabezado" @@ -5797,23 +5866,93 @@ msgstr "Encabezado" #: ../../enterprise/meta/include/functions_meta.php:1925 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:149 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:147 -#: ../../godmode/setup/setup_visuals.php:1568 -#: ../../include/functions_config.php:1500 +#: ../../godmode/setup/setup_visuals.php:1583 +#: ../../include/functions_config.php:1516 msgid "First page" msgstr "Primera página" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1420 -#: ../../godmode/setup/setup_visuals.php:2356 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1266 +#: ../../godmode/setup/setup_visuals.php:73 +msgid "Legacy visual console Information" +msgstr "Información de la consola visual heredada" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1267 +#: ../../godmode/setup/setup_visuals.php:74 +msgid "Visual console in legacy mode will no longer be supported as of LTS 772" +msgstr "" +"A partir de la versión LTS 772 Pandora FMS no soportará la consola visual en " +"modo Legacy" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1400 +#: ../../enterprise/godmode/services/services.service.php:1025 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608 +#: ../../enterprise/include/functions_reporting_csv.php:1589 +#: ../../enterprise/include/functions_reporting_csv.php:1635 +#: ../../enterprise/include/functions_reporting_csv.php:1953 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1704 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1756 +#: ../../enterprise/include/class/DatabaseHA.class.php:390 +#: ../../enterprise/include/class/DatabaseHA.class.php:625 +#: ../../enterprise/include/class/DatabaseHA.class.php:727 +#: ../../enterprise/include/class/AgentRepository.class.php:1000 +#: ../../enterprise/include/class/LogSource.class.php:820 +#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142 +#: ../../enterprise/include/class/ManageBackups.class.php:298 +#: ../../enterprise/include/class/ManageBackups.class.php:454 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:182 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:225 +#: ../../enterprise/include/functions_reporting.php:1876 +#: ../../enterprise/include/functions_reporting.php:2949 +#: ../../enterprise/include/functions_reporting.php:3206 +#: ../../enterprise/include/functions_reporting.php:3939 +#: ../../enterprise/include/functions_reporting.php:4208 +#: ../../enterprise/include/functions_reporting.php:4854 +#: ../../enterprise/include/functions_reporting.php:6176 +#: ../../enterprise/include/functions_reporting.php:6214 +#: ../../enterprise/include/functions_services.php:2091 +#: ../../enterprise/include/functions_ux_console.php:483 +#: ../../enterprise/operation/agentes/ux_console_view.php:186 +#: ../../enterprise/operation/agentes/ux_console_view.php:391 +#: ../../enterprise/operation/agentes/wux_console_view.php:407 +#: ../../extensions/module_groups.php:53 +#: ../../godmode/massive/massive_operations.php:415 +#: ../../godmode/setup/setup_visuals.php:2257 +#: ../../godmode/setup/setup_general.php:1044 +#: ../../godmode/setup/setup_general.php:1062 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2743 +#: ../../include/functions_reporting_html.php:667 +#: ../../include/functions_reporting_html.php:862 +#: ../../include/functions_reporting_html.php:3597 +#: ../../include/functions_reporting_html.php:4894 +#: ../../include/functions_db.php:1974 +#: ../../include/class/ConfigPEN.class.php:674 +#: ../../include/class/ConfigPEN.class.php:698 +#: ../../include/class/SatelliteAgent.class.php:1105 +#: ../../include/class/HelpFeedBack.class.php:370 +#: ../../include/class/CredentialStore.class.php:1655 +#: ../../include/class/ModuleTemplates.class.php:1363 +#: ../../include/class/WelcomeWindow.class.php:173 +#: ../../include/class/AgentWizard.class.php:6229 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:362 +#: ../../operation/agentes/pandora_networkmap.editor.php:745 +#: ../../operation/snmpconsole/snmp_browser.php:622 +#: ../../operation/snmpconsole/snmp_browser.php:698 +msgid "OK" +msgstr "OK" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1437 +#: ../../godmode/setup/setup_visuals.php:2376 msgid "Logo preview" msgstr "Logo de vista previa" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1442 -#: ../../godmode/setup/setup_visuals.php:2386 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1459 +#: ../../godmode/setup/setup_visuals.php:2406 msgid "Splash Preview" msgstr "Vista previa de Splash" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1447 -#: ../../godmode/setup/setup_visuals.php:2410 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1464 +#: ../../godmode/setup/setup_visuals.php:2430 #: ../../godmode/reporting/visual_console_builder.data.php:196 msgid "Background preview" msgstr "Vista previa del fondo" @@ -5945,12 +6084,12 @@ msgstr "Servidor de origen" #: ../../godmode/massive/massive_delete_alerts.php:312 #: ../../godmode/massive/massive_add_action_alerts.php:210 #: ../../godmode/massive/massive_edit_modules.php:370 -#: ../../include/functions_html.php:1290 ../../include/functions_html.php:1440 +#: ../../include/functions_html.php:1295 ../../include/functions_html.php:1445 #: ../../include/functions_massive_operations.php:136 #: ../../include/lib/Dashboard/Widgets/groups_status.php:243 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:334 #: ../../include/lib/Dashboard/Widgets/events_list.php:447 -#: ../../operation/events/events.php:1704 +#: ../../operation/events/events.php:1758 msgid "Group recursion" msgstr "Recursión de grupos" @@ -5995,7 +6134,7 @@ msgstr "Servidor de destino" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:474 #: ../../enterprise/include/class/Omnishell.class.php:1119 -#: ../../enterprise/operation/services/massive/services.create.php:1305 +#: ../../enterprise/operation/services/massive/services.create.php:1317 #: ../../enterprise/operation/services/massive/service.delete.elements.php:262 #: ../../enterprise/operation/services/massive/service.create.elements.php:610 #: ../../enterprise/operation/services/massive/service.edit.elements.php:369 @@ -6063,8 +6202,8 @@ msgstr "Mover" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:579 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130 -#: ../../include/functions_inventory.php:142 -#: ../../include/functions_inventory.php:176 +#: ../../include/functions_inventory.php:143 +#: ../../include/functions_inventory.php:177 #: ../../include/functions_events.php:250 msgid "Agent alias" msgstr "Alias del agente" @@ -6080,8 +6219,8 @@ msgstr "Nodo de destino" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:582 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:333 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:478 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:538 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:591 @@ -6095,9 +6234,9 @@ msgstr "Nodo de destino" #: ../../godmode/alerts/alert_view.php:130 #: ../../godmode/setup/setup_integria.php:444 #: ../../godmode/setup/setup_integria.php:578 -#: ../../include/functions_reporting_html.php:5374 -#: ../../include/functions_events.php:4593 -#: ../../operation/agentes/estado_generalagente.php:758 +#: ../../include/functions_reporting_html.php:5402 +#: ../../include/functions_events.php:4598 +#: ../../operation/agentes/estado_generalagente.php:727 #: ../../operation/incidents/integriaims_export_csv.php:85 #: ../../operation/incidents/configure_integriaims_incident.php:287 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:341 @@ -6128,7 +6267,7 @@ msgstr "Prioridad" #: ../../godmode/alerts/configure_alert_template.php:270 #: ../../godmode/alerts/configure_alert_template.php:287 #: ../../godmode/alerts/configure_alert_template.php:291 -#: ../../include/functions_config.php:1729 +#: ../../include/functions_config.php:1741 msgid "Step" msgstr "Paso" @@ -6156,8 +6295,8 @@ msgstr "Creando agente en el nodo de destino" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:661 #: ../../enterprise/meta/advanced/policymanager.queue.php:261 -#: ../../enterprise/godmode/policies/policy_queue.php:711 -#: ../../enterprise/godmode/policies/policy_queue.php:714 +#: ../../enterprise/godmode/policies/policy_queue.php:713 +#: ../../enterprise/godmode/policies/policy_queue.php:716 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:453 #: ../../enterprise/include/class/Omnishell.class.php:369 #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4180 @@ -6186,12 +6325,12 @@ msgid "checking migration requirements" msgstr "Comprobando requisitos de migración" #: ../../enterprise/meta/advanced/servers.php:37 -#: ../../godmode/servers/modificar_server.php:308 +#: ../../godmode/servers/modificar_server.php:330 msgid "Server deleted successfully" msgstr "Servidor eliminado correctamente" #: ../../enterprise/meta/advanced/servers.php:39 -#: ../../godmode/servers/modificar_server.php:310 +#: ../../godmode/servers/modificar_server.php:332 msgid "There was a problem deleting the server" msgstr "Hubo un problema al eliminar el servidor" @@ -6217,12 +6356,12 @@ msgstr "No se ha podido actualizar la cadena de traducción" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:174 #: ../../enterprise/extensions/translate_string.php:308 -#: ../../godmode/users/configure_user.php:1096 -#: ../../godmode/users/user_management.php:558 +#: ../../godmode/users/configure_user.php:1160 +#: ../../godmode/users/user_management.php:564 #: ../../godmode/massive/massive_edit_users.php:248 -#: ../../include/class/TipsWindow.class.php:453 -#: ../../include/class/TipsWindow.class.php:702 -#: ../../include/class/TipsWindow.class.php:869 +#: ../../include/class/TipsWindow.class.php:465 +#: ../../include/class/TipsWindow.class.php:722 +#: ../../include/class/TipsWindow.class.php:889 #: ../../operation/users/user_edit.php:437 msgid "Language" msgstr "Idioma" @@ -6252,7 +6391,7 @@ msgstr "Texto libre para buscar (*)" #: ../../enterprise/meta/general/main_header.php:689 #: ../../enterprise/meta/general/main_header.php:691 #: ../../enterprise/extensions/translate_string.php:334 -#: ../../enterprise/godmode/policies/policy_modules.php:1466 +#: ../../enterprise/godmode/policies/policy_modules.php:1511 #: ../../enterprise/godmode/policies/policy_collections.php:172 #: ../../enterprise/godmode/policies/policy_agents.php:440 #: ../../enterprise/godmode/policies/policy_agents.php:462 @@ -6260,8 +6399,8 @@ msgstr "Texto libre para buscar (*)" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:168 #: ../../enterprise/godmode/setup/setup_skins.php:131 #: ../../enterprise/operation/agentes/tag_view.php:229 -#: ../../enterprise/operation/log/log_viewer.php:610 -#: ../../enterprise/operation/log/log_viewer.php:957 +#: ../../enterprise/operation/log/log_viewer.php:608 +#: ../../enterprise/operation/log/log_viewer.php:955 #: ../../enterprise/operation/services/services.list.php:233 #: ../../enterprise/operation/services/services.list.php:338 #: ../../enterprise/operation/services/services.table_services.php:171 @@ -6278,23 +6417,23 @@ msgstr "Texto libre para buscar (*)" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:335 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:358 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:375 -#: ../../godmode/groups/group_list.php:785 ../../godmode/users/user_list.php:484 -#: ../../godmode/users/user_list.php:504 +#: ../../godmode/groups/group_list.php:786 ../../godmode/users/user_list.php:485 +#: ../../godmode/users/user_list.php:505 #: ../../godmode/agentes/planned_downtime.list.php:372 #: ../../godmode/agentes/planned_downtime.list.php:697 #: ../../godmode/alerts/alert_actions.php:250 #: ../../godmode/alerts/alert_actions.php:317 #: ../../godmode/alerts/alert_actions.php:332 #: ../../godmode/alerts/alert_actions.php:333 -#: ../../godmode/alerts/alert_templates.php:325 -#: ../../godmode/alerts/alert_templates.php:342 +#: ../../godmode/alerts/alert_templates.php:329 +#: ../../godmode/alerts/alert_templates.php:346 #: ../../godmode/reporting/map_builder.php:357 #: ../../godmode/reporting/graphs.php:238 #: ../../godmode/reporting/visual_console_favorite.php:177 #: ../../godmode/reporting/reporting_builder.item_editor.php:1313 #: ../../godmode/module_library/module_library_view.php:102 #: ../../godmode/module_library/module_library_view.php:112 -#: ../../mobile/operation/agent.php:320 ../../include/ajax/heatmap.ajax.php:72 +#: ../../mobile/operation/agent.php:323 ../../include/ajax/heatmap.ajax.php:76 #: ../../include/functions_snmp.php:358 #: ../../include/class/SatelliteAgent.class.php:184 #: ../../include/class/CalendarManager.class.php:1071 @@ -6302,13 +6441,12 @@ msgstr "Texto libre para buscar (*)" #: ../../include/class/AgentWizard.class.php:2753 #: ../../include/lib/Dashboard/Widgets/heatmap.php:236 #: ../../include/functions_snmp_browser.php:1023 -#: ../../include/functions_snmp_browser.php:1641 +#: ../../include/functions_snmp_browser.php:1650 #: ../../operation/search_results.php:193 ../../operation/search_results.php:202 #: ../../operation/agentes/estado_agente.php:342 -#: ../../operation/agentes/status_monitor.php:915 -#: ../../operation/agentes/agent_inventory.php:138 -#: ../../operation/agentes/agent_inventory.php:140 -#: ../../operation/inventory/inventory.php:640 +#: ../../operation/agentes/status_monitor.php:917 +#: ../../operation/agentes/agent_inventory.php:153 +#: ../../operation/inventory/inventory.php:642 #: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 msgid "Search" msgstr "Buscar" @@ -6328,8 +6466,8 @@ msgstr "Buscar" #: ../../enterprise/godmode/modules/local_components.php:624 #: ../../enterprise/godmode/agentes/collections.php:473 #: ../../enterprise/godmode/agentes/collections.php:474 -#: ../../enterprise/godmode/policies/policy_modules.php:1512 -#: ../../enterprise/godmode/policies/policy_queue.php:378 +#: ../../enterprise/godmode/policies/policy_modules.php:1557 +#: ../../enterprise/godmode/policies/policy_queue.php:380 #: ../../enterprise/godmode/policies/policies.php:364 #: ../../enterprise/godmode/policies/policy_linking.php:175 #: ../../enterprise/godmode/policies/policy_external_alerts.php:415 @@ -6339,14 +6477,14 @@ msgstr "Buscar" #: ../../enterprise/godmode/setup/setup_acl.php:511 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947 #: ../../enterprise/operation/agentes/tag_view.php:533 -#: ../../enterprise/operation/log/log_viewer.php:1026 +#: ../../enterprise/operation/log/log_viewer.php:1024 #: ../../enterprise/operation/services/services.list.php:497 #: ../../enterprise/operation/services/services.table_services.php:472 #: ../../enterprise/operation/services/services.table_services.php:487 #: ../../extensions/module_groups.php:322 -#: ../../extensions/realtime_graphs.php:220 -#: ../../godmode/modules/manage_network_components.php:713 -#: ../../godmode/groups/group_list.php:820 +#: ../../extensions/realtime_graphs.php:216 +#: ../../godmode/modules/manage_network_components.php:716 +#: ../../godmode/groups/group_list.php:821 #: ../../godmode/agentes/planned_downtime.list.php:661 #: ../../godmode/agentes/planned_downtime.list.php:662 #: ../../godmode/agentes/planned_downtime.list.php:711 @@ -6357,16 +6495,17 @@ msgstr "Buscar" #: ../../godmode/reporting/visual_console_favorite.php:220 #: ../../godmode/reporting/reporting_builder.php:782 #: ../../godmode/events/events.php:105 ../../godmode/events/events.php:124 -#: ../../godmode/tag/tag.php:263 ../../include/functions_ui.php:3715 -#: ../../include/functions_ui.php:3728 -#: ../../include/class/AgentsAlerts.class.php:879 +#: ../../godmode/tag/tag.php:264 ../../include/functions_ui.php:3763 +#: ../../include/functions_ui.php:3776 +#: ../../include/class/AgentsAlerts.class.php:880 #: ../../include/functions_snmp_browser.php:992 #: ../../operation/agentes/estado_agente.php:490 -#: ../../operation/agentes/status_monitor.php:1081 +#: ../../operation/agentes/status_monitor.php:1083 +#: ../../operation/agentes/agent_inventory.php:188 #: ../../operation/network/network_report.php:219 #: ../../operation/network/network_report.php:220 #: ../../operation/incidents/list_integriaims_incidents.php:502 -#: ../../operation/inventory/inventory.php:721 +#: ../../operation/inventory/inventory.php:722 #: ../../operation/reporting/reporting_viewer.php:305 #: ../../operation/reporting/graph_viewer.php:415 msgid "Filters" @@ -6395,7 +6534,7 @@ msgstr "Personalizar traducción" #: ../../include/ajax/visual_console_builder.ajax.php:343 #: ../../include/functions_visual_map.php:2843 #: ../../operation/network/network_usage_map.php:275 -#: ../../operation/netflow/nf_live_view.php:647 +#: ../../operation/netflow/nf_live_view.php:720 msgid "No data to show" msgstr "No hay datos que mostrar" @@ -6409,14 +6548,14 @@ msgstr "No hay datos que mostrar" #: ../../enterprise/include/functions_cron.php:582 #: ../../enterprise/include/lib/NetworkManager.php:87 #: ../../godmode/agentes/module_manager_editor_wmi.php:59 -#: ../../godmode/agentes/module_manager_editor_network.php:105 +#: ../../godmode/agentes/module_manager_editor_network.php:106 #: ../../godmode/massive/massive_edit_modules.php:834 -#: ../../include/functions_html.php:1917 ../../include/functions_html.php:1918 -#: ../../include/functions_html.php:2028 ../../include/functions_html.php:2029 -#: ../../include/functions_html.php:2181 ../../include/functions_html.php:2182 -#: ../../include/functions_html.php:6698 ../../include/functions_html.php:6699 +#: ../../include/functions_html.php:1928 ../../include/functions_html.php:1929 +#: ../../include/functions_html.php:2039 ../../include/functions_html.php:2040 +#: ../../include/functions_html.php:2189 ../../include/functions_html.php:2190 +#: ../../include/functions_html.php:6726 ../../include/functions_html.php:6727 #: ../../include/class/CredentialStore.class.php:959 -#: ../../operation/netflow/nf_live_view.php:274 +#: ../../operation/netflow/nf_live_view.php:283 msgid "Custom" msgstr "Personalizado" @@ -6443,8 +6582,8 @@ msgid "Imei" msgstr "IMEI" #: ../../enterprise/meta/advanced/metasetup.relations.php:330 -#: ../../include/class/NetworkMap.class.php:3265 -#: ../../include/class/NetworkMap.class.php:3266 +#: ../../include/class/NetworkMap.class.php:3271 +#: ../../include/class/NetworkMap.class.php:3272 msgid "Relations" msgstr "Relaciones" @@ -6480,21 +6619,21 @@ msgstr "Mostrar lista de relaciones" #: ../../enterprise/include/functions_reporting_csv.php:2731 #: ../../enterprise/operation/services/services.service.php:115 #: ../../enterprise/operation/services/services.list.php:544 -#: ../../godmode/agentes/module_manager_editor_common.php:1432 +#: ../../godmode/agentes/module_manager_editor_common.php:1442 #: ../../godmode/snmpconsole/snmp_trap_generator.php:126 #: ../../godmode/massive/massive_edit_modules.php:899 #: ../../godmode/alerts/configure_alert_template.php:839 -#: ../../godmode/setup/setup_visuals.php:1823 -#: ../../godmode/setup/setup_visuals.php:1913 -#: ../../godmode/setup/setup_visuals.php:1995 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2708 +#: ../../godmode/setup/setup_visuals.php:1838 +#: ../../godmode/setup/setup_visuals.php:1928 +#: ../../godmode/setup/setup_visuals.php:2010 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2717 #: ../../godmode/reporting/visual_console_builder.wizard.php:330 -#: ../../include/functions_visual_map_editor.php:691 +#: ../../include/functions_visual_map_editor.php:741 #: ../../include/functions_reporting_html.php:949 -#: ../../include/functions_reporting_html.php:2461 -#: ../../include/functions_reporting_html.php:4962 -#: ../../include/functions_reporting_html.php:5492 -#: ../../include/ajax/events.php:2173 ../../include/functions_graph.php:5172 +#: ../../include/functions_reporting_html.php:2482 +#: ../../include/functions_reporting_html.php:4990 +#: ../../include/functions_reporting_html.php:5520 +#: ../../include/ajax/events.php:2174 ../../include/functions_graph.php:5182 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 #: ../../include/functions_reports.php:1087 #: ../../include/functions_netflow.php:212 @@ -6512,7 +6651,7 @@ msgstr "Dirección del nodo" #: ../../enterprise/meta/advanced/metasetup.relations.php:550 #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:255 -#: ../../enterprise/godmode/policies/policy_modules.php:1546 +#: ../../enterprise/godmode/policies/policy_modules.php:1591 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:397 @@ -6534,7 +6673,7 @@ msgstr "Dirección del nodo" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:330 #: ../../godmode/modules/manage_nc_groups.php:266 #: ../../godmode/modules/manage_inventory_modules.php:295 -#: ../../godmode/modules/manage_network_components.php:781 +#: ../../godmode/modules/manage_network_components.php:784 #: ../../godmode/modules/manage_network_templates.php:250 #: ../../godmode/agentes/agent_template.php:277 #: ../../godmode/agentes/planned_downtime.editor.php:1446 @@ -6544,26 +6683,26 @@ msgstr "Dirección del nodo" #: ../../godmode/snmpconsole/snmp_alert.php:1915 #: ../../godmode/snmpconsole/snmp_alert.php:2075 #: ../../godmode/snmpconsole/snmp_filters.php:315 -#: ../../godmode/massive/massive_operations.php:452 +#: ../../godmode/massive/massive_operations.php:454 #: ../../godmode/massive/massive_standby_alerts.php:251 #: ../../godmode/massive/massive_delete_action_alerts.php:271 #: ../../godmode/massive/massive_enable_disable_alerts.php:223 #: ../../godmode/massive/massive_add_action_alerts.php:249 #: ../../godmode/alerts/alert_list.list.php:825 #: ../../godmode/alerts/alert_view.php:394 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4138 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4629 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4650 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4638 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4659 #: ../../godmode/reporting/visual_console_builder.elements.php:134 #: ../../godmode/events/event_filter.php:149 -#: ../../mobile/operation/tactical.php:348 -#: ../../include/functions_reporting_html.php:3451 -#: ../../include/functions_reporting_html.php:6013 +#: ../../mobile/operation/tactical.php:349 +#: ../../include/functions_reporting_html.php:3479 +#: ../../include/functions_reporting_html.php:6047 #: ../../include/functions.php:3109 ../../include/ajax/alert_list.ajax.php:294 #: ../../include/ajax/alert_list.ajax.php:319 #: ../../include/ajax/alert_list.ajax.php:495 #: ../../include/functions_profile.php:207 -#: ../../include/class/AgentsAlerts.class.php:911 +#: ../../include/class/AgentsAlerts.class.php:912 #: ../../include/class/SnmpConsole.class.php:512 #: ../../include/class/AuditLog.class.php:111 #: ../../include/class/AuditLog.class.php:230 @@ -6572,7 +6711,7 @@ msgstr "Dirección del nodo" #: ../../operation/agentes/alerts_status.php:279 #: ../../operation/agentes/alerts_status.php:280 #: ../../operation/agentes/alerts_status.functions.php:178 -#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:256 +#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:301 msgid "Action" msgstr "Acción" @@ -6591,7 +6730,7 @@ msgstr "Contraseñas" #: ../../enterprise/meta/advanced/metasetup.password.php:93 #: ../../enterprise/meta/include/functions_meta.php:377 #: ../../enterprise/godmode/setup/setup.php:318 -#: ../../include/functions_config.php:494 +#: ../../include/functions_config.php:502 msgid "Enable password policy" msgstr "Habilitar política de contraseñas" @@ -6626,7 +6765,7 @@ msgstr "Habilitar política de contraseñas" #: ../../enterprise/godmode/setup/setup_auth.php:230 #: ../../enterprise/godmode/setup/setup_auth.php:431 #: ../../enterprise/godmode/setup/setup_auth.php:479 -#: ../../enterprise/godmode/setup/setup_auth.php:1287 +#: ../../enterprise/godmode/setup/setup_auth.php:1504 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:521 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:317 #: ../../enterprise/godmode/reporting/visual_console_template.php:304 @@ -6635,11 +6774,11 @@ msgstr "Habilitar política de contraseñas" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2357 #: ../../godmode/update_manager/update_manager.setup.php:395 -#: ../../godmode/users/configure_user.php:1301 +#: ../../godmode/users/configure_user.php:1365 #: ../../godmode/agentes/agent_conf_gis.php:133 -#: ../../godmode/massive/massive_edit_agents.php:671 -#: ../../godmode/massive/massive_edit_agents.php:1084 -#: ../../godmode/massive/massive_edit_agents.php:1116 +#: ../../godmode/massive/massive_edit_agents.php:688 +#: ../../godmode/massive/massive_edit_agents.php:1101 +#: ../../godmode/massive/massive_edit_agents.php:1133 #: ../../godmode/massive/massive_edit_modules.php:631 #: ../../godmode/massive/massive_edit_modules.php:653 #: ../../godmode/massive/massive_edit_modules.php:722 @@ -6654,13 +6793,13 @@ msgstr "Habilitar política de contraseñas" #: ../../godmode/reporting/visual_console_builder.wizard.php:382 #: ../../godmode/reporting/visual_console_builder.wizard.php:481 #: ../../godmode/servers/modificar_server.php:80 -#: ../../include/functions_reporting_html.php:1664 +#: ../../include/functions_reporting_html.php:1673 #: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304 #: ../../include/functions_snmp.php:390 #: ../../include/class/EventSound.class.php:349 #: ../../include/class/SnmpConsole.class.php:403 #: ../../operation/users/user_edit.php:433 -#: ../../operation/netflow/nf_live_view.php:340 +#: ../../operation/netflow/nf_live_view.php:349 msgid "Yes" msgstr "Sí" @@ -6696,7 +6835,7 @@ msgstr "Sí" #: ../../enterprise/godmode/setup/setup_auth.php:230 #: ../../enterprise/godmode/setup/setup_auth.php:434 #: ../../enterprise/godmode/setup/setup_auth.php:482 -#: ../../enterprise/godmode/setup/setup_auth.php:1290 +#: ../../enterprise/godmode/setup/setup_auth.php:1507 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:523 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:319 #: ../../enterprise/godmode/reporting/visual_console_template.php:304 @@ -6705,11 +6844,11 @@ msgstr "Sí" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2357 #: ../../godmode/update_manager/update_manager.setup.php:396 -#: ../../godmode/users/configure_user.php:1302 +#: ../../godmode/users/configure_user.php:1366 #: ../../godmode/agentes/agent_conf_gis.php:142 -#: ../../godmode/massive/massive_edit_agents.php:672 -#: ../../godmode/massive/massive_edit_agents.php:1095 -#: ../../godmode/massive/massive_edit_agents.php:1117 +#: ../../godmode/massive/massive_edit_agents.php:689 +#: ../../godmode/massive/massive_edit_agents.php:1112 +#: ../../godmode/massive/massive_edit_agents.php:1134 #: ../../godmode/massive/massive_edit_modules.php:632 #: ../../godmode/massive/massive_edit_modules.php:654 #: ../../godmode/massive/massive_edit_modules.php:723 @@ -6720,28 +6859,28 @@ msgstr "Sí" #: ../../godmode/massive/massive_edit_modules.php:1125 #: ../../godmode/alerts/alert_view.php:135 #: ../../godmode/alerts/alert_view.php:265 -#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:390 +#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:389 #: ../../godmode/reporting/reporting_builder.php:1086 #: ../../godmode/reporting/visual_console_builder.wizard.php:393 #: ../../godmode/reporting/visual_console_builder.wizard.php:492 #: ../../godmode/servers/modificar_server.php:78 -#: ../../mobile/operation/events.php:365 ../../mobile/operation/events.php:373 -#: ../../include/functions_reporting_html.php:1664 +#: ../../mobile/operation/events.php:358 ../../mobile/operation/events.php:366 +#: ../../include/functions_reporting_html.php:1673 #: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304 #: ../../include/functions_snmp.php:382 #: ../../include/class/EventSound.class.php:348 #: ../../include/class/SnmpConsole.class.php:402 -#: ../../include/functions_events.php:4971 #: ../../include/functions_events.php:4976 +#: ../../include/functions_events.php:4981 #: ../../operation/users/user_edit.php:434 -#: ../../operation/netflow/nf_live_view.php:350 +#: ../../operation/netflow/nf_live_view.php:359 msgid "No" msgstr "No" #: ../../enterprise/meta/advanced/metasetup.password.php:114 #: ../../enterprise/meta/include/functions_meta.php:387 #: ../../enterprise/godmode/setup/setup.php:329 -#: ../../include/functions_config.php:498 +#: ../../include/functions_config.php:506 msgid "Min. size password" msgstr "Contraseña con tamaño mínimo" @@ -6753,7 +6892,7 @@ msgstr " Caracteres" #: ../../enterprise/meta/advanced/metasetup.password.php:126 #: ../../enterprise/meta/include/functions_meta.php:417 #: ../../enterprise/godmode/setup/setup.php:347 -#: ../../include/functions_config.php:502 +#: ../../include/functions_config.php:510 msgid "Password expiration" msgstr "Expiración de contraseña" @@ -6769,7 +6908,7 @@ msgstr " Días" #: ../../enterprise/meta/advanced/metasetup.password.php:138 #: ../../enterprise/meta/include/functions_meta.php:437 #: ../../enterprise/godmode/setup/setup.php:395 -#: ../../include/functions_config.php:510 +#: ../../include/functions_config.php:518 msgid "User blocked if login fails" msgstr "Usuario bloqueado si la identificación falla" @@ -6781,7 +6920,7 @@ msgstr " Minutos" #: ../../enterprise/meta/advanced/metasetup.password.php:150 #: ../../enterprise/meta/include/functions_meta.php:447 #: ../../enterprise/godmode/setup/setup.php:413 -#: ../../include/functions_config.php:514 +#: ../../include/functions_config.php:522 msgid "Number of failed login attempts" msgstr "Número de intentos de identificación fallidos" @@ -6797,56 +6936,56 @@ msgstr " Intentos" #: ../../enterprise/meta/advanced/metasetup.password.php:162 #: ../../enterprise/meta/include/functions_meta.php:469 #: ../../enterprise/godmode/setup/setup.php:451 -#: ../../include/functions_config.php:534 +#: ../../include/functions_config.php:542 msgid "Compare previous password" msgstr "Comparar la contraseña anterior" #: ../../enterprise/meta/advanced/metasetup.password.php:174 #: ../../enterprise/meta/include/functions_meta.php:457 #: ../../enterprise/godmode/setup/setup.php:441 -#: ../../include/functions_config.php:530 +#: ../../include/functions_config.php:538 msgid "Enable password history" msgstr "Activar histórico de contraseñas" #: ../../enterprise/meta/advanced/metasetup.password.php:192 #: ../../enterprise/meta/include/functions_meta.php:480 #: ../../enterprise/godmode/setup/setup.php:431 -#: ../../include/functions_config.php:526 +#: ../../include/functions_config.php:534 msgid "Apply password policy to admin users" msgstr "Aplicar la política de contraseñas a los usuarios administradores" #: ../../enterprise/meta/advanced/metasetup.password.php:199 #: ../../enterprise/meta/include/functions_meta.php:427 #: ../../enterprise/godmode/setup/setup.php:385 -#: ../../include/functions_config.php:506 +#: ../../include/functions_config.php:514 msgid "Force change password on first login" msgstr "Forzar cambio de contraseña en el primer inicio de sesión" #: ../../enterprise/meta/advanced/metasetup.password.php:206 #: ../../enterprise/meta/include/functions_meta.php:397 #: ../../enterprise/godmode/setup/setup.php:365 -#: ../../include/functions_config.php:518 +#: ../../include/functions_config.php:526 msgid "Password must have numbers" msgstr "La contraseña debe contener números." #: ../../enterprise/meta/advanced/metasetup.password.php:213 #: ../../enterprise/meta/include/functions_meta.php:407 #: ../../enterprise/godmode/setup/setup.php:375 -#: ../../include/functions_config.php:522 +#: ../../include/functions_config.php:530 msgid "Password must have symbols" msgstr "La contraseña debe contener símbolos." #: ../../enterprise/meta/advanced/metasetup.password.php:220 #: ../../enterprise/meta/include/functions_meta.php:491 #: ../../enterprise/godmode/setup/setup.php:463 -#: ../../include/functions_config.php:538 +#: ../../include/functions_config.php:546 msgid "Activate reset password" msgstr "Activar reseteo de contraseña" #: ../../enterprise/meta/advanced/metasetup.password.php:228 #: ../../enterprise/meta/include/functions_meta.php:501 #: ../../enterprise/godmode/setup/setup.php:473 -#: ../../include/functions_config.php:542 +#: ../../include/functions_config.php:550 msgid "Exclusion word list for passwords" msgstr "Lista de contraseñas prohibidas" @@ -6915,56 +7054,56 @@ msgstr "" "que dichos ajustes ignorarán los ajustes de la consola." #: ../../enterprise/meta/advanced/metasetup.mail.php:117 -#: ../../godmode/setup/setup_general.php:725 +#: ../../godmode/setup/setup_general.php:751 msgid "Mail configuration" msgstr "Configuración de email" #: ../../enterprise/meta/advanced/metasetup.mail.php:122 -#: ../../include/functions_config.php:398 +#: ../../include/functions_config.php:406 msgid "From dir" msgstr "Desde dir" #: ../../enterprise/meta/advanced/metasetup.mail.php:127 -#: ../../godmode/setup/setup_general.php:756 -#: ../../include/functions_config.php:402 +#: ../../godmode/setup/setup_general.php:782 +#: ../../include/functions_config.php:410 msgid "From name" msgstr "Desde nombre" #: ../../enterprise/meta/advanced/metasetup.mail.php:132 -#: ../../include/functions_config.php:394 +#: ../../include/functions_config.php:402 msgid "Server SMTP" msgstr "Servidor SMTP" #: ../../enterprise/meta/advanced/metasetup.mail.php:137 -#: ../../include/functions_config.php:406 +#: ../../include/functions_config.php:414 msgid "Port SMTP" msgstr "Puerto SMTP" #: ../../enterprise/meta/advanced/metasetup.mail.php:142 -#: ../../godmode/setup/setup_general.php:817 -#: ../../include/functions_config.php:410 +#: ../../godmode/setup/setup_general.php:843 +#: ../../include/functions_config.php:418 msgid "Encryption" msgstr "Encriptación" #: ../../enterprise/meta/advanced/metasetup.mail.php:148 #: ../../godmode/gis_maps/configure_gis_map.php:586 -#: ../../godmode/setup/setup_general.php:823 +#: ../../godmode/setup/setup_general.php:849 #: ../../godmode/reporting/create_container.php:291 #: ../../godmode/reporting/create_container.php:310 -#: ../../include/ajax/module.php:2549 ../../include/ajax/events.php:1087 -#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5106 +#: ../../include/ajax/module.php:2578 ../../include/ajax/events.php:1088 +#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5130 msgid "none" msgstr "ninguno" #: ../../enterprise/meta/advanced/metasetup.mail.php:155 -#: ../../godmode/setup/setup_general.php:792 -#: ../../include/functions_config.php:414 +#: ../../godmode/setup/setup_general.php:818 +#: ../../include/functions_config.php:422 msgid "Email user" msgstr "Usuario de email" #: ../../enterprise/meta/advanced/metasetup.mail.php:160 -#: ../../godmode/setup/setup_general.php:803 -#: ../../include/functions_config.php:418 +#: ../../godmode/setup/setup_general.php:829 +#: ../../include/functions_config.php:426 msgid "Email password" msgstr "Contraseña de email" @@ -6988,11 +7127,11 @@ msgstr "Configuración de contraseñas" #: ../../enterprise/meta/general/main_header.php:143 #: ../../enterprise/meta/general/main_menu.php:260 #: ../../enterprise/operation/log/elasticsearch_interface.php:30 -#: ../../enterprise/operation/log/log_viewer.php:399 -#: ../../enterprise/operation/log/log_viewer.php:439 -#: ../../enterprise/operation/log/log_viewer.php:498 +#: ../../enterprise/operation/log/log_viewer.php:397 +#: ../../enterprise/operation/log/log_viewer.php:437 +#: ../../enterprise/operation/log/log_viewer.php:496 #: ../../enterprise/operation/menu.php:162 -#: ../../operation/agentes/ver_agente.php:1893 +#: ../../operation/agentes/ver_agente.php:1889 msgid "Log viewer" msgstr "Visor de logs" @@ -7000,12 +7139,12 @@ msgstr "Visor de logs" #: ../../enterprise/godmode/menu.php:132 #: ../../enterprise/include/functions_setup.php:67 #: ../../enterprise/include/functions_setup.php:119 -#: ../../operation/agentes/datos_agente.php:180 +#: ../../operation/agentes/datos_agente.php:181 msgid "History database" msgstr "Base de datos histórica" #: ../../enterprise/meta/advanced/metasetup.php:100 -#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:360 +#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:358 #: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:274 msgid "Authentication" msgstr "Autentificación" @@ -7022,7 +7161,7 @@ msgstr "Configuración del rendimiento" #: ../../enterprise/meta/advanced/metasetup.php:126 #: ../../enterprise/meta/advanced/metasetup.php:225 -#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:439 +#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:437 #: ../../godmode/setup/file_manager.php:47 #: ../../godmode/setup/file_manager.php:60 msgid "File manager" @@ -7039,7 +7178,7 @@ msgid "Mail" msgstr "Correo electrónico" #: ../../enterprise/meta/advanced/metasetup.php:150 -#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:389 +#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:387 #: ../../godmode/setup/setup.php:218 ../../godmode/setup/setup.php:325 msgid "Notifications" msgstr "Notificaciones" @@ -7111,8 +7250,8 @@ msgstr "Actualización en línea" #: ../../godmode/update_manager/update_manager.php:57 #: ../../godmode/update_manager/update_manager.php:87 #: ../../godmode/agentes/configurar_agente.php:405 -#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:338 -#: ../../godmode/menu.php:345 ../../godmode/setup/setup.php:389 +#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:336 +#: ../../godmode/menu.php:343 ../../godmode/setup/setup.php:389 #: ../../godmode/setup/gis_step_2.php:63 ../../godmode/setup/gis_step_2.php:67 #: ../../godmode/setup/gis_step_2.php:100 ../../godmode/setup/gis_step_2.php:104 #: ../../godmode/module_library/module_library_view.php:48 @@ -7165,37 +7304,19 @@ msgstr "Aplicar políticas" #: ../../enterprise/operation/agentes/ver_agente.php:254 #: ../../include/functions_networkmap.php:1303 #: ../../include/functions_maps.php:42 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:346 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:349 #: ../../operation/tree.php:128 ../../operation/search_results.php:172 #: ../../operation/agentes/estado_agente.php:387 -#: ../../operation/agentes/ver_agente.php:1860 ../../operation/search_main.php:73 +#: ../../operation/agentes/ver_agente.php:1856 ../../operation/search_main.php:73 msgid "Policies" msgstr "Políticas" -#: ../../enterprise/meta/advanced/policymanager.apply.php:200 -#: ../../enterprise/godmode/servers/new_HA_cluster.php:86 -#: ../../enterprise/godmode/servers/HA_cluster.php:97 -#: ../../enterprise/godmode/servers/manage_export.php:69 -#: ../../enterprise/godmode/servers/manage_export_form.php:85 -#: ../../enterprise/godmode/servers/list_satellite.php:37 -#: ../../godmode/menu.php:300 ../../godmode/setup/os.php:225 -#: ../../godmode/reporting/visual_console_builder.wizard.php:353 -#: ../../godmode/servers/modificar_server.php:59 -#: ../../godmode/servers/modificar_server.php:218 -#: ../../godmode/servers/modificar_server.php:271 -#: ../../godmode/servers/plugin_registration.php:73 -#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:355 -#: ../../godmode/servers/plugin.php:802 ../../mobile/include/functions_web.php:28 -#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:370 -msgid "Servers" -msgstr "Servidores" - #: ../../enterprise/meta/advanced/policymanager.apply.php:213 #: ../../enterprise/meta/advanced/policymanager.queue.php:311 -#: ../../enterprise/godmode/policies/policy_queue.php:754 +#: ../../enterprise/godmode/policies/policy_queue.php:758 #: ../../enterprise/godmode/policies/policy_agents.php:964 #: ../../enterprise/godmode/policies/policy_agents.php:1348 -#: ../../include/functions_visual_map_editor.php:641 +#: ../../include/functions_visual_map_editor.php:637 msgid "Apply" msgstr "Aplicar" @@ -7291,8 +7412,8 @@ msgstr "No se puede eliminar" #: ../../enterprise/godmode/policies/policy_alerts.php:137 #: ../../enterprise/godmode/policies/policy_modules.php:529 #: ../../enterprise/godmode/setup/setup_metaconsole.php:147 -#: ../../godmode/users/user_list.php:448 -#: ../../godmode/agentes/configurar_agente.php:2188 +#: ../../godmode/users/user_list.php:449 +#: ../../godmode/agentes/configurar_agente.php:2251 #: ../../godmode/agentes/modificar_agente.php:227 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 #: ../../godmode/alerts/alert_list.php:382 @@ -7304,7 +7425,7 @@ msgstr "Activado correctamente" #: ../../enterprise/godmode/policies/policy_alerts.php:138 #: ../../enterprise/godmode/policies/policy_modules.php:530 #: ../../enterprise/godmode/setup/setup_metaconsole.php:148 -#: ../../godmode/agentes/configurar_agente.php:2189 +#: ../../godmode/agentes/configurar_agente.php:2252 #: ../../godmode/agentes/modificar_agente.php:228 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 #: ../../godmode/alerts/alert_list.php:383 @@ -7316,8 +7437,8 @@ msgstr "No se pudo activar" #: ../../enterprise/godmode/policies/policy_alerts.php:163 #: ../../enterprise/godmode/policies/policy_modules.php:546 #: ../../enterprise/godmode/setup/setup_metaconsole.php:156 -#: ../../godmode/users/user_list.php:442 -#: ../../godmode/agentes/configurar_agente.php:2213 +#: ../../godmode/users/user_list.php:443 +#: ../../godmode/agentes/configurar_agente.php:2276 #: ../../godmode/agentes/modificar_agente.php:270 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 #: ../../godmode/alerts/alert_list.php:418 @@ -7388,29 +7509,30 @@ msgstr "Edición de elemento de Metaconsola %s" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:502 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1714 #: ../../enterprise/include/functions_reporting_csv.php:1208 -#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/graph_builder.graph_editor.php:347 #: ../../godmode/reporting/reporting_builder.item_editor.php:1290 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.elements.php:310 #: ../../godmode/reporting/visual_console_builder.wizard.php:469 #: ../../include/functions_visual_map_editor.php:67 -#: ../../include/functions_visual_map_editor.php:193 -#: ../../include/functions_visual_map_editor.php:777 -#: ../../include/functions_visual_map_editor.php:1392 -#: ../../include/functions_visual_map.php:4210 -#: ../../include/rest-api/models/VisualConsole/Item.php:1942 -#: ../../include/rest-api/models/VisualConsole/Item.php:2136 +#: ../../include/functions_visual_map_editor.php:189 +#: ../../include/functions_visual_map_editor.php:817 +#: ../../include/functions_visual_map_editor.php:1450 +#: ../../include/functions_visual_map.php:4219 +#: ../../include/rest-api/models/VisualConsole/Item.php:1947 +#: ../../include/rest-api/models/VisualConsole/Item.php:2139 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:329 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:284 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:354 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:365 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:468 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:447 #: ../../include/lib/Dashboard/Widgets/module_icon.php:347 #: ../../include/lib/Dashboard/Widgets/module_value.php:322 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:260 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:314 #: ../../include/lib/Dashboard/Widgets/module_status.php:338 -#: ../../operation/visual_console/view.php:356 +#: ../../operation/visual_console/view.php:358 msgid "Label" msgstr "Etiqueta" @@ -7500,12 +7622,12 @@ msgstr "Puerto de la BD" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:227 #: ../../extensions/quick_shell.php:539 #: ../../godmode/agentes/module_manager_editor.php:750 -#: ../../godmode/agentes/agent_manager.php:905 -#: ../../godmode/massive/massive_edit_agents.php:1159 +#: ../../godmode/agentes/agent_manager.php:912 +#: ../../godmode/massive/massive_edit_agents.php:1175 #: ../../godmode/massive/massive_add_action_alerts.php:251 -#: ../../include/functions_visual_map_editor.php:893 -#: ../../operation/agentes/status_monitor.php:1022 -#: ../../operation/events/events.php:2271 +#: ../../include/functions_visual_map_editor.php:941 +#: ../../operation/agentes/status_monitor.php:1024 +#: ../../operation/events/events.php:2325 msgid "Advanced options" msgstr "Opciones avanzadas" @@ -7614,7 +7736,7 @@ msgstr "Sincronización de bases de datos" #: ../../enterprise/tools/ipam/ipam.php:426 ../../operation/search_agents.php:132 #: ../../operation/search_agents.php:133 #: ../../operation/agentes/ver_agente.php:1375 -#: ../../operation/agentes/ver_agente.php:1831 +#: ../../operation/agentes/ver_agente.php:1827 msgid "Manage" msgstr "Gestionar" @@ -7657,7 +7779,7 @@ msgstr "Error al crear el enlace" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:50 #: ../../godmode/modules/manage_nc_groups.php:108 #: ../../godmode/users/profile_list.php:278 -#: ../../godmode/users/configure_user.php:530 +#: ../../godmode/users/configure_user.php:479 #: ../../godmode/agentes/configurar_agente.php:888 #: ../../godmode/agentes/planned_downtime.editor.php:660 #: ../../godmode/snmpconsole/snmp_alert.php:302 @@ -7666,7 +7788,7 @@ msgstr "Error al crear el enlace" #: ../../godmode/alerts/configure_alert_template.php:553 #: ../../godmode/alerts/alert_list.php:185 ../../godmode/setup/news.php:83 #: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:57 -#: ../../include/functions_alerts.php:2754 +#: ../../include/functions_alerts.php:2755 #: ../../include/class/EventSound.class.php:103 #: ../../include/class/EventSound.class.php:134 #: ../../include/class/CalendarManager.class.php:537 @@ -7686,7 +7808,7 @@ msgstr "Error al modificar el enlace" #: ../../enterprise/meta/advanced/links.php:69 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:126 -#: ../../enterprise/godmode/policies/policy_modules.php:1265 +#: ../../enterprise/godmode/policies/policy_modules.php:1310 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:138 @@ -7703,21 +7825,21 @@ msgstr "Error al modificar el enlace" #: ../../enterprise/tools/ipam/ipam_massive.php:47 #: ../../godmode/modules/manage_nc_groups.php:142 #: ../../godmode/users/profile_list.php:261 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 -#: ../../godmode/agentes/configurar_agente.php:1198 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 +#: ../../godmode/agentes/configurar_agente.php:1214 #: ../../godmode/agentes/planned_downtime.editor.php:662 -#: ../../godmode/netflow/nf_edit_form.php:140 +#: ../../godmode/netflow/nf_edit_form.php:172 #: ../../godmode/snmpconsole/snmp_alert.php:444 #: ../../godmode/snmpconsole/snmp_filters.php:110 #: ../../godmode/massive/massive_edit_modules.php:184 #: ../../godmode/alerts/configure_alert_command.php:149 -#: ../../godmode/alerts/alert_templates.php:161 +#: ../../godmode/alerts/alert_templates.php:165 #: ../../godmode/alerts/configure_alert_template.php:571 #: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:319 #: ../../godmode/setup/news.php:124 ../../godmode/setup/gis.php:39 #: ../../godmode/setup/links.php:76 -#: ../../godmode/events/event_edit_filter.php:242 -#: ../../include/functions_alerts.php:2754 +#: ../../godmode/events/event_edit_filter.php:244 +#: ../../include/functions_alerts.php:2755 #: ../../include/class/CalendarManager.class.php:534 #: ../../include/class/CalendarManager.class.php:891 #: ../../include/functions_planned_downtimes.php:125 @@ -7775,7 +7897,7 @@ msgstr "Aplicar políticas" #: ../../enterprise/include/class/CommandCenter.class.php:145 #: ../../godmode/netflow/nf_item_list.php:49 #: ../../operation/agentes/ver_agente.php:1390 -#: ../../operation/agentes/ver_agente.php:1835 +#: ../../operation/agentes/ver_agente.php:1831 msgid "Main" msgstr "Principal" @@ -7851,41 +7973,49 @@ msgstr "Colecciones" #: ../../enterprise/operation/agentes/tag_view.php:787 #: ../../extensions/insert_data.php:226 ../../extensions/insert_data.php:230 #: ../../extensions/insert_data.php:235 -#: ../../godmode/agentes/status_monitor_custom_fields.php:113 -#: ../../godmode/agentes/status_monitor_custom_fields.php:150 +#: ../../godmode/agentes/status_monitor_custom_fields.php:133 +#: ../../godmode/agentes/status_monitor_custom_fields.php:170 #: ../../godmode/events/custom_events.php:113 -#: ../../mobile/operation/modules.php:715 ../../mobile/operation/modules.php:718 -#: ../../mobile/operation/modules.php:719 ../../mobile/operation/modules.php:720 -#: ../../mobile/operation/modules.php:721 ../../mobile/operation/modules.php:722 -#: ../../mobile/operation/modules.php:723 ../../mobile/operation/modules.php:724 -#: ../../mobile/operation/modules.php:725 ../../mobile/operation/modules.php:727 -#: ../../mobile/operation/modules.php:730 ../../mobile/operation/modules.php:731 -#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:733 -#: ../../mobile/operation/modules.php:734 ../../mobile/operation/modules.php:735 -#: ../../mobile/operation/modules.php:736 ../../mobile/operation/modules.php:737 -#: ../../mobile/operation/modules.php:853 -#: ../../include/functions_reporting_html.php:2357 -#: ../../include/functions_reporting_html.php:2836 -#: ../../include/functions_reporting_html.php:2840 -#: ../../include/functions_reporting_html.php:2841 -#: ../../include/functions_reporting_html.php:2845 -#: ../../include/functions_reporting_html.php:2850 -#: ../../include/functions_reporting_html.php:2855 -#: ../../include/functions_reporting_html.php:2859 +#: ../../mobile/operation/modules.php:726 ../../mobile/operation/modules.php:730 +#: ../../mobile/operation/modules.php:731 ../../mobile/operation/modules.php:732 +#: ../../mobile/operation/modules.php:733 ../../mobile/operation/modules.php:734 +#: ../../mobile/operation/modules.php:735 ../../mobile/operation/modules.php:737 +#: ../../mobile/operation/modules.php:740 ../../mobile/operation/modules.php:741 +#: ../../mobile/operation/modules.php:742 ../../mobile/operation/modules.php:743 +#: ../../mobile/operation/modules.php:744 ../../mobile/operation/modules.php:745 +#: ../../mobile/operation/modules.php:749 ../../mobile/operation/modules.php:750 +#: ../../mobile/operation/modules.php:751 ../../mobile/operation/modules.php:752 +#: ../../mobile/operation/modules.php:753 ../../mobile/operation/modules.php:754 +#: ../../mobile/operation/modules.php:755 ../../mobile/operation/modules.php:756 +#: ../../mobile/operation/modules.php:758 ../../mobile/operation/modules.php:761 +#: ../../mobile/operation/modules.php:762 ../../mobile/operation/modules.php:763 +#: ../../mobile/operation/modules.php:764 ../../mobile/operation/modules.php:765 +#: ../../mobile/operation/modules.php:766 ../../mobile/operation/modules.php:767 +#: ../../mobile/operation/modules.php:768 ../../mobile/operation/modules.php:912 +#: ../../mobile/operation/module_data.php:164 +#: ../../include/functions_reporting_html.php:2378 #: ../../include/functions_reporting_html.php:2864 -#: ../../include/functions_reporting_html.php:2871 -#: ../../include/functions_reporting_html.php:2921 -#: ../../include/functions_reporting_html.php:2995 -#: ../../include/ajax/module.php:1005 ../../include/ajax/custom_fields.php:412 -#: ../../include/functions_graph.php:3504 ../../include/functions_netflow.php:301 -#: ../../include/functions_reporting.php:4729 -#: ../../include/functions_reporting.php:4770 +#: ../../include/functions_reporting_html.php:2868 +#: ../../include/functions_reporting_html.php:2869 +#: ../../include/functions_reporting_html.php:2873 +#: ../../include/functions_reporting_html.php:2878 +#: ../../include/functions_reporting_html.php:2883 +#: ../../include/functions_reporting_html.php:2887 +#: ../../include/functions_reporting_html.php:2892 +#: ../../include/functions_reporting_html.php:2899 +#: ../../include/functions_reporting_html.php:2949 +#: ../../include/functions_reporting_html.php:3023 +#: ../../include/ajax/heatmap.ajax.php:336 ../../include/ajax/module.php:1028 +#: ../../include/ajax/custom_fields.php:412 +#: ../../include/functions_graph.php:3514 ../../include/functions_netflow.php:301 +#: ../../include/functions_reporting.php:4738 +#: ../../include/functions_reporting.php:4779 #: ../../include/functions_events.php:218 ../../include/functions_events.php:301 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1590 +#: ../../operation/agentes/status_monitor.php:1592 #: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/search_modules.php:38 +#: ../../operation/search_modules.php:41 msgid "Data" msgstr "Datos" @@ -7945,7 +8075,7 @@ msgstr "Colección de ficheros creada correctamente" #: ../../enterprise/godmode/agentes/collections.editor.php:74 #: ../../enterprise/godmode/agentes/collections.editor.php:463 #: ../../enterprise/include/functions_collection.php:186 -#: ../../operation/agentes/ver_agente.php:1679 +#: ../../operation/agentes/ver_agente.php:1675 msgid "Files" msgstr "Archivos" @@ -8051,7 +8181,7 @@ msgstr "Error al mover los datos de aprovisionamiento personalizado" #: ../../enterprise/godmode/agentes/collections.editor.php:179 #: ../../enterprise/godmode/agentes/collections.editor.php:245 #: ../../godmode/servers/plugin.php:171 -#: ../../include/functions_filemanager.php:776 +#: ../../include/functions_filemanager.php:791 msgid "Edit file" msgstr "Editar archivo" @@ -8137,27 +8267,28 @@ msgstr "Para hacer una copia de seguridad, debe tener mysquldump en la consola." #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4037 #: ../../enterprise/godmode/wizards/consoletask_js.php:41 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4410 -#: ../../enterprise/operation/log/log_viewer.php:1195 -#: ../../enterprise/operation/log/log_viewer.php:1210 +#: ../../enterprise/operation/log/log_viewer.php:1193 +#: ../../enterprise/operation/log/log_viewer.php:1208 #: ../../enterprise/operation/services/services.treeview_services.php:410 #: ../../extensions/insert_data.php:279 -#: ../../godmode/agentes/planned_downtime.editor.php:2011 +#: ../../godmode/agentes/planned_downtime.editor.php:2007 #: ../../godmode/alerts/configure_alert_template.php:1506 #: ../../godmode/alerts/configure_alert_template.php:1590 -#: ../../godmode/setup/news.php:431 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5162 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:737 -#: ../../operation/tree.php:625 ../../operation/agentes/stat_win.php:585 -#: ../../operation/agentes/interface_traffic_graph_win.php:436 -#: ../../operation/agentes/datos_agente.php:312 -#: ../../operation/agentes/estado_monitores.php:464 +#: ../../godmode/setup/news.php:430 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5171 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:730 +#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:601 +#: ../../operation/agentes/interface_traffic_graph_win.php:445 +#: ../../operation/agentes/datos_agente.php:314 +#: ../../operation/agentes/estado_monitores.php:461 #: ../../operation/network/network_report.php:457 #: ../../operation/network/network_usage_map.php:294 -#: ../../operation/netflow/nf_live_view.php:865 +#: ../../operation/netflow/nf_live_view.php:976 +#: ../../operation/search_modules.php:353 #: ../../operation/reporting/reporting_viewer.php:360 #: ../../operation/reporting/reporting_viewer.php:379 #: ../../operation/reporting/graph_viewer.php:466 -#: ../../operation/events/events.php:3223 +#: ../../operation/events/events.php:3282 msgid "Choose time" msgstr "Seleccionar hora" @@ -8169,28 +8300,29 @@ msgstr "Seleccionar hora" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4101 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4411 #: ../../enterprise/include/lib/Metaconsole/Node.php:539 -#: ../../enterprise/operation/log/log_viewer.php:1196 -#: ../../enterprise/operation/log/log_viewer.php:1211 +#: ../../enterprise/operation/log/log_viewer.php:1194 +#: ../../enterprise/operation/log/log_viewer.php:1209 #: ../../enterprise/operation/services/services.treeview_services.php:411 #: ../../extensions/insert_data.php:280 -#: ../../godmode/agentes/planned_downtime.editor.php:2012 +#: ../../godmode/agentes/planned_downtime.editor.php:2008 #: ../../godmode/alerts/configure_alert_template.php:1507 #: ../../godmode/alerts/configure_alert_template.php:1591 -#: ../../godmode/setup/news.php:432 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5163 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:738 -#: ../../operation/tree.php:626 ../../operation/agentes/stat_win.php:586 -#: ../../operation/agentes/interface_traffic_graph_win.php:437 -#: ../../operation/agentes/datos_agente.php:313 -#: ../../operation/agentes/estado_monitores.php:465 +#: ../../godmode/setup/news.php:431 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5172 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:731 +#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:602 +#: ../../operation/agentes/interface_traffic_graph_win.php:446 +#: ../../operation/agentes/datos_agente.php:315 +#: ../../operation/agentes/estado_monitores.php:462 #: ../../operation/network/network_report.php:458 #: ../../operation/network/network_usage_map.php:295 -#: ../../operation/netflow/nf_live_view.php:866 +#: ../../operation/netflow/nf_live_view.php:977 +#: ../../operation/search_modules.php:354 #: ../../operation/reporting/reporting_viewer.php:361 #: ../../operation/reporting/reporting_viewer.php:380 #: ../../operation/reporting/graph_viewer.php:333 #: ../../operation/reporting/graph_viewer.php:467 -#: ../../operation/events/events.php:3224 +#: ../../operation/events/events.php:3283 msgid "Time" msgstr "Hora" @@ -8201,28 +8333,29 @@ msgstr "Hora" #: ../../enterprise/godmode/wizards/consoletask_js.php:43 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4102 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4412 -#: ../../enterprise/operation/log/log_viewer.php:1197 -#: ../../enterprise/operation/log/log_viewer.php:1212 +#: ../../enterprise/operation/log/log_viewer.php:1195 +#: ../../enterprise/operation/log/log_viewer.php:1210 #: ../../enterprise/operation/services/services.treeview_services.php:412 #: ../../extensions/insert_data.php:281 -#: ../../godmode/agentes/planned_downtime.editor.php:2013 +#: ../../godmode/agentes/planned_downtime.editor.php:2009 #: ../../godmode/alerts/configure_alert_template.php:1508 #: ../../godmode/alerts/configure_alert_template.php:1592 -#: ../../godmode/setup/news.php:433 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5164 -#: ../../include/functions_html.php:2319 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:739 -#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:587 -#: ../../operation/agentes/interface_traffic_graph_win.php:438 -#: ../../operation/agentes/datos_agente.php:314 -#: ../../operation/agentes/estado_monitores.php:466 +#: ../../godmode/setup/news.php:432 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5173 +#: ../../include/functions_html.php:2334 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:732 +#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:603 +#: ../../operation/agentes/interface_traffic_graph_win.php:447 +#: ../../operation/agentes/datos_agente.php:316 +#: ../../operation/agentes/estado_monitores.php:463 #: ../../operation/network/network_report.php:459 #: ../../operation/network/network_usage_map.php:296 -#: ../../operation/netflow/nf_live_view.php:867 +#: ../../operation/netflow/nf_live_view.php:978 +#: ../../operation/search_modules.php:355 #: ../../operation/reporting/reporting_viewer.php:362 #: ../../operation/reporting/reporting_viewer.php:381 #: ../../operation/reporting/graph_viewer.php:468 -#: ../../operation/events/events.php:3225 +#: ../../operation/events/events.php:3284 msgid "Hour" msgstr "Hora" @@ -8233,28 +8366,29 @@ msgstr "Hora" #: ../../enterprise/godmode/wizards/consoletask_js.php:44 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4103 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4413 -#: ../../enterprise/operation/log/log_viewer.php:1198 -#: ../../enterprise/operation/log/log_viewer.php:1213 +#: ../../enterprise/operation/log/log_viewer.php:1196 +#: ../../enterprise/operation/log/log_viewer.php:1211 #: ../../enterprise/operation/services/services.treeview_services.php:413 #: ../../extensions/insert_data.php:282 -#: ../../godmode/agentes/planned_downtime.editor.php:2014 +#: ../../godmode/agentes/planned_downtime.editor.php:2010 #: ../../godmode/alerts/configure_alert_template.php:1509 #: ../../godmode/alerts/configure_alert_template.php:1593 -#: ../../godmode/setup/news.php:434 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5165 -#: ../../include/functions_html.php:2320 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:740 -#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:588 -#: ../../operation/agentes/interface_traffic_graph_win.php:439 -#: ../../operation/agentes/datos_agente.php:315 -#: ../../operation/agentes/estado_monitores.php:467 +#: ../../godmode/setup/news.php:433 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5174 +#: ../../include/functions_html.php:2335 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:733 +#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:604 +#: ../../operation/agentes/interface_traffic_graph_win.php:448 +#: ../../operation/agentes/datos_agente.php:317 +#: ../../operation/agentes/estado_monitores.php:464 #: ../../operation/network/network_report.php:460 #: ../../operation/network/network_usage_map.php:297 -#: ../../operation/netflow/nf_live_view.php:868 +#: ../../operation/netflow/nf_live_view.php:979 +#: ../../operation/search_modules.php:356 #: ../../operation/reporting/reporting_viewer.php:363 #: ../../operation/reporting/reporting_viewer.php:382 #: ../../operation/reporting/graph_viewer.php:469 -#: ../../operation/events/events.php:3226 +#: ../../operation/events/events.php:3285 msgid "Minute" msgstr "Minuto" @@ -8265,27 +8399,28 @@ msgstr "Minuto" #: ../../enterprise/godmode/wizards/consoletask_js.php:45 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4104 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4414 -#: ../../enterprise/operation/log/log_viewer.php:1199 -#: ../../enterprise/operation/log/log_viewer.php:1214 +#: ../../enterprise/operation/log/log_viewer.php:1197 +#: ../../enterprise/operation/log/log_viewer.php:1212 #: ../../enterprise/operation/services/services.treeview_services.php:414 #: ../../extensions/insert_data.php:283 -#: ../../godmode/agentes/planned_downtime.editor.php:2015 +#: ../../godmode/agentes/planned_downtime.editor.php:2011 #: ../../godmode/alerts/configure_alert_template.php:1510 #: ../../godmode/alerts/configure_alert_template.php:1594 -#: ../../godmode/setup/news.php:435 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5166 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:741 -#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:589 -#: ../../operation/agentes/interface_traffic_graph_win.php:440 -#: ../../operation/agentes/datos_agente.php:316 -#: ../../operation/agentes/estado_monitores.php:468 +#: ../../godmode/setup/news.php:434 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5175 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:734 +#: ../../operation/tree.php:631 ../../operation/agentes/stat_win.php:605 +#: ../../operation/agentes/interface_traffic_graph_win.php:449 +#: ../../operation/agentes/datos_agente.php:318 +#: ../../operation/agentes/estado_monitores.php:465 #: ../../operation/network/network_report.php:461 #: ../../operation/network/network_usage_map.php:298 -#: ../../operation/netflow/nf_live_view.php:869 +#: ../../operation/netflow/nf_live_view.php:980 +#: ../../operation/search_modules.php:357 #: ../../operation/reporting/reporting_viewer.php:364 #: ../../operation/reporting/reporting_viewer.php:383 #: ../../operation/reporting/graph_viewer.php:470 -#: ../../operation/events/events.php:3227 +#: ../../operation/events/events.php:3286 msgid "Second" msgstr "Segundo" @@ -8296,36 +8431,37 @@ msgstr "Segundo" #: ../../enterprise/godmode/wizards/consoletask_js.php:46 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4105 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4415 -#: ../../enterprise/operation/log/log_viewer.php:1200 -#: ../../enterprise/operation/log/log_viewer.php:1215 +#: ../../enterprise/operation/log/log_viewer.php:1198 +#: ../../enterprise/operation/log/log_viewer.php:1213 #: ../../enterprise/operation/services/services.treeview_services.php:415 #: ../../extensions/insert_data.php:284 -#: ../../godmode/agentes/planned_downtime.editor.php:2016 +#: ../../godmode/agentes/planned_downtime.editor.php:2012 #: ../../godmode/alerts/configure_alert_template.php:1511 #: ../../godmode/alerts/configure_alert_template.php:1595 -#: ../../godmode/setup/news.php:436 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5167 +#: ../../godmode/setup/news.php:435 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5176 #: ../../include/functions.php:515 ../../include/functions.php:646 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:742 -#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:590 -#: ../../operation/agentes/interface_traffic_graph_win.php:441 -#: ../../operation/agentes/datos_agente.php:317 -#: ../../operation/agentes/estado_monitores.php:469 -#: ../../operation/agentes/agent_inventory.php:133 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:735 +#: ../../operation/tree.php:632 ../../operation/agentes/stat_win.php:606 +#: ../../operation/agentes/interface_traffic_graph_win.php:450 +#: ../../operation/agentes/datos_agente.php:319 +#: ../../operation/agentes/estado_monitores.php:466 +#: ../../operation/agentes/agent_inventory.php:141 #: ../../operation/network/network_report.php:462 #: ../../operation/network/network_usage_map.php:299 -#: ../../operation/netflow/nf_live_view.php:870 +#: ../../operation/netflow/nf_live_view.php:981 +#: ../../operation/search_modules.php:358 #: ../../operation/reporting/reporting_viewer.php:365 #: ../../operation/reporting/reporting_viewer.php:384 #: ../../operation/reporting/graph_viewer.php:471 -#: ../../operation/events/events.php:3228 +#: ../../operation/events/events.php:3287 msgid "Now" msgstr "Ahora" #: ../../enterprise/meta/advanced/metasetup.setup.php:78 #: ../../enterprise/godmode/modules/configure_local_component.php:166 #: ../../godmode/modules/manage_network_components_form_common.php:52 -#: ../../godmode/users/configure_user.php:1405 +#: ../../godmode/users/configure_user.php:1454 #: ../../godmode/alerts/alert_commands.php:143 #: ../../godmode/alerts/alert_commands.php:184 #: ../../godmode/alerts/configure_alert_template.php:953 @@ -8350,17 +8486,17 @@ msgstr "Contraseña («hash») de inicio de sesión automático" #: ../../enterprise/meta/advanced/metasetup.setup.php:110 #: ../../godmode/setup/setup_general.php:58 ../../mobile/operation/events.php:248 #: ../../include/functions_reporting_html.php:1142 -#: ../../include/functions_reporting_html.php:2701 +#: ../../include/functions_reporting_html.php:2720 #: ../../include/functions.php:1291 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:434 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:430 #: ../../include/functions_events.php:2609 -#: ../../include/functions_events.php:3162 ../../operation/events/events.php:833 +#: ../../include/functions_events.php:3167 ../../operation/events/events.php:838 msgid "System" msgstr "Sistema" #: ../../enterprise/meta/advanced/metasetup.setup.php:111 -#: ../../godmode/setup/setup_general.php:59 ../../include/functions_menu.php:937 +#: ../../godmode/setup/setup_general.php:59 ../../include/functions_menu.php:942 msgid "Database" msgstr "Base de datos" @@ -8420,7 +8556,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:192 #: ../../enterprise/godmode/setup/setup_auth.php:353 #: ../../godmode/setup/setup_general.php:80 -#: ../../include/functions_visual_map_editor.php:290 +#: ../../include/functions_visual_map_editor.php:286 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271 #: ../../include/functions_register.php:134 msgid "Africa" @@ -8429,7 +8565,7 @@ msgstr "África" #: ../../enterprise/meta/advanced/metasetup.setup.php:193 #: ../../enterprise/godmode/setup/setup_auth.php:354 #: ../../godmode/setup/setup_general.php:81 -#: ../../include/functions_visual_map_editor.php:291 +#: ../../include/functions_visual_map_editor.php:287 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272 #: ../../include/functions_register.php:135 msgid "America" @@ -8438,7 +8574,7 @@ msgstr "América" #: ../../enterprise/meta/advanced/metasetup.setup.php:194 #: ../../enterprise/godmode/setup/setup_auth.php:355 #: ../../godmode/setup/setup_general.php:82 -#: ../../include/functions_visual_map_editor.php:292 +#: ../../include/functions_visual_map_editor.php:288 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273 #: ../../include/functions_register.php:136 msgid "Antarctica" @@ -8447,7 +8583,7 @@ msgstr "Antártida" #: ../../enterprise/meta/advanced/metasetup.setup.php:195 #: ../../enterprise/godmode/setup/setup_auth.php:356 #: ../../godmode/setup/setup_general.php:83 -#: ../../include/functions_visual_map_editor.php:293 +#: ../../include/functions_visual_map_editor.php:289 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274 #: ../../include/functions_register.php:137 msgid "Arctic" @@ -8456,7 +8592,7 @@ msgstr "Ártico" #: ../../enterprise/meta/advanced/metasetup.setup.php:196 #: ../../enterprise/godmode/setup/setup_auth.php:357 #: ../../godmode/setup/setup_general.php:84 -#: ../../include/functions_visual_map_editor.php:294 +#: ../../include/functions_visual_map_editor.php:290 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275 #: ../../include/functions_register.php:138 msgid "Asia" @@ -8465,7 +8601,7 @@ msgstr "Asia" #: ../../enterprise/meta/advanced/metasetup.setup.php:197 #: ../../enterprise/godmode/setup/setup_auth.php:358 #: ../../godmode/setup/setup_general.php:85 -#: ../../include/functions_visual_map_editor.php:295 +#: ../../include/functions_visual_map_editor.php:291 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276 #: ../../include/functions_register.php:139 msgid "Atlantic" @@ -8474,7 +8610,7 @@ msgstr "Atlántico" #: ../../enterprise/meta/advanced/metasetup.setup.php:198 #: ../../enterprise/godmode/setup/setup_auth.php:359 #: ../../godmode/setup/setup_general.php:86 -#: ../../include/functions_visual_map_editor.php:296 +#: ../../include/functions_visual_map_editor.php:292 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277 #: ../../include/functions_register.php:140 msgid "Australia" @@ -8483,7 +8619,7 @@ msgstr "Australia" #: ../../enterprise/meta/advanced/metasetup.setup.php:199 #: ../../enterprise/godmode/setup/setup_auth.php:360 #: ../../godmode/setup/setup_general.php:87 -#: ../../include/functions_visual_map_editor.php:297 +#: ../../include/functions_visual_map_editor.php:293 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278 #: ../../include/functions_register.php:141 msgid "Europe" @@ -8492,7 +8628,7 @@ msgstr "Europa" #: ../../enterprise/meta/advanced/metasetup.setup.php:200 #: ../../enterprise/godmode/setup/setup_auth.php:361 #: ../../godmode/setup/setup_general.php:88 -#: ../../include/functions_visual_map_editor.php:298 +#: ../../include/functions_visual_map_editor.php:294 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279 #: ../../include/functions_register.php:142 msgid "Indian" @@ -8501,7 +8637,7 @@ msgstr "Índico" #: ../../enterprise/meta/advanced/metasetup.setup.php:201 #: ../../enterprise/godmode/setup/setup_auth.php:362 #: ../../godmode/setup/setup_general.php:89 -#: ../../include/functions_visual_map_editor.php:299 +#: ../../include/functions_visual_map_editor.php:295 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280 #: ../../include/functions_register.php:143 msgid "Pacific" @@ -8510,7 +8646,7 @@ msgstr "Pacífico" #: ../../enterprise/meta/advanced/metasetup.setup.php:202 #: ../../enterprise/godmode/setup/setup_auth.php:363 #: ../../godmode/setup/setup_general.php:90 -#: ../../include/functions_visual_map_editor.php:300 +#: ../../include/functions_visual_map_editor.php:296 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281 #: ../../include/functions_register.php:144 msgid "UTC" @@ -8523,7 +8659,6 @@ msgstr "Cambiar zona horaria" #: ../../enterprise/meta/advanced/metasetup.setup.php:232 #: ../../enterprise/meta/include/functions_meta.php:161 -#: ../../godmode/setup/setup_general.php:434 #: ../../include/functions_register.php:164 #: ../../include/functions_config.php:283 msgid "Timezone setup" @@ -8567,9 +8702,9 @@ msgstr "Forzar usando la URL pública definida." #: ../../enterprise/meta/advanced/metasetup.setup.php:306 #: ../../godmode/setup/setup_sflow.php:75 -#: ../../godmode/setup/setup_netflow.php:75 -#: ../../include/functions_config.php:1560 -#: ../../include/functions_config.php:1603 +#: ../../godmode/setup/setup_netflow.php:71 +#: ../../include/functions_config.php:1572 +#: ../../include/functions_config.php:1615 msgid "Disable custom live view filters" msgstr "Desactiva los filtros de vista activa personalizados" @@ -8634,7 +8769,7 @@ msgstr "Habilitar actualización de Warp" #: ../../enterprise/meta/advanced/metasetup.setup.php:437 #: ../../enterprise/meta/include/functions_meta.php:276 #: ../../enterprise/godmode/setup/setup.php:106 -#: ../../include/functions_config.php:442 +#: ../../include/functions_config.php:450 msgid "Size of collection" msgstr "Tamaño de la colección" @@ -8695,16 +8830,19 @@ msgstr "Localización de logs: pandora_console/log/audit.log" #: ../../enterprise/meta/advanced/metasetup.setup.php:598 #: ../../enterprise/meta/include/functions_meta.php:326 #: ../../godmode/setup/setup_general.php:698 -#: ../../include/functions_config.php:386 +#: ../../include/functions_config.php:390 msgid "Enable console report" msgstr "Habilitar informe de consola" #: ../../enterprise/meta/advanced/metasetup.setup.php:605 #: ../../enterprise/meta/include/functions_meta.php:346 +#: ../../godmode/setup/setup_general.php:708 +#: ../../include/functions_config.php:394 msgid "Check conexion interval" msgstr "Comprobar intervalo de conexión" #: ../../enterprise/meta/advanced/metasetup.setup.php:616 +#: ../../godmode/setup/setup_general.php:719 msgid "" "If there are any "In process" events with a specific Extra ID and a " "New event with that Extra ID is received, it will be created as "In " @@ -8716,12 +8854,13 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:639 #: ../../enterprise/meta/include/functions_meta.php:336 +#: ../../godmode/setup/setup_general.php:724 msgid "Keep In process status for new events with extra ID" -msgstr "Mantener en proceso el estado para nuevos eventos con ID adicional" +msgstr "Mantener el estado En proceso para nuevos eventos con ID adicional" #: ../../enterprise/meta/advanced/policymanager.sync.php:247 #: ../../enterprise/meta/include/functions_groups_meta.php:174 -#: ../../godmode/groups/group_list.php:664 +#: ../../godmode/groups/group_list.php:665 #, php-format msgid "Error connecting to %s" msgstr "Error al conectar con %s" @@ -8782,23 +8921,23 @@ msgstr "%s alertas de políticas eliminadas correctamente" #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 #: ../../enterprise/include/class/LogSource.class.php:602 -#: ../../enterprise/operation/log/log_viewer.php:793 +#: ../../enterprise/operation/log/log_viewer.php:791 #: ../../godmode/massive/massive_copy_modules.php:144 #: ../../godmode/reporting/reporting_builder.item_editor.php:1677 -#: ../../godmode/events/event_edit_filter.php:797 +#: ../../godmode/events/event_edit_filter.php:799 #: ../../godmode/events/custom_events.php:107 #: ../../include/functions_events.php:212 ../../include/functions_events.php:283 -#: ../../include/functions_events.php:4554 -#: ../../include/functions_events.php:4636 +#: ../../include/functions_events.php:4559 +#: ../../include/functions_events.php:4641 #: ../../operation/agentes/log_sources_status.php:56 #: ../../operation/agentes/pandora_networkmap.editor.php:425 #: ../../operation/agentes/pandora_networkmap.view.php:173 -#: ../../operation/events/events.php:1886 +#: ../../operation/events/events.php:1940 msgid "Source" msgstr "Origen" #: ../../enterprise/meta/advanced/policymanager.sync.php:308 -#: ../../extensions/dbmanager.php:191 ../../include/lib/Dashboard/Widget.php:610 +#: ../../extensions/dbmanager.php:191 ../../include/lib/Dashboard/Widget.php:611 msgid "This metaconsole" msgstr "Esta Metaconsola" @@ -8808,26 +8947,26 @@ msgstr "Esta Metaconsola" #: ../../enterprise/extensions/resource_exportation/functions.php:35 #: ../../enterprise/godmode/agentes/collection_manager.php:260 #: ../../enterprise/godmode/agentes/plugins_manager.php:213 -#: ../../enterprise/godmode/policies/policy_queue.php:286 -#: ../../enterprise/godmode/policies/policy_queue.php:685 +#: ../../enterprise/godmode/policies/policy_queue.php:288 +#: ../../enterprise/godmode/policies/policy_queue.php:687 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:114 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462 #: ../../enterprise/include/functions_policies.php:4043 #: ../../enterprise/operation/agentes/policy_view.php:67 #: ../../enterprise/operation/agentes/collection_view.php:83 -#: ../../godmode/agentes/status_monitor_custom_fields.php:73 -#: ../../godmode/agentes/status_monitor_custom_fields.php:140 +#: ../../godmode/agentes/status_monitor_custom_fields.php:93 +#: ../../godmode/agentes/status_monitor_custom_fields.php:160 #: ../../godmode/agentes/inventory_manager.php:232 #: ../../godmode/agentes/module_manager.php:619 #: ../../godmode/alerts/alert_view.php:154 -#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:999 -#: ../../operation/agentes/alerts_status.php:249 +#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:1022 #: ../../operation/agentes/alerts_status.php:250 -#: ../../operation/agentes/status_monitor.php:1531 +#: ../../operation/agentes/alerts_status.php:251 +#: ../../operation/agentes/status_monitor.php:1533 msgid "Policy" msgstr "Política" @@ -8876,12 +9015,12 @@ msgstr "Ejectuado:" #: ../../enterprise/operation/agentes/wux_console_view.php:342 #: ../../enterprise/operation/agentes/wux_console_view.php:363 #: ../../godmode/setup/performance.php:193 -#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:199 +#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:208 msgid "ago" msgstr "hace" #: ../../enterprise/meta/advanced/metasetup.performance.php:112 -#: ../../godmode/menu.php:363 ../../godmode/setup/setup.php:125 +#: ../../godmode/menu.php:361 ../../godmode/setup/setup.php:125 #: ../../godmode/setup/setup.php:279 msgid "Performance" msgstr "Rendimiento" @@ -8899,13 +9038,13 @@ msgstr "Usar estadísticas en tiempo real" #: ../../enterprise/meta/advanced/metasetup.performance.php:139 #: ../../enterprise/meta/include/functions_meta.php:2030 -#: ../../godmode/setup/performance.php:293 ../../include/functions_config.php:842 +#: ../../godmode/setup/performance.php:293 ../../include/functions_config.php:854 msgid "Max. days before delete audit events" msgstr "Nº max. de días antes de borrar eventos de auditoría interna" #: ../../enterprise/meta/advanced/metasetup.performance.php:154 #: ../../enterprise/meta/include/functions_meta.php:2040 -#: ../../godmode/setup/performance.php:637 ../../include/functions_config.php:882 +#: ../../godmode/setup/performance.php:637 ../../include/functions_config.php:894 msgid "Default hours for event view" msgstr "Nº de horas predeterminado para la visualización de eventos" @@ -8932,26 +9071,26 @@ msgid "maximum number of events to be displayed per node" msgstr "Número máximo de eventos a mostrar por nodo" #: ../../enterprise/meta/advanced/metasetup.performance.php:211 -#: ../../godmode/setup/performance.php:761 ../../include/functions_config.php:944 +#: ../../godmode/setup/performance.php:761 ../../include/functions_config.php:956 msgid "Row limit in csv log" msgstr "Límite de líneas en log CSV" #: ../../enterprise/meta/advanced/metasetup.performance.php:226 #: ../../enterprise/meta/include/functions_meta.php:2103 -#: ../../godmode/setup/performance.php:425 ../../include/functions_config.php:918 +#: ../../godmode/setup/performance.php:425 ../../include/functions_config.php:930 msgid "Max. macro data fields" msgstr "Nº máx. de campos de macro de datos" #: ../../enterprise/meta/advanced/metasetup.performance.php:241 #: ../../enterprise/meta/include/functions_meta.php:2113 -#: ../../godmode/setup/performance.php:601 ../../include/functions_config.php:874 +#: ../../godmode/setup/performance.php:601 ../../include/functions_config.php:886 msgid "Limit of events per query" msgstr "Límite de eventos por consulta" #: ../../enterprise/meta/advanced/metasetup.performance.php:255 #: ../../enterprise/meta/include/functions_meta.php:2123 #: ../../godmode/setup/performance.php:338 -#: ../../godmode/setup/performance.php:470 ../../include/functions_config.php:850 +#: ../../godmode/setup/performance.php:470 ../../include/functions_config.php:862 msgid "Max. days before purge" msgstr "Máx. días antes de purga de datos" @@ -9009,7 +9148,7 @@ msgid "To manage collections you must activate centralized management" msgstr "Para administrar colecciones, active la gestión centralizada" #: ../../enterprise/meta/advanced/collections.php:227 -#: ../../godmode/users/user_list.php:488 ../../godmode/users/user_list.php:493 +#: ../../godmode/users/user_list.php:489 ../../godmode/users/user_list.php:494 msgid "Search by username, fullname or email" msgstr "Buscar por nombre de usuario, nombre completo o email" @@ -9024,7 +9163,7 @@ msgstr "Error: el directorio principal de las colecciones no existe" #: ../../enterprise/include/functions_groups.php:81 #: ../../enterprise/operation/agentes/ver_agente.php:210 #: ../../godmode/agentes/configurar_agente.php:716 -#: ../../operation/agentes/ver_agente.php:1856 +#: ../../operation/agentes/ver_agente.php:1852 msgid "Collection" msgstr "Colección" @@ -9038,7 +9177,7 @@ msgstr "Nombre corto" #: ../../enterprise/meta/advanced/collections.php:442 #: ../../enterprise/godmode/agentes/collections.php:537 -#: ../../operation/agentes/status_monitor.php:2257 +#: ../../operation/agentes/status_monitor.php:2259 msgid "Are you sure to delete?" msgstr "¿Estás seguro de que quieres eliminarlo?" @@ -9092,12 +9231,12 @@ msgid "There are no collections defined yet." msgstr "No hay colecciones definidas todavía." #: ../../enterprise/meta/advanced/policymanager.queue.php:58 -#: ../../enterprise/godmode/policies/policy_queue.php:96 +#: ../../enterprise/godmode/policies/policy_queue.php:98 msgid "Operation successfully deleted from the queue" msgstr "Operación eliminada correctamente de la cola" #: ../../enterprise/meta/advanced/policymanager.queue.php:59 -#: ../../enterprise/godmode/policies/policy_queue.php:97 +#: ../../enterprise/godmode/policies/policy_queue.php:99 msgid "Operation cannot be deleted from the queue" msgstr "La operación no puede ser eliminada de la cola." @@ -9105,42 +9244,42 @@ msgstr "La operación no puede ser eliminada de la cola." #: ../../enterprise/meta/advanced/policymanager.queue.php:259 #: ../../enterprise/meta/include/functions_autoprovision.php:698 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:501 -#: ../../enterprise/godmode/policies/policy_queue.php:311 -#: ../../enterprise/godmode/policies/policy_queue.php:687 +#: ../../enterprise/godmode/policies/policy_queue.php:313 +#: ../../enterprise/godmode/policies/policy_queue.php:689 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3815 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:176 #: ../../enterprise/include/functions_reporting_csv.php:1064 #: ../../enterprise/include/class/CommandCenter.class.php:453 #: ../../extensions/api_checker.php:279 ../../godmode/extensions.php:169 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4642 -#: ../../include/functions_reporting_html.php:2460 -#: ../../include/functions_reporting_html.php:4959 -#: ../../include/functions_menu.php:675 -#: ../../include/class/ExternalTools.class.php:571 ../../general/main_menu.php:78 -#: ../../general/main_menu.php:85 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4651 +#: ../../include/functions_reporting_html.php:2481 +#: ../../include/functions_reporting_html.php:4987 +#: ../../include/functions_menu.php:679 +#: ../../include/class/ExternalTools.class.php:571 ../../general/main_menu.php:79 +#: ../../general/main_menu.php:86 msgid "Operation" msgstr "Operación" #: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/godmode/policies/policy_queue.php:305 +#: ../../enterprise/godmode/policies/policy_queue.php:307 msgid "Apply (database and files)" msgstr "Aplicar (base de datos y archivos)" #: ../../enterprise/meta/advanced/policymanager.queue.php:219 #: ../../enterprise/meta/advanced/policymanager.queue.php:315 -#: ../../enterprise/godmode/policies/policy_queue.php:306 -#: ../../enterprise/godmode/policies/policy_queue.php:758 +#: ../../enterprise/godmode/policies/policy_queue.php:308 +#: ../../enterprise/godmode/policies/policy_queue.php:762 msgid "Apply (only database)" msgstr "Aplicar (solo en la base de datos)" #: ../../enterprise/meta/advanced/policymanager.queue.php:229 -#: ../../enterprise/godmode/policies/policy_queue.php:330 +#: ../../enterprise/godmode/policies/policy_queue.php:332 msgid "Complete" msgstr "Completo" #: ../../enterprise/meta/advanced/policymanager.queue.php:230 -#: ../../enterprise/godmode/policies/policy_queue.php:331 +#: ../../enterprise/godmode/policies/policy_queue.php:333 msgid "Incomplete" msgstr "Incompleto" @@ -9151,13 +9290,13 @@ msgstr "Incompleto" #: ../../enterprise/godmode/agentes/collection_manager.php:94 #: ../../enterprise/godmode/agentes/collection_manager.php:95 #: ../../enterprise/godmode/agentes/collections.php:458 -#: ../../enterprise/godmode/policies/policy_modules.php:1494 -#: ../../enterprise/godmode/policies/policy_queue.php:356 +#: ../../enterprise/godmode/policies/policy_modules.php:1539 +#: ../../enterprise/godmode/policies/policy_queue.php:358 #: ../../enterprise/godmode/policies/policies.php:341 #: ../../enterprise/godmode/policies/policy_linking.php:152 #: ../../enterprise/godmode/policies/policy_external_alerts.php:393 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:274 #: ../../enterprise/godmode/setup/setup_acl.php:495 #: ../../enterprise/include/class/SAPView.class.php:409 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2928 @@ -9167,18 +9306,18 @@ msgstr "Incompleto" #: ../../enterprise/operation/services/services.treeview_services.php:164 #: ../../enterprise/operation/services/services.treeview_services.php:187 #: ../../enterprise/operation/services/services.list.php:482 -#: ../../extensions/agents_modules.php:665 ../../extensions/module_groups.php:305 +#: ../../extensions/agents_modules.php:673 ../../extensions/module_groups.php:305 #: ../../godmode/modules/manage_network_templates_form.php:277 #: ../../godmode/modules/manage_network_templates_form.php:337 -#: ../../godmode/modules/manage_network_components.php:697 -#: ../../godmode/groups/group_list.php:799 ../../godmode/users/user_list.php:521 -#: ../../godmode/users/user_list.php:522 +#: ../../godmode/modules/manage_network_components.php:700 +#: ../../godmode/groups/group_list.php:800 ../../godmode/users/user_list.php:522 +#: ../../godmode/users/user_list.php:523 #: ../../godmode/agentes/modificar_agente.php:397 #: ../../godmode/agentes/modificar_agente.php:412 #: ../../godmode/agentes/modificar_agente.php:413 #: ../../godmode/agentes/planned_downtime.list.php:647 #: ../../godmode/netflow/nf_item_list.php:174 -#: ../../godmode/netflow/nf_edit_form.php:238 +#: ../../godmode/netflow/nf_edit_form.php:283 #: ../../godmode/snmpconsole/snmp_alert.php:1797 #: ../../godmode/snmpconsole/snmp_filters.php:216 #: ../../godmode/snmpconsole/snmp_filters.php:314 @@ -9186,32 +9325,33 @@ msgstr "Incompleto" #: ../../godmode/reporting/map_builder.php:384 #: ../../godmode/reporting/graphs.php:283 #: ../../godmode/reporting/visual_console_favorite.php:204 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1120 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1122 #: ../../godmode/reporting/reporting_builder.php:766 -#: ../../godmode/tag/tag.php:247 ../../include/ajax/agent.php:652 -#: ../../include/functions_ui.php:3697 -#: ../../include/class/ModuleTemplates.class.php:713 ../../operation/tree.php:339 +#: ../../godmode/tag/tag.php:248 ../../include/ajax/agent.php:652 +#: ../../include/functions_ui.php:3745 +#: ../../include/class/ModuleTemplates.class.php:713 ../../operation/tree.php:341 #: ../../operation/agentes/estado_agente.php:444 #: ../../operation/agentes/graphs.php:270 #: ../../operation/agentes/interface_view.functions.php:134 -#: ../../operation/agentes/status_monitor.php:1034 -#: ../../operation/agentes/estado_monitores.php:626 +#: ../../operation/agentes/status_monitor.php:1036 +#: ../../operation/agentes/estado_monitores.php:620 +#: ../../operation/agentes/agent_inventory.php:165 #: ../../operation/network/network_report.php:205 #: ../../operation/network/network_usage_map.php:249 #: ../../operation/network/network_usage_map.php:250 -#: ../../operation/netflow/nf_live_view.php:273 -#: ../../operation/netflow/nf_live_view.php:605 -#: ../../operation/netflow/nf_live_view.php:606 +#: ../../operation/netflow/nf_live_view.php:282 +#: ../../operation/netflow/nf_live_view.php:678 +#: ../../operation/netflow/nf_live_view.php:679 #: ../../operation/incidents/list_integriaims_incidents.php:470 -#: ../../operation/inventory/inventory.php:704 +#: ../../operation/inventory/inventory.php:705 #: ../../operation/reporting/graph_viewer.php:399 msgid "Filter" msgstr "Filtro" #: ../../enterprise/meta/advanced/policymanager.queue.php:246 #: ../../enterprise/meta/agentsearch.php:111 -#: ../../godmode/alerts/alert_templates.php:357 -#: ../../godmode/alerts/alert_templates.php:358 +#: ../../godmode/alerts/alert_templates.php:361 +#: ../../godmode/alerts/alert_templates.php:362 msgid "Show Options" msgstr "Mostrar opciones" @@ -9229,21 +9369,21 @@ msgstr "Mostrar opciones" #: ../../enterprise/include/class/CSVImportAgents.class.php:157 #: ../../enterprise/include/class/SAPView.class.php:226 #: ../../enterprise/include/functions_events.php:216 -#: ../../enterprise/operation/log/log_viewer.php:749 -#: ../../godmode/modules/manage_network_components.php:775 +#: ../../enterprise/operation/log/log_viewer.php:747 +#: ../../godmode/modules/manage_network_components.php:778 #: ../../godmode/agentes/agent_manager.php:551 #: ../../godmode/agentes/module_manager.php:623 -#: ../../godmode/massive/massive_edit_agents.php:757 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1215 +#: ../../godmode/massive/massive_edit_agents.php:774 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1217 #: ../../godmode/reporting/reporting_builder.item_editor.php:1238 #: ../../godmode/reporting/reporting_builder.item_editor.php:1260 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3695 -#: ../../godmode/events/event_edit_filter.php:930 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3704 +#: ../../godmode/events/event_edit_filter.php:932 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1065 -#: ../../include/functions_reporting_html.php:2350 +#: ../../include/functions_reporting_html.php:2371 #: ../../include/class/AgentWizard.class.php:1282 -#: ../../operation/inventory/inventory.php:490 -#: ../../operation/events/events.php:1953 +#: ../../operation/inventory/inventory.php:492 +#: ../../operation/events/events.php:2007 msgid "Server" msgstr "Servidor" @@ -9253,11 +9393,11 @@ msgstr "Servidor" #: ../../enterprise/meta/monitoring/group_view.php:212 #: ../../enterprise/meta/include/functions_autoprovision.php:497 #: ../../enterprise/godmode/agentes/collections.agents.php:62 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123 #: ../../enterprise/godmode/agentes/collections.data.php:155 #: ../../enterprise/godmode/agentes/collections.data.php:321 #: ../../enterprise/godmode/agentes/collections.editor.php:83 -#: ../../enterprise/godmode/policies/policy_queue.php:686 +#: ../../enterprise/godmode/policies/policy_queue.php:688 #: ../../enterprise/godmode/policies/policies.php:438 #: ../../enterprise/godmode/policies/policies.php:603 #: ../../enterprise/godmode/policies/policy_agents.php:719 @@ -9274,8 +9414,8 @@ msgstr "Servidor" #: ../../enterprise/operation/services/massive/services.create.php:985 #: ../../enterprise/operation/services/massive/service.create.elements.php:379 #: ../../enterprise/operation/services/services.service_map.php:148 -#: ../../extensions/agents_modules.php:470 -#: ../../extensions/agents_modules.php:841 ../../godmode/groups/tactical.php:213 +#: ../../extensions/agents_modules.php:478 +#: ../../extensions/agents_modules.php:865 ../../godmode/groups/tactical.php:213 #: ../../godmode/agentes/planned_downtime.list.php:84 #: ../../godmode/agentes/planned_downtime.list.php:109 #: ../../godmode/massive/massive_standby_alerts.php:204 @@ -9292,34 +9432,34 @@ msgstr "Servidor" #: ../../godmode/reporting/reporting_builder.item_editor.php:2126 #: ../../godmode/reporting/visual_console_builder.wizard.php:430 #: ../../mobile/include/functions_web.php:23 -#: ../../mobile/operation/agents.php:204 ../../mobile/operation/home.php:81 -#: ../../mobile/operation/agent.php:155 -#: ../../include/functions_reporting_html.php:2094 -#: ../../include/functions_reporting_html.php:2566 -#: ../../include/functions_reporting_html.php:3349 -#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1685 -#: ../../include/functions_html.php:5914 +#: ../../mobile/operation/agents.php:205 ../../mobile/operation/home.php:81 +#: ../../mobile/operation/agent.php:161 +#: ../../include/functions_reporting_html.php:2115 +#: ../../include/functions_reporting_html.php:2587 +#: ../../include/functions_reporting_html.php:3377 +#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1693 +#: ../../include/functions_html.php:5938 #: ../../include/functions_massive_operations.php:217 -#: ../../include/class/Diagnostics.class.php:1184 #: ../../include/class/Diagnostics.class.php:1188 #: ../../include/class/Diagnostics.class.php:1192 #: ../../include/class/Diagnostics.class.php:1196 -#: ../../include/class/NetworkMap.class.php:3439 +#: ../../include/class/Diagnostics.class.php:1200 +#: ../../include/class/NetworkMap.class.php:3445 #: ../../include/class/AgentsAlerts.class.php:252 #: ../../include/class/AgentsAlerts.class.php:567 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:340 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:345 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:432 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:347 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:352 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:445 #: ../../include/functions_groups.php:53 ../../operation/heatmap.php:98 #: ../../operation/search_results.php:81 #: ../../operation/agentes/interface_view.functions.php:78 #: ../../operation/agentes/group_view.php:184 -#: ../../operation/agentes/group_view.php:234 +#: ../../operation/agentes/group_view.php:237 msgid "Agents" msgstr "Agentes" #: ../../enterprise/meta/advanced/policymanager.queue.php:260 -#: ../../enterprise/godmode/policies/policy_queue.php:688 +#: ../../enterprise/godmode/policies/policy_queue.php:690 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:712 #: ../../enterprise/include/class/Omnishell.class.php:408 #: ../../enterprise/include/functions_ipam.php:1425 @@ -9329,18 +9469,18 @@ msgid "Progress" msgstr "Progreso" #: ../../enterprise/meta/advanced/policymanager.queue.php:298 -#: ../../enterprise/godmode/policies/policy_queue.php:728 +#: ../../enterprise/godmode/policies/policy_queue.php:730 msgid "Policy " msgstr "Política " #: ../../enterprise/meta/advanced/policymanager.queue.php:339 -#: ../../enterprise/godmode/policies/policy_queue.php:788 -#: ../../enterprise/godmode/policies/policy_queue.php:797 +#: ../../enterprise/godmode/policies/policy_queue.php:792 +#: ../../enterprise/godmode/policies/policy_queue.php:801 msgid "Policy applying timeout" msgstr "Tiempo de espera de la aplicación de la política" #: ../../enterprise/meta/advanced/policymanager.queue.php:353 -#: ../../enterprise/godmode/policies/policy_queue.php:816 +#: ../../enterprise/godmode/policies/policy_queue.php:820 msgid "Delete from queue" msgstr "Eliminar de la cola" @@ -9418,17 +9558,17 @@ msgstr "Cola vacía" #: ../../enterprise/include/functions_services.php:1666 #: ../../enterprise/include/functions_events.php:80 #: ../../enterprise/operation/agentes/tag_view.php:693 -#: ../../enterprise/operation/log/log_viewer.php:770 +#: ../../enterprise/operation/log/log_viewer.php:768 #: ../../enterprise/tools/ipam/ipam_network.php:425 #: ../../enterprise/tools/ipam/ipam_ajax.php:382 #: ../../extensions/insert_data.php:194 #: ../../godmode/modules/manage_inventory_modules.php:317 -#: ../../godmode/agentes/status_monitor_custom_fields.php:77 -#: ../../godmode/agentes/status_monitor_custom_fields.php:141 +#: ../../godmode/agentes/status_monitor_custom_fields.php:97 +#: ../../godmode/agentes/status_monitor_custom_fields.php:161 #: ../../godmode/agentes/module_manager_editor_prediction.php:134 #: ../../godmode/agentes/planned_downtime.list.php:420 -#: ../../godmode/agentes/module_manager_editor_common.php:1475 -#: ../../godmode/agentes/module_manager_editor_common.php:1534 +#: ../../godmode/agentes/module_manager_editor_common.php:1485 +#: ../../godmode/agentes/module_manager_editor_common.php:1544 #: ../../godmode/gis_maps/configure_gis_map.php:592 #: ../../godmode/massive/massive_copy_modules.php:131 #: ../../godmode/massive/massive_copy_modules.php:295 @@ -9444,55 +9584,55 @@ msgstr "Cola vacía" #: ../../godmode/reporting/create_container.php:473 #: ../../godmode/reporting/create_container.php:657 #: ../../godmode/reporting/create_container.php:744 -#: ../../godmode/reporting/graph_builder.graph_editor.php:212 -#: ../../godmode/reporting/reporting_builder.item_editor.php:211 -#: ../../godmode/reporting/reporting_builder.item_editor.php:890 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1168 +#: ../../godmode/reporting/graph_builder.graph_editor.php:345 +#: ../../godmode/reporting/reporting_builder.item_editor.php:212 +#: ../../godmode/reporting/reporting_builder.item_editor.php:891 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1170 #: ../../godmode/reporting/reporting_builder.item_editor.php:1735 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4093 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4611 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4635 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4102 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4620 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4644 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.wizard.php:463 #: ../../godmode/reporting/visual_console_builder.wizard.php:789 #: ../../godmode/reporting/visual_console_builder.wizard.php:812 #: ../../godmode/servers/plugin.php:85 ../../mobile/operation/agents.php:93 -#: ../../mobile/operation/agents.php:403 ../../mobile/operation/modules.php:597 -#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335 -#: ../../mobile/operation/events.php:841 -#: ../../include/functions_visual_map_editor.php:422 -#: ../../include/functions_visual_map_editor.php:455 +#: ../../mobile/operation/agents.php:404 ../../mobile/operation/modules.php:608 +#: ../../mobile/operation/home.php:112 ../../mobile/operation/services.php:225 +#: ../../mobile/operation/events.php:870 +#: ../../include/functions_visual_map_editor.php:416 +#: ../../include/functions_visual_map_editor.php:449 #: ../../include/functions_reporting_html.php:548 #: ../../include/functions_reporting_html.php:947 #: ../../include/functions_reporting_html.php:1059 #: ../../include/functions_reporting_html.php:1067 -#: ../../include/functions_reporting_html.php:2016 -#: ../../include/functions_reporting_html.php:2353 -#: ../../include/functions_reporting_html.php:2458 -#: ../../include/functions_reporting_html.php:3312 -#: ../../include/functions_reporting_html.php:3447 -#: ../../include/functions_reporting_html.php:3741 -#: ../../include/functions_reporting_html.php:3822 -#: ../../include/functions_reporting_html.php:3830 -#: ../../include/functions_reporting_html.php:3839 -#: ../../include/functions_reporting_html.php:3851 -#: ../../include/functions_reporting_html.php:4011 -#: ../../include/functions_reporting_html.php:4135 -#: ../../include/functions_reporting_html.php:4229 -#: ../../include/functions_reporting_html.php:4956 -#: ../../include/functions_reporting_html.php:5004 -#: ../../include/functions_reporting_html.php:5043 -#: ../../include/functions_reporting_html.php:5371 -#: ../../include/functions_reporting_html.php:5411 -#: ../../include/functions_reporting_html.php:5661 -#: ../../include/ajax/heatmap.ajax.php:252 -#: ../../include/ajax/heatmap.ajax.php:291 -#: ../../include/ajax/heatmap.ajax.php:326 +#: ../../include/functions_reporting_html.php:2032 +#: ../../include/functions_reporting_html.php:2374 +#: ../../include/functions_reporting_html.php:2479 +#: ../../include/functions_reporting_html.php:3340 +#: ../../include/functions_reporting_html.php:3475 +#: ../../include/functions_reporting_html.php:3769 +#: ../../include/functions_reporting_html.php:3850 +#: ../../include/functions_reporting_html.php:3858 +#: ../../include/functions_reporting_html.php:3867 +#: ../../include/functions_reporting_html.php:3879 +#: ../../include/functions_reporting_html.php:4039 +#: ../../include/functions_reporting_html.php:4163 +#: ../../include/functions_reporting_html.php:4257 +#: ../../include/functions_reporting_html.php:4984 +#: ../../include/functions_reporting_html.php:5032 +#: ../../include/functions_reporting_html.php:5071 +#: ../../include/functions_reporting_html.php:5399 +#: ../../include/functions_reporting_html.php:5439 +#: ../../include/functions_reporting_html.php:5689 +#: ../../include/ajax/heatmap.ajax.php:294 +#: ../../include/ajax/heatmap.ajax.php:419 +#: ../../include/ajax/heatmap.ajax.php:454 #: ../../include/ajax/alert_list.ajax.php:459 -#: ../../include/functions_inventory.php:393 -#: ../../include/functions_inventory.php:1063 -#: ../../include/functions_inventory.php:1119 -#: ../../include/functions_graph.php:5062 ../../include/functions_gis.php:229 +#: ../../include/functions_inventory.php:402 +#: ../../include/functions_inventory.php:1173 +#: ../../include/functions_inventory.php:1229 +#: ../../include/functions_graph.php:5072 ../../include/functions_gis.php:229 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281 @@ -9501,22 +9641,24 @@ msgstr "Cola vacía" #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:414 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:240 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:575 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:217 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:214 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368 #: ../../include/functions_reports.php:1332 -#: ../../include/class/NetworkMap.class.php:2979 -#: ../../include/class/NetworkMap.class.php:3031 -#: ../../include/class/NetworkMap.class.php:3363 +#: ../../include/class/NetworkMap.class.php:2985 +#: ../../include/class/NetworkMap.class.php:3037 +#: ../../include/class/NetworkMap.class.php:3369 #: ../../include/class/AgentsAlerts.class.php:430 -#: ../../include/class/AgentsAlerts.class.php:981 -#: ../../include/functions_reporting.php:7332 +#: ../../include/class/AgentsAlerts.class.php:982 +#: ../../include/functions_reporting.php:7341 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:341 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:279 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:416 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:360 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:463 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:373 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:442 #: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250 #: ../../include/lib/Dashboard/Widgets/module_icon.php:359 #: ../../include/lib/Dashboard/Widgets/module_value.php:334 @@ -9527,20 +9669,20 @@ msgstr "Cola vacía" #: ../../include/lib/Dashboard/Widgets/module_status.php:350 #: ../../include/lib/Dashboard/Widgets/single_graph.php:301 #: ../../include/lib/Dashboard/Widgets/top_n.php:206 -#: ../../include/functions_snmp_browser.php:1809 +#: ../../include/functions_snmp_browser.php:1818 #: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48 #: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/estado_agente.php:1023 +#: ../../operation/agentes/estado_agente.php:1030 #: ../../operation/agentes/interface_view.functions.php:499 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1536 +#: ../../operation/agentes/status_monitor.php:1538 #: ../../operation/agentes/estado_monitores.php:123 #: ../../operation/agentes/ver_agente.php:1187 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269 #: ../../operation/search_alerts.php:34 -#: ../../operation/inventory/inventory.php:628 -#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2688 +#: ../../operation/inventory/inventory.php:630 +#: ../../operation/search_modules.php:36 ../../operation/events/events.php:2742 msgid "Agent" msgstr "Agente" @@ -9562,14 +9704,13 @@ msgstr "Agente" #: ../../extensions/api_checker.php:231 ../../extensions/users_connected.php:178 #: ../../godmode/reporting/reporting_builder.item_editor.php:70 #: ../../godmode/reporting/visual_console_builder.elements.php:847 -#: ../../include/functions_visual_map_editor.php:1455 -#: ../../include/functions_reporting_html.php:3329 -#: ../../include/functions_reporting_html.php:3662 -#: ../../include/ajax/heatmap.ajax.php:333 +#: ../../include/functions_visual_map_editor.php:1513 +#: ../../include/functions_reporting_html.php:3357 +#: ../../include/functions_reporting_html.php:3690 +#: ../../include/ajax/heatmap.ajax.php:461 #: ../../include/class/AuditLog.class.php:223 #: ../../operation/network/network_report.php:272 -#: ../../operation/inventory/inventory.php:1000 -#: ../../operation/inventory/inventory.php:1294 +#: ../../operation/inventory/inventory.php:1246 msgid "IP" msgstr "IP" @@ -9591,43 +9732,43 @@ msgstr "Estado de agente" #: ../../enterprise/operation/services/services.treeview_services.php:321 #: ../../enterprise/operation/services/services.list.php:205 #: ../../enterprise/operation/services/services.table_services.php:141 -#: ../../godmode/groups/group_list.php:1114 +#: ../../godmode/groups/group_list.php:1126 #: ../../godmode/agentes/module_manager_editor_common.php:476 -#: ../../godmode/agentes/module_manager_editor_common.php:559 -#: ../../godmode/netflow/nf_edit_form.php:245 +#: ../../godmode/agentes/module_manager_editor_common.php:564 +#: ../../godmode/netflow/nf_edit_form.php:290 #: ../../godmode/massive/massive_copy_modules.php:115 #: ../../godmode/massive/massive_copy_modules.php:275 #: ../../godmode/massive/massive_delete_modules.php:418 #: ../../godmode/massive/massive_delete_modules.php:439 #: ../../godmode/massive/massive_edit_modules.php:385 #: ../../godmode/massive/massive_edit_modules.php:471 -#: ../../godmode/setup/setup_visuals.php:1013 -#: ../../godmode/setup/setup_visuals.php:1035 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3830 +#: ../../godmode/setup/setup_visuals.php:1017 +#: ../../godmode/setup/setup_visuals.php:1039 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3839 #: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69 -#: ../../include/functions_reporting_html.php:2573 +#: ../../include/functions_reporting_html.php:2594 #: ../../include/functions.php:1087 ../../include/functions.php:1327 #: ../../include/functions.php:1334 ../../include/functions.php:1367 -#: ../../include/ajax/module.php:1933 ../../include/functions_graph.php:3329 -#: ../../include/functions_graph.php:3331 ../../include/functions_graph.php:4842 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:432 +#: ../../include/ajax/module.php:1961 ../../include/functions_graph.php:3339 +#: ../../include/functions_graph.php:3341 ../../include/functions_graph.php:4852 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:578 #: ../../include/functions_massive_operations.php:146 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:315 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:253 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:557 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:398 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:432 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:729 -#: ../../include/functions_events.php:3218 ../../operation/tree.php:208 -#: ../../operation/tree.php:298 ../../operation/tree.php:533 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:401 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:436 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:722 +#: ../../include/functions_events.php:3223 ../../operation/tree.php:208 +#: ../../operation/tree.php:299 ../../operation/tree.php:535 #: ../../operation/agentes/estado_agente.php:273 -#: ../../operation/agentes/status_monitor.php:564 -#: ../../operation/agentes/group_view.php:244 -#: ../../operation/agentes/group_view.php:249 -#: ../../operation/agentes/estado_monitores.php:518 +#: ../../operation/agentes/status_monitor.php:563 +#: ../../operation/agentes/group_view.php:247 +#: ../../operation/agentes/group_view.php:252 +#: ../../operation/agentes/estado_monitores.php:515 #: ../../operation/agentes/tactical.php:199 -#: ../../operation/netflow/nf_live_view.php:274 ../../general/logon_ok.php:150 +#: ../../operation/netflow/nf_live_view.php:283 ../../general/logon_ok.php:159 msgid "Normal" msgstr "Normal" @@ -9664,24 +9805,24 @@ msgstr "Normal" #: ../../enterprise/operation/services/services.table_services.php:143 #: ../../extensions/module_groups.php:50 #: ../../godmode/modules/manage_network_components_form_wizard.php:418 -#: ../../godmode/groups/group_list.php:1094 +#: ../../godmode/groups/group_list.php:1106 #: ../../godmode/massive/massive_copy_modules.php:117 #: ../../godmode/massive/massive_copy_modules.php:277 #: ../../godmode/massive/massive_delete_modules.php:420 #: ../../godmode/massive/massive_delete_modules.php:441 #: ../../godmode/massive/massive_edit_modules.php:387 #: ../../godmode/massive/massive_edit_modules.php:473 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3832 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3841 #: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71 #: ../../include/functions_reporting_html.php:867 -#: ../../include/functions_reporting_html.php:2574 -#: ../../include/functions_reporting_html.php:4871 +#: ../../include/functions_reporting_html.php:2595 +#: ../../include/functions_reporting_html.php:4899 #: ../../include/functions.php:1095 ../../include/functions.php:1331 #: ../../include/functions.php:1332 ../../include/functions.php:1334 -#: ../../include/functions.php:1375 ../../include/ajax/module.php:1938 -#: ../../include/functions_graph.php:3353 ../../include/functions_graph.php:3355 -#: ../../include/functions_graph.php:4850 ../../include/functions_ui.php:2869 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:418 +#: ../../include/functions.php:1375 ../../include/ajax/module.php:1966 +#: ../../include/functions_graph.php:3363 ../../include/functions_graph.php:3365 +#: ../../include/functions_graph.php:4860 ../../include/functions_ui.php:2912 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564 #: ../../include/functions_massive_operations.php:148 #: ../../include/class/AgentWizard.class.php:1404 #: ../../include/class/AgentWizard.class.php:4161 @@ -9690,18 +9831,18 @@ msgstr "Normal" #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:567 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:400 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:434 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:709 -#: ../../include/functions_events.php:3226 ../../operation/tree.php:210 -#: ../../operation/tree.php:300 ../../operation/tree.php:513 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:403 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:438 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:702 +#: ../../include/functions_events.php:3231 ../../operation/tree.php:210 +#: ../../operation/tree.php:301 ../../operation/tree.php:515 #: ../../operation/agentes/estado_agente.php:275 -#: ../../operation/agentes/status_monitor.php:566 -#: ../../operation/agentes/group_view.php:246 -#: ../../operation/agentes/group_view.php:251 -#: ../../operation/agentes/estado_monitores.php:516 +#: ../../operation/agentes/status_monitor.php:565 +#: ../../operation/agentes/group_view.php:249 +#: ../../operation/agentes/group_view.php:254 +#: ../../operation/agentes/estado_monitores.php:513 #: ../../operation/agentes/tactical.php:197 -#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:148 +#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:157 msgid "Critical" msgstr "Crítico" @@ -9726,15 +9867,16 @@ msgstr "Vista de campos personalizados" #: ../../enterprise/meta/monitoring/custom_fields_view.php:170 #: ../../enterprise/godmode/policies/policies.php:314 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:736 -#: ../../extensions/agents_modules.php:439 +#: ../../extensions/agents_modules.php:447 #: ../../godmode/agentes/modificar_agente.php:333 #: ../../godmode/agentes/planned_downtime.editor.php:1197 #: ../../godmode/reporting/reporting_builder.item_editor.php:1667 -#: ../../include/functions_html.php:1575 -#: ../../include/class/NetworkMap.class.php:3427 +#: ../../include/functions_html.php:1581 +#: ../../include/class/NetworkMap.class.php:3433 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:254 #: ../../operation/agentes/estado_agente.php:310 #: ../../operation/agentes/interface_view.functions.php:61 -#: ../../operation/agentes/status_monitor.php:845 +#: ../../operation/agentes/status_monitor.php:844 msgid "Recursion" msgstr "Recurrencia" @@ -9747,21 +9889,21 @@ msgstr "Recurrencia" #: ../../godmode/massive/massive_delete_modules.php:443 #: ../../godmode/massive/massive_edit_modules.php:389 #: ../../godmode/massive/massive_edit_modules.php:475 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3834 -#: ../../godmode/events/event_edit_filter.php:350 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3843 +#: ../../godmode/events/event_edit_filter.php:352 #: ../../mobile/operation/modules.php:73 ../../include/functions.php:1333 #: ../../include/functions_massive_operations.php:150 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:258 #: ../../include/lib/Dashboard/Widgets/events_list.php:319 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:264 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:582 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:403 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:437 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:734 -#: ../../include/functions_events.php:3174 ../../operation/tree.php:538 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:406 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:441 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:727 +#: ../../include/functions_events.php:3179 ../../operation/tree.php:540 #: ../../operation/agentes/estado_agente.php:277 -#: ../../operation/agentes/status_monitor.php:568 -#: ../../operation/events/events.php:1739 +#: ../../operation/agentes/status_monitor.php:567 +#: ../../operation/events/events.php:1793 msgid "Not normal" msgstr "No normal" @@ -9772,30 +9914,30 @@ msgstr "No normal" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 #: ../../enterprise/operation/agentes/tag_view.php:136 #: ../../enterprise/operation/services/services.treeview_services.php:316 -#: ../../godmode/groups/group_list.php:1109 +#: ../../godmode/groups/group_list.php:1121 #: ../../godmode/massive/massive_copy_modules.php:120 #: ../../godmode/massive/massive_copy_modules.php:280 #: ../../godmode/massive/massive_delete_modules.php:423 #: ../../godmode/massive/massive_delete_modules.php:444 #: ../../godmode/massive/massive_edit_modules.php:390 #: ../../godmode/massive/massive_edit_modules.php:476 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3835 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3844 #: ../../mobile/operation/modules.php:75 #: ../../include/functions_reporting_html.php:660 -#: ../../include/functions_reporting_html.php:2577 -#: ../../include/functions_reporting_html.php:4678 -#: ../../include/ajax/module.php:1950 +#: ../../include/functions_reporting_html.php:2598 +#: ../../include/functions_reporting_html.php:4706 +#: ../../include/ajax/module.php:1978 #: ../../include/functions_massive_operations.php:151 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:257 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:402 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:436 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:724 -#: ../../operation/tree.php:212 ../../operation/tree.php:302 -#: ../../operation/tree.php:528 ../../operation/agentes/estado_agente.php:278 -#: ../../operation/agentes/status_monitor.php:570 -#: ../../operation/agentes/group_view.php:243 -#: ../../operation/agentes/group_view.php:248 -#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:152 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:405 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:440 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:717 +#: ../../operation/tree.php:212 ../../operation/tree.php:303 +#: ../../operation/tree.php:530 ../../operation/agentes/estado_agente.php:278 +#: ../../operation/agentes/status_monitor.php:569 +#: ../../operation/agentes/group_view.php:246 +#: ../../operation/agentes/group_view.php:251 +#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:161 msgid "Not init" msgstr "No iniciados" @@ -9811,14 +9953,14 @@ msgstr "Módulo de estado" #: ../../enterprise/meta/monitoring/custom_fields_view.php:230 #: ../../enterprise/meta/monitoring/custom_fields_view.php:231 #: ../../enterprise/include/ajax/log_viewer.ajax.php:410 -#: ../../enterprise/operation/log/log_viewer.php:994 -#: ../../enterprise/operation/log/log_viewer.php:2026 -#: ../../enterprise/operation/log/log_viewer.php:2065 -#: ../../include/ajax/audit_log.php:292 ../../include/ajax/events.php:864 +#: ../../enterprise/operation/log/log_viewer.php:992 +#: ../../enterprise/operation/log/log_viewer.php:2024 +#: ../../enterprise/operation/log/log_viewer.php:2063 +#: ../../include/ajax/audit_log.php:293 ../../include/ajax/events.php:865 #: ../../include/class/AuditLog.class.php:167 -#: ../../include/class/AuditLog.class.php:445 -#: ../../include/class/AuditLog.class.php:485 -#: ../../operation/events/events.php:1871 +#: ../../include/class/AuditLog.class.php:457 +#: ../../include/class/AuditLog.class.php:497 +#: ../../operation/events/events.php:1925 msgid "Save filter" msgstr "Guardar filtro" @@ -9827,21 +9969,20 @@ msgstr "Guardar filtro" #: ../../enterprise/meta/monitoring/custom_fields_view.php:245 #: ../../enterprise/include/ajax/log_viewer.ajax.php:709 #: ../../enterprise/include/ajax/log_viewer.ajax.php:727 -#: ../../enterprise/operation/log/log_viewer.php:979 -#: ../../enterprise/operation/log/log_viewer.php:2078 -#: ../../enterprise/operation/log/log_viewer.php:2115 +#: ../../enterprise/operation/log/log_viewer.php:977 +#: ../../enterprise/operation/log/log_viewer.php:2076 +#: ../../enterprise/operation/log/log_viewer.php:2113 #: ../../include/ajax/audit_log.php:150 ../../include/ajax/audit_log.php:168 -#: ../../include/ajax/module.php:2149 ../../include/ajax/module.php:2173 +#: ../../include/ajax/module.php:2178 ../../include/ajax/module.php:2202 #: ../../include/ajax/agent.php:494 ../../include/ajax/agent.php:518 -#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:583 -#: ../../include/ajax/events.php:608 ../../include/class/AuditLog.class.php:159 -#: ../../include/class/AuditLog.class.php:502 -#: ../../include/class/AuditLog.class.php:539 +#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:584 +#: ../../include/ajax/events.php:609 ../../include/class/AuditLog.class.php:159 +#: ../../include/class/AuditLog.class.php:514 +#: ../../include/class/AuditLog.class.php:551 #: ../../operation/agentes/estado_agente.php:455 -#: ../../operation/agentes/status_monitor.php:1045 -#: ../../operation/netflow/nf_live_view.php:277 -#: ../../operation/events/sound_events.php:184 -#: ../../operation/events/events.php:1862 +#: ../../operation/agentes/status_monitor.php:1047 +#: ../../operation/netflow/nf_live_view.php:286 +#: ../../operation/events/events.php:1916 msgid "Load filter" msgstr "Cargar filtro" @@ -9855,8 +9996,8 @@ msgid "Custom Fields Data" msgstr "Datos de campos personalizados" #: ../../enterprise/meta/monitoring/custom_fields_view.php:295 -#: ../../godmode/events/event_edit_filter.php:780 -#: ../../operation/events/events.php:1969 +#: ../../godmode/events/event_edit_filter.php:782 +#: ../../operation/events/events.php:2023 msgid "Module search" msgstr "Búsqueda por módulo" @@ -9865,8 +10006,8 @@ msgstr "Búsqueda por módulo" #: ../../enterprise/include/class/DeploymentCenter.class.php:1569 #: ../../enterprise/include/class/AgentRepository.class.php:873 #: ../../enterprise/include/class/Omnishell.class.php:1359 -#: ../../enterprise/include/class/LogSource.class.php:745 -#: ../../godmode/users/configure_user.php:1024 +#: ../../enterprise/include/class/LogSource.class.php:742 +#: ../../godmode/users/configure_user.php:1072 #: ../../include/class/ConfigPEN.class.php:252 ../../operation/heatmap.php:299 #: ../../operation/agentes/interface_view.functions.php:172 msgid "Show" @@ -9875,11 +10016,11 @@ msgstr "Mostrar" #: ../../enterprise/meta/monitoring/custom_fields_view.php:321 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:565 #: ../../enterprise/include/functions_ipam.php:339 -#: ../../enterprise/operation/log/log_viewer.php:968 +#: ../../enterprise/operation/log/log_viewer.php:966 #: ../../enterprise/operation/reporting/custom_reporting.php:100 #: ../../godmode/modules/manage_network_templates.php:290 #: ../../godmode/agentes/planned_downtime.list.php:1000 -#: ../../include/graphs/functions_flot.php:382 +#: ../../include/graphs/functions_flot.php:383 #: ../../include/class/ModuleTemplates.class.php:904 #: ../../operation/network/network_report.php:230 #: ../../operation/incidents/list_integriaims_incidents.php:480 @@ -9890,170 +10031,170 @@ msgstr "Exportar a CSV" #: ../../enterprise/meta/monitoring/custom_fields_view.php:361 #: ../../enterprise/include/class/DatabaseHA.class.php:217 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1883 -#: ../../include/functions_ui.php:3741 +#: ../../include/functions_ui.php:3789 msgid "Processing" msgstr "Procesando" #: ../../enterprise/meta/monitoring/custom_fields_view.php:386 -#: ../../mobile/operation/groups.php:153 -#: ../../include/functions_reporting_html.php:5843 +#: ../../mobile/operation/groups.php:192 +#: ../../include/functions_reporting_html.php:5871 #: ../../include/functions_agents.php:3955 msgid "Agents critical" msgstr "Agentes críticos" #: ../../enterprise/meta/monitoring/custom_fields_view.php:399 -#: ../../include/functions_reporting_html.php:5846 +#: ../../include/functions_reporting_html.php:5874 #: ../../include/functions_agents.php:3965 msgid "Agents warning" msgstr "Agentes en estado de advertencia" #: ../../enterprise/meta/monitoring/custom_fields_view.php:412 -#: ../../include/functions_reporting_html.php:5852 +#: ../../include/functions_reporting_html.php:5880 #: ../../include/functions_agents.php:3945 #: ../../include/functions_agents.php:3999 msgid "Agents ok" msgstr "Agentes OK" #: ../../enterprise/meta/monitoring/custom_fields_view.php:425 -#: ../../mobile/operation/groups.php:156 -#: ../../include/functions_reporting_html.php:5855 +#: ../../mobile/operation/groups.php:195 +#: ../../include/functions_reporting_html.php:5883 #: ../../include/functions_agents.php:3975 msgid "Agents unknown" msgstr "Agentes desconocidos" #: ../../enterprise/meta/monitoring/custom_fields_view.php:438 -#: ../../mobile/operation/groups.php:150 -#: ../../include/functions_reporting_html.php:5861 +#: ../../mobile/operation/groups.php:189 +#: ../../include/functions_reporting_html.php:5889 #: ../../include/functions_agents.php:3989 msgid "Agents not init" msgstr "Agentes no iniciados" #: ../../enterprise/meta/monitoring/custom_fields_view.php:464 -#: ../../include/functions_reporting.php:12227 -#: ../../include/functions_groups.php:2794 +#: ../../include/functions_reporting.php:12300 +#: ../../include/functions_groups.php:2819 msgid "Monitor critical" msgstr "Monitor crítico" #: ../../enterprise/meta/monitoring/custom_fields_view.php:475 -#: ../../include/functions_reporting.php:12231 -#: ../../include/functions_groups.php:2798 +#: ../../include/functions_reporting.php:12304 +#: ../../include/functions_groups.php:2823 msgid "Monitor warning" msgstr "Monitor en estado de advertencia" #: ../../enterprise/meta/monitoring/custom_fields_view.php:486 -#: ../../include/functions_reporting.php:12238 -#: ../../include/functions_groups.php:2805 +#: ../../include/functions_reporting.php:12311 +#: ../../include/functions_groups.php:2830 msgid "Monitor normal" msgstr "Monitor normal" #: ../../enterprise/meta/monitoring/custom_fields_view.php:497 -#: ../../include/functions_reporting.php:12242 -#: ../../include/functions_groups.php:2809 +#: ../../include/functions_reporting.php:12315 +#: ../../include/functions_groups.php:2834 msgid "Monitor unknown" msgstr "Monitor en estado desconocido" #: ../../enterprise/meta/monitoring/custom_fields_view.php:508 -#: ../../include/functions_reporting.php:12249 -#: ../../include/functions_groups.php:2816 +#: ../../include/functions_reporting.php:12322 +#: ../../include/functions_groups.php:2841 msgid "Monitor not init" msgstr "Monitor en estado no iniciado" #: ../../enterprise/meta/monitoring/custom_fields_view.php:523 -#: ../../include/functions_reporting_html.php:5870 -#: ../../include/functions_reporting_html.php:5875 +#: ../../include/functions_reporting_html.php:5898 +#: ../../include/functions_reporting_html.php:5903 msgid "Agents by status" msgstr "Agentes por estado" #: ../../enterprise/meta/monitoring/custom_fields_view.php:531 -#: ../../include/functions_reporting.php:12269 -#: ../../include/functions_reporting.php:12275 -#: ../../include/functions_groups.php:2836 -#: ../../include/functions_groups.php:2842 +#: ../../include/functions_reporting.php:12342 +#: ../../include/functions_reporting.php:12348 +#: ../../include/functions_groups.php:2861 +#: ../../include/functions_groups.php:2867 msgid "Monitors by status" msgstr "Monitores por estado" #: ../../enterprise/meta/monitoring/custom_fields_view.php:545 #: ../../enterprise/operation/services/services.treeview_services.php:299 -#: ../../godmode/groups/group_list.php:1092 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:707 -#: ../../operation/tree.php:511 +#: ../../godmode/groups/group_list.php:1104 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:700 +#: ../../operation/tree.php:513 msgid "Critical agents" msgstr "Agentes críticos" #: ../../enterprise/meta/monitoring/custom_fields_view.php:555 #: ../../enterprise/operation/services/services.treeview_services.php:304 -#: ../../godmode/groups/group_list.php:1097 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:712 -#: ../../operation/tree.php:516 +#: ../../godmode/groups/group_list.php:1109 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:705 +#: ../../operation/tree.php:518 msgid "Warning agents" msgstr "Agentes en estado de advertencia" #: ../../enterprise/meta/monitoring/custom_fields_view.php:565 #: ../../enterprise/operation/services/services.treeview_services.php:319 -#: ../../godmode/groups/group_list.php:1112 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:727 -#: ../../operation/tree.php:531 +#: ../../godmode/groups/group_list.php:1124 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:720 +#: ../../operation/tree.php:533 msgid "Normal agents" msgstr "Agentes en normal" #: ../../enterprise/meta/monitoring/custom_fields_view.php:575 #: ../../enterprise/operation/services/services.treeview_services.php:309 -#: ../../godmode/groups/group_list.php:1102 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:717 -#: ../../operation/tree.php:521 +#: ../../godmode/groups/group_list.php:1114 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:710 +#: ../../operation/tree.php:523 msgid "Unknown agents" msgstr "Agentes en desconocido" #: ../../enterprise/meta/monitoring/custom_fields_view.php:585 #: ../../enterprise/operation/services/services.treeview_services.php:314 -#: ../../godmode/groups/group_list.php:1107 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:722 -#: ../../operation/tree.php:526 +#: ../../godmode/groups/group_list.php:1119 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:715 +#: ../../operation/tree.php:528 msgid "Not init agents" msgstr "Agentes no iniciados" #: ../../enterprise/meta/monitoring/custom_fields_view.php:614 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:300 -#: ../../godmode/groups/group_list.php:1093 ../../mobile/operation/groups.php:171 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:708 -#: ../../operation/tree.php:512 +#: ../../godmode/groups/group_list.php:1105 ../../mobile/operation/groups.php:210 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:701 +#: ../../operation/tree.php:514 msgid "Critical modules" msgstr "Módulos críticos" #: ../../enterprise/meta/monitoring/custom_fields_view.php:625 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:305 -#: ../../godmode/groups/group_list.php:1098 ../../mobile/operation/groups.php:168 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:713 -#: ../../operation/tree.php:517 +#: ../../godmode/groups/group_list.php:1110 ../../mobile/operation/groups.php:207 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:706 +#: ../../operation/tree.php:519 msgid "Warning modules" msgstr "Módulos de advertencia" #: ../../enterprise/meta/monitoring/custom_fields_view.php:636 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:320 -#: ../../godmode/groups/group_list.php:1113 ../../mobile/operation/groups.php:165 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:728 -#: ../../operation/tree.php:532 +#: ../../godmode/groups/group_list.php:1125 ../../mobile/operation/groups.php:204 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:721 +#: ../../operation/tree.php:534 msgid "Normal modules" msgstr "Módulos normales" #: ../../enterprise/meta/monitoring/custom_fields_view.php:647 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:310 -#: ../../godmode/groups/group_list.php:1103 ../../mobile/operation/groups.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:718 -#: ../../operation/tree.php:522 +#: ../../godmode/groups/group_list.php:1115 ../../mobile/operation/groups.php:198 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:711 +#: ../../operation/tree.php:524 msgid "Unknown modules" msgstr "Módulos desconocidos" #: ../../enterprise/meta/monitoring/custom_fields_view.php:658 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:315 -#: ../../godmode/groups/group_list.php:1108 ../../mobile/operation/groups.php:162 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:723 -#: ../../operation/tree.php:527 +#: ../../godmode/groups/group_list.php:1120 ../../mobile/operation/groups.php:201 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:716 +#: ../../operation/tree.php:529 msgid "Not init modules" msgstr "Módulos no iniciados" @@ -10085,7 +10226,7 @@ msgstr "No hay búsquedas personalizadas definidas." #: ../../enterprise/meta/monitoring/custom_fields_view.php:1167 #: ../../enterprise/meta/event/custom_events.php:245 #: ../../enterprise/include/functions_login.php:114 -#: ../../godmode/agentes/status_monitor_custom_fields.php:253 +#: ../../godmode/agentes/status_monitor_custom_fields.php:273 #: ../../godmode/events/custom_events.php:233 #: ../../include/class/TreeGroupEdition.class.php:164 msgid "Confirm" @@ -10094,9 +10235,9 @@ msgstr "Confirmar" #: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:74 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:227 #: ../../godmode/agentes/configurar_agente.php:835 -#: ../../godmode/agentes/modificar_agente.php:1025 -#: ../../include/class/SnmpConsole.class.php:781 -#: ../../operation/agentes/estado_agente.php:1317 +#: ../../godmode/agentes/modificar_agente.php:1036 +#: ../../include/class/SnmpConsole.class.php:783 +#: ../../operation/agentes/estado_agente.php:1326 #: ../../operation/snmpconsole/snmp_statistics.php:195 msgid "Create agent" msgstr "Crear agente" @@ -10182,18 +10323,18 @@ msgstr "Crear alerta" #: ../../enterprise/include/functions_services.php:1779 #: ../../enterprise/include/functions_events.php:90 #: ../../enterprise/operation/agentes/policy_view.php:259 -#: ../../extensions/agents_modules.php:513 ../../extensions/insert_data.php:195 +#: ../../extensions/agents_modules.php:521 ../../extensions/insert_data.php:195 #: ../../godmode/agentes/module_manager_editor_prediction.php:135 #: ../../godmode/agentes/planned_downtime.list.php:425 #: ../../godmode/agentes/planned_downtime.editor.php:1445 -#: ../../godmode/agentes/module_manager_editor_common.php:1481 -#: ../../godmode/agentes/module_manager_editor_common.php:1535 +#: ../../godmode/agentes/module_manager_editor_common.php:1491 +#: ../../godmode/agentes/module_manager_editor_common.php:1545 #: ../../godmode/massive/massive_standby_alerts.php:224 #: ../../godmode/massive/massive_standby_alerts.php:259 #: ../../godmode/massive/massive_enable_disable_alerts.php:196 #: ../../godmode/massive/massive_enable_disable_alerts.php:231 -#: ../../godmode/massive/massive_edit_agents.php:682 -#: ../../godmode/massive/massive_edit_agents.php:1147 +#: ../../godmode/massive/massive_edit_agents.php:699 +#: ../../godmode/massive/massive_edit_agents.php:1164 #: ../../godmode/alerts/alert_list.list.php:566 #: ../../godmode/alerts/alert_list.list.php:817 #: ../../godmode/alerts/alert_view.php:97 @@ -10202,41 +10343,41 @@ msgstr "Crear alerta" #: ../../godmode/reporting/create_container.php:490 #: ../../godmode/reporting/create_container.php:662 #: ../../godmode/reporting/create_container.php:745 -#: ../../godmode/reporting/graph_builder.graph_editor.php:213 -#: ../../godmode/reporting/reporting_builder.item_editor.php:212 -#: ../../godmode/reporting/reporting_builder.item_editor.php:891 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1191 +#: ../../godmode/reporting/graph_builder.graph_editor.php:346 +#: ../../godmode/reporting/reporting_builder.item_editor.php:213 +#: ../../godmode/reporting/reporting_builder.item_editor.php:892 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1193 #: ../../godmode/reporting/reporting_builder.item_editor.php:1792 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4098 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4614 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4638 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4107 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4623 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4647 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.wizard.php:462 #: ../../godmode/reporting/visual_console_builder.wizard.php:821 -#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/alerts.php:338 -#: ../../include/functions_visual_map_editor.php:497 +#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/services.php:332 +#: ../../include/functions_visual_map_editor.php:491 #: ../../include/functions_reporting_html.php:549 #: ../../include/functions_reporting_html.php:948 -#: ../../include/functions_reporting_html.php:2017 -#: ../../include/functions_reporting_html.php:2354 -#: ../../include/functions_reporting_html.php:2459 -#: ../../include/functions_reporting_html.php:3448 -#: ../../include/functions_reporting_html.php:3823 -#: ../../include/functions_reporting_html.php:3831 -#: ../../include/functions_reporting_html.php:3840 -#: ../../include/functions_reporting_html.php:3852 -#: ../../include/functions_reporting_html.php:4012 -#: ../../include/functions_reporting_html.php:4141 -#: ../../include/functions_reporting_html.php:4235 -#: ../../include/functions_reporting_html.php:4957 -#: ../../include/functions_reporting_html.php:5005 +#: ../../include/functions_reporting_html.php:2033 +#: ../../include/functions_reporting_html.php:2375 +#: ../../include/functions_reporting_html.php:2480 +#: ../../include/functions_reporting_html.php:3476 +#: ../../include/functions_reporting_html.php:3851 +#: ../../include/functions_reporting_html.php:3859 +#: ../../include/functions_reporting_html.php:3868 +#: ../../include/functions_reporting_html.php:3880 +#: ../../include/functions_reporting_html.php:4040 +#: ../../include/functions_reporting_html.php:4169 +#: ../../include/functions_reporting_html.php:4263 +#: ../../include/functions_reporting_html.php:4985 +#: ../../include/functions_reporting_html.php:5033 #: ../../include/ajax/alert_list.ajax.php:292 #: ../../include/ajax/alert_list.ajax.php:317 #: ../../include/ajax/alert_list.ajax.php:480 -#: ../../include/functions_inventory.php:1064 -#: ../../include/functions_inventory.php:1120 -#: ../../include/functions_graph.php:5169 ../../include/functions_ui.php:7393 -#: ../../include/functions_ui.php:7411 +#: ../../include/functions_inventory.php:1174 +#: ../../include/functions_inventory.php:1230 +#: ../../include/functions_graph.php:5179 ../../include/functions_ui.php:7463 +#: ../../include/functions_ui.php:7488 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299 @@ -10245,17 +10386,19 @@ msgstr "Crear alerta" #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:432 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:257 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:594 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:235 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:232 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385 #: ../../include/functions_reports.php:1363 #: ../../include/class/AgentsAlerts.class.php:432 -#: ../../include/class/AgentsAlerts.class.php:910 -#: ../../include/functions_reporting.php:7333 +#: ../../include/class/AgentsAlerts.class.php:911 +#: ../../include/functions_reporting.php:7342 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:359 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:278 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:434 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:359 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:462 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:391 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:441 #: ../../include/lib/Dashboard/Widgets/module_icon.php:377 #: ../../include/lib/Dashboard/Widgets/module_value.php:352 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:254 @@ -10263,16 +10406,16 @@ msgstr "Crear alerta" #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:344 #: ../../include/lib/Dashboard/Widgets/module_status.php:368 #: ../../include/lib/Dashboard/Widgets/single_graph.php:319 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:736 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:729 #: ../../include/lib/Dashboard/Widgets/top_n.php:221 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 #: ../../operation/agentes/estado_monitores.php:125 -#: ../../operation/agentes/agent_inventory.php:116 +#: ../../operation/agentes/agent_inventory.php:118 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/search_alerts.php:35 -#: ../../operation/inventory/inventory.php:634 -#: ../../operation/search_modules.php:32 +#: ../../operation/inventory/inventory.php:636 +#: ../../operation/search_modules.php:35 msgid "Module" msgstr "Módulo" @@ -10288,18 +10431,18 @@ msgstr "Módulo" #: ../../godmode/alerts/alert_list.list.php:570 #: ../../godmode/alerts/alert_view.php:101 #: ../../godmode/alerts/alert_list.builder.php:151 -#: ../../godmode/reporting/reporting_builder.item_editor.php:216 -#: ../../godmode/reporting/reporting_builder.item_editor.php:896 -#: ../../mobile/operation/alerts.php:342 -#: ../../include/functions_reporting_html.php:3449 -#: ../../include/functions_reporting_html.php:3452 +#: ../../godmode/reporting/reporting_builder.item_editor.php:217 +#: ../../godmode/reporting/reporting_builder.item_editor.php:897 +#: ../../mobile/operation/alerts.php:349 +#: ../../include/functions_reporting_html.php:3477 +#: ../../include/functions_reporting_html.php:3480 #: ../../include/functions_cron.php:691 #: ../../include/ajax/alert_list.ajax.php:293 #: ../../include/ajax/alert_list.ajax.php:318 -#: ../../include/functions_treeview.php:399 -#: ../../include/functions_treeview.php:440 +#: ../../include/functions_treeview.php:403 +#: ../../include/functions_treeview.php:444 #: ../../include/class/AgentsAlerts.class.php:359 -#: ../../include/class/AgentsAlerts.class.php:983 +#: ../../include/class/AgentsAlerts.class.php:984 #: ../../operation/search_alerts.php:36 msgid "Template" msgstr "Plantilla" @@ -10379,8 +10522,8 @@ msgstr "Crear nueva acción" #: ../../godmode/alerts/configure_alert_action.php:287 #: ../../godmode/alerts/alert_view.php:367 #: ../../godmode/alerts/alert_list.builder.php:169 -#: ../../include/functions_reporting_html.php:3710 -#: ../../include/functions_reporting_html.php:5493 +#: ../../include/functions_reporting_html.php:3738 +#: ../../include/functions_reporting_html.php:5521 #: ../../include/ajax/alert_list.ajax.php:540 #: ../../include/ajax/custom_fields.php:413 #: ../../include/class/AgentsAlerts.class.php:398 @@ -10401,8 +10544,8 @@ msgstr "Configuración avanzada" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:40 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:117 -#: ../../godmode/agentes/module_manager.php:1027 -#: ../../operation/snmpconsole/snmp_browser.php:633 +#: ../../godmode/agentes/module_manager.php:1041 +#: ../../operation/snmpconsole/snmp_browser.php:692 msgid "Create module" msgstr "Crear módulo" @@ -10441,11 +10584,11 @@ msgstr "Se han encontrado caracteres no válidos en el nombre del módulo." #: ../../enterprise/godmode/policies/policy.php:158 #: ../../enterprise/godmode/setup/setup_acl.php:664 #: ../../enterprise/include/functions_reporting.php:60 -#: ../../enterprise/include/functions_reporting.php:8008 -#: ../../enterprise/include/functions_reporting.php:8034 -#: ../../godmode/reporting/visual_console_builder.php:830 -#: ../../include/functions_menu.php:589 -#: ../../operation/visual_console/view.php:202 +#: ../../enterprise/include/functions_reporting.php:8017 +#: ../../enterprise/include/functions_reporting.php:8043 +#: ../../godmode/reporting/visual_console_builder.php:838 +#: ../../include/functions_menu.php:593 +#: ../../operation/visual_console/view.php:204 #: ../../operation/visual_console/legacy_view.php:171 msgid "Wizard" msgstr "Asistente" @@ -10460,8 +10603,8 @@ msgstr "Gestionar módulos" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:720 #: ../../enterprise/meta/agentsearch.php:52 #: ../../enterprise/meta/agentsearch.php:58 -#: ../../godmode/events/event_edit_filter.php:447 -#: ../../mobile/operation/home.php:168 ../../operation/events/events.php:1946 +#: ../../godmode/events/event_edit_filter.php:449 +#: ../../mobile/operation/home.php:188 ../../operation/events/events.php:2000 msgid "Agent search" msgstr "Búsqueda de agente" @@ -10475,18 +10618,22 @@ msgstr "Selecciona el agente donde quieres crear el módulo" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:744 #: ../../godmode/snmpconsole/snmp_alert.php:1688 #: ../../godmode/alerts/configure_alert_action.php:432 -#: ../../mobile/operation/agents.php:209 ../../mobile/operation/modules.php:241 -#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:148 -#: ../../mobile/operation/alerts.php:199 ../../mobile/operation/visualmap.php:256 +#: ../../mobile/operation/agents.php:210 ../../mobile/operation/modules.php:241 +#: ../../mobile/operation/groups.php:82 ../../mobile/operation/services.php:128 +#: ../../mobile/operation/agent.php:154 ../../mobile/operation/alerts.php:199 +#: ../../mobile/operation/visualmap.php:256 #: ../../mobile/operation/visualmaps.php:189 -#: ../../mobile/operation/module_graph.php:364 -#: ../../mobile/operation/module_graph.php:377 -#: ../../mobile/operation/events.php:913 ../../mobile/operation/tactical.php:102 +#: ../../mobile/operation/module_data.php:130 +#: ../../mobile/operation/module_graph.php:365 +#: ../../mobile/operation/module_graph.php:378 +#: ../../mobile/operation/events.php:957 +#: ../../mobile/operation/server_status.php:232 +#: ../../mobile/operation/tactical.php:102 msgid "Back" msgstr "Atrás" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:326 -#: ../../godmode/agentes/module_manager.php:1146 +#: ../../godmode/agentes/module_manager.php:1162 msgid "Create Module" msgstr "Crear módulo" @@ -10563,14 +10710,14 @@ msgstr "Por favor, introduce un intervalo." #: ../../godmode/modules/manage_network_components_form_wizard.php:336 #: ../../godmode/massive/massive_delete_modules.php:323 #: ../../godmode/massive/massive_edit_modules.php:309 -#: ../../include/ajax/module.php:1000 +#: ../../include/ajax/module.php:1023 msgid "Module type" msgstr "Tipo módulo" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:146 #: ../../mobile/include/functions_web.php:24 -#: ../../include/functions_reporting_html.php:5412 -#: ../../include/functions_reporting_html.php:5566 +#: ../../include/functions_reporting_html.php:5440 +#: ../../include/functions_reporting_html.php:5594 msgid "Monitor" msgstr "Monitor" @@ -10585,7 +10732,7 @@ msgstr "Comprobación web" #: ../../enterprise/include/functions_reporting_csv.php:763 #: ../../enterprise/operation/agentes/tag_view.php:174 #: ../../enterprise/operation/agentes/ver_agente.php:53 -#: ../../extensions/agents_modules.php:448 +#: ../../extensions/agents_modules.php:456 #: ../../godmode/modules/manage_network_components_form_common.php:111 #: ../../godmode/agentes/module_manager_editor_common.php:292 #: ../../godmode/massive/massive_edit_modules.php:904 @@ -10593,15 +10740,17 @@ msgstr "Comprobación web" #: ../../godmode/reporting/reporting_builder.item_editor.php:1720 #: ../../mobile/operation/modules.php:183 ../../mobile/operation/modules.php:184 #: ../../mobile/operation/modules.php:293 ../../mobile/operation/modules.php:294 -#: ../../include/functions_reporting_html.php:1768 -#: ../../include/ajax/heatmap.ajax.php:193 -#: ../../include/ajax/heatmap.ajax.php:263 -#: ../../include/ajax/heatmap.ajax.php:302 ../../include/functions_graph.php:5085 -#: ../../include/functions_treeview.php:121 ../../include/functions_html.php:1600 +#: ../../mobile/operation/server_status.php:174 +#: ../../mobile/operation/server_status.php:175 +#: ../../include/functions_reporting_html.php:1777 +#: ../../include/ajax/heatmap.ajax.php:222 +#: ../../include/ajax/heatmap.ajax.php:305 +#: ../../include/ajax/heatmap.ajax.php:430 ../../include/functions_graph.php:5095 +#: ../../include/functions_treeview.php:121 ../../include/functions_html.php:1607 #: ../../include/lib/Dashboard/Widgets/heatmap.php:324 -#: ../../include/functions_events.php:4478 ../../operation/heatmap.php:103 -#: ../../operation/heatmap.php:105 ../../operation/agentes/status_monitor.php:859 -#: ../../operation/agentes/estado_monitores.php:592 +#: ../../include/functions_events.php:4483 ../../operation/heatmap.php:103 +#: ../../operation/heatmap.php:105 ../../operation/agentes/status_monitor.php:858 +#: ../../operation/agentes/estado_monitores.php:590 #: ../../operation/agentes/ver_agente.php:1175 msgid "Module group" msgstr "Grupo del módulo" @@ -10621,14 +10770,14 @@ msgstr "Wizard paso a paso" #: ../../enterprise/godmode/agentes/plugins_manager.php:130 #: ../../enterprise/godmode/policies/policy_plugins.php:126 #: ../../godmode/modules/manage_network_components_form_common.php:53 -#: ../../godmode/users/configure_user.php:1406 -#: ../../godmode/netflow/nf_edit_form.php:251 +#: ../../godmode/users/configure_user.php:1455 +#: ../../godmode/netflow/nf_edit_form.php:296 #: ../../godmode/alerts/alert_commands.php:159 #: ../../godmode/alerts/alert_commands.php:196 #: ../../godmode/alerts/configure_alert_template.php:966 #: ../../godmode/alerts/configure_alert_template.php:1011 #: ../../godmode/alerts/configure_alert_template.php:1169 -#: ../../operation/netflow/nf_live_view.php:563 +#: ../../operation/netflow/nf_live_view.php:636 msgid "Advanced" msgstr "Avanzado" @@ -10639,7 +10788,7 @@ msgstr "Haz clic en Crear para continuar" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:380 #: ../../enterprise/meta/monitoring/wizard/wizard.php:150 -#: ../../godmode/reporting/graph_builder.graph_editor.php:423 +#: ../../godmode/reporting/graph_builder.graph_editor.php:438 msgid "Please, select a module" msgstr "Por favor, selecciona un módulo." @@ -10649,7 +10798,7 @@ msgstr "Por favor, selecciona un módulo." #: ../../enterprise/include/class/Omnishell.class.php:975 #: ../../enterprise/include/class/Omnishell.class.php:1056 #: ../../enterprise/include/class/DB2.app.php:862 -#: ../../enterprise/include/class/SAP.app.php:924 +#: ../../enterprise/include/class/SAP.app.php:925 #: ../../enterprise/include/class/Aws.cloud.php:1467 #: ../../enterprise/include/class/MySQL.app.php:938 #: ../../enterprise/include/class/Oracle.app.php:970 @@ -10657,8 +10806,8 @@ msgstr "Por favor, selecciona un módulo." #: ../../enterprise/include/class/AlertCorrelationManager.class.php:336 #: ../../godmode/alerts/configure_alert_template.php:1216 #: ../../godmode/wizards/HostDevices.class.php:1617 -#: ../../include/class/CustomNetScan.class.php:758 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1244 +#: ../../include/class/CustomNetScan.class.php:757 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1245 msgid "Finish" msgstr "Finalizar" @@ -10693,8 +10842,8 @@ msgstr "Vacío" #: ../../enterprise/godmode/agentes/collections.data.php:241 #: ../../enterprise/godmode/agentes/collections.data.php:272 #: ../../enterprise/godmode/agentes/collections.data.php:336 -#: ../../include/functions_events.php:3268 -#: ../../include/functions_events.php:3542 +#: ../../include/functions_events.php:3273 +#: ../../include/functions_events.php:3547 msgid "New" msgstr "Nuevo" @@ -10714,18 +10863,18 @@ msgid "Please, select an agent" msgstr "Por favor, selecciona un agente." #: ../../enterprise/meta/monitoring/wizard/wizard.php:154 -#: ../../enterprise/godmode/policies/policy_modules.php:1764 +#: ../../enterprise/godmode/policies/policy_modules.php:1809 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195 #: ../../enterprise/include/class/CommandCenter.class.php:465 -#: ../../enterprise/operation/log/log_viewer.php:1051 -#: ../../enterprise/operation/log/log_viewer.php:1073 +#: ../../enterprise/operation/log/log_viewer.php:1049 +#: ../../enterprise/operation/log/log_viewer.php:1071 #: ../../enterprise/operation/services/services.treeview_services.php:197 -#: ../../godmode/groups/group_list.php:744 +#: ../../godmode/groups/group_list.php:745 #: ../../godmode/massive/massive_copy_modules.php:235 #: ../../godmode/massive/massive_operations.php:384 #: ../../godmode/massive/massive_add_profiles.php:292 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:602 -#: ../../include/functions_events.php:4282 ../../operation/tree.php:374 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:595 +#: ../../include/functions_events.php:4287 ../../operation/tree.php:376 #: ../../operation/reporting/reporting_viewer.php:340 #: ../../operation/reporting/graph_viewer.php:430 #: ../../general/ui/agents_list.php:146 @@ -10734,10 +10883,10 @@ msgstr "Cargando" #: ../../enterprise/meta/monitoring/wizard/wizard.php:156 #: ../../enterprise/meta/include/functions_wizard_meta.php:642 -#: ../../godmode/tag/edit_tag.php:212 -#: ../../include/class/TipsWindow.class.php:726 -#: ../../include/class/TipsWindow.class.php:893 -#: ../../include/functions_reporting.php:7470 +#: ../../godmode/tag/edit_tag.php:216 +#: ../../include/class/TipsWindow.class.php:746 +#: ../../include/class/TipsWindow.class.php:913 +#: ../../include/functions_reporting.php:7479 #: ../../include/lib/Dashboard/Widgets/url.php:216 msgid "Url" msgstr "URL" @@ -10761,21 +10910,21 @@ msgstr "Ya hay otro agente con ese nombre." #: ../../enterprise/meta/monitoring/wizard/wizard.php:161 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:473 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:476 -#: ../../godmode/agentes/module_manager_editor_common.php:673 -#: ../../godmode/agentes/module_manager_editor_common.php:675 +#: ../../godmode/agentes/module_manager_editor_common.php:678 +#: ../../godmode/agentes/module_manager_editor_common.php:680 #, php-format msgid "Agent interval x %s" msgstr "Intervalo del agente x %s" #: ../../enterprise/meta/monitoring/wizard/wizard.php:365 msgid "" -"This feature will be removed in version 771 and its\n" +"This feature will be removed in version 773 and its\n" " functions transferred to different metaconsole tools " "( bulk operations, agent alert editing, etc).\n" " The current functions of the wizard is minimal and we do " "not recommend its use." msgstr "" -"Esta característica se eliminará en la versión 771 y sus\n" +"Esta función se eliminará en la versión 771 y sus\n" " funciones se transferirán a diferentes herramientas de la " "Metaconsola (operaciones masivas, edición de alertas de agentes, etc.).\n" " Las funciones actuales del asistente son mínimas y no " @@ -10787,9 +10936,10 @@ msgstr "Vista de grupo" #: ../../enterprise/meta/monitoring/group_view.php:64 #: ../../godmode/groups/group_list.php:324 +#: ../../godmode/users/configure_user.php:61 #: ../../godmode/users/user_management.php:40 #: ../../godmode/massive/massive_edit_users.php:276 -#: ../../operation/users/user_edit.php:471 +#: ../../include/auth/mysql.php:809 ../../operation/users/user_edit.php:471 #: ../../operation/agentes/group_view.php:89 ../../operation/menu.php:176 msgid "Group view" msgstr "Vista de grupo" @@ -10836,9 +10986,9 @@ msgid "% Monitors Not init" msgstr "% módulos no iniciados" #: ../../enterprise/meta/monitoring/group_view.php:203 -#: ../../godmode/agentes/modificar_agente.php:1016 -#: ../../operation/agentes/estado_agente.php:1309 -#: ../../operation/agentes/group_view.php:600 +#: ../../godmode/agentes/modificar_agente.php:1028 +#: ../../operation/agentes/estado_agente.php:1318 +#: ../../operation/agentes/group_view.php:603 msgid "There are no defined agents" msgstr "No hay ningún agente definido" @@ -10853,15 +11003,15 @@ msgstr "Grupo o etiqueta" #: ../../enterprise/meta/monitoring/group_view.php:232 #: ../../enterprise/operation/services/services.treeview_services.php:291 -#: ../../godmode/groups/group_list.php:1084 -#: ../../include/functions_reporting_html.php:2562 -#: ../../include/functions_reporting_html.php:2572 -#: ../../include/functions_inventory.php:511 -#: ../../include/functions_inventory.php:654 -#: ../../include/functions_alerts.php:3386 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:699 -#: ../../operation/tree.php:503 ../../operation/agentes/group_view.php:241 -#: ../../operation/agentes/agent_inventory.php:266 +#: ../../godmode/groups/group_list.php:1096 +#: ../../include/functions_reporting_html.php:2583 +#: ../../include/functions_reporting_html.php:2593 +#: ../../include/functions_inventory.php:520 +#: ../../include/functions_inventory.php:663 +#: ../../include/functions_alerts.php:3387 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:692 +#: ../../operation/tree.php:505 ../../operation/agentes/group_view.php:244 +#: ../../operation/agentes/agent_inventory.php:321 msgid "Total" msgstr "Total" @@ -10870,18 +11020,18 @@ msgstr "Total" #: ../../godmode/alerts/alert_list.list.php:645 #: ../../godmode/alerts/alert_view.php:111 ../../mobile/operation/alerts.php:324 #: ../../include/functions.php:1284 ../../include/functions_agents.php:2998 -#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1417 -#: ../../include/class/AgentsAlerts.class.php:956 -#: ../../include/class/SnmpConsole.class.php:841 -#: ../../include/functions_reporting.php:13143 -#: ../../include/functions_events.php:2942 -#: ../../include/functions_events.php:3142 -#: ../../operation/agentes/group_view.php:252 +#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1460 +#: ../../include/class/AgentsAlerts.class.php:957 +#: ../../include/class/SnmpConsole.class.php:843 +#: ../../include/functions_reporting.php:13216 +#: ../../include/functions_events.php:2947 +#: ../../include/functions_events.php:3147 +#: ../../operation/agentes/group_view.php:255 msgid "Alert fired" msgstr "Alerta disparada" #: ../../enterprise/meta/monitoring/group_view.php:367 -#: ../../operation/agentes/group_view.php:343 +#: ../../operation/agentes/group_view.php:346 #, php-format msgid "" "This %s installation are using the secondary groups feature. For this reason, " @@ -10893,9 +11043,11 @@ msgstr "" #: ../../enterprise/meta/monitoring/tactical.php:46 #: ../../enterprise/meta/general/main_header.php:103 #: ../../enterprise/meta/general/main_menu.php:205 +#: ../../godmode/users/configure_user.php:62 #: ../../godmode/users/user_management.php:41 #: ../../godmode/massive/massive_edit_users.php:277 #: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97 +#: ../../include/auth/mysql.php:810 #: ../../include/lib/Dashboard/Widgets/tactical.php:176 #: ../../include/lib/Dashboard/Widgets/tactical.php:533 #: ../../operation/users/user_edit.php:472 @@ -10919,14 +11071,14 @@ msgstr "Informe de estado" #: ../../enterprise/meta/general/main_menu.php:271 #: ../../enterprise/include/class/CommandCenter.class.php:1087 #: ../../enterprise/tools/ipam/ipam_network.php:427 -#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:246 +#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:245 #: ../../godmode/events/events.php:142 ../../mobile/include/functions_web.php:25 -#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:908 -#: ../../include/functions.php:4167 ../../include/ajax/events.php:2219 +#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:952 +#: ../../include/functions.php:4193 ../../include/ajax/events.php:2220 #: ../../include/functions_reports.php:876 #: ../../include/functions_reports.php:880 #: ../../include/functions_reports.php:884 ../../operation/menu.php:518 -#: ../../operation/events/events.php:1613 +#: ../../operation/events/events.php:1667 msgid "Events" msgstr "Eventos" @@ -10950,14 +11102,14 @@ msgstr "Ver eventos" #: ../../enterprise/meta/event/custom_events.php:42 #: ../../godmode/netflow/nf_edit.php:211 -#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../godmode/netflow/nf_edit_form.php:80 #: ../../godmode/snmpconsole/snmp_filters.php:37 #: ../../godmode/events/event_filter.php:230 #: ../../include/ajax/custom_fields.php:654 msgid "Create filter" msgstr "Crear filtro" -#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:241 +#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:240 #: ../../godmode/events/events.php:83 msgid "Event responses" msgstr "Respuestas de evento" @@ -10967,24 +11119,23 @@ msgstr "Respuestas de evento" #: ../../enterprise/meta/event/custom_events.php:72 #: ../../enterprise/meta/event/custom_events.php:90 #: ../../godmode/agentes/fields_manager.php:59 -#: ../../godmode/agentes/agent_manager.php:1034 ../../godmode/menu.php:103 -#: ../../godmode/massive/massive_edit_agents.php:1251 +#: ../../godmode/agentes/agent_manager.php:1040 ../../godmode/menu.php:103 +#: ../../godmode/massive/massive_edit_agents.php:1267 #: ../../godmode/reporting/reporting_builder.item_editor.php:76 -#: ../../include/functions_reporting_html.php:1620 -#: ../../include/functions_events.php:4440 +#: ../../include/functions_reporting_html.php:1629 +#: ../../include/functions_events.php:4445 #: ../../operation/agentes/status_monitor.php:64 #: ../../operation/agentes/status_monitor.php:87 -#: ../../operation/agentes/status_monitor.php:293 -#: ../../operation/agentes/status_monitor.php:316 -#: ../../operation/agentes/ver_agente.php:1565 -#: ../../operation/agentes/ver_agente.php:1823 -#: ../../operation/inventory/inventory.php:1009 -#: ../../operation/inventory/inventory.php:1303 +#: ../../operation/agentes/status_monitor.php:292 +#: ../../operation/agentes/status_monitor.php:315 +#: ../../operation/agentes/ver_agente.php:1561 +#: ../../operation/agentes/ver_agente.php:1819 +#: ../../operation/inventory/inventory.php:1255 msgid "Custom fields" msgstr "Campos personalizados" #: ../../enterprise/meta/event/custom_events.php:77 -#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1790 +#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1791 msgid "Responses" msgstr "Respuestas" @@ -10999,25 +11150,25 @@ msgid "Fields" msgstr "Campos" #: ../../enterprise/meta/event/custom_events.php:173 -#: ../../godmode/agentes/status_monitor_custom_fields.php:168 +#: ../../godmode/agentes/status_monitor_custom_fields.php:188 #: ../../godmode/events/custom_events.php:127 msgid "Fields available" msgstr "Campos disponibles" #: ../../enterprise/meta/event/custom_events.php:175 -#: ../../godmode/agentes/status_monitor_custom_fields.php:190 +#: ../../godmode/agentes/status_monitor_custom_fields.php:210 #: ../../godmode/events/custom_events.php:150 msgid "Fields selected" msgstr "Campos seleccionados" #: ../../enterprise/meta/event/custom_events.php:185 -#: ../../godmode/agentes/status_monitor_custom_fields.php:175 +#: ../../godmode/agentes/status_monitor_custom_fields.php:195 #: ../../godmode/events/custom_events.php:134 msgid "Add fields to select" msgstr "Añadir campos para seleccionar" #: ../../enterprise/meta/event/custom_events.php:195 -#: ../../godmode/agentes/status_monitor_custom_fields.php:184 +#: ../../godmode/agentes/status_monitor_custom_fields.php:204 #: ../../godmode/events/custom_events.php:144 msgid "Delete fields to select" msgstr "Eliminar campos para seleccionar" @@ -11028,7 +11179,7 @@ msgid "Show event fields" msgstr "Mostrar campos de eventos" #: ../../enterprise/meta/event/custom_events.php:244 -#: ../../godmode/agentes/status_monitor_custom_fields.php:252 +#: ../../godmode/agentes/status_monitor_custom_fields.php:272 #: ../../godmode/events/custom_events.php:232 msgid "There must be at least one custom field. Timestamp will be set by default" msgstr "" @@ -11086,9 +11237,9 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3007 #: ../../enterprise/include/functions_ipam.php:1665 #: ../../godmode/reporting/reporting_builder.list_items.php:442 -#: ../../godmode/reporting/reporting_builder.list_items.php:738 -#: ../../godmode/reporting/graph_builder.graph_editor.php:217 -#: ../../godmode/reporting/graph_builder.graph_editor.php:354 +#: ../../godmode/reporting/reporting_builder.list_items.php:739 +#: ../../godmode/reporting/graph_builder.graph_editor.php:267 +#: ../../godmode/reporting/graph_builder.graph_editor.php:350 msgid "Sort" msgstr "Ordenar" @@ -11179,7 +11330,7 @@ msgstr "Error al duplicar nombre" #: ../../godmode/users/profile_list.php:61 #: ../../godmode/users/configure_profile.php:54 #: ../../godmode/users/user_list.php:251 ../../godmode/users/user_list.php:276 -#: ../../godmode/users/configure_user.php:245 +#: ../../godmode/users/configure_user.php:183 #: ../../operation/users/user_edit_header.php:89 msgid "User management" msgstr "Gestión de usuarios" @@ -11189,7 +11340,7 @@ msgstr "Gestión de usuarios" #: ../../godmode/users/profile_list.php:72 #: ../../godmode/users/configure_profile.php:65 #: ../../godmode/users/user_list.php:262 -#: ../../godmode/users/configure_user.php:256 ../../godmode/menu.php:159 +#: ../../godmode/users/configure_user.php:194 ../../godmode/menu.php:159 msgid "Profile management" msgstr "Gestionar perfiles" @@ -11224,11 +11375,10 @@ msgstr "Gestión de usuarios" #: ../../godmode/groups/tactical.php:179 #: ../../godmode/agentes/agent_manager.php:373 #: ../../godmode/reporting/reporting_builder.item_editor.php:69 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3993 -#: ../../include/functions_reporting_html.php:1592 -#: ../../include/functions_reporting_html.php:1756 -#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:999 -#: ../../operation/inventory/inventory.php:1293 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4002 +#: ../../include/functions_reporting_html.php:1601 +#: ../../include/functions_reporting_html.php:1765 +#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:1245 msgid "Alias" msgstr "Alias" @@ -11240,18 +11390,18 @@ msgstr "Alias" #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../godmode/agentes/agent_manager.php:401 #: ../../godmode/servers/modificar_server.php:95 -#: ../../include/functions_reporting_html.php:1596 -#: ../../include/functions_reporting_html.php:4139 -#: ../../include/functions_reporting_html.php:4233 -#: ../../include/functions_treeview.php:643 -#: ../../include/functions_events.php:4372 ../../operation/gis_maps/ajax.php:290 +#: ../../include/functions_reporting_html.php:1605 +#: ../../include/functions_reporting_html.php:4167 +#: ../../include/functions_reporting_html.php:4261 +#: ../../include/functions_treeview.php:647 +#: ../../include/functions_events.php:4377 ../../operation/gis_maps/ajax.php:290 msgid "IP Address" msgstr "Dirección IP" #: ../../enterprise/meta/include/functions_wizard_meta.php:236 #: ../../enterprise/meta/include/functions_wizard_meta.php:682 #: ../../enterprise/godmode/modules/configure_local_component.php:515 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:206 #: ../../enterprise/godmode/setup/setup_log_collector.php:89 #: ../../enterprise/include/functions_metaconsole.php:1339 #: ../../enterprise/include/functions_metaconsole.php:1372 @@ -11260,7 +11410,7 @@ msgstr "Dirección IP" #: ../../enterprise/include/functions_metaconsole.php:1471 #: ../../enterprise/include/functions_metaconsole.php:1502 #: ../../enterprise/include/functions_metaconsole.php:1535 -#: ../../godmode/agentes/module_manager_editor_web.php:179 +#: ../../godmode/agentes/module_manager_editor_web.php:182 msgid "Check" msgstr "Comprobar" @@ -11274,9 +11424,9 @@ msgstr "Comprobar" #: ../../godmode/alerts/configure_alert_template.php:246 #: ../../godmode/alerts/configure_alert_template.php:250 #: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:268 -#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1740 +#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1741 #: ../../include/functions_reports.php:783 -#: ../../include/functions_reporting.php:10176 +#: ../../include/functions_reporting.php:10185 msgid "General" msgstr "General" @@ -11302,7 +11452,7 @@ msgstr "Deshacer los cambios" #: ../../enterprise/meta/include/functions_wizard_meta.php:492 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753 #: ../../godmode/agentes/module_manager_editor_wmi.php:57 -#: ../../godmode/agentes/module_manager_editor_network.php:103 +#: ../../godmode/agentes/module_manager_editor_network.php:104 #: ../../godmode/massive/massive_edit_modules.php:832 msgid "Auto" msgstr "Automático" @@ -11310,7 +11460,7 @@ msgstr "Automático" #: ../../enterprise/meta/include/functions_wizard_meta.php:493 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 #: ../../godmode/agentes/module_manager_editor_wmi.php:58 -#: ../../godmode/agentes/module_manager_editor_network.php:104 +#: ../../godmode/agentes/module_manager_editor_network.php:105 #: ../../godmode/massive/massive_edit_modules.php:833 msgid "Force primary key" msgstr "Forzar clave primaria" @@ -11325,8 +11475,8 @@ msgstr "Forzar clave primaria" #: ../../enterprise/meta/general/login_page.php:267 #: ../../enterprise/extensions/disabled/check_acls.php:47 #: ../../enterprise/extensions/disabled/check_acls.php:132 -#: ../../enterprise/godmode/setup/setup_auth.php:1130 -#: ../../enterprise/godmode/setup/setup_auth.php:1162 +#: ../../enterprise/godmode/setup/setup_auth.php:1347 +#: ../../enterprise/godmode/setup/setup_auth.php:1379 #: ../../enterprise/godmode/servers/manage_export_form.php:155 #: ../../enterprise/include/functions_tasklist.php:172 #: ../../enterprise/include/class/DB2.app.php:509 @@ -11337,23 +11487,22 @@ msgstr "Forzar clave primaria" #: ../../godmode/update_manager/update_manager.history.php:43 #: ../../godmode/setup/setup_ehorus.php:97 #: ../../godmode/setup/setup_integria.php:292 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3525 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3534 #: ../../godmode/events/custom_events.php:97 -#: ../../mobile/include/user.class.php:392 -#: ../../mobile/operation/tactical.php:349 -#: ../../include/functions_reporting_html.php:6011 +#: ../../mobile/operation/tactical.php:350 +#: ../../include/functions_reporting_html.php:6045 #: ../../include/functions.php:3109 ../../include/functions_cron.php:498 -#: ../../include/functions_config.php:731 ../../include/functions_config.php:751 +#: ../../include/functions_config.php:743 ../../include/functions_config.php:763 #: ../../include/class/CredentialStore.class.php:817 -#: ../../include/class/CredentialStore.class.php:1300 +#: ../../include/class/CredentialStore.class.php:1301 #: ../../include/class/AuditLog.class.php:110 #: ../../include/class/AuditLog.class.php:240 #: ../../include/functions_events.php:202 ../../include/functions_events.php:253 -#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:857 -#: ../../operation/users/user_edit.php:910 +#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:854 +#: ../../operation/users/user_edit.php:907 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:134 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:265 -#: ../../general/logon_ok.php:255 ../../general/login_page.php:276 +#: ../../general/logon_ok.php:300 ../../general/login_page.php:276 #: ../../general/login_page.php:335 msgid "User" msgstr "Usuario" @@ -11367,8 +11516,8 @@ msgstr "Usuario" #: ../../enterprise/meta/general/login_page.php:284 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851 #: ../../enterprise/godmode/setup/setup_module_library.php:57 -#: ../../enterprise/godmode/setup/setup_auth.php:1136 -#: ../../enterprise/godmode/setup/setup_auth.php:1168 +#: ../../enterprise/godmode/setup/setup_auth.php:1353 +#: ../../enterprise/godmode/setup/setup_auth.php:1385 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250 #: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 #: ../../enterprise/godmode/servers/manage_export_form.php:161 @@ -11384,22 +11533,21 @@ msgstr "Usuario" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:532 #: ../../extensions/api_checker.php:260 #: ../../godmode/modules/manage_network_components_form_wmi.php:49 -#: ../../godmode/users/configure_user.php:1126 +#: ../../godmode/users/configure_user.php:1190 #: ../../godmode/users/user_management.php:280 #: ../../godmode/agentes/module_manager_editor_wmi.php:148 #: ../../godmode/massive/massive_edit_modules.php:923 #: ../../godmode/setup/setup_ehorus.php:104 -#: ../../godmode/setup/setup_integria.php:306 -#: ../../mobile/include/user.class.php:399 ../../include/functions_ui.php:7484 -#: ../../include/functions_config.php:735 ../../include/functions_config.php:755 +#: ../../godmode/setup/setup_integria.php:306 ../../include/functions_ui.php:7561 +#: ../../include/functions_config.php:747 ../../include/functions_config.php:767 #: ../../include/class/CredentialStore.class.php:974 #: ../../include/class/CredentialStore.class.php:1024 -#: ../../include/class/CredentialStore.class.php:1301 -#: ../../include/class/CredentialStore.class.php:1324 -#: ../../include/class/CredentialStore.class.php:1346 +#: ../../include/class/CredentialStore.class.php:1302 +#: ../../include/class/CredentialStore.class.php:1328 +#: ../../include/class/CredentialStore.class.php:1352 #: ../../include/class/AgentWizard.class.php:690 -#: ../../operation/users/user_edit.php:863 -#: ../../operation/users/user_edit.php:916 ../../general/login_page.php:290 +#: ../../operation/users/user_edit.php:860 +#: ../../operation/users/user_edit.php:913 ../../general/login_page.php:290 #: ../../general/login_page.php:351 msgid "Password" msgstr "Contraseña" @@ -11413,14 +11561,14 @@ msgid "Response" msgstr "Respuesta" #: ../../enterprise/meta/include/functions_wizard_meta.php:593 -#: ../../godmode/agentes/module_manager_editor_web.php:213 +#: ../../godmode/agentes/module_manager_editor_web.php:216 msgid "Check type" msgstr "Comprueba el tipo" #: ../../enterprise/meta/include/functions_wizard_meta.php:610 #: ../../enterprise/meta/include/functions_wizard_meta.php:667 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066 -#: ../../enterprise/include/functions_enterprise.php:447 +#: ../../enterprise/include/functions_enterprise.php:457 #: ../../godmode/agentes/module_manager_editor_web.php:92 #: ../../godmode/massive/massive_edit_modules.php:1156 msgid "Web checks" @@ -11440,47 +11588,47 @@ msgstr "Eliminar comprobación" #: ../../enterprise/meta/include/functions_wizard_meta.php:674 #: ../../enterprise/godmode/modules/configure_local_component.php:506 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:217 -#: ../../godmode/agentes/module_manager_editor_web.php:168 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:218 +#: ../../godmode/agentes/module_manager_editor_web.php:171 msgid "Load basic" msgstr "cargar básicos" #: ../../enterprise/meta/include/functions_wizard_meta.php:680 -#: ../../godmode/agentes/module_manager_editor_web.php:177 +#: ../../godmode/agentes/module_manager_editor_web.php:180 msgid "Load a basic structure on Web Checks" msgstr "Cargar una estructura básica en las comprobaciones web" #: ../../enterprise/meta/include/functions_wizard_meta.php:688 -#: ../../godmode/agentes/module_manager_editor_web.php:188 +#: ../../godmode/agentes/module_manager_editor_web.php:191 msgid "Check the correct structure of the WebCheck" msgstr "Cargar la estructura correcta de las comprobaciones web" #: ../../enterprise/meta/include/functions_wizard_meta.php:695 -#: ../../godmode/agentes/module_manager_editor_web.php:267 +#: ../../godmode/agentes/module_manager_editor_web.php:270 msgid "First line must be \"task_begin\"" msgstr "La primera línea tiene que ser \"task_begin\"." #: ../../enterprise/meta/include/functions_wizard_meta.php:696 -#: ../../godmode/agentes/module_manager_editor_web.php:268 +#: ../../godmode/agentes/module_manager_editor_web.php:271 msgid "Webchecks configuration is empty" msgstr "La configuración de comprobaciones web está vacía." #: ../../enterprise/meta/include/functions_wizard_meta.php:697 #: ../../enterprise/meta/include/functions_wizard_meta.php:698 -#: ../../godmode/agentes/module_manager_editor_web.php:269 -#: ../../godmode/agentes/module_manager_editor_web.php:270 +#: ../../godmode/agentes/module_manager_editor_web.php:272 +#: ../../godmode/agentes/module_manager_editor_web.php:273 msgid "Last line must be \"task_end\"" msgstr "La última línea tiene que ser \"task_end\"." #: ../../enterprise/meta/include/functions_wizard_meta.php:699 #: ../../enterprise/godmode/modules/configure_local_component.php:525 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256 -#: ../../godmode/agentes/module_manager_editor_web.php:271 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257 +#: ../../godmode/agentes/module_manager_editor_web.php:274 msgid "There is a line with a unknown token 'token_fail'." msgstr "Hay una línea con un token desconocido \"token_fail\"." #: ../../enterprise/meta/include/functions_wizard_meta.php:700 -#: ../../godmode/agentes/module_manager_editor_web.php:273 +#: ../../godmode/agentes/module_manager_editor_web.php:276 msgid "Web checks are built correctly" msgstr "Las comprobaciones web se han efectuado correctamente." @@ -11513,42 +11661,41 @@ msgstr "Las comprobaciones web se han efectuado correctamente." #: ../../enterprise/operation/agentes/tag_view.php:784 #: ../../enterprise/tools/ipam/ipam_list.php:724 #: ../../godmode/modules/manage_network_components_form_common.php:143 -#: ../../godmode/agentes/status_monitor_custom_fields.php:93 -#: ../../godmode/agentes/status_monitor_custom_fields.php:145 +#: ../../godmode/agentes/status_monitor_custom_fields.php:113 +#: ../../godmode/agentes/status_monitor_custom_fields.php:165 #: ../../godmode/agentes/inventory_manager.php:236 #: ../../godmode/agentes/agent_manager.php:503 -#: ../../godmode/agentes/module_manager_editor_common.php:1067 +#: ../../godmode/agentes/module_manager_editor_common.php:1077 #: ../../godmode/agentes/module_manager.php:637 -#: ../../godmode/massive/massive_edit_agents.php:714 +#: ../../godmode/massive/massive_edit_agents.php:731 #: ../../godmode/massive/massive_edit_modules.php:769 -#: ../../godmode/setup/setup_visuals.php:1919 -#: ../../godmode/setup/setup_visuals.php:2001 +#: ../../godmode/setup/setup_visuals.php:1934 +#: ../../godmode/setup/setup_visuals.php:2016 #: ../../godmode/wizards/HostDevices.class.php:799 #: ../../godmode/wizards/DiscoveryTaskList.class.php:599 -#: ../../mobile/operation/modules.php:657 ../../mobile/operation/modules.php:659 -#: ../../mobile/operation/modules.php:851 -#: ../../include/functions_reporting_html.php:3712 -#: ../../include/ajax/events.php:2372 ../../include/functions_treeview.php:83 -#: ../../include/functions_treeview.php:649 ../../include/functions_ui.php:7417 +#: ../../mobile/operation/modules.php:668 ../../mobile/operation/modules.php:670 +#: ../../mobile/operation/modules.php:910 +#: ../../include/functions_reporting_html.php:3740 +#: ../../include/ajax/events.php:2373 ../../include/functions_treeview.php:83 +#: ../../include/functions_treeview.php:653 ../../include/functions_ui.php:7494 #: ../../include/class/CustomNetScan.class.php:526 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:376 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:296 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:319 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:408 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:362 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:387 #: ../../include/lib/Dashboard/Widgets/single_graph.php:347 #: ../../include/lib/Dashboard/Widgets/top_n.php:236 #: ../../include/lib/Group.php:570 ../../operation/search_agents.php:45 #: ../../operation/search_agents.php:51 -#: ../../operation/agentes/estado_agente.php:1035 -#: ../../operation/agentes/status_monitor.php:1560 -#: ../../operation/agentes/estado_generalagente.php:458 +#: ../../operation/agentes/status_monitor.php:1562 +#: ../../operation/agentes/estado_generalagente.php:429 #: ../../operation/network/network_usage_map.php:114 -#: ../../operation/netflow/nf_live_view.php:389 -#: ../../operation/inventory/inventory.php:1006 -#: ../../operation/inventory/inventory.php:1300 -#: ../../operation/search_modules.php:35 -#: ../../operation/events/sound_events.php:219 +#: ../../operation/netflow/nf_live_view.php:462 +#: ../../operation/inventory/inventory.php:1252 +#: ../../operation/search_modules.php:38 +#: ../../operation/events/sound_events.php:249 msgid "Interval" msgstr "Intervalo" @@ -11562,9 +11709,9 @@ msgstr "Intervalo" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868 #: ../../enterprise/include/functions_reporting_csv.php:2791 #: ../../godmode/modules/manage_network_components_form_common.php:323 -#: ../../godmode/agentes/module_manager_editor_common.php:1327 +#: ../../godmode/agentes/module_manager_editor_common.php:1337 #: ../../godmode/massive/massive_edit_modules.php:940 -#: ../../include/functions_reporting_html.php:3713 +#: ../../include/functions_reporting_html.php:3741 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:498 msgid "Unit" msgstr "Unidad" @@ -11587,7 +11734,7 @@ msgstr "Comunidad SNMP" #: ../../enterprise/include/class/DeploymentCenter.class.php:1344 #: ../../enterprise/include/class/DeploymentCenter.class.php:1354 #: ../../extensions/api_checker.php:331 -#: ../../godmode/wizards/HostDevices.class.php:1508 +#: ../../godmode/wizards/HostDevices.class.php:1504 msgid "Credentials" msgstr "Credenciales" @@ -11612,9 +11759,10 @@ msgstr "Credenciales" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268 #: ../../godmode/alerts/alert_view.php:272 #: ../../godmode/reporting/reporting_builder.item_editor.php:1483 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2574 -#: ../../include/functions_reporting_html.php:5008 -#: ../../include/functions_ui.php:2869 ../../include/functions_reporting.php:1539 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2583 +#: ../../include/functions_reporting_html.php:5036 +#: ../../include/functions.php:4088 ../../include/functions_ui.php:2912 +#: ../../include/functions_reporting.php:1539 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:363 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:410 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:439 @@ -11642,9 +11790,10 @@ msgstr "Mín." #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268 #: ../../godmode/alerts/alert_view.php:272 #: ../../godmode/reporting/reporting_builder.item_editor.php:1485 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2567 -#: ../../include/functions_reporting_html.php:5007 -#: ../../include/functions_ui.php:2869 ../../include/functions_reporting.php:1535 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2576 +#: ../../include/functions_reporting_html.php:5035 +#: ../../include/functions.php:4095 ../../include/functions_ui.php:2912 +#: ../../include/functions_reporting.php:1535 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:372 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:419 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:448 @@ -11674,8 +11823,8 @@ msgstr "Máx." #: ../../godmode/modules/manage_network_components_form_wizard.php:444 #: ../../godmode/agentes/module_manager_editor_common.php:477 #: ../../godmode/agentes/module_manager_editor_common.php:485 -#: ../../godmode/agentes/module_manager_editor_common.php:560 -#: ../../godmode/agentes/module_manager_editor_common.php:569 +#: ../../godmode/agentes/module_manager_editor_common.php:565 +#: ../../godmode/agentes/module_manager_editor_common.php:574 #: ../../godmode/massive/massive_edit_modules.php:625 #: ../../godmode/massive/massive_edit_modules.php:716 msgid "Inverse interval" @@ -11684,13 +11833,13 @@ msgstr "Intervalo inverso" #: ../../enterprise/meta/include/functions_wizard_meta.php:996 #: ../../enterprise/meta/include/functions_wizard_meta.php:1081 #: ../../enterprise/meta/include/functions_wizard_meta.php:1314 -#: ../../include/ajax/module.php:1004 +#: ../../include/ajax/module.php:1027 msgid "Thresholds" msgstr "Umbrales" #: ../../enterprise/meta/include/functions_wizard_meta.php:1087 #: ../../enterprise/meta/include/functions_wizard_meta.php:1619 -#: ../../godmode/agentes/module_manager_editor_web.php:238 +#: ../../godmode/agentes/module_manager_editor_web.php:241 msgid "Proxy URL" msgstr "Proxy URL" @@ -11715,7 +11864,7 @@ msgid "Alerts in module" msgstr "Alertas en el módulo" #: ../../enterprise/meta/include/functions_wizard_meta.php:1376 -#: ../../include/functions_reporting_html.php:5372 +#: ../../include/functions_reporting_html.php:5400 msgid "Alert description" msgstr "Descripción de la alerta" @@ -11750,7 +11899,7 @@ msgstr "Error al crear las alertas; operación cancelada" #: ../../enterprise/meta/include/functions_wizard_meta.php:2064 #: ../../enterprise/meta/include/functions_wizard_meta.php:2159 -#: ../../enterprise/godmode/policies/policy_modules.php:933 +#: ../../enterprise/godmode/policies/policy_modules.php:937 msgid "Successfully added module." msgstr "Módulo añadido correctamente" @@ -11826,7 +11975,7 @@ msgstr "Cada día" #: ../../enterprise/include/ajax/ipam.ajax.php:521 #: ../../enterprise/tools/ipam/ipam_editor.php:364 #: ../../godmode/alerts/alert_templates.php:71 -#: ../../include/functions_config.php:1684 +#: ../../include/functions_config.php:1696 msgid "Days" msgstr "Días" @@ -11841,7 +11990,7 @@ msgid "and" msgstr "y" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:318 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:254 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2263 #: ../../godmode/snmpconsole/snmp_alert.php:1589 @@ -11867,8 +12016,8 @@ msgstr "Umbral de tiempo" #: ../../godmode/alerts/alert_list.list.php:733 #: ../../godmode/alerts/alert_templates.php:94 #: ../../include/functions_reporting_html.php:148 -#: ../../include/functions_reporting_html.php:3202 -#: ../../include/functions_reporting_html.php:4013 +#: ../../include/functions_reporting_html.php:3230 +#: ../../include/functions_reporting_html.php:4041 #: ../../include/rest-api/index.php:375 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:513 @@ -11894,10 +12043,10 @@ msgstr "De" #: ../../godmode/alerts/alert_templates.php:96 #: ../../godmode/alerts/alert_list.builder.php:126 #: ../../include/functions_reporting_html.php:149 -#: ../../include/functions_reporting_html.php:3207 +#: ../../include/functions_reporting_html.php:3235 #: ../../include/ajax/alert_list.ajax.php:527 #: ../../include/class/AgentsAlerts.class.php:321 -#: ../../include/functions_reporting.php:14866 +#: ../../include/functions_reporting.php:14939 #: ../../operation/reporting/reporting_viewer.php:272 msgid "to" msgstr "a" @@ -11921,9 +12070,9 @@ msgstr "Identificación del evento" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:587 #: ../../include/functions_reporting_html.php:1307 #: ../../include/functions_reporting_html.php:1315 -#: ../../include/functions_reporting_html.php:5304 +#: ../../include/functions_reporting_html.php:5332 #: ../../include/functions_events.php:200 ../../include/functions_events.php:2529 -#: ../../include/functions_events.php:4901 +#: ../../include/functions_events.php:4906 msgid "Event name" msgstr "Nombre del evento" @@ -11931,15 +12080,15 @@ msgstr "Nombre del evento" #: ../../enterprise/include/functions_reporting_csv.php:921 #: ../../enterprise/include/class/Omnishell.class.php:642 #: ../../enterprise/include/functions_ipam.php:2114 -#: ../../godmode/agentes/modificar_agente.php:690 +#: ../../godmode/agentes/modificar_agente.php:700 #: ../../godmode/agentes/agent_manager.php:357 -#: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849 -#: ../../include/functions_reporting_html.php:3659 -#: ../../include/functions_treeview.php:607 +#: ../../mobile/operation/modules.php:608 ../../mobile/operation/modules.php:908 +#: ../../include/functions_reporting_html.php:3687 +#: ../../include/functions_treeview.php:611 #: ../../include/class/SatelliteAgent.class.php:513 #: ../../include/lib/Group.php:550 ../../include/functions_events.php:201 #: ../../include/functions_events.php:247 ../../include/functions_events.php:2534 -#: ../../operation/events/events.php:2669 +#: ../../operation/events/events.php:2723 msgid "Agent name" msgstr "Nombre del agente" @@ -11954,38 +12103,39 @@ msgstr "Nombre del agente" #: ../../enterprise/include/class/LogSource.class.php:604 #: ../../enterprise/operation/agentes/tag_view.php:789 #: ../../godmode/update_manager/update_manager.history.php:44 -#: ../../godmode/agentes/status_monitor_custom_fields.php:117 -#: ../../godmode/agentes/status_monitor_custom_fields.php:151 -#: ../../godmode/setup/news.php:352 ../../godmode/events/custom_events.php:100 -#: ../../mobile/operation/modules.php:661 ../../mobile/operation/modules.php:852 -#: ../../mobile/operation/events.php:804 +#: ../../godmode/agentes/status_monitor_custom_fields.php:137 +#: ../../godmode/agentes/status_monitor_custom_fields.php:171 +#: ../../godmode/setup/news.php:356 ../../godmode/events/custom_events.php:100 +#: ../../mobile/operation/modules.php:672 ../../mobile/operation/modules.php:911 +#: ../../mobile/operation/module_data.php:165 +#: ../../mobile/operation/events.php:833 #: ../../include/functions_reporting_html.php:1062 #: ../../include/functions_reporting_html.php:1070 #: ../../include/functions_reporting_html.php:1310 #: ../../include/functions_reporting_html.php:1317 -#: ../../include/functions_reporting_html.php:2646 -#: ../../include/functions_reporting_html.php:5306 +#: ../../include/functions_reporting_html.php:2665 +#: ../../include/functions_reporting_html.php:5334 #: ../../include/ajax/events_extended.php:90 #: ../../include/ajax/custom_fields.php:415 -#: ../../include/functions_inventory.php:143 -#: ../../include/functions_inventory.php:177 -#: ../../include/functions_inventory.php:379 -#: ../../include/functions_inventory.php:399 -#: ../../include/functions_inventory.php:585 +#: ../../include/functions_inventory.php:144 +#: ../../include/functions_inventory.php:178 +#: ../../include/functions_inventory.php:388 +#: ../../include/functions_inventory.php:408 +#: ../../include/functions_inventory.php:594 #: ../../include/functions_netflow.php:278 #: ../../include/class/SnmpConsole.class.php:279 #: ../../include/functions_events.php:205 ../../include/functions_events.php:262 #: ../../include/functions_events.php:2539 -#: ../../include/functions_events.php:4914 +#: ../../include/functions_events.php:4919 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1598 -#: ../../operation/agentes/estado_generalagente.php:751 +#: ../../operation/agentes/status_monitor.php:1600 +#: ../../operation/agentes/estado_generalagente.php:720 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/messages/message_list.php:196 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:132 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:263 -#: ../../operation/search_modules.php:39 +#: ../../operation/search_modules.php:42 msgid "Timestamp" msgstr "Marca temporal" @@ -11995,12 +12145,12 @@ msgstr "Marca temporal" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1406 #: ../../enterprise/include/lib/AlertCorrelation.class.php:1127 #: ../../enterprise/include/functions_events.php:60 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3025 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3034 #: ../../godmode/events/event_filter.php:146 -#: ../../godmode/events/event_edit_filter.php:352 +#: ../../godmode/events/event_edit_filter.php:354 #: ../../include/lib/Dashboard/Widgets/events_list.php:332 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:267 -#: ../../include/functions_events.php:206 ../../operation/events/events.php:1749 +#: ../../include/functions_events.php:206 ../../operation/events/events.php:1803 msgid "Event type" msgstr "Tipo de evento" @@ -12009,20 +12159,20 @@ msgstr "Tipo de evento" #: ../../enterprise/include/functions_reporting_csv.php:923 #: ../../enterprise/operation/agentes/tag_view.php:217 #: ../../godmode/modules/manage_network_templates_form.php:231 -#: ../../godmode/modules/manage_network_components.php:774 +#: ../../godmode/modules/manage_network_components.php:777 #: ../../godmode/modules/manage_network_components_form_wizard.php:272 #: ../../godmode/agentes/agent_template.php:274 -#: ../../godmode/agentes/status_monitor_custom_fields.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:143 +#: ../../godmode/agentes/status_monitor_custom_fields.php:105 +#: ../../godmode/agentes/status_monitor_custom_fields.php:163 #: ../../godmode/alerts/alert_list.list.php:104 -#: ../../mobile/operation/modules.php:594 ../../mobile/operation/modules.php:848 -#: ../../include/ajax/heatmap.ajax.php:239 -#: ../../include/ajax/heatmap.ajax.php:278 ../../include/ajax/module.php:1001 +#: ../../mobile/operation/modules.php:602 ../../mobile/operation/modules.php:604 +#: ../../mobile/operation/modules.php:907 ../../include/ajax/heatmap.ajax.php:281 +#: ../../include/ajax/heatmap.ajax.php:406 ../../include/ajax/module.php:1024 #: ../../include/ajax/custom_fields.php:411 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:542 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:558 -#: ../../operation/agentes/status_monitor.php:902 -#: ../../operation/agentes/status_monitor.php:1548 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559 +#: ../../operation/agentes/status_monitor.php:901 +#: ../../operation/agentes/status_monitor.php:1550 msgid "Module name" msgstr "Nombre del módulo" @@ -12033,14 +12183,14 @@ msgstr "Nombre del módulo" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:380 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4422 #: ../../godmode/alerts/configure_alert_template.php:1602 -#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4174 +#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4200 #: ../../include/functions_snmp.php:324 #: ../../include/class/SnmpConsole.class.php:280 #: ../../include/class/SnmpConsole.class.php:352 #: ../../include/class/SnmpConsole.class.php:506 #: ../../include/class/SnmpConsole.class.php:507 #: ../../include/functions_events.php:208 ../../include/functions_events.php:271 -#: ../../operation/agentes/estado_monitores.php:517 +#: ../../operation/agentes/estado_monitores.php:514 msgid "Alert" msgstr "Alerta" @@ -12051,35 +12201,35 @@ msgstr "Alerta" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2867 #: ../../enterprise/include/functions_reporting.php:2020 #: ../../enterprise/include/functions_events.php:70 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2998 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3007 #: ../../godmode/events/event_filter.php:148 -#: ../../godmode/events/event_edit_filter.php:372 +#: ../../godmode/events/event_edit_filter.php:374 #: ../../godmode/events/custom_events.php:104 -#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679 -#: ../../mobile/operation/events.php:820 ../../mobile/operation/events.php:982 -#: ../../mobile/operation/events.php:983 +#: ../../mobile/operation/events.php:707 ../../mobile/operation/events.php:708 +#: ../../mobile/operation/events.php:849 ../../mobile/operation/events.php:1026 +#: ../../mobile/operation/events.php:1027 #: ../../include/functions_reporting_html.php:1060 #: ../../include/functions_reporting_html.php:1068 #: ../../include/functions_reporting_html.php:1308 #: ../../include/functions_reporting_html.php:1316 -#: ../../include/functions_reporting_html.php:2644 +#: ../../include/functions_reporting_html.php:2663 #: ../../include/functions_snmp.php:335 #: ../../include/class/SnmpConsole.class.php:363 #: ../../include/class/SnmpConsole.class.php:483 #: ../../include/lib/Dashboard/Widgets/events_list.php:404 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:396 #: ../../include/functions_events.php:209 ../../include/functions_events.php:274 -#: ../../include/functions_events.php:4982 ../../operation/events/events.php:1850 +#: ../../include/functions_events.php:4987 ../../operation/events/events.php:1904 msgid "Severity" msgstr "Gravedad" #: ../../enterprise/meta/include/functions_events_meta.php:102 -#: ../../godmode/events/event_edit_filter.php:829 +#: ../../godmode/events/event_edit_filter.php:831 #: ../../godmode/events/custom_events.php:105 -#: ../../godmode/wizards/HostDevices.class.php:960 +#: ../../godmode/wizards/HostDevices.class.php:956 #: ../../include/class/CustomNetScan.class.php:474 #: ../../include/functions_events.php:210 ../../include/functions_events.php:277 -#: ../../include/functions_events.php:3622 ../../operation/events/events.php:1906 +#: ../../include/functions_events.php:3627 ../../operation/events/events.php:1960 msgid "Comment" msgstr "Comentar" @@ -12090,7 +12240,7 @@ msgstr "Comentar" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971 #: ../../enterprise/godmode/setup/setup_auth.php:253 #: ../../enterprise/godmode/setup/setup_auth.php:603 -#: ../../enterprise/godmode/setup/setup_auth.php:1413 +#: ../../enterprise/godmode/setup/setup_auth.php:1630 #: ../../enterprise/include/functions_reporting_csv.php:763 #: ../../enterprise/operation/agentes/tag_view.php:241 #: ../../enterprise/operation/agentes/tag_view.php:781 @@ -12102,27 +12252,27 @@ msgstr "Comentar" #: ../../godmode/massive/massive_edit_modules.php:491 #: ../../godmode/massive/massive_edit_modules.php:1062 #: ../../godmode/reporting/reporting_builder.item_editor.php:85 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3964 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3973 #: ../../godmode/events/custom_events.php:106 -#: ../../mobile/operation/events.php:845 -#: ../../include/functions_reporting_html.php:1772 -#: ../../include/functions_reporting_html.php:3715 +#: ../../mobile/operation/events.php:874 +#: ../../include/functions_reporting_html.php:1781 +#: ../../include/functions_reporting_html.php:3743 #: ../../include/functions_treeview.php:152 #: ../../include/functions_profile.php:205 #: ../../include/lib/Dashboard/Widgets/events_list.php:461 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:342 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:345 #: ../../include/functions_events.php:211 ../../include/functions_events.php:280 -#: ../../include/functions_events.php:5080 ../../operation/tree.php:67 -#: ../../operation/users/user_edit.php:1000 -#: ../../operation/agentes/status_monitor.php:878 -#: ../../operation/agentes/group_view.php:240 +#: ../../include/functions_events.php:5085 ../../operation/tree.php:67 +#: ../../operation/users/user_edit.php:997 +#: ../../operation/agentes/status_monitor.php:877 +#: ../../operation/agentes/group_view.php:243 #: ../../operation/agentes/alerts_status.functions.php:146 #: ../../general/first_task/tags.php:22 msgid "Tags" msgstr "Etiquetas" #: ../../enterprise/meta/include/functions_events_meta.php:114 -#: ../../include/functions_events.php:213 ../../include/functions_events.php:4626 +#: ../../include/functions_events.php:213 ../../include/functions_events.php:4631 msgid "Extra id" msgstr "ID extra" @@ -12130,13 +12280,13 @@ msgstr "ID extra" #: ../../godmode/setup/setup_integria.php:464 #: ../../godmode/setup/setup_integria.php:598 #: ../../godmode/events/custom_events.php:109 -#: ../../mobile/operation/events.php:808 ../../include/functions_events.php:214 -#: ../../include/functions_events.php:289 ../../include/functions_events.php:4936 +#: ../../mobile/operation/events.php:837 ../../include/functions_events.php:214 +#: ../../include/functions_events.php:289 ../../include/functions_events.php:4941 #: ../../operation/incidents/integriaims_export_csv.php:89 #: ../../operation/incidents/configure_integriaims_incident.php:339 #: ../../operation/incidents/list_integriaims_incidents.php:360 #: ../../operation/incidents/list_integriaims_incidents.php:593 -#: ../../operation/events/events.php:2026 +#: ../../operation/events/events.php:2080 msgid "Owner" msgstr "Propietario" @@ -12149,7 +12299,7 @@ msgstr "ACK Marca temporal" #: ../../enterprise/meta/include/functions_events_meta.php:126 #: ../../godmode/events/custom_events.php:111 #: ../../include/functions_events.php:216 ../../include/functions_events.php:295 -#: ../../include/functions_events.php:4614 ../../operation/events/events.php:3239 +#: ../../include/functions_events.php:4619 ../../operation/events/events.php:3298 msgid "Instructions" msgstr "Instrucciones" @@ -12165,11 +12315,11 @@ msgid "Server name" msgstr "Nombre del servidor" #: ../../enterprise/meta/include/functions_events_meta.php:138 -#: ../../include/functions_reporting_html.php:5216 +#: ../../include/functions_reporting_html.php:5244 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:172 #: ../../include/lib/Dashboard/Widgets/module_status.php:175 #: ../../include/lib/Dashboard/Widgets/module_status.php:610 -#: ../../include/functions_events.php:219 ../../operation/tree.php:315 +#: ../../include/functions_events.php:219 ../../operation/tree.php:317 msgid "Module status" msgstr "Estado del módulo" @@ -12213,8 +12363,8 @@ msgstr "Ir a la Wiki de Pandora FMS" #: ../../enterprise/meta/include/process_reset_pass.php:58 #: ../../enterprise/meta/include/reset_pass.php:58 #: ../../enterprise/godmode/modules/configure_local_component.php:657 -#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1624 -#: ../../include/class/ManageNetScanScripts.class.php:698 +#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1667 +#: ../../include/class/ManageNetScanScripts.class.php:694 msgid "Help" msgstr "Ayuda" @@ -12235,8 +12385,8 @@ msgid "Change password" msgstr "Cambiar contraseña" #: ../../enterprise/meta/include/process_reset_pass.php:123 -#: ../../enterprise/meta/index.php:691 -#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:856 +#: ../../enterprise/meta/index.php:692 +#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:857 msgid "Passwords must be the same" msgstr "Las contraseñas deben coincidir" @@ -12261,8 +12411,7 @@ msgstr "METACONSOLA" #: ../../enterprise/meta/general/login_page.php:316 #: ../../enterprise/include/process_reset_pass.php:239 #: ../../enterprise/include/reset_pass.php:213 -#: ../../enterprise/include/reset_pass.php:320 -#: ../../include/functions_menu.php:955 ../../general/login_page.php:460 +#: ../../enterprise/include/reset_pass.php:320 ../../general/login_page.php:460 msgid "Build" msgstr "Crear" @@ -12324,7 +12473,7 @@ msgstr "Operaciones de usuario" #: ../../enterprise/meta/include/functions_agents_meta.php:661 #: ../../enterprise/extensions/disabled/check_acls.php:50 #: ../../enterprise/extensions/disabled/check_acls.php:137 -#: ../../include/functions_menu.php:567 +#: ../../include/functions_menu.php:569 msgid "Agents management" msgstr "Gestión de agentes" @@ -12340,7 +12489,7 @@ msgid "No admin user" msgstr "No hay usuario administrador" #: ../../enterprise/meta/include/functions_meta.php:71 -#: ../../include/functions_config.php:438 +#: ../../include/functions_config.php:446 msgid "Activate Metaconsole" msgstr "Activar la Metaconsola" @@ -12388,26 +12537,26 @@ msgstr "Puerto ElasticSearch" #: ../../enterprise/meta/include/functions_meta.php:533 #: ../../enterprise/godmode/setup/setup_log_collector.php:64 -#: ../../include/functions_config.php:1625 +#: ../../include/functions_config.php:1637 msgid "Number of logs viewed" msgstr "Número de logs vistos" #: ../../enterprise/meta/include/functions_meta.php:554 -#: ../../godmode/setup/setup_auth.php:483 ../../include/functions_config.php:559 +#: ../../godmode/setup/setup_auth.php:483 ../../include/functions_config.php:567 #: ../../include/class/CredentialStore.class.php:1162 -#: ../../include/class/CredentialStore.class.php:1455 +#: ../../include/class/CredentialStore.class.php:1464 #: ../../include/class/AgentWizard.class.php:925 msgid "Authentication method" msgstr "Método de autentificación" #: ../../enterprise/meta/include/functions_meta.php:564 -#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:691 +#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:703 msgid "Fallback to local authentication" msgstr "Alternativa si falla la autentificación" #: ../../enterprise/meta/include/functions_meta.php:574 #: ../../enterprise/meta/include/functions_meta.php:798 -#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:563 +#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:571 msgid "Autocreate remote users" msgstr "Crear usuarios remotos automáticamente" @@ -12415,8 +12564,8 @@ msgstr "Crear usuarios remotos automáticamente" #: ../../enterprise/godmode/setup/setup_auth.php:55 #: ../../enterprise/godmode/setup/setup_auth.php:325 #: ../../enterprise/godmode/setup/setup_auth.php:457 -#: ../../enterprise/godmode/setup/setup_auth.php:1250 -#: ../../include/functions_config.php:567 +#: ../../enterprise/godmode/setup/setup_auth.php:1467 +#: ../../include/functions_config.php:575 msgid "Autocreate profile" msgstr "Crear el perfil automáticamente" @@ -12424,8 +12573,8 @@ msgstr "Crear el perfil automáticamente" #: ../../enterprise/godmode/setup/setup_auth.php:61 #: ../../enterprise/godmode/setup/setup_auth.php:331 #: ../../enterprise/godmode/setup/setup_auth.php:463 -#: ../../enterprise/godmode/setup/setup_auth.php:1256 -#: ../../include/functions_config.php:571 +#: ../../enterprise/godmode/setup/setup_auth.php:1473 +#: ../../include/functions_config.php:579 msgid "Autocreate profile group" msgstr "Crear perfil de grupo automáticamente" @@ -12433,29 +12582,29 @@ msgstr "Crear perfil de grupo automáticamente" #: ../../enterprise/godmode/setup/setup_auth.php:68 #: ../../enterprise/godmode/setup/setup_auth.php:340 #: ../../enterprise/godmode/setup/setup_auth.php:472 -#: ../../enterprise/godmode/setup/setup_auth.php:1280 -#: ../../include/functions_config.php:575 +#: ../../enterprise/godmode/setup/setup_auth.php:1497 +#: ../../include/functions_config.php:583 msgid "Autocreate profile tags" msgstr "Crear etiquetas de perfil automáticamente" #: ../../enterprise/meta/include/functions_meta.php:614 #: ../../enterprise/godmode/setup/setup_auth.php:346 -#: ../../include/functions_config.php:579 +#: ../../include/functions_config.php:587 msgid "Automatically assigned no hierarchy" msgstr "Jerarquía no asignada automáticamente" #: ../../enterprise/meta/include/functions_meta.php:624 -#: ../../enterprise/godmode/setup/setup_auth.php:662 -#: ../../enterprise/godmode/setup/setup_auth.php:1477 -#: ../../include/functions_config.php:587 +#: ../../enterprise/godmode/setup/setup_auth.php:668 +#: ../../enterprise/godmode/setup/setup_auth.php:1694 +#: ../../include/functions_config.php:595 msgid "Autocreate blacklist" msgstr "Crear una lista negra automáticamente" #: ../../enterprise/meta/include/functions_meta.php:634 #: ../../enterprise/meta/include/functions_meta.php:941 -#: ../../godmode/users/configure_user.php:1493 -#: ../../godmode/setup/setup_auth.php:392 ../../include/functions_config.php:799 -#: ../../operation/users/user_edit.php:544 +#: ../../godmode/users/configure_user.php:1546 +#: ../../godmode/setup/setup_auth.php:392 ../../include/functions_config.php:811 +#: ../../operation/users/user_edit.php:537 msgid "Double authentication" msgstr "Doble autentificación" @@ -12465,7 +12614,7 @@ msgstr "2FA_all_users" #: ../../enterprise/meta/include/functions_meta.php:656 #: ../../enterprise/meta/include/functions_meta.php:954 -#: ../../include/functions_config.php:807 ../../include/functions_config.php:813 +#: ../../include/functions_config.php:819 ../../include/functions_config.php:825 msgid "Session timeout" msgstr "Sesión expirada" @@ -12473,7 +12622,7 @@ msgstr "Sesión expirada" #: ../../enterprise/meta/include/functions_meta.php:1148 #: ../../enterprise/godmode/setup/setup_auth.php:82 #: ../../enterprise/godmode/setup/setup_auth.php:441 -#: ../../include/functions_config.php:704 ../../include/functions_config.php:820 +#: ../../include/functions_config.php:716 ../../include/functions_config.php:832 msgid "Save Password" msgstr "Guardar contraseña" @@ -12482,58 +12631,58 @@ msgid "Timezone visual" msgstr "Visualización de zona horaria" #: ../../enterprise/meta/include/functions_meta.php:692 -#: ../../enterprise/godmode/setup/setup_auth.php:670 -#: ../../enterprise/godmode/setup/setup_auth.php:1485 -#: ../../include/functions_config.php:591 +#: ../../enterprise/godmode/setup/setup_auth.php:676 +#: ../../enterprise/godmode/setup/setup_auth.php:1702 +#: ../../include/functions_config.php:599 msgid "Active directory server" msgstr "Servidor de directorio activo" #: ../../enterprise/meta/include/functions_meta.php:702 -#: ../../enterprise/godmode/setup/setup_auth.php:676 -#: ../../enterprise/godmode/setup/setup_auth.php:1502 -#: ../../include/functions_config.php:595 +#: ../../enterprise/godmode/setup/setup_auth.php:682 +#: ../../enterprise/godmode/setup/setup_auth.php:1719 +#: ../../include/functions_config.php:603 msgid "Active directory port" msgstr "Puerto del directorio activo" #: ../../enterprise/meta/include/functions_meta.php:712 #: ../../enterprise/meta/include/functions_meta.php:996 -#: ../../enterprise/godmode/setup/setup_auth.php:682 -#: ../../enterprise/godmode/setup/setup_auth.php:1519 -#: ../../godmode/setup/setup_auth.php:146 ../../include/functions_config.php:599 -#: ../../include/functions_config.php:635 +#: ../../enterprise/godmode/setup/setup_auth.php:688 +#: ../../enterprise/godmode/setup/setup_auth.php:1736 +#: ../../godmode/setup/setup_auth.php:146 ../../include/functions_config.php:607 +#: ../../include/functions_config.php:647 msgid "Start TLS" msgstr "Start TLS" #: ../../enterprise/meta/include/functions_meta.php:722 #: ../../enterprise/godmode/setup/setup_auth.php:446 -#: ../../enterprise/godmode/setup/setup_auth.php:1239 -#: ../../include/functions_config.php:603 +#: ../../enterprise/godmode/setup/setup_auth.php:1456 +#: ../../include/functions_config.php:615 msgid "Advanced Config AD" msgstr "Configuración avanzada AD" #: ../../enterprise/meta/include/functions_meta.php:732 -#: ../../enterprise/godmode/setup/setup_auth.php:688 -#: ../../enterprise/godmode/setup/setup_auth.php:1525 -#: ../../include/functions_config.php:611 +#: ../../enterprise/godmode/setup/setup_auth.php:694 +#: ../../enterprise/godmode/setup/setup_auth.php:1742 +#: ../../include/functions_config.php:623 msgid "Domain" msgstr "Dominio" #: ../../enterprise/meta/include/functions_meta.php:742 #: ../../enterprise/godmode/setup/setup_auth.php:506 -#: ../../enterprise/godmode/setup/setup_auth.php:1314 -#: ../../include/functions_config.php:615 +#: ../../enterprise/godmode/setup/setup_auth.php:1531 +#: ../../include/functions_config.php:627 msgid "Advanced Permisions AD" msgstr "Permisos avanzados de AD" #: ../../enterprise/meta/include/functions_meta.php:752 #: ../../enterprise/godmode/setup/setup_auth.php:151 -#: ../../include/functions_config.php:619 +#: ../../include/functions_config.php:631 msgid "Advanced Permissions LDAP" msgstr "Permisos LDAP avanzados" #: ../../enterprise/meta/include/functions_meta.php:762 #: ../../enterprise/godmode/setup/setup_auth.php:128 -#: ../../include/functions_config.php:607 +#: ../../include/functions_config.php:619 msgid "Advanced Config LDAP" msgstr "Configuración LDAP avanzada" @@ -12541,47 +12690,47 @@ msgstr "Configuración LDAP avanzada" #: ../../enterprise/meta/include/functions_meta.php:784 #: ../../enterprise/godmode/setup/setup_auth.php:430 #: ../../enterprise/godmode/setup/setup_auth.php:478 -#: ../../enterprise/godmode/setup/setup_auth.php:1286 +#: ../../enterprise/godmode/setup/setup_auth.php:1503 msgid "Auto enable node access" msgstr "Auto-habilitar acceso al nodo" #: ../../enterprise/meta/include/functions_meta.php:811 -#: ../../include/functions_config.php:759 +#: ../../include/functions_config.php:771 msgid "Saml path" msgstr "Ruta de SAML" #: ../../enterprise/meta/include/functions_meta.php:824 -#: ../../include/functions_config.php:763 +#: ../../include/functions_config.php:775 msgid "Saml source" msgstr "Saml origen" #: ../../enterprise/meta/include/functions_meta.php:837 -#: ../../include/functions_config.php:767 +#: ../../include/functions_config.php:779 msgid "Saml user id parameter" msgstr "Parámetro de ID de usuario saml" #: ../../enterprise/meta/include/functions_meta.php:850 -#: ../../include/functions_config.php:771 +#: ../../include/functions_config.php:783 msgid "Saml mail parameter" msgstr "Parámetro de correo de saml" #: ../../enterprise/meta/include/functions_meta.php:863 -#: ../../include/functions_config.php:775 +#: ../../include/functions_config.php:787 msgid "Saml group name parameter" msgstr "Parámetro de nombre de grupo saml" #: ../../enterprise/meta/include/functions_meta.php:876 -#: ../../include/functions_config.php:779 +#: ../../include/functions_config.php:791 msgid "Saml attr type parameter" msgstr "Parámetro de tipo de attr saml" #: ../../enterprise/meta/include/functions_meta.php:889 -#: ../../include/functions_config.php:783 +#: ../../include/functions_config.php:795 msgid "Saml profiles and tags parameter" msgstr "Parámetro de perfiles y etiquetas saml" #: ../../enterprise/meta/include/functions_meta.php:902 -#: ../../include/functions_config.php:795 +#: ../../include/functions_config.php:807 msgid "Saml profile and tag separator" msgstr "Separador de perfil y etiqueta saml" @@ -12590,42 +12739,42 @@ msgid "SAML profile parameters" msgstr "Parámetros de perfil SAML" #: ../../enterprise/meta/include/functions_meta.php:928 -#: ../../include/functions_config.php:791 +#: ../../include/functions_config.php:803 msgid "Saml tag parameter" msgstr "Parámetro de etiqueta saml" #: ../../enterprise/meta/include/functions_meta.php:966 -#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:623 +#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:635 msgid "LDAP server" msgstr "Servidor LDAP" #: ../../enterprise/meta/include/functions_meta.php:976 -#: ../../godmode/setup/setup_auth.php:107 ../../include/functions_config.php:627 +#: ../../godmode/setup/setup_auth.php:107 ../../include/functions_config.php:639 msgid "LDAP port" msgstr "Puerto LDAP" #: ../../enterprise/meta/include/functions_meta.php:986 -#: ../../godmode/setup/setup_auth.php:129 ../../include/functions_config.php:631 +#: ../../godmode/setup/setup_auth.php:129 ../../include/functions_config.php:643 msgid "LDAP version" msgstr "Versión LDAP" #: ../../enterprise/meta/include/functions_meta.php:1006 -#: ../../godmode/setup/setup_auth.php:157 ../../include/functions_config.php:639 +#: ../../godmode/setup/setup_auth.php:157 ../../include/functions_config.php:651 msgid "Base DN" msgstr "DN base" #: ../../enterprise/meta/include/functions_meta.php:1016 -#: ../../godmode/setup/setup_auth.php:170 ../../include/functions_config.php:643 +#: ../../godmode/setup/setup_auth.php:170 ../../include/functions_config.php:655 msgid "Login attribute" msgstr "Atributo de acceso" #: ../../enterprise/meta/include/functions_meta.php:1026 -#: ../../godmode/setup/setup_auth.php:183 ../../include/functions_config.php:647 +#: ../../godmode/setup/setup_auth.php:183 ../../include/functions_config.php:659 msgid "Admin LDAP login" msgstr "Inicio de sesión de administrador LDAP" #: ../../enterprise/meta/include/functions_meta.php:1036 -#: ../../godmode/setup/setup_auth.php:196 ../../include/functions_config.php:651 +#: ../../godmode/setup/setup_auth.php:196 ../../include/functions_config.php:663 msgid "Admin LDAP password" msgstr "Contraseña de administrador LDAP" @@ -12635,22 +12784,22 @@ msgid "Ldap search timeout (secs)" msgstr "Tiempo de espera de búsqueda LDAP (segundos)" #: ../../enterprise/meta/include/functions_meta.php:1056 -#: ../../include/functions_config.php:715 +#: ../../include/functions_config.php:727 msgid "LDAP secondary enabled" msgstr "LDAP secundario habilitado" #: ../../enterprise/meta/include/functions_meta.php:1065 -#: ../../godmode/setup/setup_auth.php:250 ../../include/functions_config.php:659 +#: ../../godmode/setup/setup_auth.php:250 ../../include/functions_config.php:671 msgid "Secondary LDAP server" msgstr "Servidor LDAP secundario" #: ../../enterprise/meta/include/functions_meta.php:1075 -#: ../../godmode/setup/setup_auth.php:267 ../../include/functions_config.php:663 +#: ../../godmode/setup/setup_auth.php:267 ../../include/functions_config.php:675 msgid "Secondary LDAP port" msgstr "Puerto LDAP secundario" #: ../../enterprise/meta/include/functions_meta.php:1085 -#: ../../godmode/setup/setup_auth.php:289 ../../include/functions_config.php:667 +#: ../../godmode/setup/setup_auth.php:289 ../../include/functions_config.php:679 msgid "Secondary LDAP version" msgstr "Versión LDAP secundaria" @@ -12660,39 +12809,39 @@ msgid "Secondary start TLS" msgstr "TLS de inicio secundario" #: ../../enterprise/meta/include/functions_meta.php:1105 -#: ../../include/functions_config.php:675 +#: ../../include/functions_config.php:687 msgid "Secondary base DN" msgstr "Base secundaria DN" #: ../../enterprise/meta/include/functions_meta.php:1115 -#: ../../include/functions_config.php:679 +#: ../../include/functions_config.php:691 msgid "Secondary login attribute" msgstr "Atributo de inicio de sesión secundario" #: ../../enterprise/meta/include/functions_meta.php:1125 -#: ../../godmode/setup/setup_auth.php:343 ../../include/functions_config.php:683 +#: ../../godmode/setup/setup_auth.php:343 ../../include/functions_config.php:695 msgid "Admin secondary LDAP login" msgstr "Inicio de sesión LDAP secundario del administrador" #: ../../enterprise/meta/include/functions_meta.php:1135 -#: ../../godmode/setup/setup_auth.php:356 ../../include/functions_config.php:687 +#: ../../godmode/setup/setup_auth.php:356 ../../include/functions_config.php:699 msgid "Admin secondary LDAP password" msgstr "Contraseña LDAP secundaria del administrador" #: ../../enterprise/meta/include/functions_meta.php:1168 #: ../../enterprise/godmode/setup/setup_auth.php:112 -#: ../../include/functions_config.php:695 +#: ../../include/functions_config.php:707 msgid "Login user attribute" msgstr "Identificar atributo de usuario" #: ../../enterprise/meta/include/functions_meta.php:1178 -#: ../../include/functions_config.php:711 +#: ../../include/functions_config.php:723 msgid "Save profile" msgstr "Guardar perfil" #: ../../enterprise/meta/include/functions_meta.php:1189 #: ../../enterprise/godmode/setup/setup_auth.php:94 -#: ../../include/functions_config.php:699 +#: ../../include/functions_config.php:711 msgid "LDAP function" msgstr "Función LDAP" @@ -12704,9 +12853,9 @@ msgstr "Host %s" #: ../../enterprise/meta/include/functions_meta.php:1211 #: ../../enterprise/meta/include/functions_meta.php:1265 #: ../../enterprise/meta/include/functions_meta.php:1319 -#: ../../enterprise/godmode/setup/setup_auth.php:1118 -#: ../../enterprise/godmode/setup/setup_auth.php:1150 -#: ../../include/functions_config.php:723 ../../include/functions_config.php:743 +#: ../../enterprise/godmode/setup/setup_auth.php:1335 +#: ../../enterprise/godmode/setup/setup_auth.php:1367 +#: ../../include/functions_config.php:735 ../../include/functions_config.php:755 msgid "MySQL port" msgstr "Puerto de MySQL" @@ -12715,10 +12864,10 @@ msgstr "Puerto de MySQL" #: ../../enterprise/meta/include/functions_meta.php:1329 #: ../../enterprise/meta/include/functions_meta.php:2167 #: ../../enterprise/godmode/setup/setup_history.php:210 -#: ../../enterprise/godmode/setup/setup_auth.php:1124 -#: ../../enterprise/godmode/setup/setup_auth.php:1156 -#: ../../include/functions_config.php:727 ../../include/functions_config.php:747 -#: ../../include/functions_config.php:1655 +#: ../../enterprise/godmode/setup/setup_auth.php:1341 +#: ../../enterprise/godmode/setup/setup_auth.php:1373 +#: ../../include/functions_config.php:739 ../../include/functions_config.php:759 +#: ../../include/functions_config.php:1667 msgid "Database name" msgstr "Nombre de la base de datos" @@ -12727,13 +12876,13 @@ msgid "Babel Enterprise host" msgstr "Servidor de Babel Enterprise" #: ../../enterprise/meta/include/functions_meta.php:1309 -#: ../../enterprise/godmode/setup/setup_auth.php:1144 -#: ../../include/functions_config.php:739 +#: ../../enterprise/godmode/setup/setup_auth.php:1361 +#: ../../include/functions_config.php:751 msgid "Integria host" msgstr "Servidor de Integria IMS" #: ../../enterprise/meta/include/functions_meta.php:1374 -#: ../../include/functions_config.php:981 +#: ../../include/functions_config.php:993 msgid "Timestamp or time comparation" msgstr "Marca o comparación temporal" @@ -12750,7 +12899,7 @@ msgid "Graph color (max)" msgstr "Color del gráfico (máx.)" #: ../../enterprise/meta/include/functions_meta.php:1439 -#: ../../include/functions_config.php:1029 +#: ../../include/functions_config.php:1041 msgid "Data precision for reports" msgstr "Precisión de los datos en los informes" @@ -12767,8 +12916,8 @@ msgid "type mode zoom charts" msgstr "zoom de gráfica" #: ../../enterprise/meta/include/functions_meta.php:1604 -#: ../../include/functions_config.php:1270 -#: ../../include/functions_config.php:1274 +#: ../../include/functions_config.php:1286 +#: ../../include/functions_config.php:1290 msgid "Random background" msgstr "Fondo aleatorio" @@ -12777,7 +12926,7 @@ msgid "Type of charts" msgstr "Tipo de gráficos" #: ../../enterprise/meta/include/functions_meta.php:1664 -#: ../../include/functions_config.php:1078 +#: ../../include/functions_config.php:1090 msgid "Custom logo collapsed" msgstr "Icono menú reducido" @@ -12786,32 +12935,32 @@ msgid "Custom logo (white background)" msgstr "Logo personalizado (fondo blanco)" #: ../../enterprise/meta/include/functions_meta.php:1694 -#: ../../include/functions_config.php:1086 +#: ../../include/functions_config.php:1098 msgid "Custom logo login" msgstr "Logo personalizado en la pantalla de bienvenida" #: ../../enterprise/meta/include/functions_meta.php:1704 -#: ../../include/functions_config.php:1090 +#: ../../include/functions_config.php:1102 msgid "Custom splash login" msgstr "Login de Splash personalizado" #: ../../enterprise/meta/include/functions_meta.php:1734 -#: ../../include/functions_config.php:1126 +#: ../../include/functions_config.php:1138 msgid "Custom title1 login" msgstr "Título1 conexión personalizado" #: ../../enterprise/meta/include/functions_meta.php:1744 -#: ../../include/functions_config.php:1130 +#: ../../include/functions_config.php:1142 msgid "Custom title2 login" msgstr "Título2 conexión personalizado" #: ../../enterprise/meta/include/functions_meta.php:1754 -#: ../../include/functions_config.php:1118 +#: ../../include/functions_config.php:1130 msgid "Meta custom title header" msgstr "Encabezado de título personalizado" #: ../../enterprise/meta/include/functions_meta.php:1764 -#: ../../include/functions_config.php:1122 +#: ../../include/functions_config.php:1134 msgid "Meta custom subtitle header" msgstr "Encabezado de subtítulos meta personalizado" @@ -12828,42 +12977,42 @@ msgid "Custom copyright notice" msgstr "Aviso de copyright personalizado" #: ../../enterprise/meta/include/functions_meta.php:1863 -#: ../../include/functions_config.php:1062 +#: ../../include/functions_config.php:1074 msgid "Font path" msgstr "Ruta de la tipografía" #: ../../enterprise/meta/include/functions_meta.php:1873 -#: ../../include/functions_config.php:1516 +#: ../../include/functions_config.php:1532 msgid "Use data multiplier" msgstr "Usar multiplicador de datos" #: ../../enterprise/meta/include/functions_meta.php:1885 -#: ../../include/functions_config.php:1472 +#: ../../include/functions_config.php:1488 msgid "Custom report info" msgstr "Información del informe personalizado" #: ../../enterprise/meta/include/functions_meta.php:1895 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:102 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:122 -#: ../../include/functions_config.php:1488 +#: ../../include/functions_config.php:1504 msgid "Font family" msgstr "Tipo de letra" #: ../../enterprise/meta/include/functions_meta.php:1935 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:159 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:157 -#: ../../godmode/setup/setup_visuals.php:1582 -#: ../../include/functions_config.php:1504 +#: ../../godmode/setup/setup_visuals.php:1597 +#: ../../include/functions_config.php:1520 msgid "Footer" msgstr "Pie de página" #: ../../enterprise/meta/include/functions_meta.php:1970 -#: ../../include/functions_config.php:1194 +#: ../../include/functions_config.php:1206 msgid "Use the legacy Visual Console" msgstr "Usar la consola visual heredada" #: ../../enterprise/meta/include/functions_meta.php:1981 -#: ../../include/functions_config.php:1198 +#: ../../include/functions_config.php:1210 msgid "Default expiration of the Visual Console item's cache" msgstr "Caducidad del caché de los elementos de la consola visual por defecto" @@ -12872,7 +13021,7 @@ msgid "Realtime stats" msgstr "Estadísticas en tiempo real" #: ../../enterprise/meta/include/functions_meta.php:2050 -#: ../../godmode/setup/performance.php:674 ../../include/functions_config.php:894 +#: ../../godmode/setup/performance.php:674 ../../include/functions_config.php:906 msgid "Use agent access graph" msgstr "Usar la gráfica de acceso del agente" @@ -12893,35 +13042,35 @@ msgid "Node address default" msgstr "Dirección del nodo por defecto" #: ../../enterprise/meta/include/functions_meta.php:2153 -#: ../../include/functions_config.php:1642 +#: ../../include/functions_config.php:1654 msgid "Active and historical database cannot be the same." msgstr "La base de datos activa y la histórica no pueden ser la misma." #: ../../enterprise/meta/include/functions_meta.php:2157 #: ../../enterprise/godmode/setup/setup_history.php:178 -#: ../../include/functions_config.php:1647 +#: ../../include/functions_config.php:1659 msgid "Host" msgstr "Host" #: ../../enterprise/meta/include/functions_meta.php:2173 -#: ../../include/functions_config.php:1660 +#: ../../include/functions_config.php:1672 msgid "Enable history database" msgstr "Activar base de datos histórica" #: ../../enterprise/meta/include/functions_meta.php:2178 -#: ../../include/functions_config.php:1664 +#: ../../include/functions_config.php:1676 msgid "Enable history event" msgstr "Activar histórico de eventos" #: ../../enterprise/meta/include/functions_meta.php:2183 #: ../../enterprise/godmode/setup/setup_history.php:226 -#: ../../include/functions_config.php:1672 +#: ../../include/functions_config.php:1684 msgid "Database user" msgstr "Usuario de la base de datos" #: ../../enterprise/meta/include/functions_meta.php:2188 #: ../../enterprise/godmode/setup/setup_history.php:242 -#: ../../include/functions_config.php:1676 +#: ../../include/functions_config.php:1688 msgid "Database password" msgstr "Contraseña de la base de datos" @@ -12934,45 +13083,45 @@ msgid "Database advanced" msgstr "Base de datos avanzada" #: ../../enterprise/meta/include/functions_meta.php:2231 -#: ../../include/functions_config.php:1705 +#: ../../include/functions_config.php:1717 msgid "Event Days" msgstr "Eventos en día" #: ../../enterprise/meta/include/functions_meta.php:2249 #: ../../enterprise/godmode/servers/new_HA_cluster.php:143 -#: ../../include/functions_config.php:1737 +#: ../../include/functions_config.php:1749 msgid "Delay" msgstr "Retraso" #: ../../enterprise/meta/include/functions_meta.php:2282 -#: ../../include/functions_config.php:1769 +#: ../../include/functions_config.php:1781 msgid "Historical database purge" msgstr "Purga de la base de datos histórica" #: ../../enterprise/meta/include/functions_meta.php:2291 -#: ../../include/functions_config.php:1777 +#: ../../include/functions_config.php:1789 msgid "Historical database partitions" msgstr "Particiones de base de datos histórica" #: ../../enterprise/meta/include/functions_meta.php:2300 -#: ../../include/functions_config.php:1785 +#: ../../include/functions_config.php:1797 msgid "Historical database events purge" msgstr "Purga de eventod de base de datos histórica" #: ../../enterprise/meta/include/functions_meta.php:2309 -#: ../../include/functions_config.php:1801 +#: ../../include/functions_config.php:1813 msgid "Historical database string purge" msgstr "Purga de cadenas de base de datos histórica" #: ../../enterprise/meta/include/functions_meta.php:2524 #: ../../extensions/dbmanager.php:312 ../../extensions/dbmanager.php:323 -#: ../../godmode/menu.php:478 +#: ../../godmode/menu.php:476 msgid "DB interface" msgstr "Interfaz de la BD" #: ../../enterprise/meta/include/functions_meta.php:2598 #: ../../enterprise/include/functions_policies.php:935 -#: ../../include/functions_reporting.php:7569 +#: ../../include/functions_reporting.php:7578 #, php-format msgid "Failed to connect to node %s" msgstr "Error al conectarse al %s de nodo" @@ -12986,7 +13135,6 @@ msgstr "Grupos de componentes" #: ../../enterprise/meta/include/functions_components_meta.php:88 #: ../../enterprise/meta/include/functions_components_meta.php:139 #: ../../enterprise/godmode/menu.php:83 ../../enterprise/godmode/menu.php:175 -#: ../../godmode/menu.php:181 msgid "Local components" msgstr "Componentes locales" @@ -13009,13 +13157,13 @@ msgstr "Gestión de plugins" #: ../../godmode/modules/manage_inventory_modules.php:45 #: ../../godmode/modules/manage_inventory_modules.php:58 #: ../../godmode/modules/manage_inventory_modules_form.php:49 -#: ../../godmode/menu.php:187 +#: ../../godmode/menu.php:186 msgid "Inventory modules" msgstr "Módulos de inventario" #: ../../enterprise/meta/include/functions_components_meta.php:124 #: ../../enterprise/meta/include/functions_components_meta.php:164 -#: ../../godmode/servers/plugin_registration.php:109 +#: ../../godmode/servers/plugin_registration.php:105 #: ../../godmode/servers/plugin.php:346 msgid "Plugin registration" msgstr "Registro de plugins" @@ -13050,32 +13198,32 @@ msgstr "%s - Flexible Monitoring System" #: ../../enterprise/godmode/setup/setup.php:602 #: ../../enterprise/include/class/CommandCenter.class.php:475 #: ../../enterprise/include/functions_login.php:165 -#: ../../enterprise/include/functions_login.php:580 +#: ../../enterprise/include/functions_login.php:584 #: ../../enterprise/include/lib/Metaconsole/Node.php:541 #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4151 -#: ../../godmode/users/configure_user.php:2067 -#: ../../godmode/users/configure_user.php:2136 +#: ../../godmode/users/configure_user.php:2119 +#: ../../godmode/users/configure_user.php:2188 #: ../../godmode/massive/massive_edit_plugins.php:856 #: ../../godmode/massive/massive_edit_plugins.php:857 #: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1292 #: ../../include/ajax/double_auth.ajax.php:270 #: ../../include/ajax/double_auth.ajax.php:368 #: ../../include/ajax/double_auth.ajax.php:414 -#: ../../include/ajax/double_auth.ajax.php:531 ../../include/ajax/events.php:2273 -#: ../../include/functions_menu.php:892 ../../include/functions_ui.php:306 +#: ../../include/ajax/double_auth.ajax.php:531 ../../include/ajax/events.php:2274 +#: ../../include/functions_menu.php:897 ../../include/functions_ui.php:306 #: ../../include/class/SatelliteAgent.class.php:831 -#: ../../include/class/Diagnostics.class.php:1855 -#: ../../include/functions_events.php:2966 -#: ../../include/functions_events.php:3166 ../../index.php:1555 -#: ../../operation/users/user_edit.php:1241 -#: ../../operation/users/user_edit.php:1307 ../../general/register.php:168 +#: ../../include/class/Diagnostics.class.php:1859 +#: ../../include/functions_events.php:2971 +#: ../../include/functions_events.php:3171 ../../index.php:1557 +#: ../../operation/users/user_edit.php:1238 +#: ../../operation/users/user_edit.php:1304 ../../general/register.php:168 #: ../../general/mysqlerr.php:28 ../../general/login_page.php:566 msgid "Error" msgstr "Error" #: ../../enterprise/meta/include/functions_alerts_meta.php:137 #: ../../enterprise/meta/include/functions_alerts_meta.php:168 -#: ../../godmode/menu.php:282 +#: ../../godmode/menu.php:280 msgid "Commands" msgstr "Comandos" @@ -13093,8 +13241,8 @@ msgid "User to reset password" msgstr "Usuario de la contraseña a resetear" #: ../../enterprise/meta/include/reset_pass.php:103 -#: ../../enterprise/meta/index.php:757 -#: ../../enterprise/include/reset_pass.php:195 ../../index.php:928 +#: ../../enterprise/meta/index.php:758 +#: ../../enterprise/include/reset_pass.php:195 ../../index.php:929 msgid "Reset password" msgstr "Restablecer la contraseña" @@ -13104,8 +13252,8 @@ msgstr "Restablecer la contraseña" #: ../../enterprise/include/process_reset_pass.php:174 #: ../../enterprise/include/reset_pass.php:295 #: ../../enterprise/include/reset_pass.php:298 -#: ../../include/functions_config.php:2678 -#: ../../include/functions_config.php:2730 ../../general/login_page.php:527 +#: ../../include/functions_config.php:2698 +#: ../../include/functions_config.php:2750 ../../general/login_page.php:527 #: ../../general/login_page.php:530 msgid "ONE TOOL TO RULE THEM ALL" msgstr "UNA HERRAMIENTA PARA GOBERNARLOS A TODOS" @@ -13113,7 +13261,7 @@ msgstr "UNA HERRAMIENTA PARA GOBERNARLOS A TODOS" #: ../../enterprise/meta/include/reset_pass.php:147 #: ../../enterprise/meta/general/login_page.php:335 #: ../../enterprise/include/reset_pass.php:285 -#: ../../include/functions_config.php:2734 +#: ../../include/functions_config.php:2754 msgid "COMMAND CENTER" msgstr "CENTRO DE COMANDO" @@ -13194,21 +13342,19 @@ msgstr "Error al eliminar la relación" msgid "Relation deleted successfully" msgstr "Relación eliminada con éxito" -#: ../../enterprise/meta/index.php:221 ../../index.php:1492 +#: ../../enterprise/meta/index.php:221 ../../index.php:1494 #: ../../operation/visual_console/legacy_public_view.php:57 #: ../../operation/visual_console/public_view.php:38 #: ../../operation/agentes/stat_win.php:92 #: ../../operation/gis_maps/public_console.php:277 -#: ../../operation/events/sound_events.php:168 msgid "Connection with server has been lost" msgstr "Se ha perdido la conexión con el servidor" -#: ../../enterprise/meta/index.php:222 ../../index.php:1493 +#: ../../enterprise/meta/index.php:222 ../../index.php:1495 #: ../../operation/visual_console/legacy_public_view.php:58 #: ../../operation/visual_console/public_view.php:39 #: ../../operation/agentes/stat_win.php:93 #: ../../operation/gis_maps/public_console.php:278 -#: ../../operation/events/sound_events.php:169 msgid "" "Connection to the server has been lost. Please check your internet connection " "or contact with administrator." @@ -13234,55 +13380,55 @@ msgstr "Inicio de sesión caducado" msgid "Login error" msgstr "Error de conexión" -#: ../../enterprise/meta/index.php:682 ../../index.php:845 +#: ../../enterprise/meta/index.php:683 ../../index.php:846 msgid "Password changed successfully" msgstr "Contraseña modificada correctamente" -#: ../../enterprise/meta/index.php:688 ../../index.php:851 +#: ../../enterprise/meta/index.php:689 ../../index.php:852 msgid "Failed to change password" msgstr "No se pudo modificar la contraseña" -#: ../../enterprise/meta/index.php:702 ../../index.php:868 +#: ../../enterprise/meta/index.php:703 ../../index.php:869 msgid "Too much time since password change request" msgstr "Ha pasado demasiado tiempo desde la solicitud de cambio de contraseña" -#: ../../enterprise/meta/index.php:709 ../../index.php:875 +#: ../../enterprise/meta/index.php:710 ../../index.php:876 msgid "This user has not requested a password change" msgstr "Este usuario no ha solicitado un cambio de contraseña" -#: ../../enterprise/meta/index.php:725 ../../index.php:902 +#: ../../enterprise/meta/index.php:726 ../../index.php:903 msgid "Id user cannot be empty" msgstr "El ID de usuario no puede estar vacío" -#: ../../enterprise/meta/index.php:733 ../../index.php:910 +#: ../../enterprise/meta/index.php:734 ../../index.php:911 msgid "Error in reset password request" msgstr "Error en la solicitud para restablecer la contraseña" -#: ../../enterprise/meta/index.php:741 ../../index.php:918 +#: ../../enterprise/meta/index.php:742 ../../index.php:919 msgid "This user doesn't have a valid email address" msgstr "Este usuario no tiene una dirección válida de email" -#: ../../enterprise/meta/index.php:758 ../../index.php:929 +#: ../../enterprise/meta/index.php:759 ../../index.php:930 msgid "This is an automatically sent message for user " msgstr "Este es un mensaje enviado automáticamente para el usuario " -#: ../../enterprise/meta/index.php:761 ../../index.php:932 +#: ../../enterprise/meta/index.php:762 ../../index.php:933 msgid "Please click the link below to reset your password" msgstr "Haz clic en el enlace de abajo para restablecer la contraseña" -#: ../../enterprise/meta/index.php:763 ../../index.php:934 +#: ../../enterprise/meta/index.php:764 ../../index.php:935 msgid "Reset your password" msgstr "Restablecer la contraseña" -#: ../../enterprise/meta/index.php:767 ../../index.php:938 +#: ../../enterprise/meta/index.php:768 ../../index.php:939 msgid "Please do not reply to this email." msgstr "No respondas a este email." -#: ../../enterprise/meta/index.php:773 ../../index.php:943 +#: ../../enterprise/meta/index.php:774 ../../index.php:944 msgid "Error at sending the email" msgstr "Error al enviar el email" -#: ../../enterprise/meta/index.php:933 +#: ../../enterprise/meta/index.php:934 #, php-format msgid "" "System is not centralised, please go to %s to perform a database merge process." @@ -13290,17 +13436,17 @@ msgstr "" "El sistema no está centralizado, vaya a %s para realizar un proceso de fusión " "de bases de datos." -#: ../../enterprise/meta/index.php:1001 +#: ../../enterprise/meta/index.php:1002 #, php-format msgid "There are nodes with different MR than this (%d):" msgstr "Hay nodos con RM diferente a esta (%d):" -#: ../../enterprise/meta/index.php:1010 ../../index.php:1237 +#: ../../enterprise/meta/index.php:1011 ../../index.php:1238 msgid "Please keep all environment updated to same version." msgstr "Mantenga todo el entorno actualizado a la misma versión." -#: ../../enterprise/meta/index.php:1075 ../../enterprise/meta/index.php:1170 -#: ../../index.php:1340 +#: ../../enterprise/meta/index.php:1076 ../../enterprise/meta/index.php:1172 +#: ../../index.php:1341 msgid "Sorry! I can't find the page!" msgstr "No se puede encontrar la página" @@ -13319,22 +13465,21 @@ msgstr "Agentes encontrados" #: ../../enterprise/operation/agentes/policy_view.php:400 #: ../../enterprise/operation/agentes/tag_view.php:703 #: ../../enterprise/operation/agentes/ver_agente.php:95 -#: ../../extensions/users_connected.php:180 ../../godmode/users/user_list.php:576 +#: ../../extensions/users_connected.php:180 ../../godmode/users/user_list.php:577 #: ../../godmode/agentes/planned_downtime.editor.php:1359 -#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417 -#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 -#: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:1006 -#: ../../include/functions_treeview.php:671 -#: ../../include/functions_events.php:4389 ../../operation/search_users.php:46 +#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:418 +#: ../../mobile/operation/agents.php:420 ../../mobile/operation/agents.php:423 +#: ../../mobile/operation/agent.php:199 ../../include/ajax/heatmap.ajax.php:483 +#: ../../include/ajax/module.php:1029 ../../include/functions_treeview.php:675 +#: ../../include/functions_events.php:4394 ../../operation/search_users.php:46 #: ../../operation/search_agents.php:58 #: ../../operation/agentes/log_sources_status.php:58 -#: ../../operation/agentes/estado_agente.php:1055 +#: ../../operation/agentes/estado_agente.php:1063 #: ../../operation/agentes/ver_agente.php:1046 -#: ../../operation/agentes/estado_generalagente.php:464 +#: ../../operation/agentes/estado_generalagente.php:435 #: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 #: ../../operation/gis_maps/ajax.php:466 -#: ../../operation/inventory/inventory.php:1007 -#: ../../operation/inventory/inventory.php:1301 +#: ../../operation/inventory/inventory.php:1253 msgid "Last contact" msgstr "Último contacto" @@ -13343,8 +13488,8 @@ msgid "There are no agents included in this group" msgstr "No hay ningún agente en este grupo" #: ../../enterprise/meta/agentsearch.php:320 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:650 -#: ../../operation/tree.php:468 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:643 +#: ../../operation/tree.php:470 msgid "Policies found" msgstr "Políticas encontradas" @@ -13375,21 +13520,24 @@ msgstr "No hay políticas incluidas en este grupo" msgid "%s %s - %s - MR %s" msgstr "%s %s - %s - MR %s" -#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1459 +#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1460 msgid "Page generated at" msgstr "Página generada en" #: ../../enterprise/meta/general/metaconsole_no_activated.php:12 #: ../../enterprise/meta/general/noaccesssaml.php:130 -#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:266 -#: ../../mobile/operation/agents.php:186 ../../mobile/operation/modules.php:218 -#: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:117 +#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:284 +#: ../../mobile/operation/agents.php:187 ../../mobile/operation/modules.php:218 +#: ../../mobile/operation/groups.php:59 ../../mobile/operation/services.php:68 +#: ../../mobile/operation/services.php:83 ../../mobile/operation/agent.php:119 #: ../../mobile/operation/alerts.php:176 ../../mobile/operation/visualmap.php:185 #: ../../mobile/operation/visualmaps.php:159 -#: ../../mobile/operation/module_graph.php:255 -#: ../../mobile/operation/events.php:744 ../../mobile/operation/tactical.php:79 -#: ../../general/noaccesssaml.php:130 ../../general/noaccess2.php:16 -#: ../../general/noaccess2.php:18 +#: ../../mobile/operation/module_data.php:107 +#: ../../mobile/operation/module_graph.php:256 +#: ../../mobile/operation/events.php:773 +#: ../../mobile/operation/server_status.php:209 +#: ../../mobile/operation/tactical.php:79 ../../general/noaccesssaml.php:130 +#: ../../general/noaccess2.php:16 ../../general/noaccess2.php:18 msgid "You don't have access to this page" msgstr "No tienes permiso para acceder a esta página" @@ -13446,8 +13594,8 @@ msgstr "Actualización automática desactivada" #: ../../enterprise/meta/general/header.php:266 #: ../../enterprise/meta/general/main_header.php:535 #: ../../mobile/include/functions_web.php:34 -#: ../../mobile/include/ui.class.php:225 ../../mobile/include/user.class.php:460 -#: ../../mobile/operation/home.php:148 ../../general/header.php:443 +#: ../../mobile/include/ui.class.php:225 ../../mobile/include/user.class.php:527 +#: ../../mobile/operation/home.php:167 ../../general/header.php:443 #: ../../general/header.php:445 msgid "Logout" msgstr "Salir" @@ -13463,7 +13611,7 @@ msgid "Please navigate to %s" msgstr "Por favor, navegue hasta %s" #: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:69 -#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64 +#: ../../general/maintenance.php:58 ../../general/node_deactivated.php:69 msgid "You will be automatically redirected when all tasks finish" msgstr "Se le redirigirá automáticamente cuando finalicen todas las tareas" @@ -13471,8 +13619,8 @@ msgstr "Se le redirigirá automáticamente cuando finalicen todas las tareas" #: ../../enterprise/meta/general/main_menu.php:199 #: ../../enterprise/operation/services/services.treeview_services.php:60 #: ../../godmode/groups/group_list.php:347 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:178 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:768 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:173 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:761 #: ../../operation/tree.php:137 ../../operation/menu.php:179 msgid "Tree view" msgstr "Vista de árbol" @@ -13497,7 +13645,7 @@ msgstr "Visor de monitores" #: ../../enterprise/meta/general/main_menu.php:312 #: ../../enterprise/meta/general/main_menu.php:313 #: ../../enterprise/mobile/include/functions_web.php:15 -#: ../../include/functions_reporting.php:15831 +#: ../../include/functions_reporting.php:15908 #: ../../include/functions_groups.php:139 ../../operation/search_results.php:133 msgid "Reports" msgstr "Informes" @@ -13515,7 +13663,7 @@ msgstr "Plantillas de informes" #: ../../enterprise/meta/general/main_header.php:200 #: ../../enterprise/meta/general/main_menu.php:340 #: ../../enterprise/include/functions_reporting.php:124 -#: ../../include/functions_menu.php:584 +#: ../../include/functions_menu.php:586 msgid "Templates wizard" msgstr "Asistente de plantillas" @@ -13543,7 +13691,8 @@ msgstr "Asistente de plantillas" #: ../../enterprise/operation/services/services.treeview_services.php:73 #: ../../enterprise/operation/services/services.list.php:70 #: ../../enterprise/operation/services/services.table_services.php:67 -#: ../../operation/agentes/ver_agente.php:1668 +#: ../../mobile/operation/home.php:103 ../../mobile/operation/services.php:123 +#: ../../operation/agentes/ver_agente.php:1664 #: ../../general/first_task/service_list.php:38 #: ../../general/first_task/service_list.php:41 msgid "Services" @@ -13558,7 +13707,7 @@ msgstr "Pantallas" #: ../../enterprise/meta/general/main_header.php:240 #: ../../enterprise/meta/general/main_menu.php:436 -#: ../../enterprise/include/functions_enterprise.php:443 +#: ../../enterprise/include/functions_enterprise.php:453 #: ../../include/class/OrderInterpreter.class.php:233 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:175 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:515 @@ -13585,8 +13734,8 @@ msgstr "Consola visual de asistente" #: ../../enterprise/meta/general/main_header.php:275 #: ../../enterprise/meta/general/logon_ok.php:44 #: ../../enterprise/meta/general/main_menu.php:473 -#: ../../enterprise/include/functions_enterprise.php:439 -#: ../../godmode/netflow/nf_edit_form.php:82 ../../godmode/menu.php:371 +#: ../../enterprise/include/functions_enterprise.php:449 +#: ../../godmode/netflow/nf_edit_form.php:93 ../../godmode/menu.php:369 #: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:290 #: ../../include/functions_reports.php:925 #: ../../include/functions_reports.php:929 @@ -13642,7 +13791,7 @@ msgid "Command Center" msgstr "command center" #: ../../enterprise/meta/general/main_header.php:369 -#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:406 +#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:404 #: ../../godmode/setup/license.php:59 msgid "License" msgstr "Licencia" @@ -13657,8 +13806,8 @@ msgstr "Metasetup" #: ../../enterprise/meta/general/main_header.php:448 #: ../../enterprise/meta/general/main_menu.php:720 #: ../../enterprise/meta/general/main_menu.php:755 -#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:428 -#: ../../godmode/menu.php:550 ../../general/links_menu.php:17 +#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:426 +#: ../../godmode/menu.php:548 ../../general/links_menu.php:17 msgid "Links" msgstr "Enlaces" @@ -13693,9 +13842,9 @@ msgstr "Registros de auditoría" #: ../../godmode/reporting/graph_container.php:118 #: ../../godmode/reporting/graphs.php:129 #: ../../godmode/reporting/reporting_builder.php:557 -#: ../../godmode/reporting/reporting_builder.php:3597 -#: ../../godmode/reporting/reporting_builder.php:3695 -#: ../../godmode/reporting/reporting_builder.php:3723 +#: ../../godmode/reporting/reporting_builder.php:3614 +#: ../../godmode/reporting/reporting_builder.php:3712 +#: ../../godmode/reporting/reporting_builder.php:3740 #: ../../include/ajax/consoles.ajax.php:61 ../../operation/menu.php:450 #: ../../operation/reporting/reporting_viewer.php:218 #: ../../operation/reporting/custom_reporting.php:23 @@ -13756,39 +13905,40 @@ msgstr "" #: ../../include/functions_reports.php:905 #: ../../include/functions_reports.php:909 #: ../../include/functions_reporting.php:3124 -#: ../../operation/agentes/ver_agente.php:1450 -#: ../../operation/agentes/ver_agente.php:1852 ../../operation/menu.php:203 -#: ../../operation/inventory/inventory.php:301 +#: ../../operation/agentes/ver_agente.php:1451 +#: ../../operation/agentes/ver_agente.php:1848 ../../operation/menu.php:203 +#: ../../operation/inventory/inventory.php:303 msgid "Inventory" msgstr "Inventario" #: ../../enterprise/meta/general/main_menu.php:277 -#: ../../include/ajax/events.php:2320 ../../operation/events/events.php:1604 +#: ../../include/ajax/events.php:2321 ../../operation/events/sound_events.php:197 +#: ../../operation/events/events.php:1658 msgid "Events list" msgstr "Lista de eventos" #: ../../enterprise/meta/general/main_menu.php:285 -#: ../../operation/events/events.php:1516 +#: ../../operation/events/events.php:1570 msgid "Sound Console" msgstr "Consola sonora" #: ../../enterprise/meta/general/main_menu.php:286 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:376 -#: ../../godmode/menu.php:52 ../../godmode/setup/setup_ehorus.php:141 -#: ../../godmode/setup/setup_integria.php:654 ../../include/ajax/events.php:2493 -#: ../../operation/users/user_edit.php:874 -#: ../../operation/users/user_edit.php:927 ../../operation/menu.php:571 -#: ../../operation/events/events.php:1517 +#: ../../godmode/menu.php:52 ../../include/ajax/events.php:2494 +#: ../../operation/users/user_edit.php:871 +#: ../../operation/users/user_edit.php:924 ../../operation/menu.php:571 +#: ../../operation/events/sound_events.php:368 +#: ../../operation/events/events.php:1571 msgid "Start" msgstr "Inicio" #: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:573 -#: ../../operation/events/events.php:1519 +#: ../../operation/events/events.php:1573 msgid "No alert" msgstr "Sin alertas" #: ../../enterprise/meta/general/main_menu.php:289 ../../operation/menu.php:574 -#: ../../operation/events/events.php:1520 +#: ../../operation/events/events.php:1574 msgid "Silence alarm" msgstr "Silenciar alarma" @@ -13812,7 +13962,7 @@ msgstr "Mensajes" #: ../../enterprise/meta/general/main_menu.php:409 #: ../../enterprise/operation/services/services.list.php:57 msgid "List of services" -msgstr "de los Servicios" +msgstr "Lista de servicios" #: ../../enterprise/meta/general/main_menu.php:498 #: ../../enterprise/meta/general/main_menu.php:499 @@ -13822,7 +13972,7 @@ msgstr "Correlación de alertas" #: ../../enterprise/meta/general/main_menu.php:504 #: ../../godmode/alerts/alert_view.php:65 ../../godmode/alerts/alert_view.php:286 -#: ../../include/functions_events.php:4548 +#: ../../include/functions_events.php:4553 msgid "Alert details" msgstr "Detalles de alerta" @@ -13835,7 +13985,7 @@ msgstr "Detalles de alerta" msgid "Centralised management" msgstr "Gestión centralizada" -#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:204 +#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:203 #: ../../godmode/massive/massive_operations.php:313 #: ../../godmode/massive/massive_operations.php:336 #: ../../godmode/massive/massive_operations.php:342 @@ -13853,12 +14003,12 @@ msgstr "Herramienta de fusión" msgid "List of Links" msgstr "Lista de enlaces" -#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:426 +#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:424 msgid "System audit log" msgstr "Logs de auditoría del sistema" #: ../../enterprise/meta/general/main_menu.php:869 -#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:608 +#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:606 msgid "About" msgstr "Acerca de" @@ -13876,18 +14026,18 @@ msgid "Authentication code" msgstr "Código de autentificación" #: ../../enterprise/meta/general/login_page.php:185 -#: ../../mobile/include/user.class.php:493 ../../general/login_page.php:393 +#: ../../mobile/include/user.class.php:595 ../../general/login_page.php:393 msgid "Check code" msgstr "Código de comprobación" #: ../../enterprise/meta/general/login_page.php:229 #: ../../enterprise/meta/general/login_page.php:288 -#: ../../mobile/include/user.class.php:404 +#: ../../mobile/include/user.class.php:470 msgid "Login" msgstr "Iniciar sesión" #: ../../enterprise/meta/general/login_page.php:245 -#: ../../mobile/include/user.class.php:424 ../../general/login_page.php:316 +#: ../../mobile/include/user.class.php:490 ../../general/login_page.php:316 msgid "Login with SAML" msgstr "Entrar con SAML" @@ -13977,15 +14127,15 @@ msgstr "O deshabilite %s Enterprise" #: ../../enterprise/godmode/reporting/aws_view.php:181 #: ../../enterprise/godmode/wizards/Cloud.class.php:330 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3239 -#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:858 +#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:887 #: ../../include/ajax/alert_list.ajax.php:280 #: ../../include/ajax/alert_list.ajax.php:306 #: ../../include/class/SnmpConsole.class.php:456 #: ../../include/class/SnmpConsole.class.php:514 -#: ../../include/class/SnmpConsole.class.php:854 -#: ../../operation/agentes/alerts_status.php:302 -#: ../../operation/agentes/alerts_status.php:441 -#: ../../operation/agentes/alerts_status.php:455 +#: ../../include/class/SnmpConsole.class.php:856 +#: ../../operation/agentes/alerts_status.php:301 +#: ../../operation/agentes/alerts_status.php:444 +#: ../../operation/agentes/alerts_status.php:458 msgid "Validate" msgstr "Validar" @@ -14072,7 +14222,7 @@ msgstr "Póngase en contacto con %s para renovar la licencia." #: ../../enterprise/load_enterprise.php:931 #: ../../enterprise/load_enterprise.php:1072 -#: ../../godmode/users/configure_user.php:1008 +#: ../../godmode/users/configure_user.php:1056 msgid "Renew" msgstr "Renovar" @@ -14155,7 +14305,7 @@ msgstr "Gestión de sistemas" #: ../../enterprise/extensions/disabled/check_acls.php:150 #: ../../enterprise/godmode/setup/setup_metaconsole.php:276 #: ../../enterprise/godmode/servers/HA_cluster.php:182 -#: ../../godmode/users/user_list.php:579 ../../godmode/users/user_list.php:767 +#: ../../godmode/users/user_list.php:580 ../../godmode/users/user_list.php:768 #: ../../operation/search_users.php:62 msgid "Admin" msgstr "Administrador" @@ -14202,7 +14352,7 @@ msgstr "Vista VMware" #: ../../extensions/api_checker.php:209 ../../extensions/db_status.php:34 #: ../../extensions/files_repo.php:141 ../../extensions/files_repo.php:253 #: ../../extensions/pandora_logs.php:95 ../../godmode/extensions.php:38 -#: ../../godmode/menu.php:417 ../../godmode/setup/news.php:39 +#: ../../godmode/menu.php:415 ../../godmode/setup/news.php:39 #: ../../godmode/setup/links.php:29 ../../godmode/setup/file_manager.php:56 #: ../../include/class/EventSound.class.php:226 #: ../../include/class/Diagnostics.class.php:159 @@ -14213,7 +14363,7 @@ msgstr "Herramientas administrativas" #: ../../extensions/extension_uploader.php:43 #: ../../extensions/api_checker.php:213 ../../extensions/files_repo.php:145 #: ../../extensions/files_repo.php:257 ../../extensions/pandora_logs.php:99 -#: ../../godmode/extensions.php:42 ../../godmode/menu.php:537 +#: ../../godmode/extensions.php:42 ../../godmode/menu.php:535 msgid "Extension manager" msgstr "Gestor de extensión" @@ -14268,7 +14418,7 @@ msgstr "Separador" #: ../../enterprise/extensions/csv_import_group/main.php:131 #: ../../enterprise/include/class/CSVImportAgents.class.php:208 -#: ../../include/functions_filemanager.php:899 +#: ../../include/functions_filemanager.php:919 msgid "Go" msgstr "Ir" @@ -14446,24 +14596,24 @@ msgstr "Host ESX" #: ../../enterprise/operation/agentes/tag_view.php:1137 #: ../../enterprise/operation/agentes/tag_view.php:1143 #: ../../mobile/operation/modules.php:548 ../../mobile/operation/modules.php:571 -#: ../../mobile/operation/modules.php:611 ../../mobile/operation/modules.php:634 -#: ../../include/functions.php:1416 ../../include/functions.php:1455 -#: ../../include/functions_modules.php:2905 +#: ../../mobile/operation/modules.php:622 ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/services.php:427 ../../include/functions.php:1416 +#: ../../include/functions.php:1455 ../../include/functions_modules.php:2905 #: ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:4235 -#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4246 -#: ../../include/functions_ui.php:4322 ../../include/class/Tree.class.php:664 +#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4320 +#: ../../include/functions_ui.php:4396 ../../include/class/Tree.class.php:687 #: ../../include/lib/Module.php:603 ../../include/functions_events.php:64 #: ../../include/functions_events.php:116 ../../include/functions_events.php:179 -#: ../../operation/agentes/status_monitor.php:1791 -#: ../../operation/agentes/status_monitor.php:1797 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/pandora_networkmap.view.php:1848 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/search_modules.php:115 ../../operation/search_modules.php:142 -#: ../../operation/events/events.php:633 ../../operation/events/events.php:710 -#: ../../operation/events/events.php:736 +#: ../../operation/agentes/status_monitor.php:1793 +#: ../../operation/agentes/status_monitor.php:1799 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/pandora_networkmap.view.php:1849 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/search_modules.php:118 ../../operation/search_modules.php:145 +#: ../../operation/events/events.php:638 ../../operation/events/events.php:715 +#: ../../operation/events/events.php:741 msgid "NORMAL" msgstr "NORMAL" @@ -14476,24 +14626,24 @@ msgstr "NORMAL" #: ../../enterprise/operation/agentes/tag_view.php:1153 #: ../../enterprise/operation/agentes/tag_view.php:1159 #: ../../mobile/operation/modules.php:554 ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:617 ../../mobile/operation/modules.php:642 -#: ../../include/functions.php:1404 ../../include/functions.php:1436 -#: ../../include/functions_modules.php:2899 +#: ../../mobile/operation/modules.php:628 ../../mobile/operation/modules.php:653 +#: ../../mobile/operation/services.php:435 ../../include/functions.php:1404 +#: ../../include/functions.php:1436 ../../include/functions_modules.php:2899 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:4239 -#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4252 -#: ../../include/functions_ui.php:4332 ../../include/class/Tree.class.php:634 +#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4326 +#: ../../include/functions_ui.php:4406 ../../include/class/Tree.class.php:657 #: ../../include/lib/Module.php:587 ../../include/functions_events.php:67 #: ../../include/functions_events.php:120 ../../include/functions_events.php:164 -#: ../../operation/agentes/status_monitor.php:1805 -#: ../../operation/agentes/status_monitor.php:1818 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/pandora_networkmap.view.php:1842 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/search_modules.php:121 ../../operation/search_modules.php:150 -#: ../../operation/events/events.php:608 ../../operation/events/events.php:716 -#: ../../operation/events/events.php:741 +#: ../../operation/agentes/status_monitor.php:1807 +#: ../../operation/agentes/status_monitor.php:1820 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/pandora_networkmap.view.php:1843 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/search_modules.php:124 ../../operation/search_modules.php:153 +#: ../../operation/events/events.php:613 ../../operation/events/events.php:721 +#: ../../operation/events/events.php:746 msgid "CRITICAL" msgstr "CRÍTICO" @@ -14507,25 +14657,25 @@ msgstr "CRÍTICO" #: ../../enterprise/operation/agentes/tag_view.php:1169 #: ../../enterprise/operation/agentes/tag_view.php:1175 #: ../../mobile/operation/modules.php:560 ../../mobile/operation/modules.php:587 -#: ../../mobile/operation/modules.php:623 ../../mobile/operation/modules.php:650 -#: ../../include/functions.php:1407 ../../include/functions.php:1443 -#: ../../include/functions_modules.php:2902 +#: ../../mobile/operation/modules.php:634 ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/services.php:443 ../../include/functions.php:1407 +#: ../../include/functions.php:1443 ../../include/functions_modules.php:2902 #: ../../include/functions_modules.php:2919 #: ../../include/functions_modules.php:4243 -#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4240 -#: ../../include/functions_ui.php:4327 ../../include/class/Tree.class.php:642 -#: ../../include/class/NetworkMap.class.php:2949 ../../include/lib/Module.php:591 +#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4314 +#: ../../include/functions_ui.php:4401 ../../include/class/Tree.class.php:665 +#: ../../include/class/NetworkMap.class.php:2955 ../../include/lib/Module.php:591 #: ../../include/functions_events.php:78 ../../include/functions_events.php:112 #: ../../include/functions_events.php:182 -#: ../../operation/agentes/status_monitor.php:1826 -#: ../../operation/agentes/status_monitor.php:1839 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1845 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:127 ../../operation/search_modules.php:158 -#: ../../operation/events/events.php:638 ../../operation/events/events.php:704 -#: ../../operation/events/events.php:758 +#: ../../operation/agentes/status_monitor.php:1828 +#: ../../operation/agentes/status_monitor.php:1841 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1846 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:130 ../../operation/search_modules.php:161 +#: ../../operation/events/events.php:643 ../../operation/events/events.php:709 +#: ../../operation/events/events.php:763 msgid "WARNING" msgstr "ADVERTENCIA" @@ -14541,31 +14691,31 @@ msgstr "ADVERTENCIA" #: ../../enterprise/operation/agentes/tag_view.php:1169 #: ../../enterprise/operation/agentes/tag_view.php:1175 #: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634 -#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650 -#: ../../include/functions.php:1420 ../../include/functions.php:1446 -#: ../../include/functions_modules.php:2911 +#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/modules.php:653 ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/services.php:458 ../../include/functions.php:1420 +#: ../../include/functions.php:1446 ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:2919 -#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4259 -#: ../../include/functions_ui.php:4347 ../../include/class/Tree.class.php:648 +#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4333 +#: ../../include/functions_ui.php:4421 ../../include/class/Tree.class.php:671 #: ../../include/lib/Module.php:594 ../../include/functions_events.php:81 #: ../../include/functions_events.php:125 ../../include/functions_events.php:185 -#: ../../operation/agentes/status_monitor.php:1847 -#: ../../operation/agentes/status_monitor.php:1860 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:133 ../../operation/search_modules.php:142 -#: ../../operation/search_modules.php:150 ../../operation/search_modules.php:158 -#: ../../operation/events/events.php:644 ../../operation/events/events.php:723 -#: ../../operation/events/events.php:763 +#: ../../operation/agentes/status_monitor.php:1849 +#: ../../operation/agentes/status_monitor.php:1862 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:136 ../../operation/search_modules.php:145 +#: ../../operation/search_modules.php:153 ../../operation/search_modules.php:161 +#: ../../operation/events/events.php:649 ../../operation/events/events.php:728 +#: ../../operation/events/events.php:768 msgid "UNKNOWN" msgstr "DESCONOCIDO" @@ -14787,7 +14937,7 @@ msgid "Power Status: " msgstr "Estado: " #: ../../enterprise/extensions/vmware/vmware_manager.php:269 -#: ../../operation/agentes/pandora_networkmap.view.php:1881 +#: ../../operation/agentes/pandora_networkmap.view.php:1882 msgid "Status: " msgstr "Estado: " @@ -14800,7 +14950,7 @@ msgid "Export agents" msgstr "Exportar agentes" #: ../../enterprise/extensions/resource_exportation/functions.php:46 -#: ../../enterprise/include/functions_reporting.php:8156 +#: ../../enterprise/include/functions_reporting.php:8165 #: ../../extensions/resource_exportation.php:456 #: ../../extensions/resource_exportation.php:468 #: ../../operation/agentes/exportdata.php:464 @@ -14920,12 +15070,12 @@ msgstr "Estado advertencia" #: ../../godmode/modules/manage_network_components_form_common.php:217 #: ../../godmode/modules/manage_network_components_form_wizard.php:387 #: ../../godmode/modules/manage_network_components_form_wizard.php:421 -#: ../../godmode/agentes/module_manager_editor_common.php:1141 +#: ../../godmode/agentes/module_manager_editor_common.php:1151 #: ../../godmode/massive/massive_edit_modules.php:580 #: ../../godmode/massive/massive_edit_modules.php:671 #: ../../godmode/massive/massive_edit_modules.php:900 #: ../../godmode/alerts/configure_alert_template.php:870 -#: ../../include/functions_reporting_html.php:5528 +#: ../../include/functions_reporting_html.php:5556 #: ../../include/functions_treeview.php:91 #: ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:676 @@ -14944,12 +15094,12 @@ msgstr "Mín." #: ../../godmode/modules/manage_network_components_form_common.php:226 #: ../../godmode/modules/manage_network_components_form_wizard.php:389 #: ../../godmode/modules/manage_network_components_form_wizard.php:430 -#: ../../godmode/agentes/module_manager_editor_common.php:1142 +#: ../../godmode/agentes/module_manager_editor_common.php:1152 #: ../../godmode/massive/massive_edit_modules.php:595 #: ../../godmode/massive/massive_edit_modules.php:686 #: ../../godmode/massive/massive_edit_modules.php:902 #: ../../godmode/alerts/configure_alert_template.php:883 -#: ../../include/functions_reporting_html.php:5529 +#: ../../include/functions_reporting_html.php:5557 #: ../../include/functions_treeview.php:91 #: ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:675 @@ -14966,7 +15116,7 @@ msgstr "Máx." #: ../../godmode/modules/manage_network_components_form_common.php:183 #: ../../godmode/modules/manage_network_components_form_common.php:235 #: ../../godmode/agentes/module_manager_editor_common.php:504 -#: ../../godmode/agentes/module_manager_editor_common.php:596 +#: ../../godmode/agentes/module_manager_editor_common.php:601 #: ../../godmode/massive/massive_edit_modules.php:610 #: ../../godmode/massive/massive_edit_modules.php:701 #: ../../include/functions_treeview.php:89 @@ -14983,7 +15133,7 @@ msgstr "Str." #: ../../godmode/modules/manage_network_components_form_wizard.php:400 #: ../../godmode/modules/manage_network_components_form_wizard.php:448 #: ../../godmode/agentes/module_manager_editor_common.php:478 -#: ../../godmode/agentes/module_manager_editor_common.php:561 +#: ../../godmode/agentes/module_manager_editor_common.php:566 #: ../../godmode/massive/massive_edit_modules.php:645 #: ../../godmode/massive/massive_edit_modules.php:737 msgid "Percentage" @@ -14998,12 +15148,14 @@ msgstr "Define el umbral como un porcentaje de disminución/incremento del valor #: ../../enterprise/godmode/modules/configure_local_component.php:350 #: ../../godmode/modules/manage_network_components_form_common.php:201 #: ../../godmode/modules/manage_network_components_form_wizard.php:412 +#: ../../godmode/agentes/module_manager_editor_common.php:528 msgid "Change to critical status after" msgstr "Cambiar al estado crítico después de" #: ../../enterprise/godmode/modules/configure_local_component.php:359 #: ../../godmode/modules/manage_network_components_form_common.php:210 #: ../../godmode/modules/manage_network_components_form_wizard.php:414 +#: ../../godmode/agentes/module_manager_editor_common.php:530 msgid "intervals in warning status." msgstr "intervalos en estado de advertencia." @@ -15023,7 +15175,7 @@ msgstr "Estado crítico" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:267 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873 #: ../../godmode/modules/manage_network_components_form_common.php:254 -#: ../../godmode/agentes/module_manager_editor_common.php:1191 +#: ../../godmode/agentes/module_manager_editor_common.php:1201 #: ../../godmode/massive/massive_edit_modules.php:945 msgid "FF threshold" msgstr "Umbral FF" @@ -15031,7 +15183,7 @@ msgstr "Umbral FF" #: ../../enterprise/godmode/modules/configure_local_component.php:406 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941 #: ../../godmode/modules/manage_network_components_form_common.php:257 -#: ../../godmode/agentes/module_manager_editor_common.php:1314 +#: ../../godmode/agentes/module_manager_editor_common.php:1324 #: ../../godmode/massive/massive_edit_modules.php:1009 msgid "Keep counters" msgstr "Mantener los contadores" @@ -15041,7 +15193,7 @@ msgstr "Mantener los contadores" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 #: ../../godmode/modules/manage_network_components_form_common.php:271 -#: ../../godmode/agentes/module_manager_editor_common.php:1195 +#: ../../godmode/agentes/module_manager_editor_common.php:1205 #: ../../godmode/massive/massive_edit_modules.php:953 #: ../../godmode/massive/massive_edit_modules.php:968 msgid "All state changing" @@ -15052,7 +15204,7 @@ msgstr "Todos los cambios de estado" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910 #: ../../godmode/modules/manage_network_components_form_common.php:287 -#: ../../godmode/agentes/module_manager_editor_common.php:1196 +#: ../../godmode/agentes/module_manager_editor_common.php:1206 #: ../../godmode/massive/massive_edit_modules.php:952 #: ../../godmode/massive/massive_edit_modules.php:978 msgid "Each state changing" @@ -15062,7 +15214,7 @@ msgstr "Cada cambio de estado" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:308 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911 #: ../../godmode/modules/manage_network_components_form_common.php:288 -#: ../../godmode/agentes/module_manager_editor_common.php:1228 +#: ../../godmode/agentes/module_manager_editor_common.php:1238 #: ../../godmode/massive/massive_edit_modules.php:979 msgid "To normal" msgstr "A normal" @@ -15071,7 +15223,7 @@ msgstr "A normal" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:309 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921 #: ../../godmode/modules/manage_network_components_form_common.php:297 -#: ../../godmode/agentes/module_manager_editor_common.php:1229 +#: ../../godmode/agentes/module_manager_editor_common.php:1239 #: ../../godmode/massive/massive_edit_modules.php:989 msgid "To warning" msgstr "A advertencia" @@ -15080,7 +15232,7 @@ msgstr "A advertencia" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:310 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931 #: ../../godmode/modules/manage_network_components_form_common.php:306 -#: ../../godmode/agentes/module_manager_editor_common.php:1230 +#: ../../godmode/agentes/module_manager_editor_common.php:1240 #: ../../godmode/massive/massive_edit_modules.php:999 msgid "To critical" msgstr "A crítico" @@ -15090,15 +15242,16 @@ msgstr "A crítico" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966 #: ../../enterprise/include/functions_reporting_csv.php:2225 #: ../../godmode/modules/manage_network_components_form_common.php:316 -#: ../../godmode/agentes/module_manager_editor_common.php:619 +#: ../../godmode/agentes/module_manager_editor_common.php:624 #: ../../godmode/massive/massive_edit_modules.php:1057 -#: ../../include/functions_reporting.php:4664 +#: ../../mobile/operation/modules.php:860 +#: ../../include/functions_reporting.php:4673 msgid "Historical data" msgstr "Histórico de datos" #: ../../enterprise/godmode/modules/configure_local_component.php:462 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 -#: ../../godmode/agentes/module_manager_editor_common.php:1282 +#: ../../godmode/agentes/module_manager_editor_common.php:1292 #: ../../godmode/massive/massive_edit_modules.php:1043 msgid "FF timeout" msgstr "FF tiempo de espera" @@ -15121,9 +15274,9 @@ msgstr "Solo debe establecerse este valor en los módulos asíncronos." #: ../../enterprise/godmode/modules/configure_local_component.php:473 #: ../../enterprise/include/functions_reporting_csv.php:1251 #: ../../godmode/modules/manage_network_components_form_common.php:319 -#: ../../godmode/agentes/module_manager_editor_common.php:1105 +#: ../../godmode/agentes/module_manager_editor_common.php:1115 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 -#: ../../include/functions_reporting.php:7102 +#: ../../include/functions_reporting.php:7111 msgid "Min. Value" msgstr "Valor mínimo" @@ -15135,9 +15288,9 @@ msgstr "Cualquier valor por debajo de este número será descartado." #: ../../enterprise/godmode/modules/configure_local_component.php:478 #: ../../enterprise/include/functions_reporting_csv.php:1306 #: ../../godmode/modules/manage_network_components_form_common.php:321 -#: ../../godmode/agentes/module_manager_editor_common.php:1106 +#: ../../godmode/agentes/module_manager_editor_common.php:1116 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 -#: ../../include/functions_reporting.php:7098 +#: ../../include/functions_reporting.php:7107 msgid "Max. Value" msgstr "Valor máximo" @@ -15149,9 +15302,9 @@ msgstr "Cualquier valor por encima de este número será descartado." #: ../../enterprise/godmode/modules/configure_local_component.php:485 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 #: ../../godmode/modules/manage_network_components_form_plugin.php:49 -#: ../../godmode/modules/manage_network_components_form_network.php:178 +#: ../../godmode/modules/manage_network_components_form_network.php:210 #: ../../godmode/modules/manage_network_components_form_wmi.php:55 -#: ../../godmode/agentes/module_manager_editor_common.php:1328 +#: ../../godmode/agentes/module_manager_editor_common.php:1338 #: ../../godmode/massive/massive_edit_modules.php:795 #: ../../godmode/setup/snmp_wizard.php:43 msgid "Post process" @@ -15166,24 +15319,24 @@ msgid "Check the correct structure of the data configuration" msgstr "Comprobar la estructura correcta de la configuración de datos" #: ../../enterprise/godmode/modules/configure_local_component.php:518 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:249 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250 msgid "First line must be \"module_begin\"" msgstr "La primera línea tiene que ser \"module_begin\"." #: ../../enterprise/godmode/modules/configure_local_component.php:519 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251 msgid "Data configuration is empty" msgstr "La configuración de datos está vacía." #: ../../enterprise/godmode/modules/configure_local_component.php:520 #: ../../enterprise/godmode/modules/configure_local_component.php:524 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256 msgid "Last line must be \"module_end\"" msgstr "La última línea tiene que ser \"module_end\"." #: ../../enterprise/godmode/modules/configure_local_component.php:521 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253 msgid "" "Name is missed. Please add a line with \"module_name yourmodulename\" to data " "configuration" @@ -15192,7 +15345,7 @@ msgstr "" "yourmodulename\" a la configuración de datos." #: ../../enterprise/godmode/modules/configure_local_component.php:522 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254 msgid "" "Type is missed. Please add a line with \"module_type yourmoduletype\" to data " "configuration" @@ -15201,24 +15354,24 @@ msgstr "" "\" a la configuración de datos." #: ../../enterprise/godmode/modules/configure_local_component.php:523 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255 msgid "Type is wrong. Please set a correct type" msgstr "El tipo es incorrecto. Por favor, introduce un tipo correcto." #: ../../enterprise/godmode/modules/configure_local_component.php:526 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258 msgid "Error in the syntax, please check the data configuration." msgstr "Error en la sintaxis; comprueba la configuración de datos." #: ../../enterprise/godmode/modules/configure_local_component.php:527 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:259 msgid "Data configuration are built correctly" msgstr "La configuración de datos se ha efectuado correctamente." #: ../../enterprise/godmode/modules/configure_local_component.php:535 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 #: ../../godmode/modules/manage_network_components_form_common.php:334 -#: ../../godmode/agentes/module_manager_editor_common.php:1044 +#: ../../godmode/agentes/module_manager_editor_common.php:1053 #: ../../godmode/massive/massive_edit_modules.php:1107 msgid "Critical instructions" msgstr "Instrucciones de crítico" @@ -15233,7 +15386,7 @@ msgstr "Instrucciones en caso de que se encuentre en estado crítico" #: ../../enterprise/godmode/modules/configure_local_component.php:540 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 #: ../../godmode/modules/manage_network_components_form_common.php:338 -#: ../../godmode/agentes/module_manager_editor_common.php:1043 +#: ../../godmode/agentes/module_manager_editor_common.php:1054 #: ../../godmode/massive/massive_edit_modules.php:1111 msgid "Warning instructions" msgstr "Instrucciones de advertencia" @@ -15248,7 +15401,7 @@ msgstr "Instrucciones en caso de que se encuentre en estado de advertencia" #: ../../enterprise/godmode/modules/configure_local_component.php:545 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 #: ../../godmode/modules/manage_network_components_form_common.php:342 -#: ../../godmode/agentes/module_manager_editor_common.php:1020 +#: ../../godmode/agentes/module_manager_editor_common.php:1030 #: ../../godmode/massive/massive_edit_modules.php:1115 msgid "Unknown instructions" msgstr "Instrucciones de desconocido" @@ -15263,7 +15416,7 @@ msgstr "Instrucciones en caso de que se encuentre en estado desconocido" #: ../../enterprise/godmode/modules/configure_local_component.php:554 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984 #: ../../godmode/modules/manage_network_components_form_common.php:353 -#: ../../godmode/agentes/module_manager_editor_common.php:745 +#: ../../godmode/agentes/module_manager_editor_common.php:755 #: ../../godmode/massive/massive_edit_modules.php:1075 #: ../../godmode/module_library/module_library_view.php:123 msgid "Category" @@ -15271,13 +15424,13 @@ msgstr "Categoría" #: ../../enterprise/godmode/modules/configure_local_component.php:573 #: ../../godmode/modules/manage_network_components_form_common.php:373 -#: ../../godmode/agentes/module_manager_editor_common.php:782 +#: ../../godmode/agentes/module_manager_editor_common.php:792 msgid "Tags available" msgstr "Etiquetas disponibles" #: ../../enterprise/godmode/modules/configure_local_component.php:591 #: ../../godmode/modules/manage_network_components_form_common.php:391 -#: ../../godmode/agentes/module_manager_editor_common.php:862 +#: ../../godmode/agentes/module_manager_editor_common.php:872 msgid "Add tags to module" msgstr "Añadir etiquetas al módulo" @@ -15289,7 +15442,7 @@ msgstr "Eliminar etiquetas del módulo" #: ../../enterprise/godmode/modules/configure_local_component.php:593 #: ../../enterprise/godmode/setup/setup_auth.php:196 #: ../../enterprise/godmode/setup/setup_auth.php:551 -#: ../../enterprise/godmode/setup/setup_auth.php:1359 +#: ../../enterprise/godmode/setup/setup_auth.php:1576 #: ../../godmode/modules/manage_network_components_form_common.php:393 msgid "Tags selected" msgstr "Etiquetas seleccionadas" @@ -15300,42 +15453,42 @@ msgstr "Macros" #: ../../enterprise/godmode/modules/configure_local_component.php:651 #: ../../godmode/servers/plugin.php:573 -#: ../../include/class/ManageNetScanScripts.class.php:644 +#: ../../include/class/ManageNetScanScripts.class.php:640 msgid "Default value" msgstr "Valor por defecto" #: ../../enterprise/godmode/modules/configure_local_component.php:667 -#: ../../godmode/servers/plugin.php:628 -#: ../../include/class/ManageNetScanScripts.class.php:732 +#: ../../godmode/servers/plugin.php:632 +#: ../../include/class/ManageNetScanScripts.class.php:728 msgid "Add macro" msgstr "Añadir macro" #: ../../enterprise/godmode/modules/configure_local_component.php:675 -#: ../../include/class/ManageNetScanScripts.class.php:750 +#: ../../include/class/ManageNetScanScripts.class.php:746 msgid "Delete macro" msgstr "Eliminar macro" #: ../../enterprise/godmode/modules/configure_local_component.php:993 #: ../../godmode/modules/manage_network_components_form_common.php:717 -#: ../../godmode/agentes/module_manager_editor_common.php:2263 +#: ../../godmode/agentes/module_manager_editor_common.php:2273 msgid "Normal Status" msgstr "Estado normal" #: ../../enterprise/godmode/modules/configure_local_component.php:994 #: ../../godmode/modules/manage_network_components_form_common.php:718 -#: ../../godmode/agentes/module_manager_editor_common.php:2264 +#: ../../godmode/agentes/module_manager_editor_common.php:2274 msgid "Warning Status" msgstr "Estado de advertencia" #: ../../enterprise/godmode/modules/configure_local_component.php:995 #: ../../godmode/modules/manage_network_components_form_common.php:719 -#: ../../godmode/agentes/module_manager_editor_common.php:2265 +#: ../../godmode/agentes/module_manager_editor_common.php:2275 msgid "Critical Status" msgstr "Estado crítico" #: ../../enterprise/godmode/modules/configure_local_component.php:998 #: ../../godmode/modules/manage_network_components_form_common.php:721 -#: ../../godmode/agentes/module_manager_editor_common.php:2268 +#: ../../godmode/agentes/module_manager_editor_common.php:2278 msgid "Please introduce a maximum warning higher than the minimun warning" msgstr "" "Por favor, introduce un máximo de advertencia mayor que el mínimo de " @@ -15343,7 +15496,7 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:1000 #: ../../godmode/modules/manage_network_components_form_common.php:722 -#: ../../godmode/agentes/module_manager_editor_common.php:2269 +#: ../../godmode/agentes/module_manager_editor_common.php:2279 msgid "Please introduce a maximum critical higher than the minimun critical" msgstr "Por favor introduce un máximo de crítico mayor que el mínimo de crítico." @@ -15352,7 +15505,7 @@ msgid "Please introduce a positicve percentage value" msgstr "Introduzca un valor porcentual positivo" #: ../../enterprise/godmode/modules/local_components.php:140 -#: ../../godmode/modules/manage_network_components.php:195 +#: ../../godmode/modules/manage_network_components.php:196 #: ../../godmode/alerts/configure_alert_template.php:208 #, php-format msgid "Successfully created from %s" @@ -15373,9 +15526,9 @@ msgstr "Creado correctamente desde %s" #: ../../enterprise/tools/ipam/ipam_action.php:164 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:51 #: ../../godmode/modules/manage_nc_groups.php:109 -#: ../../godmode/modules/manage_network_components.php:198 -#: ../../godmode/modules/manage_network_components.php:436 -#: ../../godmode/users/configure_user.php:531 +#: ../../godmode/modules/manage_network_components.php:199 +#: ../../godmode/modules/manage_network_components.php:438 +#: ../../godmode/users/configure_user.php:480 #: ../../godmode/agentes/configurar_agente.php:361 #: ../../godmode/agentes/configurar_agente.php:883 #: ../../godmode/agentes/planned_downtime.editor.php:650 @@ -15384,8 +15537,8 @@ msgstr "Creado correctamente desde %s" #: ../../godmode/alerts/configure_alert_template.php:544 #: ../../godmode/alerts/alert_list.php:172 ../../godmode/setup/news.php:84 #: ../../godmode/setup/gis.php:49 -#: ../../godmode/reporting/reporting_builder.item_editor.php:6025 -#: ../../include/functions_alerts.php:2755 +#: ../../godmode/reporting/reporting_builder.item_editor.php:6028 +#: ../../include/functions_alerts.php:2756 #: ../../include/functions_planned_downtimes.php:113 #: ../../include/functions_planned_downtimes.php:845 #: ../../operation/agentes/pandora_networkmap.php:140 @@ -15407,14 +15560,14 @@ msgstr "" "las políticas está en modo lectura. Vaya a %s para administrarlo." #: ../../enterprise/godmode/modules/local_components.php:339 -#: ../../godmode/modules/manage_network_components.php:447 +#: ../../godmode/modules/manage_network_components.php:449 #: ../../include/class/ManageNetScanScripts.class.php:228 msgid "Created successfully" msgstr "Creado correctamente" #: ../../enterprise/godmode/modules/local_components.php:407 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:127 -#: ../../enterprise/godmode/policies/policy_modules.php:1266 +#: ../../enterprise/godmode/policies/policy_modules.php:1311 #: ../../enterprise/godmode/policies/policies.php:212 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:139 @@ -15425,22 +15578,22 @@ msgstr "Creado correctamente" #: ../../enterprise/include/ajax/servers.ajax.php:368 #: ../../enterprise/tools/ipam/ipam_action.php:277 #: ../../enterprise/tools/ipam/ipam_massive.php:48 -#: ../../godmode/modules/manage_network_components.php:535 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/modules/manage_network_components.php:538 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 #: ../../godmode/agentes/planned_downtime.editor.php:652 #: ../../godmode/alerts/configure_alert_command.php:150 -#: ../../godmode/alerts/alert_templates.php:162 +#: ../../godmode/alerts/alert_templates.php:166 #: ../../godmode/alerts/configure_alert_template.php:572 #: ../../godmode/alerts/alert_list.php:95 ../../godmode/alerts/alert_list.php:320 -#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2755 +#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2756 #: ../../include/functions_planned_downtimes.php:123 #: ../../operation/agentes/pandora_networkmap.php:216 -#: ../../operation/agentes/pandora_networkmap.php:515 +#: ../../operation/agentes/pandora_networkmap.php:516 msgid "Could not be updated" msgstr "No se pudo actualizar" #: ../../enterprise/godmode/modules/local_components.php:415 -#: ../../godmode/modules/manage_network_components.php:544 +#: ../../godmode/modules/manage_network_components.php:547 #: ../../include/class/ManageNetScanScripts.class.php:315 msgid "Updated successfully" msgstr "Actualizado correctamente" @@ -15449,7 +15602,7 @@ msgstr "Actualizado correctamente" #: ../../godmode/modules/manage_nc_groups.php:218 #: ../../godmode/modules/manage_inventory_modules.php:234 #: ../../godmode/modules/manage_inventory_modules.php:267 -#: ../../godmode/modules/manage_network_components.php:588 +#: ../../godmode/modules/manage_network_components.php:591 #: ../../godmode/modules/manage_network_templates.php:114 msgid "Successfully multiple deleted" msgstr "Supresión múltiple correcta" @@ -15458,14 +15611,14 @@ msgstr "Supresión múltiple correcta" #: ../../godmode/modules/manage_nc_groups.php:219 #: ../../godmode/modules/manage_inventory_modules.php:235 #: ../../godmode/modules/manage_inventory_modules.php:268 -#: ../../godmode/modules/manage_network_components.php:589 +#: ../../godmode/modules/manage_network_components.php:592 #: ../../godmode/modules/manage_network_templates.php:115 msgid "Not deleted. Error deleting multiple data" msgstr "No borrado. Error al borrar datos múltiples." #: ../../enterprise/godmode/modules/local_components.php:567 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2902 -#: ../../godmode/modules/manage_network_components.php:677 +#: ../../godmode/modules/manage_network_components.php:680 msgid "Free Search" msgstr "Búsqueda libre" @@ -15474,15 +15627,15 @@ msgid "Search by name, description or data, list matches." msgstr "Búsqueda de lista de concidencias por nombre, descripción o datos." #: ../../enterprise/godmode/modules/local_components.php:732 -#: ../../enterprise/godmode/policies/policy_modules.php:1636 +#: ../../enterprise/godmode/policies/policy_modules.php:1681 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:595 #: ../../enterprise/include/class/NetworkConfigManager.class.php:628 -#: ../../godmode/modules/manage_network_components.php:841 -#: ../../godmode/agentes/module_manager.php:961 +#: ../../godmode/modules/manage_network_components.php:844 +#: ../../godmode/agentes/module_manager.php:975 #: ../../godmode/snmpconsole/snmp_alert.php:1984 #: ../../godmode/snmpconsole/snmp_alert.php:1985 #: ../../godmode/alerts/alert_actions.php:461 -#: ../../godmode/alerts/alert_templates.php:458 +#: ../../godmode/alerts/alert_templates.php:462 #: ../../godmode/reporting/reporting_builder.php:1194 msgid "Duplicate" msgstr "Duplicar" @@ -15558,7 +15711,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wizard.php:661 #: ../../godmode/agentes/planned_downtime.list.php:737 #: ../../godmode/agentes/planned_downtime.editor.php:951 -#: ../../include/functions_reporting_html.php:6372 +#: ../../include/functions_reporting_html.php:6406 msgid "Execution" msgstr "Ejecución" @@ -15646,8 +15799,8 @@ msgstr "Lanzar script" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:665 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:679 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:320 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:335 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643 @@ -15677,20 +15830,20 @@ msgstr "Lanzar script" #: ../../godmode/massive/massive_edit_users.php:462 #: ../../godmode/massive/massive_edit_users.php:470 #: ../../godmode/massive/massive_edit_users.php:507 -#: ../../godmode/massive/massive_edit_users.php:609 -#: ../../godmode/massive/massive_edit_users.php:628 -#: ../../godmode/massive/massive_edit_users.php:635 -#: ../../godmode/massive/massive_edit_agents.php:677 -#: ../../godmode/massive/massive_edit_agents.php:703 -#: ../../godmode/massive/massive_edit_agents.php:739 -#: ../../godmode/massive/massive_edit_agents.php:763 -#: ../../godmode/massive/massive_edit_agents.php:880 -#: ../../godmode/massive/massive_edit_agents.php:927 -#: ../../godmode/massive/massive_edit_agents.php:1020 -#: ../../godmode/massive/massive_edit_agents.php:1073 -#: ../../godmode/massive/massive_edit_agents.php:1115 -#: ../../godmode/massive/massive_edit_agents.php:1143 -#: ../../godmode/massive/massive_edit_agents.php:1237 +#: ../../godmode/massive/massive_edit_users.php:610 +#: ../../godmode/massive/massive_edit_users.php:629 +#: ../../godmode/massive/massive_edit_users.php:636 +#: ../../godmode/massive/massive_edit_agents.php:694 +#: ../../godmode/massive/massive_edit_agents.php:720 +#: ../../godmode/massive/massive_edit_agents.php:756 +#: ../../godmode/massive/massive_edit_agents.php:780 +#: ../../godmode/massive/massive_edit_agents.php:897 +#: ../../godmode/massive/massive_edit_agents.php:944 +#: ../../godmode/massive/massive_edit_agents.php:1037 +#: ../../godmode/massive/massive_edit_agents.php:1090 +#: ../../godmode/massive/massive_edit_agents.php:1132 +#: ../../godmode/massive/massive_edit_agents.php:1159 +#: ../../godmode/massive/massive_edit_agents.php:1253 #: ../../godmode/massive/massive_edit_modules.php:630 #: ../../godmode/massive/massive_edit_modules.php:652 #: ../../godmode/massive/massive_edit_modules.php:721 @@ -15712,28 +15865,27 @@ msgstr "Lanzar script" #: ../../godmode/massive/massive_edit_modules.php:1095 #: ../../godmode/massive/massive_edit_modules.php:1123 #: ../../godmode/massive/massive_edit_modules.php:1227 -#: ../../include/functions_html.php:1877 ../../include/functions_html.php:1978 -#: ../../include/functions_html.php:2116 +#: ../../include/functions_html.php:1888 ../../include/functions_html.php:1989 +#: ../../include/functions_html.php:2127 msgid "No change" msgstr "Sin cambios" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:683 -#: ../../godmode/agentes/agent_manager.php:636 +#: ../../godmode/agentes/agent_manager.php:638 #: ../../godmode/reporting/reporting_builder.item_editor.php:73 -#: ../../include/functions_events.php:5061 -#: ../../operation/agentes/estado_generalagente.php:504 -#: ../../operation/inventory/inventory.php:1003 -#: ../../operation/inventory/inventory.php:1297 +#: ../../include/functions_events.php:5066 +#: ../../operation/agentes/estado_generalagente.php:475 +#: ../../operation/inventory/inventory.php:1249 msgid "Secondary groups" msgstr "Grupos secundarios" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:730 -#: ../../godmode/massive/massive_edit_agents.php:825 +#: ../../godmode/massive/massive_edit_agents.php:842 msgid "Add secondary groups" msgstr "Añadir grupos secundarios" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:737 -#: ../../godmode/massive/massive_edit_agents.php:851 +#: ../../godmode/massive/massive_edit_agents.php:868 msgid "Remove secondary groups" msgstr "Eliminar grupos secundarios" @@ -15744,7 +15896,7 @@ msgstr "Añadir política" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:790 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 -#: ../../operation/agentes/estado_agente.php:1063 +#: ../../operation/agentes/estado_agente.php:1071 msgid "Op" msgstr "Op" @@ -15826,13 +15978,13 @@ msgstr "No hay autoconfiguraciones definidas" #: ../../enterprise/include/functions_HA_cluster.php:61 #: ../../enterprise/include/lib/Metaconsole/Node.php:1114 #: ../../enterprise/include/lib/Metaconsole/Node.php:1115 -#: ../../godmode/users/user_list.php:845 +#: ../../godmode/users/user_list.php:846 #: ../../godmode/massive/massive_edit_users.php:529 -#: ../../godmode/alerts/alert_list.list.php:1170 +#: ../../godmode/alerts/alert_list.list.php:1169 #: ../../include/class/SatelliteAgent.class.php:1195 -#: ../../include/class/TipsWindow.class.php:456 -#: ../../include/class/TipsWindow.class.php:734 -#: ../../include/class/TipsWindow.class.php:901 +#: ../../include/class/TipsWindow.class.php:468 +#: ../../include/class/TipsWindow.class.php:754 +#: ../../include/class/TipsWindow.class.php:921 #: ../../operation/users/user_edit_notifications.php:64 msgid "Enable" msgstr "Activar" @@ -15844,14 +15996,14 @@ msgstr "Activar" #: ../../enterprise/include/functions_HA_cluster.php:58 #: ../../enterprise/include/lib/Metaconsole/Node.php:1140 #: ../../enterprise/include/lib/Metaconsole/Node.php:1141 -#: ../../godmode/users/user_list.php:840 +#: ../../godmode/users/user_list.php:841 #: ../../godmode/massive/massive_edit_users.php:518 -#: ../../godmode/alerts/alert_list.list.php:1143 ../../include/functions.php:3413 +#: ../../godmode/alerts/alert_list.list.php:1142 ../../include/functions.php:3413 #: ../../include/class/SatelliteAgent.class.php:1195 msgid "Disable" msgstr "Desactivar" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:218 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:226 msgid "Add new configuration definition" msgstr "Añadir definición de nueva configuración" @@ -15875,10 +16027,10 @@ msgstr "Administrador de configuración de red" #: ../../enterprise/godmode/agentes/plugins_manager.php:212 #: ../../enterprise/godmode/policies/policy_plugins.php:185 #: ../../enterprise/godmode/policies/policies.php:607 -#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:322 +#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:320 #: ../../godmode/servers/plugin.php:240 ../../godmode/servers/plugin.php:282 -#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:764 -#: ../../godmode/servers/plugin.php:806 +#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:756 +#: ../../godmode/servers/plugin.php:798 msgid "Plugins" msgstr "Plugins" @@ -15905,12 +16057,12 @@ msgid "Show files" msgstr "Mostrar archivos" #: ../../enterprise/godmode/agentes/collection_manager.php:251 -#: ../../enterprise/operation/log/log_viewer.php:1477 -#: ../../enterprise/operation/log/log_viewer.php:1485 +#: ../../enterprise/operation/log/log_viewer.php:1475 +#: ../../enterprise/operation/log/log_viewer.php:1483 #: ../../godmode/reporting/reporting_builder.php:1268 -#: ../../include/functions_reporting.php:3199 -#: ../../operation/agentes/agent_inventory.php:280 -#: ../../operation/inventory/inventory.php:776 +#: ../../include/functions_reporting.php:3208 +#: ../../operation/agentes/agent_inventory.php:334 +#: ../../operation/inventory/inventory.php:1005 msgid "No data found." msgstr "No se encontraron datos." @@ -15919,9 +16071,9 @@ msgstr "No se encontraron datos." #: ../../godmode/agentes/inventory_manager.php:232 #: ../../godmode/snmpconsole/snmp_alert.php:1891 #: ../../godmode/reporting/reporting_builder.list_items.php:373 -#: ../../godmode/reporting/graph_builder.graph_editor.php:211 +#: ../../godmode/reporting/graph_builder.graph_editor.php:344 #: ../../include/ajax/alert_list.ajax.php:285 -#: ../../operation/agentes/status_monitor.php:1531 +#: ../../operation/agentes/status_monitor.php:1533 msgid "P." msgstr "P." @@ -15937,7 +16089,7 @@ msgid "Capacity planning" msgstr "Planificación de la capacidad" #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:41 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:186 #: ../../enterprise/godmode/services/services.elements.php:95 #: ../../enterprise/godmode/services/services.elements.php:184 #: ../../enterprise/include/functions_visual_map_editor.php:30 @@ -15948,7 +16100,8 @@ msgstr "Planificación de la capacidad" #: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288 #: ../../enterprise/include/functions_reporting.php:6152 #: ../../enterprise/include/functions_services.php:1712 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4118 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4127 +#: ../../mobile/operation/services.php:267 #: ../../include/lib/Dashboard/Widgets/service_map.php:318 msgid "Service" msgstr "Servicio" @@ -15965,59 +16118,59 @@ msgstr "Media sintética" msgid "Trending module" msgstr "Módulo de tendencias" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:138 msgid "Fixed value" msgstr "Valor fijo" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:140 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141 msgid "Add module to operation as add" msgstr "Añadir módulo a la operación como suma" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 msgid "Add module to operations as deduct" msgstr "Añadir módulo a la operación como resta" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 msgid "Add module to operations as multiplicate " msgstr "Añadir módulo a la operación como multiplicador " -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 msgid "Add module to operations as divide" msgstr "Añadir módulo a la operación como divisor" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145 msgid "Remove selected modules" msgstr "Eliminar los módulos seleccionados" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:148 msgid "Add module to average operation" msgstr "Añadir módulo al promedio de la operación" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:150 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149 msgid "Remove selected modules from operations stack" msgstr "Eliminar los módulos de las operaciones de apilado" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:165 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:160 msgid "Move down selected modules" msgstr "Mover hacia abajo los módulos seleccionados" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:161 msgid "Move up selected modules" msgstr "Mover hacia arriba los módulos seleccionados" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:199 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197 msgid "Select Service" msgstr "Seleccionar servicio" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:216 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:214 msgid "Netflow filter" msgstr "Filtro de Netflow" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:225 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:223 msgid "Select filter" msgstr "Seleccionar filtro" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:240 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:238 msgid "Percentual value" msgstr "Valor porcentual" @@ -16134,15 +16287,19 @@ msgstr "Configuración manual" msgid "No component was found" msgstr "No se encontró ningún componente" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:170 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:132 +msgid "Macro value" +msgstr "Valor de macro" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:171 msgid "Show configuration data" msgstr "Mostrar datos de configuración" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:181 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:182 msgid "Hide configuration data" msgstr "Ocultar datos de configuración" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:189 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:190 msgid "Data configuration" msgstr "Configuración de datos" @@ -16180,7 +16337,7 @@ msgid "Add Modules" msgstr "Añadir módulos" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:83 -#: ../../godmode/agentes/module_manager.php:1247 +#: ../../godmode/agentes/module_manager.php:1268 msgid "Delete module" msgstr "Eliminar módulo" @@ -16224,8 +16381,8 @@ msgstr "" "completa %s." #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:231 -#: ../../godmode/tag/edit_tag.php:76 ../../include/class/TipsWindow.class.php:718 -#: ../../include/class/TipsWindow.class.php:885 +#: ../../godmode/tag/edit_tag.php:76 ../../include/class/TipsWindow.class.php:738 +#: ../../include/class/TipsWindow.class.php:905 #: ../../operation/search_users.php:47 msgid "Profile" msgstr "Perfil" @@ -16247,7 +16404,7 @@ msgid "Only Selenium 3." msgstr "Solo Selenium 3." #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:286 -#: ../../godmode/agentes/module_manager_editor_common.php:1206 +#: ../../godmode/agentes/module_manager_editor_common.php:1216 msgid "Change all states" msgstr "Cambiar todos los estados" @@ -16272,15 +16429,15 @@ msgstr "Pega el test de selenium, exportado como HTML, aquí" #: ../../enterprise/tools/ipam/ipam_excel.php:220 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:419 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:792 -#: ../../godmode/groups/configure_group.php:234 +#: ../../godmode/groups/configure_group.php:253 #: ../../godmode/agentes/agent_manager.php:195 -#: ../../godmode/agentes/module_manager_editor_common.php:744 -#: ../../godmode/massive/massive_edit_agents.php:812 +#: ../../godmode/agentes/module_manager_editor_common.php:754 +#: ../../godmode/massive/massive_edit_agents.php:829 msgid "Custom ID" msgstr "ID personalizado" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:497 -#: ../../godmode/agentes/module_manager.php:902 +#: ../../godmode/agentes/module_manager.php:916 msgid "" "The policy modules of data type will only update their intervals when policy " "is applied." @@ -16290,7 +16447,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:527 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961 -#: ../../godmode/agentes/module_manager_editor_common.php:1281 +#: ../../godmode/agentes/module_manager_editor_common.php:1291 #: ../../godmode/massive/massive_edit_modules.php:1029 msgid "FF interval" msgstr "Intervalo FF" @@ -16303,7 +16460,7 @@ msgstr "Tiempo del intervalo de flip flop de ejecución del módulo (en segundos #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:546 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057 -#: ../../godmode/agentes/module_manager_editor_common.php:1410 +#: ../../godmode/agentes/module_manager_editor_common.php:1420 #: ../../godmode/massive/massive_edit_modules.php:1150 msgid "Retries" msgstr "Reintentos" @@ -16317,7 +16474,7 @@ msgstr "Número de intentos que el módulo intentará activar" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:619 #: ../../enterprise/godmode/policies/policy_modules.php:418 #: ../../godmode/agentes/module_manager_editor.php:762 -#: ../../godmode/agentes/module_manager_editor_common.php:1444 +#: ../../godmode/agentes/module_manager_editor_common.php:1454 msgid "Custom macros" msgstr "Macros personalizadas" @@ -16343,13 +16500,15 @@ msgstr "Editor de mapas de red vacío" #: ../../enterprise/operation/services/services.table_services.php:63 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104 #: ../../godmode/gis_maps/configure_gis_map.php:116 -#: ../../godmode/reporting/visual_console_builder.php:865 +#: ../../godmode/reporting/visual_console_builder.php:873 #: ../../godmode/reporting/map_builder.php:129 #: ../../godmode/reporting/visual_console_favorite.php:126 -#: ../../operation/visual_console/view.php:247 +#: ../../operation/visual_console/view.php:249 +#: ../../operation/visual_console/legacy_view.php:215 +#: ../../operation/agentes/networkmap.dinamic.php:146 #: ../../operation/agentes/pandora_networkmap.editor.php:232 -#: ../../operation/agentes/pandora_networkmap.php:681 -#: ../../operation/agentes/pandora_networkmap.view.php:2409 +#: ../../operation/agentes/pandora_networkmap.php:682 +#: ../../operation/agentes/pandora_networkmap.view.php:2410 #: ../../operation/menu.php:439 ../../operation/gis_maps/gis_map.php:47 #: ../../operation/gis_maps/render_view.php:189 msgid "Topology maps" @@ -16358,15 +16517,15 @@ msgstr "Mapas topológicos" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108 #: ../../operation/agentes/pandora_networkmap.editor.php:236 -#: ../../operation/agentes/pandora_networkmap.php:685 -#: ../../operation/agentes/pandora_networkmap.view.php:2311 +#: ../../operation/agentes/pandora_networkmap.php:686 +#: ../../operation/agentes/pandora_networkmap.view.php:2312 msgid "Networkmap" msgstr "Mapa de red" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115 #: ../../operation/agentes/pandora_networkmap.editor.php:274 -#: ../../operation/agentes/pandora_networkmap.view.php:2317 +#: ../../operation/agentes/pandora_networkmap.view.php:2318 msgid "Not found networkmap." msgstr "No se encontró ningún mapa de red." @@ -16472,7 +16631,7 @@ msgstr "Crear un módulo de análisis web nuevo" #: ../../enterprise/godmode/policies/policy_alerts.php:75 #: ../../enterprise/godmode/policies/configure_policy.php:92 #: ../../enterprise/godmode/policies/policy_modules.php:488 -#: ../../enterprise/godmode/policies/policy_queue.php:218 +#: ../../enterprise/godmode/policies/policy_queue.php:220 #: ../../enterprise/godmode/policies/policies.php:275 #: ../../enterprise/godmode/policies/policy_linking.php:127 #: ../../enterprise/godmode/policies/policy_external_alerts.php:329 @@ -16508,7 +16667,7 @@ msgstr "No se puede añadir a los plugins pendientes de eliminar." #: ../../enterprise/godmode/policies/policy_plugins.php:70 #: ../../enterprise/godmode/policies/policy_alerts.php:270 -#: ../../enterprise/godmode/policies/policy_modules.php:1332 +#: ../../enterprise/godmode/policies/policy_modules.php:1377 #: ../../enterprise/godmode/policies/policy_external_alerts.php:162 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:177 #: ../../enterprise/godmode/policies/policy_collections.php:122 @@ -16519,7 +16678,7 @@ msgstr "Eliminación revertida correctamente" #: ../../enterprise/godmode/policies/policy_plugins.php:71 #: ../../enterprise/godmode/policies/policy_alerts.php:271 -#: ../../enterprise/godmode/policies/policy_modules.php:1333 +#: ../../enterprise/godmode/policies/policy_modules.php:1378 #: ../../enterprise/godmode/policies/policy_external_alerts.php:163 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:180 #: ../../enterprise/godmode/policies/policy_collections.php:123 @@ -16541,7 +16700,7 @@ msgid "There are no defined plugins" msgstr "No hay plugins definidos" #: ../../enterprise/godmode/policies/policy_alerts.php:105 -#: ../../enterprise/godmode/policies/policy_modules.php:611 +#: ../../enterprise/godmode/policies/policy_modules.php:615 #: ../../enterprise/godmode/policies/policies.php:256 #: ../../enterprise/godmode/policies/policy_linking.php:51 #: ../../enterprise/godmode/policies/policy_external_alerts.php:87 @@ -16555,7 +16714,7 @@ msgstr "Esta política se está aplicando y no puede ser modificada" #: ../../enterprise/godmode/policies/policy_alerts.php:164 #: ../../enterprise/godmode/policies/policy_modules.php:547 #: ../../enterprise/godmode/setup/setup_metaconsole.php:157 -#: ../../godmode/agentes/configurar_agente.php:2214 +#: ../../godmode/agentes/configurar_agente.php:2277 #: ../../godmode/agentes/modificar_agente.php:271 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 #: ../../godmode/alerts/alert_list.php:419 @@ -16642,8 +16801,8 @@ msgstr "Siempre" #: ../../enterprise/godmode/policies/policy_external_alerts.php:510 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3443 #: ../../godmode/alerts/alert_list.list.php:724 -#: ../../include/class/Diagnostics.class.php:1204 #: ../../include/class/Diagnostics.class.php:1208 +#: ../../include/class/Diagnostics.class.php:1212 msgid "On" msgstr "Activado" @@ -16655,7 +16814,7 @@ msgid "Until" msgstr "Hasta" #: ../../enterprise/godmode/policies/policy_alerts.php:577 -#: ../../enterprise/godmode/policies/policy_modules.php:1653 +#: ../../enterprise/godmode/policies/policy_modules.php:1698 #: ../../enterprise/godmode/policies/policy_external_alerts.php:583 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:303 #: ../../enterprise/godmode/policies/policy_agents.php:1192 @@ -16668,12 +16827,12 @@ msgid "There is not alerts configured in this policy." msgstr "No hay alertas configuradas en esta política." #: ../../enterprise/godmode/policies/policy_alerts.php:695 -#: ../../godmode/alerts/alert_list.list.php:1197 +#: ../../godmode/alerts/alert_list.list.php:1196 msgid "Set off standby" msgstr "Desactivar modo standby" #: ../../enterprise/godmode/policies/policy_alerts.php:704 -#: ../../godmode/alerts/alert_list.list.php:1224 +#: ../../godmode/alerts/alert_list.list.php:1223 msgid "Set standby" msgstr "Activar modo standby" @@ -16692,9 +16851,9 @@ msgstr "Añadir alerta" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:476 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:544 #: ../../godmode/snmpconsole/snmp_alert.php:2020 -#: ../../godmode/alerts/alert_list.list.php:995 -#: ../../godmode/alerts/alert_list.list.php:1006 -#: ../../godmode/alerts/alert_list.list.php:1270 +#: ../../godmode/alerts/alert_list.list.php:994 +#: ../../godmode/alerts/alert_list.list.php:1005 +#: ../../godmode/alerts/alert_list.list.php:1269 msgid "Add action" msgstr "Añadir acción" @@ -16754,40 +16913,40 @@ msgstr "Opciones de base" msgid "Could not be added module(s). You must select a policy" msgstr "El módulo no se pudo añadir. Tienes que seleccionar una política." -#: ../../enterprise/godmode/policies/policy_modules.php:593 +#: ../../enterprise/godmode/policies/policy_modules.php:597 #, php-format msgid "Successfully added module(s) (%s/%s) to policy %s" msgstr "Módulo(s) (%s/%s) añadido(s) correctamente a la política %s" -#: ../../enterprise/godmode/policies/policy_modules.php:599 +#: ../../enterprise/godmode/policies/policy_modules.php:603 #, php-format msgid "Could not be added module(s) (%s/%s) to policy %s" msgstr "El módulo (%s/%s) no se pudo añadir a la política %s" -#: ../../enterprise/godmode/policies/policy_modules.php:635 +#: ../../enterprise/godmode/policies/policy_modules.php:639 msgid "To define plugins please use plugin configuration tab." msgstr "Para definir plugins, use la pestaña de configuración de plugins." -#: ../../enterprise/godmode/policies/policy_modules.php:934 +#: ../../enterprise/godmode/policies/policy_modules.php:938 msgid "Could not be added module." msgstr "El módulo no se pudo añadir." -#: ../../enterprise/godmode/policies/policy_modules.php:1281 +#: ../../enterprise/godmode/policies/policy_modules.php:1326 msgid "" "The module type in Data configuration is empty, take from combo box of form." msgstr "" "El tipo de datos en la configuración está vacío, elige uno del combo del " "formulario." -#: ../../enterprise/godmode/policies/policy_modules.php:1285 +#: ../../enterprise/godmode/policies/policy_modules.php:1330 msgid "" "The module name in Data configuration is empty, take from text field of form." msgstr "" "El nombre del módulo en la configuración está vacío, elige uno del combo del " "formulario." -#: ../../enterprise/godmode/policies/policy_modules.php:1315 -#: ../../enterprise/godmode/policies/policy_modules.php:1328 +#: ../../enterprise/godmode/policies/policy_modules.php:1360 +#: ../../enterprise/godmode/policies/policy_modules.php:1373 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:171 msgid "" "Successfully added to delete pending modules. Will be deleted in the next " @@ -16796,95 +16955,95 @@ msgstr "" "Añadido correctamente a la cola de módulos pendientes de eliminación. Será " "eliminado en la próxima aplicación de políticas." -#: ../../enterprise/godmode/policies/policy_modules.php:1319 +#: ../../enterprise/godmode/policies/policy_modules.php:1364 msgid "Could not be added to deleted all modules." msgstr "No se pudo añadir a la lista para eliminar todos los módulos." -#: ../../enterprise/godmode/policies/policy_modules.php:1379 -#: ../../godmode/agentes/configurar_agente.php:2127 +#: ../../enterprise/godmode/policies/policy_modules.php:1424 +#: ../../godmode/agentes/configurar_agente.php:2190 #: ../../include/functions_reports.php:975 #, php-format msgid "copy of %s" msgstr "copia de %s" -#: ../../enterprise/godmode/policies/policy_modules.php:1397 -#: ../../godmode/agentes/configurar_agente.php:2141 +#: ../../enterprise/godmode/policies/policy_modules.php:1442 +#: ../../godmode/agentes/configurar_agente.php:2204 #, php-format msgid "copy of %s (%d)" msgstr "copia de %s (%d)" -#: ../../enterprise/godmode/policies/policy_modules.php:1427 +#: ../../enterprise/godmode/policies/policy_modules.php:1472 msgid "Successfully duplicate the module." msgstr "Módulo duplicado correctamente" -#: ../../enterprise/godmode/policies/policy_modules.php:1428 -#: ../../operation/agentes/pandora_networkmap.php:540 +#: ../../enterprise/godmode/policies/policy_modules.php:1473 +#: ../../operation/agentes/pandora_networkmap.php:541 msgid "Could not be duplicated" msgstr "No se puede duplicar" -#: ../../enterprise/godmode/policies/policy_modules.php:1482 -#: ../../operation/agentes/estado_monitores.php:610 +#: ../../enterprise/godmode/policies/policy_modules.php:1527 +#: ../../operation/agentes/estado_monitores.php:608 msgid "Show in hierachy mode" msgstr "Mostrar en modo jerarquía" -#: ../../enterprise/godmode/policies/policy_modules.php:1577 +#: ../../enterprise/godmode/policies/policy_modules.php:1622 msgid "Local component" msgstr "Componente local" -#: ../../enterprise/godmode/policies/policy_modules.php:1590 -#: ../../enterprise/godmode/policies/policy_modules.php:1591 +#: ../../enterprise/godmode/policies/policy_modules.php:1635 +#: ../../enterprise/godmode/policies/policy_modules.php:1636 msgid "Disabled module" msgstr "Módulo deshabilitado" -#: ../../enterprise/godmode/policies/policy_modules.php:1598 -#: ../../enterprise/godmode/policies/policy_modules.php:1599 +#: ../../enterprise/godmode/policies/policy_modules.php:1643 +#: ../../enterprise/godmode/policies/policy_modules.php:1644 msgid "Enabled module" msgstr "Módulo habilitado" -#: ../../enterprise/godmode/policies/policy_modules.php:1609 -#: ../../enterprise/godmode/policies/policy_modules.php:1610 -#: ../../godmode/agentes/module_manager.php:940 +#: ../../enterprise/godmode/policies/policy_modules.php:1654 +#: ../../enterprise/godmode/policies/policy_modules.php:1655 +#: ../../godmode/agentes/module_manager.php:954 msgid "Enable module" msgstr "Habilitar el módulo" -#: ../../enterprise/godmode/policies/policy_modules.php:1619 -#: ../../enterprise/godmode/policies/policy_modules.php:1620 -#: ../../godmode/agentes/module_manager.php:949 +#: ../../enterprise/godmode/policies/policy_modules.php:1664 +#: ../../enterprise/godmode/policies/policy_modules.php:1665 +#: ../../godmode/agentes/module_manager.php:963 msgid "Disable module" msgstr "Deshabilitar el módulo" -#: ../../enterprise/godmode/policies/policy_modules.php:1719 +#: ../../enterprise/godmode/policies/policy_modules.php:1764 msgid "There are no defined modules" msgstr "No hay módulos definidos" -#: ../../enterprise/godmode/policies/policy_modules.php:1840 +#: ../../enterprise/godmode/policies/policy_modules.php:1885 #: ../../godmode/agentes/module_manager_editor.php:868 msgid "No module name provided" msgstr "No se proporcionó ningún nombre de módulo." -#: ../../enterprise/godmode/policies/policy_modules.php:1841 +#: ../../enterprise/godmode/policies/policy_modules.php:1886 #: ../../godmode/agentes/module_manager_editor.php:878 msgid "No target IP provided" msgstr "No se proporcionó ninguna IP de destino." -#: ../../enterprise/godmode/policies/policy_modules.php:1842 +#: ../../enterprise/godmode/policies/policy_modules.php:1887 #: ../../godmode/agentes/module_manager_editor.php:888 msgid "No SNMP OID provided" msgstr "No se proporcionó ningún OID de SMTP." -#: ../../enterprise/godmode/policies/policy_modules.php:2008 +#: ../../enterprise/godmode/policies/policy_modules.php:2053 msgid "Are you sure to copy modules into policy?\\n" msgstr "¿Estás seguro de que quieres copiar los módulos en la política?\\n" -#: ../../enterprise/godmode/policies/policy_modules.php:2028 +#: ../../enterprise/godmode/policies/policy_modules.php:2071 msgid "Please select any module to copy" msgstr "Por favor, selecciona algún módulo para copiar." -#: ../../enterprise/godmode/policies/policy_queue.php:63 +#: ../../enterprise/godmode/policies/policy_queue.php:65 msgid "No policies with this id" msgstr "No hay políticas con este identificador" -#: ../../enterprise/godmode/policies/policy_queue.php:78 +#: ../../enterprise/godmode/policies/policy_queue.php:80 #: ../../enterprise/godmode/policies/policy_agents.php:61 msgid "" "Starting with Pandora FMS version 760, assigning an entire group to a policy " @@ -16894,118 +17053,118 @@ msgstr "" "política la aplicará automáticamente a todos los nuevos agentes añadidos a ese " "grupo." -#: ../../enterprise/godmode/policies/policy_queue.php:146 +#: ../../enterprise/godmode/policies/policy_queue.php:148 #, php-format msgid "%s: Operations successfully deleted from the queue" msgstr "%s: Operaciones eliminadas correctamente de la cola" -#: ../../enterprise/godmode/policies/policy_queue.php:153 +#: ../../enterprise/godmode/policies/policy_queue.php:155 msgid "Operations successfully deleted from the queue" msgstr "Operaciones eliminadas correctamente de la cola" -#: ../../enterprise/godmode/policies/policy_queue.php:154 +#: ../../enterprise/godmode/policies/policy_queue.php:156 msgid "Operations cannot be deleted from the queue" msgstr "Las operaciones no pueden ser eliminadas de la cola." -#: ../../enterprise/godmode/policies/policy_queue.php:261 +#: ../../enterprise/godmode/policies/policy_queue.php:263 #, php-format msgid "Some nodes (%s) are unreachebles. Some information may be missing." msgstr "Algunos nódulos (%s) están inaccesible. Podría faltar información." -#: ../../enterprise/godmode/policies/policy_queue.php:418 +#: ../../enterprise/godmode/policies/policy_queue.php:420 msgid "Update pending" msgstr "Actualización pendiente" -#: ../../enterprise/godmode/policies/policy_queue.php:424 +#: ../../enterprise/godmode/policies/policy_queue.php:426 msgid "Update pending agents" msgstr "Actualizar agentes pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:447 +#: ../../enterprise/godmode/policies/policy_queue.php:449 #: ../../enterprise/godmode/policies/policy_agents.php:1135 #: ../../enterprise/godmode/policies/policy_agents.php:1477 msgid "Add to apply queue" msgstr "Añadir a la cola para aplicarlo" -#: ../../enterprise/godmode/policies/policy_queue.php:453 +#: ../../enterprise/godmode/policies/policy_queue.php:455 msgid "Add to apply queue only for database" msgstr "Añadir a la cola de aplicación solo de cambios de base de datos" -#: ../../enterprise/godmode/policies/policy_queue.php:464 +#: ../../enterprise/godmode/policies/policy_queue.php:466 msgid "Update pending groups" msgstr "Actualizar grupos pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:478 +#: ../../enterprise/godmode/policies/policy_queue.php:480 msgid "Link pending modules" msgstr "Enlazar módulos pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:486 +#: ../../enterprise/godmode/policies/policy_queue.php:488 msgid "Will be linked in the next policy application" msgstr "Se enlazará en la siguiente aplicación de políticas" -#: ../../enterprise/godmode/policies/policy_queue.php:492 +#: ../../enterprise/godmode/policies/policy_queue.php:494 msgid "Unlink pending modules" msgstr "Desenlazar módulos pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:498 +#: ../../enterprise/godmode/policies/policy_queue.php:500 msgid "Will be unlinked in the next policy application" msgstr "Será desenlazado en la siguiente aplicación de políticas" -#: ../../enterprise/godmode/policies/policy_queue.php:503 +#: ../../enterprise/godmode/policies/policy_queue.php:505 msgid "Delete pending" msgstr "Eliminación pendiente" -#: ../../enterprise/godmode/policies/policy_queue.php:509 +#: ../../enterprise/godmode/policies/policy_queue.php:511 msgid "Delete pending agents" msgstr "Eliminar agentes pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:517 -#: ../../enterprise/godmode/policies/policy_queue.php:532 -#: ../../enterprise/godmode/policies/policy_queue.php:547 -#: ../../enterprise/godmode/policies/policy_queue.php:562 -#: ../../enterprise/godmode/policies/policy_queue.php:577 -#: ../../enterprise/godmode/policies/policy_queue.php:592 -#: ../../enterprise/godmode/policies/policy_queue.php:607 -#: ../../enterprise/godmode/policies/policy_queue.php:622 +#: ../../enterprise/godmode/policies/policy_queue.php:519 +#: ../../enterprise/godmode/policies/policy_queue.php:534 +#: ../../enterprise/godmode/policies/policy_queue.php:549 +#: ../../enterprise/godmode/policies/policy_queue.php:564 +#: ../../enterprise/godmode/policies/policy_queue.php:579 +#: ../../enterprise/godmode/policies/policy_queue.php:594 +#: ../../enterprise/godmode/policies/policy_queue.php:609 +#: ../../enterprise/godmode/policies/policy_queue.php:624 msgid "Will be deleted in the next policy application" msgstr "Se eliminará en la siguiente aplicación de políticas" -#: ../../enterprise/godmode/policies/policy_queue.php:524 +#: ../../enterprise/godmode/policies/policy_queue.php:526 msgid "Delete pending groups" msgstr "Eliminar grupos pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:539 +#: ../../enterprise/godmode/policies/policy_queue.php:541 msgid "Delete pending modules" msgstr "Eliminar módulos pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:554 +#: ../../enterprise/godmode/policies/policy_queue.php:556 msgid "Delete pending inventory modules" msgstr "Eliminar módulos de inventario pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:569 +#: ../../enterprise/godmode/policies/policy_queue.php:571 msgid "Delete pending alerts" msgstr "Eliminar alertas pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:584 +#: ../../enterprise/godmode/policies/policy_queue.php:586 msgid "Delete pending external alerts" msgstr "Eliminar alertas externas pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:599 +#: ../../enterprise/godmode/policies/policy_queue.php:601 msgid "Delete pending file collections" msgstr "Eliminar colecciones de archivos pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:614 +#: ../../enterprise/godmode/policies/policy_queue.php:616 msgid "Delete pending plugins" msgstr "Eliminar plugins pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:628 +#: ../../enterprise/godmode/policies/policy_queue.php:630 msgid "Advices" msgstr "Consejos" -#: ../../enterprise/godmode/policies/policy_queue.php:633 +#: ../../enterprise/godmode/policies/policy_queue.php:635 msgid "Queue summary" msgstr "Resumen de cola" -#: ../../enterprise/godmode/policies/policy_queue.php:634 +#: ../../enterprise/godmode/policies/policy_queue.php:636 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:186 #: ../../godmode/snmpconsole/snmp_alert.php:1812 #: ../../godmode/alerts/alert_list.list.php:260 @@ -17013,28 +17172,28 @@ msgstr "Resumen de cola" msgid "Toggle filter(s)" msgstr "Conmutar filtro(s)" -#: ../../enterprise/godmode/policies/policy_queue.php:710 +#: ../../enterprise/godmode/policies/policy_queue.php:712 #: ../../enterprise/godmode/policies/policy_linking.php:203 #: ../../include/functions_massive_operations.php:189 -#: ../../include/lib/Dashboard/Widget.php:603 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544 -#: ../../include/functions_events.php:4908 +#: ../../include/lib/Dashboard/Widget.php:604 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545 +#: ../../include/functions_events.php:4913 msgid "Node" msgstr "Nodo" -#: ../../enterprise/godmode/policies/policy_queue.php:838 +#: ../../enterprise/godmode/policies/policy_queue.php:842 msgid "Empty queue" msgstr "Vaciar cola" -#: ../../enterprise/godmode/policies/policy_queue.php:852 +#: ../../enterprise/godmode/policies/policy_queue.php:856 msgid "This operation could take a long time" msgstr "Esta operación podría tardar bastante tiempo." -#: ../../enterprise/godmode/policies/policy_queue.php:864 +#: ../../enterprise/godmode/policies/policy_queue.php:868 msgid "Apply all queues" msgstr "Aplicar todas las colas" -#: ../../enterprise/godmode/policies/policy_queue.php:877 +#: ../../enterprise/godmode/policies/policy_queue.php:881 msgid "Clear all items" msgstr "Borrar todos los elementos" @@ -17361,7 +17520,7 @@ msgstr "Agentes en la política" #: ../../enterprise/godmode/policies/policy_agents.php:851 #: ../../enterprise/godmode/setup/setup_auth.php:252 #: ../../enterprise/godmode/setup/setup_auth.php:602 -#: ../../enterprise/godmode/setup/setup_auth.php:1412 +#: ../../enterprise/godmode/setup/setup_auth.php:1629 #: ../../extensions/files_repo/files_repo_form.php:54 #: ../../extensions/module_groups.php:350 #: ../../godmode/reporting/visual_console_builder.wizard.php:368 @@ -17375,12 +17534,12 @@ msgstr "Agentes en la política" #: ../../include/lib/Dashboard/Widgets/events_list.php:431 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:334 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:341 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:350 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:372 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:344 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:353 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:375 #: ../../include/lib/Dashboard/Widgets/tactical.php:331 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 -#: ../../operation/tree.php:91 ../../operation/agentes/pandora_networkmap.php:719 +#: ../../operation/tree.php:91 ../../operation/agentes/pandora_networkmap.php:720 msgid "Groups" msgstr "Grupos" @@ -17399,10 +17558,10 @@ msgstr "Grupos en la política" #: ../../enterprise/godmode/policies/policy_agents.php:959 #: ../../godmode/agentes/configurar_agente.php:623 #: ../../godmode/agentes/configurar_agente.php:762 -#: ../../godmode/agentes/agent_manager.php:862 -#: ../../godmode/massive/massive_edit_agents.php:966 +#: ../../godmode/agentes/agent_manager.php:870 +#: ../../godmode/massive/massive_edit_agents.php:983 #: ../../godmode/reporting/reporting_builder.item_editor.php:79 -#: ../../godmode/servers/servers.build_table.php:260 +#: ../../godmode/servers/servers.build_table.php:273 #: ../../operation/agentes/estado_generalagente.php:313 msgid "Remote configuration" msgstr "Configuración remota" @@ -17420,7 +17579,7 @@ msgstr "R." #: ../../enterprise/operation/agentes/policy_view.php:167 #: ../../enterprise/operation/agentes/policy_view.php:258 #: ../../enterprise/operation/agentes/policy_view.php:263 -#: ../../mobile/operation/agents.php:406 +#: ../../mobile/operation/agents.php:407 #: ../../include/ajax/alert_list.ajax.php:286 #: ../../include/ajax/alert_list.ajax.php:311 #: ../../include/class/AuditLog.class.php:130 @@ -17439,7 +17598,7 @@ msgstr "U." #: ../../enterprise/godmode/policies/policy_agents.php:1348 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../godmode/reporting/visual_console_builder.elements.php:134 -#: ../../mobile/operation/agents.php:407 +#: ../../mobile/operation/agents.php:408 #: ../../include/class/AuditLog.class.php:130 msgid "A." msgstr "A." @@ -17526,16 +17685,20 @@ msgstr "Asistente de agente" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:55 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 +#: ../../godmode/snmpconsole/snmp_filters.php:59 #: ../../include/class/CredentialStore.class.php:965 #: ../../include/class/SnmpConsole.class.php:221 #: ../../operation/snmpconsole/snmp_statistics.php:104 +#: ../../operation/snmpconsole/snmp_browser.php:92 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 #: ../../operation/menu.php:259 msgid "SNMP" msgstr "SNMP" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:115 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:403 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:304 #: ../../godmode/setup/snmp_wizard.php:42 #: ../../include/functions_snmp_browser.php:556 msgid "OID" @@ -17551,13 +17714,13 @@ msgstr "OID personalizado" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2232 #: ../../enterprise/include/functions_reporting_csv.php:2437 #: ../../enterprise/include/functions_reporting_csv.php:2451 -#: ../../godmode/setup/news.php:287 ../../godmode/setup/setup_visuals.php:1829 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2349 +#: ../../godmode/setup/news.php:291 ../../godmode/setup/setup_visuals.php:1844 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2358 #: ../../include/functions_reports.php:847 -#: ../../include/class/TipsWindow.class.php:455 -#: ../../include/class/TipsWindow.class.php:730 -#: ../../include/class/TipsWindow.class.php:897 -#: ../../include/functions_reporting.php:7509 +#: ../../include/class/TipsWindow.class.php:467 +#: ../../include/class/TipsWindow.class.php:750 +#: ../../include/class/TipsWindow.class.php:917 +#: ../../include/functions_reporting.php:7518 #: ../../include/lib/Dashboard/Widgets/post.php:214 msgid "Text" msgstr "Texto" @@ -17565,8 +17728,8 @@ msgstr "Texto" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 #: ../../enterprise/operation/snmpconsole/snmp_view.php:82 #: ../../enterprise/operation/menu.php:151 -#: ../../include/class/SnmpConsole.class.php:915 -#: ../../include/class/SnmpConsole.class.php:916 +#: ../../include/class/SnmpConsole.class.php:917 +#: ../../include/class/SnmpConsole.class.php:918 msgid "SNMP trap editor" msgstr "Editor de traps SNMP" @@ -17835,7 +17998,7 @@ msgid "Failed: create the alerts for this modules, please check." msgstr "Error al crear las alertas para estos módulos. Resuelve el problema." #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:127 #: ../../enterprise/include/ajax/policy.ajax.php:263 #: ../../godmode/massive/massive_standby_alerts.php:218 #: ../../godmode/massive/massive_add_alerts.php:280 @@ -17846,8 +18009,9 @@ msgstr "Plantilla de alerta" #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:140 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2200 #: ../../include/functions_alerts.php:673 msgid "Regular expression" msgstr "Expresión regular" @@ -17930,8 +18094,9 @@ msgstr " política de" #: ../../enterprise/godmode/setup/setup_auth.php:341 #: ../../enterprise/godmode/setup/setup_auth.php:473 #: ../../enterprise/godmode/setup/setup_auth.php:639 -#: ../../enterprise/godmode/setup/setup_auth.php:1281 -#: ../../enterprise/godmode/setup/setup_auth.php:1451 +#: ../../enterprise/godmode/setup/setup_auth.php:1197 +#: ../../enterprise/godmode/setup/setup_auth.php:1498 +#: ../../enterprise/godmode/setup/setup_auth.php:1668 #: ../../enterprise/godmode/setup/setup_acl.php:487 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:719 #: ../../enterprise/include/functions_tasklist.php:606 @@ -17951,30 +18116,30 @@ msgstr " política de" #: ../../godmode/massive/massive_copy_modules.php:178 #: ../../godmode/massive/massive_delete_modules.php:407 #: ../../godmode/massive/massive_delete_modules.php:521 -#: ../../godmode/massive/massive_edit_agents.php:650 -#: ../../godmode/massive/massive_edit_agents.php:1153 +#: ../../godmode/massive/massive_edit_agents.php:667 +#: ../../godmode/massive/massive_edit_agents.php:1170 #: ../../godmode/massive/massive_add_action_alerts.php:217 #: ../../godmode/massive/massive_edit_modules.php:411 #: ../../godmode/massive/massive_edit_modules.php:497 #: ../../godmode/reporting/create_container.php:674 -#: ../../godmode/events/event_edit_filter.php:510 -#: ../../godmode/events/event_edit_filter.php:526 -#: ../../include/functions_visual_map_editor.php:498 -#: ../../include/functions_visual_map_editor.php:1454 -#: ../../include/functions_visual_map_editor.php:1548 +#: ../../godmode/events/event_edit_filter.php:512 +#: ../../godmode/events/event_edit_filter.php:528 +#: ../../include/functions_visual_map_editor.php:492 +#: ../../include/functions_visual_map_editor.php:1512 +#: ../../include/functions_visual_map_editor.php:1606 #: ../../include/ajax/visual_console_builder.ajax.php:1186 -#: ../../include/functions_profile.php:390 ../../include/functions_html.php:2327 -#: ../../include/functions_html.php:2328 ../../include/functions_html.php:2329 -#: ../../include/functions_html.php:2330 ../../include/functions_html.php:2331 -#: ../../include/functions_html.php:2333 ../../include/functions_html.php:2334 -#: ../../include/functions_html.php:2335 ../../include/functions_html.php:2336 -#: ../../include/functions_html.php:2337 ../../include/functions_html.php:2352 -#: ../../include/functions_html.php:2374 ../../include/functions_html.php:2396 -#: ../../include/functions_html.php:2418 ../../include/functions_html.php:2440 +#: ../../include/functions_profile.php:390 ../../include/functions_html.php:2342 +#: ../../include/functions_html.php:2343 ../../include/functions_html.php:2344 +#: ../../include/functions_html.php:2345 ../../include/functions_html.php:2346 +#: ../../include/functions_html.php:2348 ../../include/functions_html.php:2349 +#: ../../include/functions_html.php:2350 ../../include/functions_html.php:2351 +#: ../../include/functions_html.php:2352 ../../include/functions_html.php:2367 +#: ../../include/functions_html.php:2389 ../../include/functions_html.php:2411 +#: ../../include/functions_html.php:2433 ../../include/functions_html.php:2455 #: ../../include/lib/Dashboard/Widgets/events_list.php:340 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:275 -#: ../../operation/events/events.php:1999 ../../operation/events/events.php:2017 -#: ../../operation/events/events.php:3028 +#: ../../operation/events/events.php:2053 ../../operation/events/events.php:2071 +#: ../../operation/events/events.php:3087 msgid "Any" msgstr "Cualquiera" @@ -17989,7 +18154,7 @@ msgstr "a políticas" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:365 #: ../../godmode/massive/massive_add_alerts.php:324 -#: ../../godmode/massive/massive_edit_agents.php:1391 +#: ../../godmode/massive/massive_edit_agents.php:1407 #: ../../godmode/massive/massive_delete_alerts.php:389 msgid "" "Unsucessful sending the data, please contact with your administrator or make " @@ -18017,7 +18182,7 @@ msgstr "No hay políticas de destino que copiar" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 #: ../../godmode/massive/massive_delete_modules.php:372 #: ../../godmode/massive/massive_edit_modules.php:356 -#: ../../include/functions_reporting_html.php:1776 +#: ../../include/functions_reporting_html.php:1785 msgid "Agent group" msgstr "Grupo de agentes" @@ -18036,8 +18201,8 @@ msgid "When select agents" msgstr "Al seleccionar agentes" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265 -#: ../../extensions/agents_modules.php:489 -#: ../../extensions/agents_modules.php:493 +#: ../../extensions/agents_modules.php:497 +#: ../../extensions/agents_modules.php:501 #: ../../godmode/agentes/planned_downtime.editor.php:1235 #: ../../godmode/massive/massive_delete_action_alerts.php:246 #: ../../godmode/massive/massive_delete_modules.php:555 @@ -18046,12 +18211,12 @@ msgstr "Al seleccionar agentes" #: ../../godmode/massive/massive_add_action_alerts.php:225 #: ../../godmode/massive/massive_edit_modules.php:528 #: ../../godmode/reporting/reporting_builder.item_editor.php:1923 -#: ../../include/functions_html.php:5947 +#: ../../include/functions_html.php:5971 msgid "Show common modules" msgstr "Mostrar módulos comunes" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 -#: ../../extensions/agents_modules.php:490 +#: ../../extensions/agents_modules.php:498 #: ../../godmode/agentes/planned_downtime.editor.php:1236 #: ../../godmode/massive/massive_delete_action_alerts.php:247 #: ../../godmode/massive/massive_delete_modules.php:556 @@ -18060,7 +18225,7 @@ msgstr "Mostrar módulos comunes" #: ../../godmode/massive/massive_add_action_alerts.php:226 #: ../../godmode/massive/massive_edit_modules.php:529 #: ../../godmode/reporting/reporting_builder.item_editor.php:1924 -#: ../../include/functions_html.php:5948 +#: ../../include/functions_html.php:5972 msgid "Show all modules" msgstr "Mostrar todos los módulos" @@ -18092,7 +18257,7 @@ msgstr "Operaciones masivas" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 #: ../../godmode/snmpconsole/snmp_alert.php:41 #: ../../include/class/SnmpConsole.class.php:315 -#: ../../include/class/SnmpConsole.class.php:1379 +#: ../../include/class/SnmpConsole.class.php:1381 msgid "Cold start (0)" msgstr "Inicio cero (0)" @@ -18100,7 +18265,7 @@ msgstr "Inicio cero (0)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 #: ../../godmode/snmpconsole/snmp_alert.php:42 #: ../../include/class/SnmpConsole.class.php:316 -#: ../../include/class/SnmpConsole.class.php:1383 +#: ../../include/class/SnmpConsole.class.php:1385 msgid "Warm start (1)" msgstr "Comienzo de inicio (1)" @@ -18108,7 +18273,7 @@ msgstr "Comienzo de inicio (1)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 #: ../../godmode/snmpconsole/snmp_alert.php:43 #: ../../include/class/SnmpConsole.class.php:317 -#: ../../include/class/SnmpConsole.class.php:1387 +#: ../../include/class/SnmpConsole.class.php:1389 msgid "Link down (2)" msgstr "Enlace interrumpido (2)" @@ -18116,7 +18281,7 @@ msgstr "Enlace interrumpido (2)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 #: ../../godmode/snmpconsole/snmp_alert.php:44 #: ../../include/class/SnmpConsole.class.php:318 -#: ../../include/class/SnmpConsole.class.php:1391 +#: ../../include/class/SnmpConsole.class.php:1393 msgid "Link up (3)" msgstr "Enlace activo (3)" @@ -18124,7 +18289,7 @@ msgstr "Enlace activo (3)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 #: ../../godmode/snmpconsole/snmp_alert.php:45 #: ../../include/class/SnmpConsole.class.php:319 -#: ../../include/class/SnmpConsole.class.php:1395 +#: ../../include/class/SnmpConsole.class.php:1397 msgid "Authentication failure (4)" msgstr "Fallo de autentificación (4)" @@ -18134,14 +18299,15 @@ msgstr "Fallo de autentificación (4)" #: ../../enterprise/godmode/setup/setup_acl.php:534 #: ../../enterprise/include/class/Aws.cloud.php:347 #: ../../extensions/api_checker.php:303 -#: ../../godmode/groups/configure_group.php:249 +#: ../../godmode/groups/configure_group.php:268 +#: ../../godmode/users/configure_user.php:65 #: ../../godmode/users/user_management.php:44 #: ../../godmode/snmpconsole/snmp_alert.php:46 #: ../../godmode/massive/massive_edit_users.php:279 -#: ../../include/functions_graph.php:3543 +#: ../../include/auth/mysql.php:813 ../../include/functions_graph.php:3553 #: ../../include/class/SnmpConsole.class.php:320 -#: ../../include/class/SnmpConsole.class.php:1372 -#: ../../include/class/SnmpConsole.class.php:1399 +#: ../../include/class/SnmpConsole.class.php:1374 +#: ../../include/class/SnmpConsole.class.php:1401 #: ../../operation/users/user_edit.php:474 #: ../../operation/gis_maps/render_view.php:168 msgid "Other" @@ -18160,12 +18326,12 @@ msgid "Unsuccessfully deleted alerts (%s / %s)" msgstr "Error al eliminar las alertas (%s / %s)" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:237 msgid "You must select a SNMP alert" msgstr "Seleccione una alerta SNMP" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:263 msgid "" "Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single " "value, each Custom OIDs/Datas." @@ -18174,8 +18340,8 @@ msgstr "" "(IP) SNMP, Valor único, cada OIDs/Datos personalizado." #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:267 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:310 #: ../../godmode/snmpconsole/snmp_alert.php:863 #: ../../godmode/snmpconsole/snmp_alert.php:1757 #: ../../include/functions_snmp.php:433 @@ -18188,30 +18354,34 @@ msgid "SNMP Alerts to be deleted" msgstr "Alertas SNMP para añadir" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:295 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:410 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:414 msgid "No snmp alert found." msgstr "No se ha encontrado la alerta SNMP." -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216 #, php-format msgid "Successfully updated alerts (%s / %s)" msgstr "Alertas actualizadas correctamente (%s / %s)" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:224 #, php-format msgid "Unsuccessfully updated alerts (%s / %s)" msgstr "No se han podido actualizar las alertas (%s / %s)" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +msgid "At least one parameter must be modified" +msgstr "Se debe modificar al menos un parámetro" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:282 msgid "SNMP Alerts to be edit" msgstr "Alertas SNMP para editar" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:306 #: ../../godmode/snmpconsole/snmp_alert.php:783 msgid "Custom Value/OID" msgstr "Valor/OID personalizado" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:308 #: ../../godmode/snmpconsole/snmp_trap_generator.php:138 #: ../../godmode/snmpconsole/snmp_alert.php:814 #: ../../godmode/snmpconsole/snmp_alert.php:1896 @@ -18219,38 +18389,38 @@ msgstr "Valor/OID personalizado" msgid "SNMP Agent" msgstr "Agente SNMP" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:312 #: ../../godmode/snmpconsole/snmp_alert.php:884 msgid "Single value" msgstr "Valor único" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:314 #: ../../godmode/snmpconsole/snmp_alert.php:1537 #: ../../godmode/alerts/configure_alert_template.php:744 msgid "Min. number of alerts" msgstr "Número mínimo de alertas" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:316 #: ../../godmode/snmpconsole/snmp_alert.php:1554 #: ../../godmode/alerts/configure_alert_template.php:784 msgid "Max. number of alerts" msgstr "Número máximo de alertas" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:331 #: ../../godmode/snmpconsole/snmp_alert.php:1583 msgid "Other value" msgstr "Otros valores" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:337 #: ../../godmode/snmpconsole/snmp_alert.php:1651 #: ../../godmode/snmpconsole/snmp_alert.php:1891 #: ../../godmode/reporting/reporting_builder.list_items.php:373 -#: ../../godmode/reporting/reporting_builder.list_items.php:717 -#: ../../godmode/reporting/graph_builder.graph_editor.php:331 +#: ../../godmode/reporting/reporting_builder.list_items.php:718 +#: ../../godmode/reporting/graph_builder.graph_editor.php:244 #: ../../godmode/reporting/visual_console_builder.elements.php:123 -#: ../../include/functions_visual_map_editor.php:920 +#: ../../include/functions_visual_map_editor.php:968 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 -#: ../../include/rest-api/models/VisualConsole/Item.php:2024 +#: ../../include/rest-api/models/VisualConsole/Item.php:2027 msgid "Position" msgstr "Posición" @@ -18262,15 +18432,15 @@ msgstr "Módulos sin usar" msgid "Modules used" msgstr "Módulos usados" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90 msgid "Success: remove the alerts." msgstr "Alertas borradas correctamente" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90 msgid "Failed: remove the alerts for this modules, please check." msgstr "Error al borrar las alertas en estos módulos" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:143 msgid "Modules agents in policy" msgstr "Módulos de agentes en la política" @@ -18281,23 +18451,25 @@ msgstr "Mínimo dinámico" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:270 -#: ../../godmode/modules/manage_network_components_form_network.php:82 -#: ../../godmode/agentes/module_manager_editor_network.php:196 +#: ../../godmode/modules/manage_network_components_form_network.php:85 +#: ../../godmode/agentes/module_manager_editor_network.php:197 +#: ../../godmode/massive/massive_edit_modules.php:811 #: ../../include/class/CredentialStore.class.php:1094 -#: ../../include/class/CredentialStore.class.php:1369 +#: ../../include/class/CredentialStore.class.php:1378 #: ../../include/class/AgentWizard.class.php:796 msgid "SNMP community" msgstr "Comunidad SNMP" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742 -#: ../../godmode/agentes/module_manager_editor_network.php:198 +#: ../../godmode/agentes/module_manager_editor_network.php:199 #: ../../godmode/massive/massive_edit_modules.php:821 msgid "SNMP OID" msgstr "SNMP OID" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757 +#: ../../godmode/modules/manage_network_components_form_network.php:53 #: ../../godmode/agentes/module_manager_editor_wmi.php:97 -#: ../../godmode/agentes/module_manager_editor_network.php:81 +#: ../../godmode/agentes/module_manager_editor_network.php:82 #: ../../godmode/massive/massive_edit_modules.php:836 #: ../../include/class/AgentWizard.class.php:633 #: ../../include/functions_snmp_browser.php:709 @@ -18307,55 +18479,55 @@ msgstr "IP objetivo" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:990 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:288 -#: ../../godmode/modules/manage_network_components_form_network.php:55 -#: ../../godmode/agentes/module_manager_editor_network.php:197 +#: ../../godmode/modules/manage_network_components_form_network.php:66 +#: ../../godmode/agentes/module_manager_editor_network.php:198 #: ../../godmode/massive/massive_edit_modules.php:854 -#: ../../godmode/wizards/HostDevices.class.php:1220 +#: ../../godmode/wizards/HostDevices.class.php:1216 #: ../../include/class/CredentialStore.class.php:1106 -#: ../../include/class/CredentialStore.class.php:1382 +#: ../../include/class/CredentialStore.class.php:1391 #: ../../include/class/AgentWizard.class.php:818 msgid "SNMP version" msgstr "Versión SNMP" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:322 -#: ../../godmode/modules/manage_network_components_form_network.php:96 -#: ../../godmode/agentes/module_manager_editor_network.php:377 +#: ../../godmode/modules/manage_network_components_form_network.php:127 +#: ../../godmode/agentes/module_manager_editor_network.php:378 #: ../../godmode/massive/massive_edit_modules.php:867 -#: ../../godmode/wizards/HostDevices.class.php:1298 +#: ../../godmode/wizards/HostDevices.class.php:1294 #: ../../include/functions_snmp_browser.php:839 msgid "Auth user" msgstr "Autentificación de usuario" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:338 -#: ../../godmode/modules/manage_network_components_form_network.php:105 -#: ../../godmode/agentes/module_manager_editor_network.php:390 +#: ../../godmode/modules/manage_network_components_form_network.php:107 +#: ../../godmode/agentes/module_manager_editor_network.php:391 #: ../../godmode/massive/massive_edit_modules.php:876 -#: ../../godmode/wizards/HostDevices.class.php:1340 +#: ../../godmode/wizards/HostDevices.class.php:1336 #: ../../include/functions_snmp_browser.php:851 msgid "Auth password" msgstr "Autentificación de contraseña" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 -#: ../../godmode/agentes/module_manager_editor_network.php:390 -#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/agentes/module_manager_editor_network.php:391 +#: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:876 #: ../../godmode/massive/massive_edit_modules.php:880 -#: ../../godmode/wizards/HostDevices.class.php:1342 -#: ../../godmode/wizards/HostDevices.class.php:1373 +#: ../../godmode/wizards/HostDevices.class.php:1338 +#: ../../godmode/wizards/HostDevices.class.php:1369 msgid "The pass length must be eight character minimum." msgstr "La longitud de la contraseña debe ser mínimo de ocho caracteres." #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360 -#: ../../godmode/modules/manage_network_components_form_network.php:123 -#: ../../godmode/agentes/module_manager_editor_network.php:410 +#: ../../godmode/modules/manage_network_components_form_network.php:149 +#: ../../godmode/agentes/module_manager_editor_network.php:413 #: ../../godmode/massive/massive_edit_modules.php:878 -#: ../../godmode/wizards/HostDevices.class.php:1356 +#: ../../godmode/wizards/HostDevices.class.php:1352 #: ../../include/class/CredentialStore.class.php:1196 -#: ../../include/class/CredentialStore.class.php:1489 +#: ../../include/class/CredentialStore.class.php:1498 #: ../../include/class/AgentWizard.class.php:954 #: ../../include/functions_snmp_browser.php:870 msgid "Privacy method" @@ -18363,24 +18535,24 @@ msgstr "Método de privacidad" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363 -#: ../../godmode/modules/manage_network_components_form_network.php:126 -#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/modules/manage_network_components_form_network.php:152 +#: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:879 -#: ../../godmode/wizards/HostDevices.class.php:1361 +#: ../../godmode/wizards/HostDevices.class.php:1357 #: ../../include/class/CredentialStore.class.php:1205 -#: ../../include/class/CredentialStore.class.php:1498 +#: ../../include/class/CredentialStore.class.php:1507 #: ../../include/functions_snmp_browser.php:873 msgid "DES" msgstr "DES" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364 -#: ../../godmode/modules/manage_network_components_form_network.php:127 -#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/modules/manage_network_components_form_network.php:153 +#: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:879 -#: ../../godmode/wizards/HostDevices.class.php:1362 +#: ../../godmode/wizards/HostDevices.class.php:1358 #: ../../include/class/CredentialStore.class.php:1204 -#: ../../include/class/CredentialStore.class.php:1496 +#: ../../include/class/CredentialStore.class.php:1505 #: ../../include/functions_snmp_browser.php:874 msgid "AES" msgstr "AES" @@ -18388,11 +18560,11 @@ msgstr "AES" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:379 #: ../../godmode/modules/manage_network_components_form_network.php:136 -#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:880 -#: ../../godmode/wizards/HostDevices.class.php:1371 +#: ../../godmode/wizards/HostDevices.class.php:1367 #: ../../include/class/CredentialStore.class.php:1213 -#: ../../include/class/CredentialStore.class.php:1510 +#: ../../include/class/CredentialStore.class.php:1519 #: ../../include/class/AgentWizard.class.php:968 #: ../../include/functions_snmp_browser.php:886 msgid "Privacy pass" @@ -18400,47 +18572,47 @@ msgstr "Conexión privada" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:396 -#: ../../godmode/modules/manage_network_components_form_network.php:148 -#: ../../godmode/agentes/module_manager_editor_network.php:432 +#: ../../godmode/modules/manage_network_components_form_network.php:180 +#: ../../godmode/agentes/module_manager_editor_network.php:437 #: ../../godmode/massive/massive_edit_modules.php:882 -#: ../../godmode/wizards/HostDevices.class.php:1325 +#: ../../godmode/wizards/HostDevices.class.php:1321 #: ../../include/functions_snmp_browser.php:898 msgid "Auth method" msgstr "Método de autentificación" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:399 -#: ../../godmode/modules/manage_network_components_form_network.php:151 -#: ../../godmode/agentes/module_manager_editor_network.php:435 +#: ../../godmode/modules/manage_network_components_form_network.php:183 +#: ../../godmode/agentes/module_manager_editor_network.php:440 #: ../../godmode/massive/massive_edit_modules.php:883 -#: ../../godmode/wizards/HostDevices.class.php:1330 -#: ../../include/class/Diagnostics.class.php:2203 +#: ../../godmode/wizards/HostDevices.class.php:1326 +#: ../../include/class/Diagnostics.class.php:2207 #: ../../include/class/CredentialStore.class.php:1170 -#: ../../include/class/CredentialStore.class.php:1462 +#: ../../include/class/CredentialStore.class.php:1471 #: ../../include/functions_snmp_browser.php:901 msgid "MD5" msgstr "MD5" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:400 -#: ../../godmode/modules/manage_network_components_form_network.php:152 -#: ../../godmode/agentes/module_manager_editor_network.php:436 +#: ../../godmode/modules/manage_network_components_form_network.php:184 +#: ../../godmode/agentes/module_manager_editor_network.php:441 #: ../../godmode/massive/massive_edit_modules.php:883 -#: ../../godmode/wizards/HostDevices.class.php:1331 +#: ../../godmode/wizards/HostDevices.class.php:1327 #: ../../include/class/CredentialStore.class.php:1171 -#: ../../include/class/CredentialStore.class.php:1464 +#: ../../include/class/CredentialStore.class.php:1473 #: ../../include/functions_snmp_browser.php:902 msgid "SHA" msgstr "SHA" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:415 -#: ../../godmode/modules/manage_network_components_form_network.php:161 -#: ../../godmode/agentes/module_manager_editor_network.php:449 +#: ../../godmode/modules/manage_network_components_form_network.php:162 +#: ../../godmode/agentes/module_manager_editor_network.php:454 #: ../../godmode/massive/massive_edit_modules.php:884 -#: ../../godmode/wizards/HostDevices.class.php:1309 +#: ../../godmode/wizards/HostDevices.class.php:1305 #: ../../include/class/CredentialStore.class.php:1125 -#: ../../include/class/CredentialStore.class.php:1414 +#: ../../include/class/CredentialStore.class.php:1423 #: ../../include/class/AgentWizard.class.php:895 #: ../../include/functions_snmp_browser.php:914 msgid "Security level" @@ -18448,30 +18620,30 @@ msgstr "Nivel de seguridad" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:418 -#: ../../godmode/modules/manage_network_components_form_network.php:164 -#: ../../godmode/agentes/module_manager_editor_network.php:452 +#: ../../godmode/modules/manage_network_components_form_network.php:165 +#: ../../godmode/agentes/module_manager_editor_network.php:457 #: ../../godmode/massive/massive_edit_modules.php:887 -#: ../../godmode/wizards/HostDevices.class.php:1314 +#: ../../godmode/wizards/HostDevices.class.php:1310 #: ../../include/functions_snmp_browser.php:917 msgid "Not auth and not privacy method" msgstr "Método sin autentificación ni privacidad" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:419 -#: ../../godmode/modules/manage_network_components_form_network.php:165 -#: ../../godmode/agentes/module_manager_editor_network.php:453 +#: ../../godmode/modules/manage_network_components_form_network.php:166 +#: ../../godmode/agentes/module_manager_editor_network.php:458 #: ../../godmode/massive/massive_edit_modules.php:888 -#: ../../godmode/wizards/HostDevices.class.php:1315 +#: ../../godmode/wizards/HostDevices.class.php:1311 #: ../../include/functions_snmp_browser.php:918 msgid "Auth and not privacy method" msgstr "Método con autentificación y sin privacidad" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:420 -#: ../../godmode/modules/manage_network_components_form_network.php:166 -#: ../../godmode/agentes/module_manager_editor_network.php:454 +#: ../../godmode/modules/manage_network_components_form_network.php:167 +#: ../../godmode/agentes/module_manager_editor_network.php:459 #: ../../godmode/massive/massive_edit_modules.php:889 -#: ../../godmode/wizards/HostDevices.class.php:1316 +#: ../../godmode/wizards/HostDevices.class.php:1312 #: ../../include/functions_snmp_browser.php:919 msgid "Auth and privacy method" msgstr "Método con autentificación y privacidad" @@ -18479,13 +18651,13 @@ msgstr "Método con autentificación y privacidad" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835 #: ../../enterprise/operation/agentes/tag_view.php:157 #: ../../godmode/agentes/module_manager_editor_common.php:301 -#: ../../godmode/agentes/module_manager_editor_common.php:974 +#: ../../godmode/agentes/module_manager_editor_common.php:984 #: ../../godmode/massive/massive_edit_modules.php:907 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3928 -#: ../../include/ajax/heatmap.ajax.php:199 ../../include/functions_graph.php:5035 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3937 +#: ../../include/ajax/heatmap.ajax.php:228 ../../include/functions_graph.php:5045 #: ../../include/functions_treeview.php:115 #: ../../include/lib/Dashboard/Widgets/heatmap.php:334 -#: ../../operation/heatmap.php:103 ../../operation/agentes/status_monitor.php:573 +#: ../../operation/heatmap.php:103 ../../operation/agentes/status_monitor.php:572 msgid "Not assigned" msgstr "Sin asignar" @@ -18495,15 +18667,15 @@ msgstr "Sin asignar" #: ../../godmode/modules/manage_network_components_form_wmi.php:47 #: ../../godmode/agentes/module_manager_editor_wmi.php:128 #: ../../godmode/massive/massive_edit_modules.php:921 -#: ../../include/functions_ui.php:7468 +#: ../../include/functions_ui.php:7545 #: ../../include/class/CredentialStore.class.php:973 -#: ../../include/class/CredentialStore.class.php:1345 +#: ../../include/class/CredentialStore.class.php:1351 #: ../../include/class/AgentWizard.class.php:677 msgid "Username" msgstr "Usuario" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855 -#: ../../godmode/agentes/module_manager_editor_common.php:1355 +#: ../../godmode/agentes/module_manager_editor_common.php:1365 #: ../../godmode/massive/massive_edit_modules.php:927 msgid "Export target" msgstr "Servidor de exportación" @@ -18534,16 +18706,16 @@ msgid "Linked" msgstr "Enlazado" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../godmode/agentes/module_manager.php:844 -#: ../../godmode/agentes/module_manager.php:847 +#: ../../godmode/agentes/module_manager.php:854 +#: ../../godmode/agentes/module_manager.php:857 #: ../../godmode/massive/massive_edit_modules.php:1082 -#: ../../include/ajax/module.php:1072 ../../include/ajax/module.php:1075 +#: ../../include/ajax/module.php:1095 ../../include/ajax/module.php:1098 msgid "Unlinked" msgstr "Desenlazado" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000 #: ../../godmode/modules/manage_network_components_form_common.php:326 -#: ../../godmode/agentes/module_manager_editor_common.php:1385 +#: ../../godmode/agentes/module_manager_editor_common.php:1395 #: ../../godmode/massive/massive_edit_modules.php:1091 msgid "Discard unknown events" msgstr "Descartar eventos desconocidos" @@ -18555,7 +18727,7 @@ msgstr "" "El módulo todavía almacena datos pero las alertas y los eventos se detendrán." #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044 -#: ../../godmode/agentes/module_manager_editor_common.php:1409 +#: ../../godmode/agentes/module_manager_editor_common.php:1419 #: ../../godmode/massive/massive_edit_modules.php:1137 msgid "Timeout" msgstr "Tiempo de espera" @@ -18566,15 +18738,15 @@ msgid "Seconds that agent will wait for the execution of the module." msgstr "Segundos que el agente tendrá que esperar para la ejecución del módulo" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070 -#: ../../godmode/modules/manage_network_components_form_network.php:209 -#: ../../godmode/agentes/module_manager_editor_network.php:322 +#: ../../godmode/modules/manage_network_components_form_network.php:227 +#: ../../godmode/agentes/module_manager_editor_network.php:323 #: ../../godmode/massive/massive_edit_modules.php:1163 msgid "TCP send" msgstr "Enviar TCP" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073 -#: ../../godmode/modules/manage_network_components_form_network.php:216 -#: ../../godmode/agentes/module_manager_editor_network.php:323 +#: ../../godmode/modules/manage_network_components_form_network.php:234 +#: ../../godmode/agentes/module_manager_editor_network.php:324 #: ../../godmode/massive/massive_edit_modules.php:1166 msgid "TCP receive" msgstr "Recibir TCP" @@ -18606,13 +18778,13 @@ msgstr "Campo número" #: ../../godmode/agentes/module_manager_editor_plugin.php:49 #: ../../godmode/massive/massive_edit_plugins.php:346 #: ../../godmode/massive/massive_edit_modules.php:1178 -#: ../../godmode/servers/plugin_registration.php:513 +#: ../../godmode/servers/plugin_registration.php:509 msgid "Plugin" msgstr "Plugin" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103 -#: ../../godmode/modules/manage_network_components_form_network.php:223 -#: ../../godmode/agentes/module_manager_editor_network.php:474 +#: ../../godmode/modules/manage_network_components_form_network.php:241 +#: ../../godmode/agentes/module_manager_editor_network.php:479 #: ../../godmode/massive/massive_edit_plugins.php:480 #: ../../godmode/massive/massive_edit_modules.php:1196 #: ../../godmode/alerts/configure_alert_command.php:266 @@ -18621,7 +18793,7 @@ msgstr "Plugin" #: ../../godmode/alerts/configure_alert_action.php:271 #: ../../godmode/events/event_responses.editor.php:230 #: ../../godmode/events/event_responses.editor.php:255 -#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:994 +#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:986 #: ../../include/class/ManageNetScanScripts.class.php:434 #: ../../include/class/ExternalTools.class.php:382 msgid "Command" @@ -18629,33 +18801,33 @@ msgstr "Comando" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120 #: ../../enterprise/include/class/DeploymentCenter.class.php:1429 -#: ../../godmode/modules/manage_network_components_form_network.php:242 -#: ../../godmode/agentes/module_manager_editor_network.php:501 +#: ../../godmode/modules/manage_network_components_form_network.php:260 +#: ../../godmode/agentes/module_manager_editor_network.php:506 #: ../../godmode/massive/massive_edit_modules.php:1213 msgid "Credential identifier" msgstr "Credencial" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135 -#: ../../godmode/modules/manage_network_components_form_network.php:258 -#: ../../godmode/agentes/module_manager_editor_network.php:534 +#: ../../godmode/modules/manage_network_components_form_network.php:276 +#: ../../godmode/agentes/module_manager_editor_network.php:539 #: ../../godmode/massive/massive_edit_modules.php:1228 msgid "Inherited" msgstr "Heredado" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136 -#: ../../godmode/modules/manage_network_components_form_network.php:259 +#: ../../godmode/modules/manage_network_components_form_network.php:277 #: ../../godmode/massive/massive_edit_modules.php:1229 msgid "Linux" msgstr "Linux" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137 -#: ../../godmode/modules/manage_network_components_form_network.php:260 +#: ../../godmode/modules/manage_network_components_form_network.php:278 #: ../../godmode/massive/massive_edit_modules.php:1230 msgid "Windows" msgstr "Windows" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140 -#: ../../godmode/modules/manage_network_components_form_network.php:263 +#: ../../godmode/modules/manage_network_components_form_network.php:281 #: ../../godmode/massive/massive_edit_modules.php:1233 msgid "Target OS" msgstr "SO objetivo" @@ -18680,11 +18852,11 @@ msgstr "La comprobación de seguridad está OK." msgid "Security check is fail." msgstr "La comprobación de seguridad ha fallado." -#: ../../enterprise/godmode/admin_access_logs.php:213 +#: ../../enterprise/godmode/admin_access_logs.php:216 msgid "Extended info:" msgstr "Información extendida:" -#: ../../enterprise/godmode/admin_access_logs.php:221 +#: ../../enterprise/godmode/admin_access_logs.php:224 msgid "Changes:" msgstr "Cambios:" @@ -18695,7 +18867,7 @@ msgstr "ACL de grupo" #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:237 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:414 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2584 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2723 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2732 msgid "Condition" msgstr "Condición" @@ -18734,11 +18906,11 @@ msgstr "Nombre de la alerta" #: ../../enterprise/operation/agentes/policy_view.php:262 #: ../../godmode/snmpconsole/snmp_alert.php:1912 #: ../../godmode/alerts/alert_view.php:105 -#: ../../include/functions_reporting_html.php:5494 +#: ../../include/functions_reporting_html.php:5522 #: ../../include/ajax/alert_list.ajax.php:295 #: ../../include/ajax/alert_list.ajax.php:320 -#: ../../include/functions_treeview.php:442 -#: ../../include/class/AgentsAlerts.class.php:912 +#: ../../include/functions_treeview.php:446 +#: ../../include/class/AgentsAlerts.class.php:913 msgid "Last fired" msgstr "Disparada por última vez" @@ -18747,9 +18919,9 @@ msgstr "Disparada por última vez" #: ../../enterprise/operation/agentes/policy_view.php:349 #: ../../godmode/alerts/alert_list.list.php:648 #: ../../godmode/alerts/alert_view.php:114 ../../mobile/operation/alerts.php:327 -#: ../../include/functions_ui.php:1420 -#: ../../include/class/AgentsAlerts.class.php:959 -#: ../../include/functions_reporting.php:13152 +#: ../../include/functions_ui.php:1463 +#: ../../include/class/AgentsAlerts.class.php:960 +#: ../../include/functions_reporting.php:13225 msgid "Alert disabled" msgstr "Alerta desactivada" @@ -18785,26 +18957,26 @@ msgstr "Montador de alertas de inventario" #: ../../enterprise/godmode/alerts/alert_inventory.php:92 #: ../../godmode/agentes/planned_downtime.editor.php:58 -#: ../../godmode/alerts/alert_list.php:517 ../../include/functions_html.php:1933 -#: ../../include/functions_html.php:1934 ../../include/functions_html.php:2044 -#: ../../include/functions_html.php:2045 ../../include/functions_html.php:2227 -#: ../../include/functions_html.php:2228 ../../include/functions_html.php:6713 -#: ../../include/functions_html.php:6714 +#: ../../godmode/alerts/alert_list.php:517 ../../include/functions_html.php:1944 +#: ../../include/functions_html.php:1945 ../../include/functions_html.php:2055 +#: ../../include/functions_html.php:2056 ../../include/functions_html.php:2235 +#: ../../include/functions_html.php:2236 ../../include/functions_html.php:6741 +#: ../../include/functions_html.php:6742 #: ../../include/class/SnmpConsole.class.php:196 #: ../../operation/snmpconsole/snmp_statistics.php:67 -#: ../../operation/events/events.php:1592 +#: ../../operation/events/events.php:1646 msgid "List" msgstr "Lista" #: ../../enterprise/godmode/alerts/alert_inventory.php:111 -#: ../../godmode/reporting/visual_console_builder.php:835 +#: ../../godmode/reporting/visual_console_builder.php:843 #: ../../operation/visual_console/legacy_view.php:179 msgid "Builder" msgstr "Creador" #: ../../enterprise/godmode/services/services.massive.meta.php:54 #: ../../enterprise/godmode/services/services.massive.elements.php:106 -#: ../../godmode/massive/massive_edit_agents.php:985 +#: ../../godmode/massive/massive_edit_agents.php:1002 msgid "Not available" msgstr "No disponible" @@ -18907,7 +19079,7 @@ msgstr "Editar elementos" #: ../../enterprise/godmode/services/services.service.php:495 #: ../../enterprise/godmode/services/services.elements.php:894 #: ../../enterprise/operation/services/services.php:193 -#: ../../godmode/reporting/reporting_builder.list_items.php:816 +#: ../../godmode/reporting/reporting_builder.list_items.php:817 msgid "Delete items" msgstr "Borrar elementos" @@ -18962,7 +19134,7 @@ msgstr "Agentes para almacenar datos" #: ../../enterprise/tools/ipam/ipam_list.php:779 #: ../../godmode/wizards/HostDevices.class.php:808 #: ../../godmode/wizards/DiscoveryTaskList.class.php:717 -#: ../../include/class/CustomNetScan.class.php:535 +#: ../../include/class/CustomNetScan.class.php:537 msgid "Manual" msgstr "Manual" @@ -19057,61 +19229,6 @@ msgstr "Alerta de servicio en desconocido" msgid "S.L.A. critical service alert" msgstr "Alerta de servicio en crítico de S.L.A" -#: ../../enterprise/godmode/services/services.service.php:1025 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608 -#: ../../enterprise/include/functions_reporting_csv.php:1589 -#: ../../enterprise/include/functions_reporting_csv.php:1635 -#: ../../enterprise/include/functions_reporting_csv.php:1953 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1704 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1756 -#: ../../enterprise/include/class/DatabaseHA.class.php:390 -#: ../../enterprise/include/class/DatabaseHA.class.php:625 -#: ../../enterprise/include/class/DatabaseHA.class.php:727 -#: ../../enterprise/include/class/AgentRepository.class.php:1000 -#: ../../enterprise/include/class/LogSource.class.php:823 -#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142 -#: ../../enterprise/include/class/ManageBackups.class.php:298 -#: ../../enterprise/include/class/ManageBackups.class.php:454 -#: ../../enterprise/include/class/NewDatabaseHA.class.php:182 -#: ../../enterprise/include/class/NewDatabaseHA.class.php:225 -#: ../../enterprise/include/functions_reporting.php:1876 -#: ../../enterprise/include/functions_reporting.php:2949 -#: ../../enterprise/include/functions_reporting.php:3206 -#: ../../enterprise/include/functions_reporting.php:3939 -#: ../../enterprise/include/functions_reporting.php:4208 -#: ../../enterprise/include/functions_reporting.php:4854 -#: ../../enterprise/include/functions_reporting.php:6176 -#: ../../enterprise/include/functions_reporting.php:6214 -#: ../../enterprise/include/functions_services.php:2091 -#: ../../enterprise/include/functions_ux_console.php:483 -#: ../../enterprise/operation/agentes/ux_console_view.php:186 -#: ../../enterprise/operation/agentes/ux_console_view.php:391 -#: ../../enterprise/operation/agentes/wux_console_view.php:407 -#: ../../extensions/module_groups.php:53 -#: ../../godmode/massive/massive_operations.php:415 -#: ../../godmode/setup/setup_general.php:1018 -#: ../../godmode/setup/setup_general.php:1036 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2734 -#: ../../include/functions_reporting_html.php:667 -#: ../../include/functions_reporting_html.php:862 -#: ../../include/functions_reporting_html.php:3569 -#: ../../include/functions_reporting_html.php:4866 -#: ../../include/functions_db.php:1974 -#: ../../include/class/ConfigPEN.class.php:674 -#: ../../include/class/ConfigPEN.class.php:698 -#: ../../include/class/SatelliteAgent.class.php:1105 -#: ../../include/class/HelpFeedBack.class.php:370 -#: ../../include/class/CredentialStore.class.php:1646 -#: ../../include/class/ModuleTemplates.class.php:1359 -#: ../../include/class/WelcomeWindow.class.php:173 -#: ../../include/class/AgentWizard.class.php:6233 -#: ../../include/lib/Dashboard/Widgets/maps_status.php:362 -#: ../../operation/agentes/pandora_networkmap.editor.php:745 -#: ../../operation/snmpconsole/snmp_browser.php:639 -msgid "OK" -msgstr "OK" - #: ../../enterprise/godmode/services/services.service.php:1028 msgid "" "This change in the service configuration will delete the history of the " @@ -19137,8 +19254,8 @@ msgstr "Servicio no válido" #: ../../enterprise/include/functions_reporting.php:3500 #: ../../enterprise/include/functions_reporting.php:4476 #: ../../include/functions_maps.php:50 ../../include/functions_reporting.php:1075 -#: ../../include/functions_reporting.php:9702 -#: ../../operation/agentes/pandora_networkmap.php:789 +#: ../../include/functions_reporting.php:9711 +#: ../../operation/agentes/pandora_networkmap.php:790 msgid "Dynamic" msgstr "Dinámico" @@ -19336,7 +19453,7 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_history.php:416 msgid "" "Automatically create partitions on specific database IDB files (tagente_datos, " -"tagente_datos_string, tevento). Monthly partitions." +"tagente_datos_string). Monthly partitions." msgstr "" "Crear automáticamente particiones en archivos específicos de la base de datos " "IDB (tagent_data, tagent_data_string, tevent). Particiones mensuales." @@ -19553,12 +19670,12 @@ msgid "Yes without changing status" msgstr "Sí, sin cambiar estado" #: ../../enterprise/godmode/setup/setup.php:81 -#: ../../include/functions_config.php:430 +#: ../../include/functions_config.php:438 msgid "Forward SNMP traps to agent (if exist)" msgstr "Reenviar los traps SNMP al agente (si existe)" #: ../../enterprise/godmode/setup/setup.php:92 -#: ../../include/functions_config.php:434 +#: ../../include/functions_config.php:442 msgid "Use Enterprise ACL System" msgstr "Utilizar el sistema ACL Enterprise" @@ -19592,7 +19709,7 @@ msgid "Metaconsole DB password" msgstr "Contraseña BD Metaconsola" #: ../../enterprise/godmode/setup/setup.php:210 -#: ../../include/functions_config.php:470 +#: ../../include/functions_config.php:478 msgid "Activate Log Collector" msgstr "Activar el colector de logs" @@ -19717,7 +19834,7 @@ msgid "Port of ElasticSearch server" msgstr "Puerto del servidor ElasticSearch" #: ../../enterprise/godmode/setup/setup_log_collector.php:77 -#: ../../include/functions_config.php:1629 +#: ../../include/functions_config.php:1641 msgid "Days to purge old information" msgstr "Días para purgar información antigua" @@ -19749,21 +19866,21 @@ msgstr "Función PHP" #: ../../enterprise/include/functions_tasklist.php:283 #: ../../enterprise/include/functions_tasklist.php:370 #: ../../enterprise/operation/reporting/custom_reporting.php:20 -#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:306 -#: ../../godmode/tag/edit_tag.php:224 ../../include/functions_cron.php:613 +#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:307 +#: ../../godmode/tag/edit_tag.php:228 ../../include/functions_cron.php:613 #: ../../include/functions_cron.php:704 ../../operation/search_users.php:45 msgid "Email" msgstr "Correo electrónico" #: ../../enterprise/godmode/setup/setup_auth.php:194 #: ../../enterprise/godmode/setup/setup_auth.php:549 -#: ../../enterprise/godmode/setup/setup_auth.php:1357 +#: ../../enterprise/godmode/setup/setup_auth.php:1574 msgid "Profiles selected" msgstr "Perfiles seleccionados" #: ../../enterprise/godmode/setup/setup_auth.php:195 #: ../../enterprise/godmode/setup/setup_auth.php:550 -#: ../../enterprise/godmode/setup/setup_auth.php:1358 +#: ../../enterprise/godmode/setup/setup_auth.php:1575 msgid "Groups selected" msgstr "Grupos seleccionados" @@ -19782,15 +19899,15 @@ msgstr "Atributos LDAP" #: ../../enterprise/godmode/setup/setup_auth.php:256 #: ../../enterprise/godmode/setup/setup_auth.php:553 #: ../../enterprise/godmode/setup/setup_auth.php:605 -#: ../../enterprise/godmode/setup/setup_auth.php:1361 -#: ../../enterprise/godmode/setup/setup_auth.php:1415 +#: ../../enterprise/godmode/setup/setup_auth.php:1578 +#: ../../enterprise/godmode/setup/setup_auth.php:1632 #: ../../godmode/setup/snmp_wizard.php:44 msgid "OP" msgstr "OP" #: ../../enterprise/godmode/setup/setup_auth.php:251 #: ../../enterprise/godmode/setup/setup_auth.php:601 -#: ../../enterprise/godmode/setup/setup_auth.php:1411 +#: ../../enterprise/godmode/setup/setup_auth.php:1628 #: ../../enterprise/godmode/setup/setup_acl.php:68 #: ../../godmode/groups/configure_group.php:108 #: ../../godmode/groups/group_list.php:377 @@ -19798,19 +19915,20 @@ msgstr "OP" #: ../../godmode/users/profile_list.php:332 #: ../../godmode/users/configure_profile.php:86 #: ../../godmode/users/user_list.php:297 -#: ../../godmode/users/configure_user.php:276 ../../godmode/menu.php:165 +#: ../../godmode/users/configure_user.php:214 ../../godmode/menu.php:165 msgid "Profiles" msgstr "Perfiles" #: ../../enterprise/godmode/setup/setup_auth.php:264 #: ../../enterprise/godmode/setup/setup_auth.php:612 -#: ../../enterprise/godmode/setup/setup_auth.php:1422 +#: ../../enterprise/godmode/setup/setup_auth.php:1112 +#: ../../enterprise/godmode/setup/setup_auth.php:1639 msgid "Select profile" msgstr "Seleccionar perfil" #: ../../enterprise/godmode/setup/setup_auth.php:309 #: ../../enterprise/godmode/setup/setup_auth.php:650 -#: ../../enterprise/godmode/setup/setup_auth.php:1465 +#: ../../enterprise/godmode/setup/setup_auth.php:1682 msgid "Add new permissions" msgstr "Agregar nuevos permisos" @@ -19823,57 +19941,63 @@ msgid "Change timezone visual" msgstr "Cambiar visualización de zona horaria" #: ../../enterprise/godmode/setup/setup_auth.php:478 -#: ../../enterprise/godmode/setup/setup_auth.php:1286 +#: ../../enterprise/godmode/setup/setup_auth.php:1503 msgid "New users will be able to log in to the nodes." msgstr "Los usuarios nuevos podrán conectarse en los nodos." #: ../../enterprise/godmode/setup/setup_auth.php:552 #: ../../enterprise/godmode/setup/setup_auth.php:604 -#: ../../enterprise/godmode/setup/setup_auth.php:1360 -#: ../../enterprise/godmode/setup/setup_auth.php:1414 +#: ../../enterprise/godmode/setup/setup_auth.php:1577 +#: ../../enterprise/godmode/setup/setup_auth.php:1631 msgid "AD Groups" msgstr "Grupos AD" -#: ../../enterprise/godmode/setup/setup_auth.php:831 -#: ../../enterprise/godmode/setup/setup_auth.php:947 +#: ../../enterprise/godmode/setup/setup_auth.php:661 +msgid "Recursive group search" +msgstr "Búsqueda recursiva de grupos" + +#: ../../enterprise/godmode/setup/setup_auth.php:837 +#: ../../enterprise/godmode/setup/setup_auth.php:956 +#: ../../enterprise/godmode/setup/setup_auth.php:1067 msgid "You must select a profile from the list of profiles." msgstr "Selecciona un perfil de la lista de perfiles" -#: ../../enterprise/godmode/setup/setup_auth.php:836 -#: ../../enterprise/godmode/setup/setup_auth.php:952 +#: ../../enterprise/godmode/setup/setup_auth.php:842 +#: ../../enterprise/godmode/setup/setup_auth.php:961 +#: ../../enterprise/godmode/setup/setup_auth.php:1071 msgid "You must select a group from the list of groups." msgstr "Seleccione un grupo de la lista de grupos" -#: ../../enterprise/godmode/setup/setup_auth.php:1112 -#: ../../include/functions_config.php:719 +#: ../../enterprise/godmode/setup/setup_auth.php:1329 +#: ../../include/functions_config.php:731 msgid "MySQL host" msgstr "Dirección de MySQL" -#: ../../enterprise/godmode/setup/setup_auth.php:1175 +#: ../../enterprise/godmode/setup/setup_auth.php:1392 msgid "SimpleSAML path" msgstr "Ruta de SimpleSAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1176 +#: ../../enterprise/godmode/setup/setup_auth.php:1393 msgid "Directory where your 'simplesamlphp' folder is located." msgstr "Directorio donde se encuentra la carpeta 'simplesamlphp'." -#: ../../enterprise/godmode/setup/setup_auth.php:1182 +#: ../../enterprise/godmode/setup/setup_auth.php:1399 msgid "SAML source" msgstr "SAML de origen" -#: ../../enterprise/godmode/setup/setup_auth.php:1183 +#: ../../enterprise/godmode/setup/setup_auth.php:1400 msgid "Authsource name, e.g. 'example-userpass'" msgstr "Nombre authsource, por ejemplo: 'example-userpass'" -#: ../../enterprise/godmode/setup/setup_auth.php:1190 +#: ../../enterprise/godmode/setup/setup_auth.php:1407 msgid "SAML user id attribute" msgstr "Atribito de ID de usuario SAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1195 +#: ../../enterprise/godmode/setup/setup_auth.php:1412 msgid "SAML mail attribute" msgstr "Atributo de correo SAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1196 +#: ../../enterprise/godmode/setup/setup_auth.php:1413 msgid "" "SAML field where search for the user email (while autocreate remote users is " "enabled)" @@ -19881,11 +20005,11 @@ msgstr "" "Campo SAML donde buscar el correo electrónico del usuario (mientras auto crear " "usuarios remotos esté activado)" -#: ../../enterprise/godmode/setup/setup_auth.php:1203 +#: ../../enterprise/godmode/setup/setup_auth.php:1420 msgid "SAML group name attribute" msgstr "Atributo de nombre de grupo SAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1204 +#: ../../enterprise/godmode/setup/setup_auth.php:1421 msgid "" "SAML field where search for the group name (while autocreate remote users is " "enabled)" @@ -19893,23 +20017,23 @@ msgstr "" "Campo SAML donde buscar el nombre del grupo (mientras auto crear usuarios " "remotos esté activado)" -#: ../../enterprise/godmode/setup/setup_auth.php:1211 +#: ../../enterprise/godmode/setup/setup_auth.php:1428 msgid "Simple attribute / Multivalue attribute" msgstr "Atributo simple/atributo con valores múltiples" -#: ../../enterprise/godmode/setup/setup_auth.php:1216 +#: ../../enterprise/godmode/setup/setup_auth.php:1433 msgid "SAML profiles and tag attribute" msgstr "Atributo de perfiles y etiquetas SAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1221 +#: ../../enterprise/godmode/setup/setup_auth.php:1438 msgid "Profile attribute" msgstr "Atributo de perfil" -#: ../../enterprise/godmode/setup/setup_auth.php:1226 +#: ../../enterprise/godmode/setup/setup_auth.php:1443 msgid "Tag attribute" msgstr "Atributo de etiqueta" -#: ../../enterprise/godmode/setup/setup_auth.php:1231 +#: ../../enterprise/godmode/setup/setup_auth.php:1448 msgid "SAML profile and tags prefix" msgstr "Prefijo de perfiles y etiquetas SAML" @@ -19987,7 +20111,7 @@ msgstr "Añadir elemento personalizado al perfil" #: ../../godmode/massive/massive_delete_profiles.php:152 #: ../../godmode/massive/massive_add_profiles.php:202 #: ../../include/functions_profile.php:203 -#: ../../operation/users/user_edit.php:998 +#: ../../operation/users/user_edit.php:995 msgid "Profile name" msgstr "Nombre del perfil" @@ -20115,10 +20239,12 @@ msgstr "Grupo objetivo" #: ../../godmode/reporting/create_container.php:746 #: ../../mobile/operation/modules.php:194 ../../mobile/operation/modules.php:195 #: ../../mobile/operation/modules.php:308 ../../mobile/operation/modules.php:309 -#: ../../include/ajax/heatmap.ajax.php:129 -#: ../../include/ajax/heatmap.ajax.php:310 +#: ../../mobile/operation/server_status.php:185 +#: ../../mobile/operation/server_status.php:186 +#: ../../include/ajax/heatmap.ajax.php:158 +#: ../../include/ajax/heatmap.ajax.php:438 #: ../../include/lib/Dashboard/Widgets/heatmap.php:301 -#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:350 +#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:353 msgid "Tag" msgstr "Etiqueta" @@ -20138,8 +20264,8 @@ msgstr "Filtro por etiqueta" #: ../../enterprise/godmode/reporting/graph_template_wizard.php:313 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:822 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:824 -#: ../../include/functions_snmp_browser.php:1653 -#: ../../include/functions_snmp_browser.php:1660 +#: ../../include/functions_snmp_browser.php:1662 +#: ../../include/functions_snmp_browser.php:1669 msgid "Select all" msgstr "Seleccionar todo" @@ -20317,15 +20443,18 @@ msgstr "Asistente de plantillas" #: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:133 #: ../../enterprise/godmode/reporting/visual_console_template.php:136 #: ../../extensions/resource_exportation.php:459 +#: ../../godmode/users/configure_user.php:59 #: ../../godmode/users/user_management.php:38 #: ../../godmode/massive/massive_edit_users.php:274 -#: ../../godmode/reporting/visual_console_builder.php:869 +#: ../../godmode/reporting/visual_console_builder.php:877 #: ../../godmode/reporting/map_builder.php:133 #: ../../godmode/reporting/visual_console_favorite.php:130 +#: ../../include/auth/mysql.php:807 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:360 #: ../../operation/users/user_edit.php:469 -#: ../../operation/visual_console/view.php:251 ../../operation/menu.php:299 -#: ../../operation/menu.php:306 +#: ../../operation/visual_console/view.php:253 +#: ../../operation/visual_console/legacy_view.php:219 +#: ../../operation/menu.php:299 ../../operation/menu.php:306 msgid "Visual console" msgstr "Consola visual" @@ -20427,7 +20556,7 @@ msgstr "Editor de plantillas gráficas" #: ../../enterprise/godmode/reporting/graph_template_editor.php:155 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:61 #: ../../godmode/modules/manage_nc_groups.php:119 -#: ../../godmode/netflow/nf_edit_form.php:119 +#: ../../godmode/netflow/nf_edit_form.php:146 #: ../../godmode/events/event_edit_filter.php:232 msgid "Not updated. Blank name" msgstr "No actualizado; nombre en blanco" @@ -20446,8 +20575,9 @@ msgstr "Error al actualizar la plantilla" #: ../../godmode/reporting/visual_console_builder.wizard.php:173 #: ../../godmode/events/event_responses.editor.php:186 #: ../../include/functions_visual_map_editor.php:97 +#: ../../include/functions_visual_map_editor.php:698 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:475 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:930 #: ../../include/functions_reports.php:1267 msgid "Width" msgstr "Anchura" @@ -20456,18 +20586,18 @@ msgstr "Anchura" #: ../../godmode/setup/gis_step_2.php:399 #: ../../godmode/reporting/visual_console_builder.wizard.php:175 #: ../../godmode/events/event_responses.editor.php:198 -#: ../../include/functions_visual_map_editor.php:672 +#: ../../include/functions_visual_map_editor.php:712 #: ../../include/functions_reports.php:1283 #: ../../include/functions_reports.php:1383 msgid "Height" msgstr "Altura" #: ../../enterprise/godmode/reporting/graph_template_editor.php:235 -#: ../../enterprise/operation/log/log_viewer.php:672 +#: ../../enterprise/operation/log/log_viewer.php:670 #: ../../godmode/setup/performance.php:627 #: ../../godmode/reporting/create_container.php:418 #: ../../include/functions.php:2755 ../../include/functions.php:3423 -#: ../../include/ajax/module.php:221 ../../include/ajax/graph.ajax.php:146 +#: ../../include/ajax/module.php:244 ../../include/ajax/graph.ajax.php:146 #: ../../operation/gis_maps/render_view.php:157 msgid "1 hour" msgstr "1 hora" @@ -20482,19 +20612,19 @@ msgid "3 hours" msgstr "3 horas" #: ../../enterprise/godmode/reporting/graph_template_editor.php:238 -#: ../../include/ajax/module.php:222 +#: ../../include/ajax/module.php:245 msgid "6 hours" msgstr "6 horas" #: ../../enterprise/godmode/reporting/graph_template_editor.php:239 -#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:223 +#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:246 msgid "12 hours" msgstr "12 horas" #: ../../enterprise/godmode/reporting/graph_template_editor.php:240 -#: ../../enterprise/operation/log/log_viewer.php:676 +#: ../../enterprise/operation/log/log_viewer.php:674 #: ../../godmode/reporting/create_container.php:422 -#: ../../include/functions.php:2758 ../../include/ajax/module.php:224 +#: ../../include/functions.php:2758 ../../include/ajax/module.php:247 #: ../../include/ajax/graph.ajax.php:150 #: ../../include/class/AuditLog.class.php:211 msgid "1 day" @@ -20515,9 +20645,9 @@ msgid "Last week" msgstr "Última semana" #: ../../enterprise/godmode/reporting/graph_template_editor.php:244 -#: ../../enterprise/operation/log/log_viewer.php:680 +#: ../../enterprise/operation/log/log_viewer.php:678 #: ../../godmode/reporting/create_container.php:426 -#: ../../include/functions.php:2760 ../../include/ajax/module.php:226 +#: ../../include/functions.php:2760 ../../include/ajax/module.php:249 #: ../../include/ajax/graph.ajax.php:154 #: ../../include/class/AuditLog.class.php:213 msgid "15 days" @@ -20533,12 +20663,12 @@ msgid "2 months" msgstr "2 meses" #: ../../enterprise/godmode/reporting/graph_template_editor.php:247 -#: ../../include/ajax/module.php:229 ../../include/class/AuditLog.class.php:216 +#: ../../include/ajax/module.php:252 ../../include/class/AuditLog.class.php:216 msgid "6 months" msgstr "6 meses" #: ../../enterprise/godmode/reporting/graph_template_editor.php:248 -#: ../../include/functions.php:2764 ../../include/ajax/module.php:230 +#: ../../include/functions.php:2764 ../../include/ajax/module.php:253 msgid "1 year" msgstr "1 año" @@ -20568,7 +20698,7 @@ msgstr "1 año" #: ../../godmode/reporting/visual_console_builder.elements.php:123 #: ../../godmode/reporting/visual_console_builder.wizard.php:246 #: ../../godmode/reporting/graph_builder.main.php:189 -#: ../../include/functions_visual_map_editor.php:786 +#: ../../include/functions_visual_map_editor.php:826 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:629 @@ -20601,7 +20731,7 @@ msgstr "Top N" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 #: ../../enterprise/include/functions_reporting_csv.php:950 #: ../../include/functions_reports.php:801 -#: ../../include/functions_reporting.php:3560 +#: ../../include/functions_reporting.php:3569 msgid "Exception" msgstr "Excepción" @@ -20650,7 +20780,7 @@ msgstr "Último valor" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1756 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:5074 #: ../../godmode/reporting/reporting_builder.item_editor.php:1419 -#: ../../godmode/reporting/reporting_builder.item_editor.php:7472 +#: ../../godmode/reporting/reporting_builder.item_editor.php:7477 msgid "" "Warning: period 0 reports cannot be used to show information back in time. " "Information contained in this kind of reports will be always reporting the " @@ -20669,13 +20799,13 @@ msgstr "Si selecciona varios agentes, solo se mostrarán los módulos comunes" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:247 #: ../../enterprise/include/functions_reporting_csv.php:1080 -#: ../../include/functions_reporting_html.php:5009 +#: ../../include/functions_reporting_html.php:5037 msgid "Sum" msgstr "Suma" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:259 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:389 -#: ../../include/functions_reporting.php:10584 +#: ../../include/functions_reporting.php:10593 msgid "Rate" msgstr "Tasa" @@ -20685,25 +20815,25 @@ msgstr "Tasa" #: ../../enterprise/operation/services/services.list.php:764 #: ../../godmode/snmpconsole/snmp_alert.php:2159 #: ../../include/class/ModuleTemplates.class.php:943 -#: ../../operation/events/events.php:2548 +#: ../../operation/events/events.php:2602 msgid "Delete selected" msgstr "Borrar seleccionado(s)" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:310 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2368 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2491 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2500 msgid "Group by agent" msgstr "Agrupar por agente" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:322 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2418 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3196 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3205 msgid "Show in the same row" msgstr "Mostrar en la misma fila" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:323 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2420 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3207 msgid "Show one module per row with all its operations" msgstr "Mostrar un módulo por fila con todas sus operaciones" @@ -20711,10 +20841,10 @@ msgstr "Mostrar un módulo por fila con todas sus operaciones" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2438 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3015 -#: ../../enterprise/operation/log/log_viewer.php:570 +#: ../../enterprise/operation/log/log_viewer.php:568 #: ../../godmode/netflow/nf_item_list.php:173 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2505 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3219 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2514 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3228 #: ../../include/lib/Dashboard/Widgets/top_n.php:267 msgid "Order" msgstr "Orden" @@ -20724,9 +20854,9 @@ msgstr "Orden" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2441 -#: ../../enterprise/operation/log/log_viewer.php:566 +#: ../../enterprise/operation/log/log_viewer.php:564 #: ../../godmode/reporting/reporting_builder.item_editor.php:64 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2508 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2517 #: ../../include/lib/Dashboard/Widgets/top_n.php:261 msgid "Ascending" msgstr "Ascendente" @@ -20736,9 +20866,9 @@ msgstr "Ascendente" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2448 -#: ../../enterprise/operation/log/log_viewer.php:565 +#: ../../enterprise/operation/log/log_viewer.php:563 #: ../../godmode/reporting/reporting_builder.item_editor.php:65 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2515 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2524 #: ../../include/lib/Dashboard/Widgets/top_n.php:262 msgid "Descending" msgstr "Descendente" @@ -20746,30 +20876,30 @@ msgstr "Descendente" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:344 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:321 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2455 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2522 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2531 #: ../../include/lib/Dashboard/Widgets/top_n.php:263 msgid "By agent name" msgstr "Por nombre de agente" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:352 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2467 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2534 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2543 #: ../../include/lib/Dashboard/Widgets/top_n.php:249 msgid "Quantity (n)" msgstr "Cantidad (n)" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:364 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2482 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2564 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2573 #: ../../include/lib/Dashboard/Widgets/top_n.php:286 -#: ../../operation/agentes/ver_agente.php:1646 +#: ../../operation/agentes/ver_agente.php:1642 msgid "Display" msgstr "Mostrar" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:419 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2587 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2727 -#: ../../include/functions_reporting.php:3582 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2736 +#: ../../include/functions_reporting.php:3591 msgid "Everything" msgstr "Todo" @@ -20785,22 +20915,22 @@ msgstr "<" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:427 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2615 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2735 -#: ../../include/functions_reporting_html.php:3582 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2744 +#: ../../include/functions_reporting_html.php:3610 msgid "Not OK" msgstr "Mal" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:435 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:445 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2627 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2747 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2756 msgid "Show graph" msgstr "Mostrar gráfico" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:447 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:336 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2740 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2857 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2866 msgid "Show resume" msgstr "Mostrar resumen" @@ -20817,7 +20947,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:801 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:465 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3428 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3641 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3650 msgid "Show item in landscape format (only PDF)" msgstr "Mostrar elemento en formato apaisado (solo PDF)" @@ -20825,7 +20955,7 @@ msgstr "Mostrar elemento en formato apaisado (solo PDF)" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:817 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:479 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3437 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3650 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3659 msgid "Page break at the end of the item (only PDF)" msgstr "Salto de página después del elemento (solo PDF)" @@ -20838,13 +20968,13 @@ msgid "Page orientation" msgstr "Orientación de página" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:93 -#: ../../include/functions_visual_map_editor.php:841 +#: ../../include/functions_visual_map_editor.php:889 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:386 msgid "Vertical" msgstr "Vertical" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:100 -#: ../../include/functions_visual_map_editor.php:842 +#: ../../include/functions_visual_map_editor.php:890 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:385 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:413 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:510 @@ -20880,20 +21010,20 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:358 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2720 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2837 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2846 msgid "Show address instead module name" msgstr "Mostrar la dirección en lugar del nombre del módulo" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:359 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2721 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2838 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2847 msgid "Show the main address of agent." msgstr "Mostrar la dirección principal del agente" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:428 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2294 #: ../../extensions/dbmanager.php:226 ../../extensions/dbmanager.php:227 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2385 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2394 #: ../../include/functions_reports.php:821 msgid "SQL query" msgstr "Consulta SQL" @@ -20901,14 +21031,14 @@ msgstr "Consulta SQL" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:452 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:391 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3081 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3275 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3284 msgid "Failover mode" msgstr "Modo conmutación" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:453 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:392 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3082 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3276 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3285 msgid "" "SLA calculation must be performed taking into account the failover modules " "assigned to the primary module" @@ -20919,72 +21049,72 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:470 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:405 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3101 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3295 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3304 msgid "Failover type" msgstr "Tipo de conmutación" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:475 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:409 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3106 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3300 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3309 msgid "Failover normal" msgstr "Conmutación normal" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:487 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:421 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3118 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3312 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3321 msgid "Failover simple" msgstr "Conmutación simple" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:527 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2512 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2595 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2604 msgid "Graph render" msgstr "Representar en gráfica" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:533 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2518 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2601 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2610 msgid "Avg, max & min" msgstr "Media, máx. y mín." #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:534 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2519 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2602 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2611 msgid "Max only" msgstr "Solo máx." #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:535 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2520 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2603 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2612 msgid "Min only" msgstr "Solo mín." #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:536 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2521 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2604 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2613 msgid "Avg only" msgstr "Solo media" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:547 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2688 -#: ../../mobile/operation/module_graph.php:436 -#: ../../operation/agentes/stat_win.php:369 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2697 +#: ../../mobile/operation/module_graph.php:437 +#: ../../operation/agentes/stat_win.php:377 msgid "Time compare (Overlapped)" msgstr "Comparación de tiempo (solapado)" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:563 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2534 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2651 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2660 msgid "Full resolution graph (TIP)" msgstr "Gráfica a resolución completa (TIP)" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:564 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2535 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2652 -#: ../../operation/agentes/stat_win.php:397 -#: ../../operation/agentes/interface_traffic_graph_win.php:242 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2661 +#: ../../operation/agentes/stat_win.php:405 +#: ../../operation/agentes/interface_traffic_graph_win.php:258 msgid "" "TIP mode charts do not support average - maximum - minimum series, you can " "only enable TIP or average, maximum or minimum series" @@ -20994,15 +21124,15 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:580 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2671 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2680 msgid "Show threshold" msgstr "Mostrar umbral" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:594 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2553 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2703 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2712 #: ../../godmode/reporting/graph_builder.main.php:250 -#: ../../include/functions.php:4189 ../../include/functions.php:4197 +#: ../../include/functions.php:4215 ../../include/functions.php:4223 msgid "Percentil" msgstr "Percentil" @@ -21017,19 +21147,19 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:609 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2835 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2966 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2975 msgid "Show Summary group" msgstr "Mostrar el resumen del grupo" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:673 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2921 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3052 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3061 msgid "Event Status" msgstr "Estado del evento" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:699 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2948 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3113 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3122 #: ../../operation/agentes/tactical.php:276 msgid "Event graphs" msgstr "Gráficos de eventos" @@ -21068,37 +21198,37 @@ msgstr "Período de proyección" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2258 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2412 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2421 msgid "Serialized header" msgstr "Cabecera serializada" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2259 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2413 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2422 msgid "The separator character is |" msgstr "El carácter separador es |" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2449 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2458 msgid "Field separator" msgstr "Separador de campo" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2327 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2450 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2459 msgid "Separator for different fields in the serialized text chain" msgstr "Separador para diferentes campos en la cadena de texto serializada" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2347 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2470 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2479 msgid "Line separator" msgstr "Separador de línea" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2348 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2471 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2480 msgid "" "Separator in different lines (composed by fields) of the serialized text chain" msgstr "" @@ -21107,13 +21237,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:834 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3412 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3478 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3487 msgid "Uncompress module" msgstr "Descomprimir módulo" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:835 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3413 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3479 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3488 msgid "Use uncompressed module data." msgstr "Utilizar datos de módulos descomprimidos" @@ -21193,7 +21323,7 @@ msgstr "SLA inverso" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3016 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3220 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3229 msgid "SLA items sorted by fulfillment value" msgstr "Elementos de SLA ordenados por valor rellenado" @@ -21205,11 +21335,11 @@ msgstr "Mostrar solo los SLA incorrectos" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:451 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3134 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3328 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3337 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1439 -#: ../../include/functions_reporting_html.php:4845 -#: ../../include/functions_reporting_html.php:5117 -#: ../../include/functions_reporting_html.php:5273 +#: ../../include/functions_reporting_html.php:4873 +#: ../../include/functions_reporting_html.php:5145 +#: ../../include/functions_reporting_html.php:5301 #: ../../include/functions_netflow.php:1202 #: ../../include/lib/Dashboard/Widgets/tactical.php:299 msgid "Summary" @@ -21239,17 +21369,17 @@ msgstr "Editar plantilla" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:148 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:215 -#: ../../enterprise/include/functions_reporting.php:8044 -#: ../../enterprise/include/functions_reporting.php:8110 -#: ../../godmode/reporting/reporting_builder.php:3642 +#: ../../enterprise/include/functions_reporting.php:8053 +#: ../../enterprise/include/functions_reporting.php:8119 +#: ../../godmode/reporting/reporting_builder.php:3659 #: ../../operation/reporting/reporting_viewer.php:156 msgid "Item editor" msgstr "Editor de elementos" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:159 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:202 -#: ../../godmode/reporting/reporting_builder.php:3638 -#: ../../include/functions_menu.php:587 +#: ../../godmode/reporting/reporting_builder.php:3655 +#: ../../include/functions_menu.php:591 #: ../../operation/reporting/reporting_viewer.php:147 msgid "List items" msgstr "Listado de elementos" @@ -21263,9 +21393,9 @@ msgstr "Lista de plantillas" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:334 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:361 #: ../../godmode/reporting/reporting_builder.php:561 -#: ../../godmode/reporting/reporting_builder.php:3601 -#: ../../godmode/reporting/reporting_builder.php:3699 -#: ../../godmode/reporting/reporting_builder.php:3727 +#: ../../godmode/reporting/reporting_builder.php:3618 +#: ../../godmode/reporting/reporting_builder.php:3716 +#: ../../godmode/reporting/reporting_builder.php:3744 #: ../../operation/reporting/reporting_viewer.php:222 msgid "Custom reports" msgstr "Reportes personalizados" @@ -21342,12 +21472,12 @@ msgid "Set start and end date" msgstr "Fije la fecha de inicio y conclusión" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:768 -#: ../../include/ajax/module.php:270 ../../operation/agentes/datos_agente.php:198 +#: ../../include/ajax/module.php:293 ../../operation/agentes/datos_agente.php:200 msgid "Timestamp from:" msgstr "Marca temporal desde:" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:786 -#: ../../include/ajax/module.php:290 ../../operation/agentes/datos_agente.php:204 +#: ../../include/ajax/module.php:313 ../../operation/agentes/datos_agente.php:206 msgid "Timestamp to:" msgstr "Marca temporal hasta:" @@ -21390,9 +21520,9 @@ msgstr "Editor de elementos de plantilla de gráfico" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:181 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244 -#: ../../godmode/reporting/graph_builder.graph_editor.php:215 -#: ../../godmode/reporting/graph_builder.graph_editor.php:389 -#: ../../include/functions.php:4049 +#: ../../godmode/reporting/graph_builder.graph_editor.php:314 +#: ../../godmode/reporting/graph_builder.graph_editor.php:348 +#: ../../include/functions.php:4075 msgid "Weight" msgstr "Peso" @@ -21404,7 +21534,7 @@ msgstr "Peso" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3881 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4319 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4464 -#: ../../enterprise/operation/log/log_viewer.php:540 +#: ../../enterprise/operation/log/log_viewer.php:538 msgid "Exact match" msgstr "Coincidencia exacta" @@ -21497,18 +21627,18 @@ msgstr "No se han hecho cambios" #: ../../enterprise/godmode/reporting/mysql_builder.php:244 #: ../../enterprise/include/functions_reporting_csv.php:1134 -#: ../../include/functions_reporting.php:7540 +#: ../../include/functions_reporting.php:7549 msgid "SQL" msgstr "SQL" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1647 -#: ../../godmode/reporting/reporting_builder.php:3749 +#: ../../godmode/reporting/reporting_builder.php:3766 msgid "Successfull action" msgstr "Acción completada" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1648 -#: ../../godmode/servers/modificar_server.php:285 -#: ../../godmode/servers/modificar_server.php:296 +#: ../../godmode/servers/modificar_server.php:307 +#: ../../godmode/servers/modificar_server.php:318 msgid "Unsuccessfull action" msgstr "No se pudo completar la acción" @@ -21543,13 +21673,13 @@ msgstr "Seleccionar servidor" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1997 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2016 -#: ../../godmode/reporting/reporting_builder.item_editor.php:204 +#: ../../godmode/reporting/reporting_builder.item_editor.php:205 #: ../../godmode/reporting/reporting_builder.item_editor.php:1264 msgid "Local metaconsole" msgstr "Metaconsola local" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2075 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1169 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1171 #: ../../include/lib/Dashboard/Widgets/top_n.php:207 msgid "" "Case insensitive regular expression for agent name. For example: Network.* " @@ -21562,7 +21692,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2099 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3707 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3939 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1192 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1194 msgid "" "Case insensitive regular expression or string for module name. For example: if " "you use this field with \"Module exact match\" enabled then this field has to " @@ -21614,31 +21744,31 @@ msgstr "Marcar si no quieres que muestre elementos sin datos" #: ../../godmode/reporting/create_container.php:571 #: ../../godmode/reporting/create_container.php:600 #: ../../godmode/reporting/create_container.php:741 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2236 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2245 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.elements.php:618 -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map_editor.php:400 +#: ../../include/functions_visual_map_editor.php:391 +#: ../../include/functions_visual_map_editor.php:394 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:615 #: ../../include/functions_reports.php:573 #: ../../include/functions_reports.php:660 #: ../../include/functions_reports.php:666 -#: ../../include/functions_reporting.php:10655 +#: ../../include/functions_reporting.php:10664 msgid "Custom graph" msgstr "Gráfica personalizada" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2241 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2400 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2409 msgid "Max items" msgstr "Número máximo de elementos" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2274 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2365 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2374 msgid "Custom SQL template" msgstr "Plantilla SQL personalizada" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2295 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2386 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2395 msgid "" "The entities of the fields that contain them must be included. Also is " "possible use macros like `_start_date_` or `_end_date_`." @@ -21652,158 +21782,158 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2473 #: ../../extensions/api_checker.php:365 #: ../../godmode/reporting/reporting_builder.item_editor.php:75 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2432 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2441 #: ../../godmode/events/event_responses.editor.php:229 #: ../../godmode/events/event_responses.editor.php:255 -#: ../../include/functions_reporting_html.php:1616 +#: ../../include/functions_reporting_html.php:1625 #: ../../operation/gis_maps/ajax.php:316 msgid "URL" msgstr "URL" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2320 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2443 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2452 msgid "Protocol must be specified in URL (e.g.: \"https://\")" msgstr "" "El protocolo debe estar especificado en la URL (por ejemplo: \"https://\")" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2384 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3606 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3615 msgid "Group by" msgstr "Agrupar por" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2499 #: ../../enterprise/include/functions_reporting_csv.php:1080 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2581 -#: ../../include/functions_reporting_html.php:5006 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2590 +#: ../../include/functions_reporting_html.php:5034 #: ../../include/functions_reporting.php:1545 msgid "Avg" msgstr "Media" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2641 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2761 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2770 msgid "Select fields to show" msgstr "Seleccionar campos a mostrar" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2649 #: ../../enterprise/include/functions_reporting_csv.php:501 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2769 -#: ../../include/functions_reporting_html.php:4145 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2778 +#: ../../include/functions_reporting_html.php:4173 msgid "Total time" msgstr "Tiempo total" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2657 #: ../../enterprise/include/functions_reporting_csv.php:505 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2777 -#: ../../include/functions_reporting_html.php:4151 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2786 +#: ../../include/functions_reporting_html.php:4179 msgid "Time failed" msgstr "Tiempo en fallo" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2665 #: ../../enterprise/include/functions_reporting_csv.php:509 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2785 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2794 msgid "Time in OK status" msgstr "Tiempo en estado OK" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2673 #: ../../enterprise/include/functions_reporting_csv.php:513 #: ../../enterprise/include/functions_reporting.php:4990 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2793 -#: ../../include/functions_reporting_html.php:4163 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2802 +#: ../../include/functions_reporting_html.php:4191 msgid "Time in warning status" msgstr "Tiempo en estado de advertencia" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2681 #: ../../enterprise/include/functions_reporting_csv.php:517 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2801 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2810 msgid "Time in unknown status" msgstr "Tiempo en estado desconocido" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2693 #: ../../enterprise/include/functions_reporting_csv.php:521 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2813 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2822 msgid "Time of not initialized module" msgstr "Tiempo de módulo no inicializado" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2705 #: ../../enterprise/include/functions_reporting_csv.php:525 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2825 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2834 msgid "Time of downtime" msgstr "Tiempo de parada" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2759 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2877 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2886 msgid "

Select fields to show

" msgstr "

Seleccione campos a mostrar

" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2767 #: ../../enterprise/include/functions_reporting_csv.php:533 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2885 -#: ../../include/functions_reporting_html.php:4239 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2894 +#: ../../include/functions_reporting_html.php:4267 msgid "Total checks" msgstr "Comprobaciones totales" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2775 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2893 -#: ../../include/functions_reporting_html.php:4245 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2902 +#: ../../include/functions_reporting_html.php:4273 msgid "Checks failed" msgstr "Comprobaciones fallidas" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2783 #: ../../enterprise/include/functions_reporting_csv.php:541 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2901 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2910 msgid "Checks in OK status" msgstr "Comprobaciones en estado OK" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2795 #: ../../enterprise/include/functions_reporting_csv.php:545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2925 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2934 msgid "Unknown checks" msgstr "Comprobaciones desconocidas" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2807 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2937 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2946 msgid "

Select fields to show

" msgstr "

Seleccione campos a mostrar

" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2815 #: ../../enterprise/include/functions_reporting_csv.php:668 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2945 -#: ../../include/functions_reporting_html.php:4560 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2954 +#: ../../include/functions_reporting_html.php:4588 msgid "Agent max value" msgstr "Valor máximo del agente" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2823 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2953 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2962 msgid "Agent min values" msgstr "Valores mínimos de agente" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2852 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3589 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3598 msgid "Show Summary" msgstr "Mostrar resumen" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2996 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3177 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3186 msgid "Height (dynamic graphs)" msgstr "Altura (gráficos dinámicos)" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3036 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3161 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3170 msgid "Query History Database" msgstr "Base de datos histórica de consultas" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3048 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3242 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3251 msgid "Priority mode" msgstr "Modo de prioridad" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3053 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3247 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3256 msgid "Priority ok mode" msgstr "Modo de prioridad ok" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3065 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3259 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3268 msgid "Priority unknown mode" msgstr "Modo de prioridad desconocido" @@ -21839,22 +21969,22 @@ msgstr "" "los agentes." #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3305 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3367 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3376 msgid "Calculate for custom intervals" msgstr "Calcular intervalos personalizados" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3316 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3462 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3471 msgid "Use prefix notation" msgstr "Usar notación de prefijo" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3328 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3379 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3388 msgid "Time lapse intervals" msgstr "Intervalos de tiempo transcurrido" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3330 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3382 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3391 msgid "" "Lapses of time in which the period is divided to make more precise calculations" msgstr "" @@ -21862,17 +21992,17 @@ msgstr "" "precisos" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3375 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3423 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3432 msgid "Table only" msgstr "Solo tabla" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3385 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3434 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3443 msgid "Graph only" msgstr "Solo gráfico" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3395 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3445 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3454 msgid "Graph and table" msgstr "Gráfico y tabla" @@ -21893,28 +22023,28 @@ msgstr "Mostrar IP no asignadas a un agente" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3513 #: ../../godmode/netflow/nf_item_list.php:282 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4025 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4034 msgid "Create item" msgstr "Crear elemento" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3526 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4033 -#: ../../include/functions_visual_map_editor.php:1419 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4042 +#: ../../include/functions_visual_map_editor.php:1477 msgid "Update item" msgstr "Actualizar elemento" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3584 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4123 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4132 msgid "SLA Min. (value)" msgstr "Valor mínimo para el SLA" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3589 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4128 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4137 msgid "SLA Max. (value)" msgstr "Valor máximo para el SLA" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3594 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4133 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4142 msgid "SLA Limit (%)" msgstr "Límite (%) para el SLA" @@ -21949,13 +22079,13 @@ msgstr "Nombre de módulo literal forzado" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4005 #: ../../godmode/reporting/create_container.php:484 #: ../../godmode/reporting/reporting_builder.item_editor.php:1843 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4357 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4394 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4563 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4836 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4870 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4924 -#: ../../include/functions_ui.php:6311 ../../include/functions_html.php:5807 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4366 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4403 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4572 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4845 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4879 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4933 +#: ../../include/functions_ui.php:6386 ../../include/functions_html.php:5831 msgid "Select an Agent first" msgstr "Debe seleccionar primero un agente" @@ -21970,17 +22100,17 @@ msgstr "El nombre y el límite SLA no deberían estar vacíos." #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:151 #: ../../godmode/modules/module_list.php:98 -#: ../../godmode/groups/configure_group.php:145 -#: ../../godmode/groups/group_list.php:878 ../../godmode/setup/os.builder.php:77 +#: ../../godmode/groups/configure_group.php:164 +#: ../../godmode/groups/group_list.php:879 ../../godmode/setup/os.builder.php:77 #: ../../godmode/setup/os.list.php:65 #: ../../godmode/reporting/visual_console_builder.elements.php:321 #: ../../include/functions_visual_map_editor.php:68 -#: ../../include/functions_visual_map_editor.php:1393 -#: ../../include/functions_visual_map.php:4225 -#: ../../include/rest-api/models/VisualConsole/Item.php:2148 +#: ../../include/functions_visual_map_editor.php:1451 +#: ../../include/functions_visual_map.php:4234 +#: ../../include/rest-api/models/VisualConsole/Item.php:2151 #: ../../include/lib/Dashboard/Widgets/module_icon.php:428 #: ../../include/lib/Dashboard/Widgets/module_status.php:419 -#: ../../operation/visual_console/view.php:361 +#: ../../operation/visual_console/view.php:363 msgid "Icon" msgstr "Icono" @@ -22047,7 +22177,7 @@ msgstr "Bajar" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:412 #: ../../godmode/reporting/reporting_builder.list_items.php:447 -#: ../../include/functions_graph.php:1514 +#: ../../include/functions_graph.php:1518 msgid "No items." msgstr "Sin elementos" @@ -22111,14 +22241,14 @@ msgstr "Crear nueva tarea de la consola" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:366 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:281 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:357 -#: ../../godmode/modules/manage_network_components_form.php:393 -#: ../../godmode/groups/configure_group.php:286 +#: ../../godmode/modules/manage_network_components_form.php:396 +#: ../../godmode/groups/configure_group.php:305 #: ../../godmode/reporting/graph_builder.main.php:312 #: ../../godmode/wizards/HostDevices.class.php:651 #: ../../godmode/wizards/HostDevices.class.php:754 #: ../../godmode/wizards/Wizard.main.php:416 #: ../../godmode/wizards/DiscoveryTaskList.class.php:184 -#: ../../include/functions_html.php:6615 +#: ../../include/functions_html.php:6643 #: ../../include/class/CustomNetScan.class.php:314 #: ../../include/class/CustomNetScan.class.php:425 #: ../../include/class/HTML.class.php:419 @@ -22144,10 +22274,10 @@ msgstr "Actualizar tarea de la consola" #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:576 #: ../../enterprise/include/ajax/cron.ajax.php:183 #: ../../godmode/events/event_responses.editor.php:213 -#: ../../include/ajax/events.php:2168 ../../include/ajax/events.php:2684 +#: ../../include/ajax/events.php:2169 ../../include/ajax/events.php:2685 #: ../../include/class/ExternalTools.class.php:383 #: ../../include/lib/Dashboard/Widgets/events_list.php:640 -#: ../../operation/events/events.php:2627 +#: ../../operation/events/events.php:2681 msgid "Parameters" msgstr "Parámetros" @@ -22269,7 +22399,7 @@ msgstr "Estado del nodo SQL" #: ../../enterprise/godmode/servers/new_HA_cluster.php:140 #: ../../enterprise/godmode/servers/HA_cluster.php:172 #: ../../extensions/quick_shell.php:197 -#: ../../godmode/agentes/module_manager_editor_network.php:535 +#: ../../godmode/agentes/module_manager_editor_network.php:540 msgid "SSH" msgstr "SSH" @@ -22362,7 +22492,7 @@ msgstr "" #: ../../enterprise/godmode/servers/HA_cluster.php:168 #: ../../enterprise/include/functions_reporting_csv.php:2398 -#: ../../operation/tree.php:264 +#: ../../operation/tree.php:265 msgid "Agent status" msgstr "Estado de agente" @@ -22500,21 +22630,21 @@ msgid "Default value: " msgstr "Valor predeterminado: " #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:356 -#: ../../include/functions_servers.php:556 -#: ../../include/functions_servers.php:1221 ../../include/functions_ui.php:7271 +#: ../../include/functions_servers.php:564 +#: ../../include/functions_servers.php:1244 ../../include/functions_ui.php:7341 msgid "Data server" msgstr "Servidor de datos" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:362 -#: ../../include/functions_servers.php:569 -#: ../../include/functions_servers.php:1224 ../../include/functions_ui.php:7276 +#: ../../include/functions_servers.php:577 +#: ../../include/functions_servers.php:1247 ../../include/functions_ui.php:7346 #: ../../include/class/AgentWizard.class.php:1382 msgid "Network server" msgstr "Servidor de red" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:368 -#: ../../include/functions_servers.php:855 -#: ../../include/functions_servers.php:1269 +#: ../../include/functions_servers.php:863 +#: ../../include/functions_servers.php:1292 msgid "Alert server" msgstr "Servidor de alertas" @@ -22532,59 +22662,59 @@ msgstr "Servidor de alertas" #: ../../enterprise/include/class/Oracle.app.php:463 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:468 #: ../../enterprise/tools/ipam/ipam_editor.php:200 -#: ../../godmode/wizards/HostDevices.class.php:849 -#: ../../include/functions_servers.php:595 -#: ../../include/functions_servers.php:1257 +#: ../../godmode/wizards/HostDevices.class.php:845 +#: ../../include/functions_servers.php:603 +#: ../../include/functions_servers.php:1280 #: ../../include/class/CustomNetScan.class.php:485 #: ../../general/first_task/recon_view.php:22 msgid "Discovery server" msgstr "Servidor Discovery" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:380 -#: ../../include/functions_servers.php:621 ../../include/functions_ui.php:7286 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:843 +#: ../../include/functions_servers.php:629 ../../include/functions_ui.php:7356 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:844 msgid "Prediction server" msgstr "Servidor de predicción" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:386 -#: ../../include/functions_servers.php:608 -#: ../../include/functions_servers.php:1236 ../../include/functions_ui.php:7281 +#: ../../include/functions_servers.php:616 +#: ../../include/functions_servers.php:1259 ../../include/functions_ui.php:7351 #: ../../include/class/AgentWizard.class.php:1363 msgid "Plugin server" msgstr "Servidor de plugins" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:392 -#: ../../include/functions_menu.php:609 ../../operation/menu.php:243 +#: ../../include/functions_menu.php:613 ../../operation/menu.php:243 msgid "SNMP console" msgstr "Consola SNMP" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:398 -#: ../../include/functions_servers.php:1227 +#: ../../include/functions_servers.php:1250 msgid "SNMP server" msgstr "Servidor SNMP" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:404 -#: ../../include/functions_servers.php:673 -#: ../../include/functions_servers.php:1245 +#: ../../include/functions_servers.php:681 +#: ../../include/functions_servers.php:1268 msgid "Web server" msgstr "Servidor web" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:410 -#: ../../include/functions_servers.php:660 -#: ../../include/functions_servers.php:1251 +#: ../../include/functions_servers.php:668 +#: ../../include/functions_servers.php:1274 msgid "Inventory server" msgstr "Servidor de inventario" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:416 #: ../../enterprise/godmode/servers/manage_export_form.php:111 -#: ../../include/functions_servers.php:647 -#: ../../include/functions_servers.php:1248 +#: ../../include/functions_servers.php:655 +#: ../../include/functions_servers.php:1271 msgid "Export server" msgstr "Servidor de exportación" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:422 -#: ../../include/functions_servers.php:686 -#: ../../include/functions_servers.php:1254 +#: ../../include/functions_servers.php:694 +#: ../../include/functions_servers.php:1277 msgid "Event server" msgstr "Servidor de eventos" @@ -22593,19 +22723,19 @@ msgid "ICMP server" msgstr "Servidor ICPM" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:434 -#: ../../include/functions_servers.php:1263 ../../include/functions_ui.php:7301 +#: ../../include/functions_servers.php:1286 ../../include/functions_ui.php:7371 msgid "WUX server" msgstr "Servidor WUX" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:440 -#: ../../include/functions_servers.php:816 -#: ../../include/functions_servers.php:1272 +#: ../../include/functions_servers.php:824 +#: ../../include/functions_servers.php:1295 msgid "NCM server" msgstr "Servidor NCM" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 -#: ../../include/functions_servers.php:634 -#: ../../include/functions_servers.php:1242 ../../include/functions_ui.php:7291 +#: ../../include/functions_servers.php:642 +#: ../../include/functions_servers.php:1265 ../../include/functions_ui.php:7361 #: ../../include/class/AgentWizard.class.php:1373 msgid "WMI server" msgstr "Servidor WMI" @@ -23523,7 +23653,7 @@ msgid "Delete remote conf server files" msgstr "Eliminar archivos de servidor de configuración remotos" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1388 -#: ../../godmode/agentes/agent_manager.php:853 +#: ../../godmode/agentes/agent_manager.php:861 msgid "Delete remote configuration file" msgstr "Borrar el archivo de configuración remota" @@ -23582,8 +23712,8 @@ msgstr "Servidor Satélite" #: ../../enterprise/godmode/servers/list_satellite.php:41 #: ../../godmode/setup/license.php:261 #: ../../godmode/servers/modificar_server.php:75 -#: ../../include/functions_ui.php:961 -#: ../../include/class/Diagnostics.class.php:1207 +#: ../../include/functions_ui.php:987 +#: ../../include/class/Diagnostics.class.php:1211 msgid "Satellite" msgstr "Satélite" @@ -23596,16 +23726,16 @@ msgstr "Informe a crear" #: ../../enterprise/include/functions_cron.php:186 #: ../../enterprise/include/functions_cron.php:236 -#: ../../enterprise/include/functions_reporting.php:8199 +#: ../../enterprise/include/functions_reporting.php:8208 #: ../../enterprise/operation/reporting/custom_reporting.php:153 msgid "Send to emails (separated by comma)" msgstr "Enviar a emails (separados por comas)" #: ../../enterprise/include/functions_cron.php:190 #: ../../enterprise/include/functions_cron.php:240 -#: ../../enterprise/include/functions_reporting.php:8207 +#: ../../enterprise/include/functions_reporting.php:8216 #: ../../enterprise/operation/reporting/custom_reporting.php:161 -#: ../../godmode/setup/news.php:200 ../../godmode/setup/news.php:349 +#: ../../godmode/setup/news.php:204 ../../godmode/setup/news.php:353 #: ../../operation/messages/message_list.php:195 #: ../../operation/messages/message_edit.php:376 msgid "Subject" @@ -23613,7 +23743,7 @@ msgstr "Asunto" #: ../../enterprise/include/functions_cron.php:194 #: ../../enterprise/include/functions_cron.php:244 -#: ../../enterprise/include/functions_reporting.php:8225 +#: ../../enterprise/include/functions_reporting.php:8234 #: ../../enterprise/operation/reporting/custom_reporting.php:179 #: ../../operation/messages/message_edit.php:389 msgid "Message" @@ -23711,8 +23841,8 @@ msgstr "Anualmente" #: ../../enterprise/include/functions_cron.php:799 #: ../../enterprise/include/functions_cron.php:832 -#: ../../enterprise/include/functions_reporting.php:8219 -#: ../../enterprise/include/functions_reporting.php:8233 +#: ../../enterprise/include/functions_reporting.php:8228 +#: ../../enterprise/include/functions_reporting.php:8242 #: ../../enterprise/operation/reporting/custom_reporting.php:173 #: ../../enterprise/operation/reporting/custom_reporting.php:187 msgid "This is an optional field" @@ -23731,7 +23861,7 @@ msgstr "" "algunos archivos adjuntos." #: ../../enterprise/include/functions_cron.php:1801 -#: ../../include/functions_reporting.php:15834 +#: ../../include/functions_reporting.php:15911 msgid "Greetings" msgstr "Saludos" @@ -23742,22 +23872,22 @@ msgstr "Hay un archivo CSV de los logs adjunto a este correo electrónico" #: ../../enterprise/include/functions_cron.php:1805 #: ../../mobile/include/functions_web.php:84 #: ../../mobile/include/ui.class.php:327 -#: ../../include/functions_reporting.php:15840 +#: ../../include/functions_reporting.php:15917 msgid "Generated at" msgstr "Generado el" #: ../../enterprise/include/functions_cron.php:1807 -#: ../../include/functions_reporting.php:15842 +#: ../../include/functions_reporting.php:15919 msgid "Thanks for your time." msgstr "Gracias por tu tiempo." #: ../../enterprise/include/functions_cron.php:1809 -#: ../../include/functions_reporting.php:15844 +#: ../../include/functions_reporting.php:15921 msgid "Best regards, Pandora FMS" msgstr "Saludos cordiales, Pandora FMS" #: ../../enterprise/include/functions_cron.php:1811 -#: ../../include/functions_reporting.php:15846 +#: ../../include/functions_reporting.php:15923 msgid "" "This is an automatically generated email from Pandora FMS, please do not reply." msgstr "" @@ -23844,8 +23974,8 @@ msgstr "Forzar ejecución" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../enterprise/include/functions_reporting_csv.php:1424 #: ../../enterprise/include/functions_reporting_csv.php:1479 -#: ../../enterprise/include/functions_reporting.php:8142 -#: ../../enterprise/include/functions_reporting.php:8179 +#: ../../enterprise/include/functions_reporting.php:8151 +#: ../../enterprise/include/functions_reporting.php:8188 #: ../../enterprise/operation/reporting/custom_reporting.php:138 #: ../../include/functions_cron.php:612 ../../include/functions_cron.php:705 #: ../../include/functions_cron.php:829 @@ -23868,7 +23998,7 @@ msgstr "Informe" #: ../../enterprise/include/functions_tasklist.php:464 #: ../../enterprise/include/class/ManageBackups.class.php:169 #: ../../include/functions_cron.php:787 ../../include/functions_cron.php:828 -#: ../../include/class/Diagnostics.class.php:2203 +#: ../../include/class/Diagnostics.class.php:2207 msgid "Path" msgstr "Ruta" @@ -23883,9 +24013,9 @@ msgstr "Tarea deshabilitada" #: ../../enterprise/tools/ipam/ipam_list.php:784 #: ../../enterprise/tools/ipam/ipam_ajax.php:505 ../../godmode/db/db_main.php:189 #: ../../godmode/snmpconsole/snmp_alert.php:1967 -#: ../../include/functions_cron.php:907 ../../include/functions_treeview.php:663 -#: ../../include/functions_ui.php:606 -#: ../../operation/agentes/estado_generalagente.php:431 +#: ../../include/functions_cron.php:907 ../../include/ajax/heatmap.ajax.php:479 +#: ../../include/functions_treeview.php:667 ../../include/functions_ui.php:606 +#: ../../operation/agentes/estado_generalagente.php:402 #: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362 #: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479 msgid "Never" @@ -23915,17 +24045,17 @@ msgid "avg" msgstr "media" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:80 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4597 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4606 msgid "max" msgstr "máx" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:81 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4598 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4607 msgid "min" msgstr "mín" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:82 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4599 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4608 msgid "sum" msgstr "suma" @@ -24081,11 +24211,11 @@ msgstr "Superred" #: ../../enterprise/tools/ipam/ipam_supernet_network.php:58 #: ../../enterprise/tools/ipam/ipam_supernet_network.php:83 #: ../../enterprise/tools/ipam/ipam_editor.php:127 -#: ../../godmode/wizards/HostDevices.class.php:917 +#: ../../godmode/wizards/HostDevices.class.php:913 #: ../../godmode/wizards/DiscoveryTaskList.class.php:602 -#: ../../include/functions_ui.php:973 +#: ../../include/functions_ui.php:1002 #: ../../operation/network/network_usage_map.php:52 -#: ../../operation/netflow/nf_live_view.php:143 +#: ../../operation/netflow/nf_live_view.php:148 #: ../../operation/netflow/netflow_explorer.php:59 ../../operation/menu.php:210 msgid "Network" msgstr "Red" @@ -24136,9 +24266,9 @@ msgstr "Opción desconocida" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:296 #: ../../godmode/agentes/configure_field.php:79 -#: ../../include/functions_treeview.php:902 +#: ../../include/functions_treeview.php:906 #: ../../operation/agentes/agent_fields.php:44 -#: ../../operation/agentes/estado_generalagente.php:623 +#: ../../operation/agentes/estado_generalagente.php:592 msgid "Custom field" msgstr "Campo personalizado" @@ -24170,7 +24300,7 @@ msgstr "Argumento del script" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 #: ../../godmode/alerts/alert_list.list.php:774 -#: ../../godmode/alerts/alert_list.list.php:1307 +#: ../../godmode/alerts/alert_list.list.php:1306 msgid "Update action" msgstr "Actualizar acción" @@ -24244,13 +24374,13 @@ msgstr "Hora global: " #: ../../enterprise/include/functions_reporting_csv.php:2837 #: ../../godmode/setup/setup_integria.php:396 #: ../../godmode/setup/setup_integria.php:529 ../../include/graphs/fgraph.php:879 -#: ../../include/functions_ui.php:7855 +#: ../../include/functions_ui.php:7950 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 -#: ../../include/class/TipsWindow.class.php:454 -#: ../../include/class/TipsWindow.class.php:722 -#: ../../include/class/TipsWindow.class.php:889 -#: ../../include/lib/Dashboard/Widget.php:564 -#: ../../operation/agentes/estado_generalagente.php:756 +#: ../../include/class/TipsWindow.class.php:466 +#: ../../include/class/TipsWindow.class.php:742 +#: ../../include/class/TipsWindow.class.php:909 +#: ../../include/lib/Dashboard/Widget.php:565 +#: ../../operation/agentes/estado_generalagente.php:725 #: ../../operation/incidents/integriaims_export_csv.php:81 #: ../../operation/incidents/configure_integriaims_incident.php:228 #: ../../operation/incidents/list_integriaims_incidents.php:587 @@ -24264,8 +24394,8 @@ msgstr "Regexp de captura" #: ../../enterprise/include/ajax/log_viewer.ajax.php:93 #: ../../enterprise/include/functions_reporting_pdf.php:548 #: ../../enterprise/include/functions_reporting_pdf.php:604 -#: ../../include/functions_reporting_html.php:3841 -#: ../../include/functions_reporting_html.php:3911 +#: ../../include/functions_reporting_html.php:3869 +#: ../../include/functions_reporting_html.php:3939 msgid "Average" msgstr "Media" @@ -24278,51 +24408,51 @@ msgid "Curl Error: " msgstr "Error curl: " #: ../../enterprise/include/ajax/log_viewer.ajax.php:323 -#: ../../include/ajax/audit_log.php:270 ../../include/ajax/module.php:2224 -#: ../../include/ajax/agent.php:571 ../../include/ajax/events.php:775 +#: ../../include/ajax/audit_log.php:271 ../../include/ajax/module.php:2253 +#: ../../include/ajax/agent.php:571 ../../include/ajax/events.php:776 msgid "New filter" msgstr "Nuevo filtro" #: ../../enterprise/include/ajax/log_viewer.ajax.php:331 #: ../../enterprise/include/ajax/log_viewer.ajax.php:427 -#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../godmode/netflow/nf_edit_form.php:80 #: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../include/ajax/audit_log.php:278 ../../include/ajax/audit_log.php:329 -#: ../../include/ajax/module.php:2340 ../../include/ajax/agent.php:699 -#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:783 -#: ../../include/ajax/events.php:881 +#: ../../include/ajax/audit_log.php:279 ../../include/ajax/audit_log.php:331 +#: ../../include/ajax/module.php:2369 ../../include/ajax/agent.php:699 +#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:784 +#: ../../include/ajax/events.php:882 msgid "Update filter" msgstr "Actualizar filtro" #: ../../enterprise/include/ajax/log_viewer.ajax.php:347 -#: ../../godmode/events/event_edit_filter.php:282 -#: ../../include/ajax/audit_log.php:288 ../../include/ajax/module.php:2247 +#: ../../godmode/events/event_edit_filter.php:284 +#: ../../include/ajax/audit_log.php:289 ../../include/ajax/module.php:2276 #: ../../include/ajax/agent.php:594 ../../include/ajax/custom_fields.php:573 #: ../../include/ajax/custom_fields.php:620 -#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:799 +#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:800 msgid "Filter name" msgstr "Nombre del filtro" #: ../../enterprise/include/ajax/log_viewer.ajax.php:350 -#: ../../include/ajax/module.php:2253 ../../include/ajax/agent.php:600 -#: ../../include/ajax/events.php:802 +#: ../../include/ajax/module.php:2282 ../../include/ajax/agent.php:600 +#: ../../include/ajax/events.php:803 msgid "Save in Group" msgstr "Guardar en el grupo" #: ../../enterprise/include/ajax/log_viewer.ajax.php:386 -#: ../../include/ajax/audit_log.php:314 ../../include/ajax/module.php:2292 -#: ../../include/ajax/events.php:838 +#: ../../include/ajax/audit_log.php:316 ../../include/ajax/module.php:2321 +#: ../../include/ajax/events.php:839 msgid "Overwrite filter" msgstr "Sobrescribir filtro" #: ../../enterprise/include/ajax/log_viewer.ajax.php:482 -#: ../../include/ajax/audit_log.php:383 ../../include/ajax/module.php:2401 -#: ../../include/ajax/agent.php:761 ../../include/ajax/events.php:936 +#: ../../include/ajax/audit_log.php:386 ../../include/ajax/module.php:2430 +#: ../../include/ajax/agent.php:761 ../../include/ajax/events.php:937 msgid "Filter name cannot be left blank" msgstr "El nombre del filtro no se puede dejar en blanco." #: ../../enterprise/include/ajax/log_viewer.ajax.php:525 -#: ../../include/ajax/audit_log.php:411 +#: ../../include/ajax/audit_log.php:414 msgid "Filter name already on use" msgstr "El nombre del filtro ya está en uso" @@ -24373,8 +24503,8 @@ msgid "File of collection is bigger than the limit (%s bytes)" msgstr "El archivo de colección es más grande que el límite (%s bytes)" #: ../../enterprise/include/functions_reporting_pdf.php:75 -#: ../../include/class/Diagnostics.class.php:2158 -#: ../../include/class/Diagnostics.class.php:2276 +#: ../../include/class/Diagnostics.class.php:2162 +#: ../../include/class/Diagnostics.class.php:2280 #, php-format msgid "Automated %s report for user defined report" msgstr "Informe de %s automatizado para informe definido por el usuario" @@ -24386,24 +24516,24 @@ msgstr "Informe de %s automatizado para informe definido por el usuario" #: ../../enterprise/include/functions_reporting_pdf.php:618 #: ../../enterprise/include/functions_reporting_pdf.php:625 #: ../../enterprise/include/functions_reporting_csv.php:1340 -#: ../../include/functions_reporting_html.php:3824 -#: ../../include/functions_reporting_html.php:3853 -#: ../../include/functions_reporting_html.php:3896 -#: ../../include/functions_reporting_html.php:3919 -#: ../../include/functions_reporting_html.php:3922 -#: ../../include/functions_reporting_html.php:3929 -#: ../../include/functions_reporting.php:7334 -#: ../../include/functions_reporting.php:7357 -#: ../../include/functions_reporting.php:7372 -#: ../../include/functions_reporting.php:7388 -#: ../../include/functions_reporting.php:7403 +#: ../../include/functions_reporting_html.php:3852 +#: ../../include/functions_reporting_html.php:3881 +#: ../../include/functions_reporting_html.php:3924 +#: ../../include/functions_reporting_html.php:3947 +#: ../../include/functions_reporting_html.php:3950 +#: ../../include/functions_reporting_html.php:3957 +#: ../../include/functions_reporting.php:7343 +#: ../../include/functions_reporting.php:7366 +#: ../../include/functions_reporting.php:7381 +#: ../../include/functions_reporting.php:7397 +#: ../../include/functions_reporting.php:7412 msgid "Maximun" msgstr "Máximo" #: ../../enterprise/include/functions_reporting_pdf.php:540 #: ../../enterprise/include/functions_reporting_pdf.php:597 -#: ../../include/functions_reporting_html.php:3832 -#: ../../include/functions_reporting_html.php:3903 +#: ../../include/functions_reporting_html.php:3860 +#: ../../include/functions_reporting_html.php:3931 msgid "Minimun" msgstr "Mínimo" @@ -24415,53 +24545,53 @@ msgstr "Mínimo" #: ../../enterprise/include/functions_reporting_csv.php:1285 #: ../../enterprise/include/functions_reporting_csv.php:1340 #: ../../enterprise/include/functions_reporting_csv.php:1444 -#: ../../include/functions_reporting_html.php:3895 -#: ../../include/functions_reporting_html.php:3902 -#: ../../include/functions_reporting_html.php:3910 -#: ../../include/functions_reporting_html.php:3921 -#: ../../include/functions_reporting_html.php:3926 -#: ../../include/functions_reporting.php:7352 +#: ../../include/functions_reporting_html.php:3923 +#: ../../include/functions_reporting_html.php:3930 +#: ../../include/functions_reporting_html.php:3938 +#: ../../include/functions_reporting_html.php:3949 +#: ../../include/functions_reporting_html.php:3954 +#: ../../include/functions_reporting.php:7361 msgid "Lapse" msgstr "Tiempo transcurrido" #: ../../enterprise/include/functions_reporting_pdf.php:972 -#: ../../include/functions_reporting_html.php:2256 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:517 +#: ../../include/functions_reporting_html.php:2277 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:530 #, php-format msgid "%s in %s : NORMAL" msgstr "%s en %s : NORMAL" #: ../../enterprise/include/functions_reporting_pdf.php:989 -#: ../../include/functions_reporting_html.php:2168 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:533 +#: ../../include/functions_reporting_html.php:2189 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:546 #, php-format msgid "%s in %s : CRITICAL" msgstr "%s en %s : CRÍTICO" #: ../../enterprise/include/functions_reporting_pdf.php:1006 -#: ../../include/functions_reporting_html.php:2185 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:549 +#: ../../include/functions_reporting_html.php:2206 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:562 #, php-format msgid "%s in %s : WARNING" msgstr "%s en %s : ADVERTENCIA" #: ../../enterprise/include/functions_reporting_pdf.php:1023 -#: ../../include/functions_reporting_html.php:2202 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:565 +#: ../../include/functions_reporting_html.php:2223 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:578 #, php-format msgid "%s in %s : UNKNOWN" msgstr "%s en %s : DESCONOCIDO" #: ../../enterprise/include/functions_reporting_pdf.php:1040 -#: ../../include/functions_reporting_html.php:2238 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:581 +#: ../../include/functions_reporting_html.php:2259 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:594 #, php-format msgid "%s in %s : Not initialize" msgstr "%s en %s : No iniciado" #: ../../enterprise/include/functions_reporting_pdf.php:1057 -#: ../../include/functions_reporting_html.php:2221 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:598 +#: ../../include/functions_reporting_html.php:2242 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:611 #, php-format msgid "%s in %s : ALERTS FIRED" msgstr "%s en %s : ALERTA DISPARADA" @@ -24477,7 +24607,7 @@ msgstr "Contenido" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../godmode/agentes/planned_downtime.list.php:331 #: ../../godmode/agentes/planned_downtime.editor.php:997 -#: ../../include/functions_reporting_html.php:4014 +#: ../../include/functions_reporting_html.php:4042 #: ../../include/functions_snmp.php:413 ../../include/functions_snmp.php:421 #: ../../include/rest-api/index.php:377 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460 @@ -24488,7 +24618,7 @@ msgstr "Para" #: ../../enterprise/include/functions_reporting_pdf.php:1989 #: ../../include/functions_reporting_html.php:91 -#: ../../include/functions_reporting_html.php:5816 +#: ../../include/functions_reporting_html.php:5844 #: ../../include/functions_treeview.php:303 #: ../../operation/agentes/interface_view.functions.php:560 msgid "Last data" @@ -24573,7 +24703,7 @@ msgstr "" #: ../../enterprise/include/functions_backup.php:425 msgid "Open a root shell in your system located at " -msgstr "Abre un root shell en tu sistema localizado en " +msgstr "Abra un Shell raíz en su sistema localizado en " #: ../../enterprise/include/functions_backup.php:429 msgid "Connect to MySQL database using the following command" @@ -24626,7 +24756,7 @@ msgid "Trap status agent recovered" msgstr "Estado del trap de agente recuperado" #: ../../enterprise/include/functions_servicemap.php:80 -#: ../../enterprise/include/functions_servicemap.php:1203 +#: ../../enterprise/include/functions_servicemap.php:1215 msgid "Failed to retrieve service elements: " msgstr "Error al recuperar elementos de servicio: " @@ -24654,11 +24784,16 @@ msgstr "No hay ninguna meta consola definida." #: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:236 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.wizard.php:148 -#: ../../include/functions_visual_map_editor.php:250 -#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175 +#: ../../mobile/operation/module_data.php:263 +#: ../../mobile/operation/server_status.php:282 +#: ../../mobile/operation/server_status.php:320 +#: ../../mobile/operation/server_status.php:350 +#: ../../mobile/operation/server_status.php:446 +#: ../../include/functions_visual_map_editor.php:246 +#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:180 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:344 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:524 -#: ../../include/functions_filemanager.php:681 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:670 +#: ../../include/functions_filemanager.php:696 msgid "Image" msgstr "Imagen" @@ -24677,8 +24812,8 @@ msgstr "Informe de los eventos de un módulo" #: ../../enterprise/include/functions_reporting_csv.php:480 #: ../../enterprise/include/functions_reporting.php:1221 #: ../../include/functions_reports.php:842 -#: ../../include/functions_reporting.php:8898 -#: ../../include/functions_reporting.php:9293 +#: ../../include/functions_reporting.php:8907 +#: ../../include/functions_reporting.php:9302 msgid "Availability" msgstr "Disponibilidad" @@ -24697,7 +24832,7 @@ msgid "Maximum value" msgstr "Valor máximo" #: ../../enterprise/include/functions_reporting_csv.php:673 -#: ../../include/functions_reporting_html.php:4562 +#: ../../include/functions_reporting_html.php:4590 msgid "Agent min value" msgstr "Valor mínimo del agente" @@ -24716,7 +24851,8 @@ msgstr "Inventario de agentes" #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../enterprise/operation/agentes/tag_view.php:695 -#: ../../operation/agentes/estado_generalagente.php:464 +#: ../../include/ajax/heatmap.ajax.php:483 +#: ../../operation/agentes/estado_generalagente.php:435 #: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 msgid "Remote" msgstr "Remoto" @@ -24739,7 +24875,7 @@ msgid "Agent groups" msgstr "Grupos de agentes" #: ../../enterprise/include/functions_reporting_csv.php:763 -#: ../../include/functions_reporting_html.php:1780 +#: ../../include/functions_reporting_html.php:1789 msgid "Agent secondary groups" msgstr "Grupos secundarios de agentes" @@ -24754,7 +24890,7 @@ msgid "Prediction date" msgstr "Fecha de predicción" #: ../../enterprise/include/functions_reporting_csv.php:838 -#: ../../include/functions_reporting.php:6800 +#: ../../include/functions_reporting.php:6809 msgid "Projection Graph" msgstr "Gráfico de proyección" @@ -24775,19 +24911,19 @@ msgid "Top %d" msgstr "Primeros %d" #: ../../enterprise/include/functions_reporting_csv.php:1019 -#: ../../include/functions_reporting.php:4186 +#: ../../include/functions_reporting.php:4195 msgid "Group Report" msgstr "Informe del grupo" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:289 -#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1082 -#: ../../mobile/operation/groups.php:147 -#: ../../include/functions_reporting_html.php:5896 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1094 +#: ../../mobile/operation/groups.php:186 +#: ../../include/functions_reporting_html.php:5924 #: ../../include/class/Diagnostics.class.php:583 -#: ../../include/functions_reporting.php:12308 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:697 -#: ../../include/functions_groups.php:2642 ../../operation/tree.php:501 +#: ../../include/functions_reporting.php:12381 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:690 +#: ../../include/functions_groups.php:2667 ../../operation/tree.php:503 msgid "Total agents" msgstr "Agentes totales" @@ -24797,17 +24933,17 @@ msgstr "Agentes desconocidos" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:290 -#: ../../godmode/groups/group_list.php:1083 +#: ../../godmode/groups/group_list.php:1095 #: ../../godmode/module_library/module_library_view.php:159 #: ../../include/class/Diagnostics.class.php:587 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:698 -#: ../../operation/tree.php:502 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:691 +#: ../../operation/tree.php:504 msgid "Total modules" msgstr "Módulos totales" #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../include/functions_reporting.php:12155 -#: ../../include/functions_groups.php:2700 +#: ../../include/functions_reporting.php:12228 +#: ../../include/functions_groups.php:2725 msgid "Defined alerts" msgstr "Alertas definidas" @@ -24815,18 +24951,21 @@ msgstr "Alertas definidas" #: ../../enterprise/operation/services/services.treeview_services.php:294 #: ../../enterprise/operation/services/services.treeview_services.php:295 #: ../../enterprise/operation/services/services.treeview_services.php:296 -#: ../../godmode/groups/group_list.php:1087 -#: ../../godmode/groups/group_list.php:1088 -#: ../../godmode/groups/group_list.php:1089 -#: ../../include/functions_graph.php:2608 -#: ../../include/functions_reporting.php:12171 -#: ../../include/functions_reporting.php:12192 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:702 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:703 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:704 -#: ../../include/functions_groups.php:2718 -#: ../../include/functions_groups.php:2741 ../../operation/tree.php:506 -#: ../../operation/tree.php:507 ../../operation/tree.php:508 +#: ../../godmode/groups/group_list.php:1099 +#: ../../godmode/groups/group_list.php:1100 +#: ../../godmode/groups/group_list.php:1101 +#: ../../include/functions_graph.php:2618 +#: ../../include/functions_reporting.php:12244 +#: ../../include/functions_reporting.php:12265 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:407 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:442 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:695 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:696 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:697 +#: ../../include/functions_groups.php:2743 +#: ../../include/functions_groups.php:2766 ../../operation/tree.php:213 +#: ../../operation/tree.php:304 ../../operation/tree.php:508 +#: ../../operation/tree.php:509 ../../operation/tree.php:510 msgid "Fired alerts" msgstr "Alertas disparadas" @@ -24863,8 +25002,8 @@ msgstr "Gráfico circular de SQL" #: ../../enterprise/include/functions_reporting_csv.php:1238 #: ../../enterprise/include/functions_reporting_csv.php:1240 #: ../../include/functions_reports.php:766 -#: ../../include/functions_reporting.php:7106 -#: ../../include/functions_reporting.php:10571 +#: ../../include/functions_reporting.php:7115 +#: ../../include/functions_reporting.php:10580 msgid "Summatory" msgstr "Sumatorio" @@ -24876,7 +25015,7 @@ msgid "Minimum Value" msgstr "Valor mínimo" #: ../../enterprise/include/functions_reporting_csv.php:1285 -#: ../../include/functions_reporting.php:10575 +#: ../../include/functions_reporting.php:10584 msgid "Minimum" msgstr "Mínimo" @@ -24891,37 +25030,37 @@ msgstr "Valor máximo" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../enterprise/include/functions_reporting_csv.php:1379 #: ../../enterprise/include/functions_reporting_csv.php:1390 -#: ../../include/functions_reporting_html.php:4017 +#: ../../include/functions_reporting_html.php:4045 #: ../../include/functions_reports.php:774 -#: ../../include/functions_reporting.php:10031 +#: ../../include/functions_reporting.php:10040 msgid "Increment" msgstr "Incremento" #: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../include/functions_reporting_html.php:4015 +#: ../../include/functions_reporting_html.php:4043 msgid "From data" msgstr "Desde datos" #: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../include/functions_reporting_html.php:4016 +#: ../../include/functions_reporting_html.php:4044 msgid "To data" msgstr "hasta datos" #: ../../enterprise/include/functions_reporting_csv.php:1381 #: ../../enterprise/include/functions_reporting_csv.php:1392 -#: ../../include/functions_reporting_html.php:4044 +#: ../../include/functions_reporting_html.php:4072 msgid "Negative increase: " msgstr "Incremento negativo: " #: ../../enterprise/include/functions_reporting_csv.php:1383 #: ../../enterprise/include/functions_reporting_csv.php:1394 -#: ../../include/functions_reporting_html.php:4046 +#: ../../include/functions_reporting_html.php:4074 msgid "Positive increase: " msgstr "Incremento positivo: " #: ../../enterprise/include/functions_reporting_csv.php:1385 #: ../../enterprise/include/functions_reporting_csv.php:1396 -#: ../../include/functions_reporting_html.php:4048 +#: ../../include/functions_reporting_html.php:4076 msgid "Neutral increase: " msgstr "Incremento neutral: " @@ -24930,7 +25069,7 @@ msgstr "Incremento neutral: " #: ../../enterprise/include/functions_reporting_csv.php:1431 #: ../../enterprise/include/functions_reporting_csv.php:1437 #: ../../enterprise/include/functions_reporting_csv.php:1439 -#: ../../include/functions_reporting.php:7111 +#: ../../include/functions_reporting.php:7120 msgid "AVG. Value" msgstr "Valor medio" @@ -24941,7 +25080,7 @@ msgstr "Media" #: ../../enterprise/include/functions_reporting_csv.php:1465 #: ../../enterprise/include/functions_reporting_csv.php:1483 #: ../../enterprise/include/functions_reporting_csv.php:1485 -#: ../../include/functions_reporting.php:6442 +#: ../../include/functions_reporting.php:6451 msgid "Monitor Report" msgstr "Informe de monitores" @@ -25058,8 +25197,8 @@ msgstr "Estado " #: ../../enterprise/include/functions_reporting.php:3988 #: ../../enterprise/include/functions_reporting.php:6182 #: ../../include/functions_reporting_html.php:670 -#: ../../include/functions_config.php:1337 -#: ../../include/functions_config.php:3541 +#: ../../include/functions_config.php:1353 +#: ../../include/functions_config.php:3565 msgid "Fail" msgstr "Fallo" @@ -25240,7 +25379,7 @@ msgstr "Estado del día" #: ../../enterprise/include/functions_reporting_csv.php:1787 #: ../../enterprise/include/functions_reporting_csv.php:2095 -#: ../../include/functions_html.php:2322 +#: ../../include/functions_html.php:2337 msgid "Month" msgstr "Mes" @@ -25345,7 +25484,7 @@ msgstr "Redes IPAM" #: ../../enterprise/include/functions_reporting_csv.php:1984 #: ../../enterprise/include/functions_reporting.php:2336 #: ../../godmode/events/custom_events.php:94 -#: ../../include/functions_events.php:244 ../../operation/events/events.php:2665 +#: ../../include/functions_events.php:244 ../../operation/events/events.php:2719 msgid "Agent ID" msgstr "ID de agente" @@ -25357,16 +25496,16 @@ msgstr "ID de agente" #: ../../enterprise/tools/ipam/ipam_ajax.php:295 #: ../../enterprise/tools/ipam/ipam_ajax.php:482 #: ../../enterprise/tools/ipam/ipam_massive.php:105 -#: ../../godmode/users/configure_user.php:1218 -#: ../../godmode/users/user_management.php:684 -#: ../../mobile/operation/events.php:849 -#: ../../include/functions_reporting_html.php:6016 -#: ../../include/functions.php:3109 ../../include/ajax/events.php:1763 +#: ../../godmode/users/configure_user.php:1282 +#: ../../godmode/users/user_management.php:710 +#: ../../mobile/operation/events.php:878 +#: ../../include/functions_reporting_html.php:6050 +#: ../../include/functions.php:3109 ../../include/ajax/events.php:1764 #: ../../include/class/AuditLog.class.php:114 -#: ../../operation/users/user_edit.php:743 +#: ../../operation/users/user_edit.php:740 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:333 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:426 -#: ../../general/logon_ok.php:259 +#: ../../general/logon_ok.php:304 msgid "Comments" msgstr "Comentarios" @@ -25399,7 +25538,7 @@ msgstr "Tiempo total" #: ../../enterprise/include/functions_reporting_csv.php:2031 #: ../../enterprise/include/functions_reporting.php:4991 #: ../../include/functions_reporting_html.php:588 -#: ../../include/functions_reporting_html.php:4157 +#: ../../include/functions_reporting_html.php:4185 msgid "Time OK" msgstr "Tiempo OK" @@ -25410,7 +25549,7 @@ msgstr "Tiempo de error" #: ../../enterprise/include/functions_reporting_csv.php:2033 #: ../../enterprise/include/functions_reporting.php:4992 #: ../../include/functions_reporting_html.php:589 -#: ../../include/functions_reporting_html.php:4169 +#: ../../include/functions_reporting_html.php:4197 msgid "Time Unknown" msgstr "Tiempo desconocido" @@ -25421,7 +25560,7 @@ msgid "Time Not Init" msgstr "Tiempo no iniciado" #: ../../enterprise/include/functions_reporting_csv.php:2035 -#: ../../include/functions_reporting_html.php:4181 +#: ../../include/functions_reporting_html.php:4209 msgid "Time Downtime" msgstr "Tiempo de parada planificada" @@ -25434,7 +25573,7 @@ msgstr "Comprobaciones totales" #: ../../enterprise/include/functions_reporting_csv.php:2037 #: ../../enterprise/include/functions_reporting.php:5086 #: ../../include/functions_reporting_html.php:622 -#: ../../include/functions_reporting_html.php:4251 +#: ../../include/functions_reporting_html.php:4279 msgid "Checks OK" msgstr "Comprobaciones OK" @@ -25601,17 +25740,17 @@ msgid "Custom Graph" msgstr "Gráfica personalizada" #: ../../enterprise/include/functions_reporting_csv.php:2493 -#: ../../include/functions_reporting.php:6150 +#: ../../include/functions_reporting.php:6159 msgid "Alert Report Module" msgstr "Informe de alertas de módulo" #: ../../enterprise/include/functions_reporting_csv.php:2495 -#: ../../include/functions_reporting.php:5983 +#: ../../include/functions_reporting.php:5992 msgid "Alert Report Agent" msgstr "Informe de alertas de agente" #: ../../enterprise/include/functions_reporting_csv.php:2497 -#: ../../include/functions_reporting.php:5803 +#: ../../include/functions_reporting.php:5812 msgid "Alert Report Group" msgstr "Informe de alertas de grupo" @@ -25630,20 +25769,20 @@ msgstr "Log de informes de eventos" #: ../../enterprise/include/functions_reporting_csv.php:2581 #: ../../include/functions_reports.php:951 #: ../../include/functions_reports.php:952 -#: ../../include/functions_reporting.php:5108 +#: ../../include/functions_reporting.php:5117 msgid "Permissions report" msgstr "Informe de permisos" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../godmode/users/user_list.php:572 -#: ../../godmode/users/configure_user.php:1001 -#: ../../godmode/users/configure_user.php:1060 +#: ../../godmode/users/user_list.php:573 +#: ../../godmode/users/configure_user.php:1049 +#: ../../godmode/users/configure_user.php:1124 #: ../../godmode/users/user_management.php:143 #: ../../godmode/users/user_management.php:155 -#: ../../include/functions_reporting_html.php:5305 -#: ../../include/functions_reporting_html.php:6436 -#: ../../include/functions_reporting_html.php:6459 +#: ../../include/functions_reporting_html.php:5333 +#: ../../include/functions_reporting_html.php:6470 +#: ../../include/functions_reporting_html.php:6493 #: ../../include/class/SnmpConsole.class.php:278 #: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:291 msgid "User ID" @@ -25652,15 +25791,15 @@ msgstr "ID usuario" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 #: ../../godmode/users/user_management.php:166 -#: ../../include/functions_reporting_html.php:6437 -#: ../../include/functions_reporting_html.php:6460 +#: ../../include/functions_reporting_html.php:6471 +#: ../../include/functions_reporting_html.php:6494 msgid "Full name" msgstr "Nombre completo" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../include/functions_reporting_html.php:6438 -#: ../../include/functions_reporting_html.php:6461 +#: ../../include/functions_reporting_html.php:6472 +#: ../../include/functions_reporting_html.php:6495 msgid "Permissions" msgstr "Permisos" @@ -25713,23 +25852,23 @@ msgid "Agent/module status" msgstr "Estado del agente/módulo" #: ../../enterprise/include/functions_reporting_csv.php:2792 -#: ../../include/functions_reporting_html.php:2358 +#: ../../include/functions_reporting_html.php:2379 msgid "Last time" msgstr "Última vez" #: ../../enterprise/include/functions_reporting_csv.php:2836 #: ../../include/functions_reports.php:938 -#: ../../include/functions_reporting.php:6597 +#: ../../include/functions_reporting.php:6606 msgid "Netflow top-N connections" msgstr "Conexiones Netflow top-N" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../mobile/operation/tactical.php:351 -#: ../../include/functions_reporting_html.php:6015 +#: ../../mobile/operation/tactical.php:352 +#: ../../include/functions_reporting_html.php:6049 #: ../../include/functions.php:3109 ../../include/functions_netflow.php:347 #: ../../include/class/AuditLog.class.php:113 #: ../../operation/snmpconsole/snmp_statistics.php:183 -#: ../../general/logon_ok.php:258 +#: ../../general/logon_ok.php:303 msgid "Source IP" msgstr "IP origen" @@ -25739,8 +25878,8 @@ msgid "Destination IP" msgstr "IP de destino" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../include/functions_config.php:1024 -#: ../../include/functions_config.php:3453 +#: ../../include/functions_config.php:1036 +#: ../../include/functions_config.php:3477 #: ../../include/functions_netflow.php:349 #: ../../operation/network/network_report.php:294 #: ../../operation/network/network_report.php:326 @@ -25811,6 +25950,8 @@ msgid "Public Key Authentication Failed" msgstr "Error en la autenticación de clave pública" #: ../../enterprise/include/functions_HA_cluster.php:268 +#: ../../godmode/setup/setup_ehorus.php:136 +#: ../../godmode/setup/setup_integria.php:666 msgid "Connection failed" msgstr "Conexion fallida" @@ -25823,7 +25964,7 @@ msgid "Register new node" msgstr "Registrar nuevo nodo" #: ../../enterprise/include/functions_HA_cluster.php:496 -#: ../../include/class/NetworkMap.class.php:3156 +#: ../../include/class/NetworkMap.class.php:3162 msgid "Update node" msgstr "Actualizar nodo" @@ -25886,7 +26027,7 @@ msgstr "Acceso no autorizado" #: ../../enterprise/include/class/Google.cloud.php:762 #: ../../enterprise/include/class/Oracle.app.php:452 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:457 -#: ../../godmode/wizards/HostDevices.class.php:839 +#: ../../godmode/wizards/HostDevices.class.php:835 #: ../../godmode/wizards/DiscoveryTaskList.class.php:593 #: ../../include/class/CustomNetScan.class.php:452 msgid "Task name" @@ -25943,27 +26084,27 @@ msgstr "Resumen del rendimiento de la red" #: ../../enterprise/include/class/VMware.app.php:1040 #: ../../enterprise/include/class/DB2.app.php:888 #: ../../enterprise/include/class/Aws.S3.php:665 -#: ../../enterprise/include/class/SAP.app.php:950 +#: ../../enterprise/include/class/SAP.app.php:951 #: ../../enterprise/include/class/Aws.cloud.php:1621 #: ../../enterprise/include/class/MySQL.app.php:963 #: ../../enterprise/include/class/Google.cloud.php:955 #: ../../enterprise/include/class/Oracle.app.php:995 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:850 #: ../../godmode/wizards/HostDevices.class.php:1637 -#: ../../include/class/CustomNetScan.class.php:775 +#: ../../include/class/CustomNetScan.class.php:774 msgid "Task configured." msgstr "Tarea configurada." #: ../../enterprise/include/class/Azure.cloud.php:997 #: ../../enterprise/include/class/VMware.app.php:1044 #: ../../enterprise/include/class/DB2.app.php:892 -#: ../../enterprise/include/class/SAP.app.php:954 +#: ../../enterprise/include/class/SAP.app.php:955 #: ../../enterprise/include/class/MySQL.app.php:967 #: ../../enterprise/include/class/Google.cloud.php:959 #: ../../enterprise/include/class/Oracle.app.php:999 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:854 #: ../../godmode/wizards/HostDevices.class.php:1641 -#: ../../include/class/CustomNetScan.class.php:779 +#: ../../include/class/CustomNetScan.class.php:778 msgid "Wizard failed. Cannot configure task." msgstr "Error del asistente. No puede configurar la tarea." @@ -26049,8 +26190,8 @@ msgstr "Aplicación" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:587 #: ../../godmode/setup/setup_integria.php:736 #: ../../godmode/wizards/HostDevices.class.php:782 -#: ../../include/class/CustomNetScan.class.php:559 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1240 +#: ../../include/class/CustomNetScan.class.php:558 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1241 msgid "Update and continue" msgstr "Actualizar y continuar" @@ -26072,7 +26213,7 @@ msgstr "" #: ../../enterprise/include/class/MySQL.app.php:462 #: ../../enterprise/include/class/Oracle.app.php:464 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:469 -#: ../../godmode/wizards/HostDevices.class.php:850 +#: ../../godmode/wizards/HostDevices.class.php:846 #: ../../include/class/CustomNetScan.class.php:486 msgid "" "You must select a Discovery Server to run the Task, otherwise the Recon Task " @@ -26110,8 +26251,8 @@ msgstr "" #: ../../enterprise/include/class/Oracle.app.php:561 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:565 #: ../../godmode/wizards/HostDevices.class.php:807 -#: ../../include/functions_reporting_html.php:2590 -#: ../../include/class/CustomNetScan.class.php:534 +#: ../../include/functions_reporting_html.php:2611 +#: ../../include/class/CustomNetScan.class.php:536 msgid "Defined" msgstr "Definido" @@ -26138,7 +26279,7 @@ msgstr "Cifrar contraseñas" #: ../../enterprise/include/class/VMware.app.php:762 #: ../../enterprise/include/class/DB2.app.php:478 #: ../../enterprise/include/class/Aws.S3.php:442 -#: ../../enterprise/include/class/SAP.app.php:635 +#: ../../enterprise/include/class/SAP.app.php:636 #: ../../enterprise/include/class/Aws.cloud.php:1253 #: ../../enterprise/include/class/MySQL.app.php:483 #: ../../enterprise/include/class/Oracle.app.php:485 @@ -26416,16 +26557,16 @@ msgstr "Escaneo de red programado. Puede ver el progreso en %s." #: ../../enterprise/include/class/DeploymentCenter.class.php:1296 #: ../../enterprise/include/class/SAP.app.php:593 #: ../../enterprise/include/class/SAP.app.php:596 -#: ../../godmode/wizards/HostDevices.class.php:1472 -#: ../../godmode/wizards/HostDevices.class.php:1475 +#: ../../godmode/wizards/HostDevices.class.php:1468 +#: ../../godmode/wizards/HostDevices.class.php:1471 msgid "No credentials available" msgstr "No hay credenciales disponibles" #: ../../enterprise/include/class/DeploymentCenter.class.php:1160 #: ../../enterprise/include/class/DeploymentCenter.class.php:1294 #: ../../enterprise/include/class/SAP.app.php:594 -#: ../../godmode/agentes/module_manager_editor_network.php:525 -#: ../../godmode/wizards/HostDevices.class.php:1473 +#: ../../godmode/agentes/module_manager_editor_network.php:530 +#: ../../godmode/wizards/HostDevices.class.php:1469 msgid "Manage credentials" msgstr "Gestionar credenciales" @@ -26438,7 +26579,7 @@ msgid "Scan from" msgstr "Escanear desde" #: ../../enterprise/include/class/DeploymentCenter.class.php:1202 -#: ../../godmode/wizards/HostDevices.class.php:1485 +#: ../../godmode/wizards/HostDevices.class.php:1481 msgid "Credentials to try with" msgstr "Credenciales con los que probar" @@ -26541,13 +26682,14 @@ msgstr "Programado correctamente" #: ../../enterprise/tools/ipam/ipam_ajax.php:422 #: ../../enterprise/tools/ipam/ipam_massive.php:140 #: ../../godmode/modules/manage_network_components_form_wizard.php:247 -#: ../../godmode/groups/group_list.php:942 -#: ../../godmode/agentes/module_manager_editor_common.php:698 -#: ../../godmode/agentes/module_manager_editor_common.php:708 -#: ../../godmode/massive/massive_edit_agents.php:1137 +#: ../../godmode/groups/group_list.php:954 +#: ../../godmode/agentes/module_manager_editor_common.php:703 +#: ../../godmode/agentes/module_manager_editor_common.php:706 +#: ../../godmode/agentes/module_manager_editor_common.php:717 +#: ../../godmode/massive/massive_edit_agents.php:1153 #: ../../godmode/alerts/configure_alert_template.php:919 -#: ../../include/functions_visual_map_editor.php:823 -#: ../../include/functions_reporting_html.php:3674 +#: ../../include/functions_visual_map_editor.php:871 +#: ../../include/functions_reporting_html.php:3702 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:406 #: ../../operation/agentes/estado_generalagente.php:314 msgid "Enabled" @@ -26786,8 +26928,8 @@ msgstr "Plantilla actualizada" #: ../../enterprise/include/lib/Metaconsole/Node.php:1454 #: ../../include/class/CalendarManager.class.php:570 #: ../../include/class/CalendarManager.class.php:946 -#: ../../include/functions_reporting.php:5462 -#: ../../include/functions_reporting.php:5490 +#: ../../include/functions_reporting.php:5471 +#: ../../include/functions_reporting.php:5499 #, php-format msgid "Error: %s" msgstr "Error: %s" @@ -27237,7 +27379,7 @@ msgid "Log monitoring is disabled. %s" msgstr "La monitorización de logs está desactivada. %s" #: ../../enterprise/include/class/LogSource.class.php:658 -#: ../../enterprise/include/class/LogSource.class.php:825 +#: ../../enterprise/include/class/LogSource.class.php:822 msgid "Add log source" msgstr "Añadir fuente de logs" @@ -27245,7 +27387,7 @@ msgstr "Añadir fuente de logs" msgid "Source name" msgstr "Nombre de la fuente" -#: ../../enterprise/include/class/LogSource.class.php:829 +#: ../../enterprise/include/class/LogSource.class.php:826 msgid "Update log source" msgstr "Actualizar fuente del log" @@ -27556,90 +27698,90 @@ msgid "SAP System Number" msgstr "Número del sistema SAP" #: ../../enterprise/include/class/SAP.app.php:606 -#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/SAP.app.php:621 msgid "SAP Credentials" msgstr "Credenciales SAP" #: ../../enterprise/include/class/SAP.app.php:606 -#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/SAP.app.php:621 msgid "Optional" msgstr "Opcional" -#: ../../enterprise/include/class/SAP.app.php:651 +#: ../../enterprise/include/class/SAP.app.php:652 msgid "SAP License" msgstr "Licencia SAP" -#: ../../enterprise/include/class/SAP.app.php:747 +#: ../../enterprise/include/class/SAP.app.php:748 #: ../../include/functions_agents.php:4095 msgid "SAP Login OK" msgstr "Inicio de sesión SAP correcto" -#: ../../enterprise/include/class/SAP.app.php:748 +#: ../../enterprise/include/class/SAP.app.php:749 #: ../../include/functions_agents.php:4096 msgid "SAP Dumps" msgstr "Volcados SAP" -#: ../../enterprise/include/class/SAP.app.php:749 +#: ../../enterprise/include/class/SAP.app.php:750 #: ../../include/functions_agents.php:4097 msgid "SAP lock entry list" msgstr "Lista de entradas de bloqueo SAP" -#: ../../enterprise/include/class/SAP.app.php:750 +#: ../../enterprise/include/class/SAP.app.php:751 #: ../../include/functions_agents.php:4098 msgid "SAP canceled Jobs" msgstr "Trabajos SAP cancelados" -#: ../../enterprise/include/class/SAP.app.php:751 +#: ../../enterprise/include/class/SAP.app.php:752 #: ../../include/functions_agents.php:4099 msgid "SAP Batch inputs erroneous" msgstr "Entradas SAP en grupo erróneas" -#: ../../enterprise/include/class/SAP.app.php:752 +#: ../../enterprise/include/class/SAP.app.php:753 #: ../../include/functions_agents.php:4100 msgid "SAP IDOC erroneous" msgstr "SAP IDOC erróneo" -#: ../../enterprise/include/class/SAP.app.php:753 +#: ../../enterprise/include/class/SAP.app.php:754 #: ../../include/functions_agents.php:4101 msgid "SAP IDOC OK" msgstr "SAP IDOC OK" -#: ../../enterprise/include/class/SAP.app.php:754 +#: ../../enterprise/include/class/SAP.app.php:755 #: ../../include/functions_agents.php:4102 msgid "SAP WP without active restart" msgstr "WP SAP sin reinicio activo" -#: ../../enterprise/include/class/SAP.app.php:755 +#: ../../enterprise/include/class/SAP.app.php:756 #: ../../include/functions_agents.php:4103 msgid "SAP WP stopped" msgstr "WP SAP parado" -#: ../../enterprise/include/class/SAP.app.php:756 +#: ../../enterprise/include/class/SAP.app.php:757 #: ../../include/functions_agents.php:4104 msgid "Average time of SAPGUI response" msgstr "Media de tiempo de respuesta de SAPGUI" -#: ../../enterprise/include/class/SAP.app.php:757 +#: ../../enterprise/include/class/SAP.app.php:758 #: ../../include/functions_agents.php:4106 msgid "Dialog Logged users" msgstr "Usuarios conectados en el diálogo" -#: ../../enterprise/include/class/SAP.app.php:758 +#: ../../enterprise/include/class/SAP.app.php:759 #: ../../include/functions_agents.php:4107 msgid "TRFC in error" msgstr "TRFC en error" -#: ../../enterprise/include/class/SAP.app.php:759 +#: ../../enterprise/include/class/SAP.app.php:760 #: ../../include/functions_agents.php:4108 msgid "QRFC in error SMQ2" msgstr "QRFC en error SMQ2" -#: ../../enterprise/include/class/SAP.app.php:760 +#: ../../enterprise/include/class/SAP.app.php:761 #: ../../include/functions_agents.php:4109 msgid "Number of Update WPs in error" msgstr "Número de WPs de actualización en error" -#: ../../enterprise/include/class/SAP.app.php:784 +#: ../../enterprise/include/class/SAP.app.php:785 #, php-format msgid "" "Module 180 must be customized before being used, please use advanced options " @@ -27648,40 +27790,40 @@ msgstr "" "El módulo 180 debe personalizarse antes de usarse, use las opciones avanzadas " "para definir el módulo siguiendo la documentación:
%s" -#: ../../enterprise/include/class/SAP.app.php:805 +#: ../../enterprise/include/class/SAP.app.php:806 #: ../../godmode/agentes/planned_downtime.editor.php:1257 msgid "Available modules" msgstr "Módulos disponibles" -#: ../../enterprise/include/class/SAP.app.php:829 +#: ../../enterprise/include/class/SAP.app.php:830 msgid "Add monitors" msgstr "Añadir monitores" -#: ../../enterprise/include/class/SAP.app.php:842 +#: ../../enterprise/include/class/SAP.app.php:843 msgid "Remove monitors" msgstr "Eliminar monitores" -#: ../../enterprise/include/class/SAP.app.php:853 -#: ../../enterprise/operation/services/massive/services.create.php:1321 +#: ../../enterprise/include/class/SAP.app.php:854 +#: ../../enterprise/operation/services/massive/services.create.php:1333 #: ../../enterprise/operation/services/massive/service.delete.elements.php:278 #: ../../enterprise/operation/services/massive/service.create.elements.php:626 #: ../../enterprise/operation/services/massive/service.edit.elements.php:385 msgid "Selected modules" msgstr "Módulos seleccionados" -#: ../../enterprise/include/class/SAP.app.php:893 +#: ../../enterprise/include/class/SAP.app.php:894 msgid "Define your custom SAP modules." msgstr "Defina sus módulos SAP personalizados." -#: ../../enterprise/include/class/SAP.app.php:892 +#: ../../enterprise/include/class/SAP.app.php:893 msgid "Advanced module configuration" msgstr "Configuración de módulos avanzada" -#: ../../enterprise/include/class/SAP.app.php:902 +#: ../../enterprise/include/class/SAP.app.php:903 msgid "Custom module definitions" msgstr "Definiciones de módulos personalizadas" -#: ../../enterprise/include/class/SAP.app.php:903 +#: ../../enterprise/include/class/SAP.app.php:904 msgid "" "Each line is a module definition using following format: module name ; " "module_type ; SAP check definition." @@ -28242,7 +28384,7 @@ msgid "Remove item" msgstr "Eliminar elemento" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1979 -#: ../../operation/agentes/estado_monitores.php:639 +#: ../../operation/agentes/estado_monitores.php:631 msgid "Reset" msgstr "Reiniciar" @@ -28377,9 +28519,10 @@ msgid "Fields used on execution when the alert is fired" msgstr "Campos usados en la ejecución cuando la alerta es disparada" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2802 +#: ../../godmode/users/configure_user.php:63 #: ../../godmode/users/user_management.php:42 #: ../../godmode/massive/massive_edit_users.php:278 -#: ../../operation/users/user_edit.php:473 +#: ../../include/auth/mysql.php:811 ../../operation/users/user_edit.php:473 #: ../../operation/agentes/alerts_status.php:189 ../../operation/menu.php:194 msgid "Alert detail" msgstr "Detalle de alertas" @@ -28407,9 +28550,9 @@ msgstr "Coincidencias" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3011 #: ../../godmode/alerts/alert_list.list.php:170 #: ../../mobile/operation/alerts.php:66 -#: ../../include/functions_reporting_html.php:2591 -#: ../../include/functions_reporting_html.php:3451 -#: ../../include/functions_reporting_html.php:3452 +#: ../../include/functions_reporting_html.php:2612 +#: ../../include/functions_reporting_html.php:3479 +#: ../../include/functions_reporting_html.php:3480 #: ../../operation/agentes/alerts_status.functions.php:99 msgid "Fired" msgstr "Disparada" @@ -28459,7 +28602,7 @@ msgstr "¿Está seguro de que quiere poner la alerta en suspensión?" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3385 #: ../../enterprise/operation/agentes/policy_view.php:293 #: ../../godmode/alerts/alert_list.list.php:192 -#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1274 +#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1311 #: ../../operation/agentes/alerts_status.functions.php:104 msgid "Standby on" msgstr "Modo standby activado" @@ -28526,7 +28669,7 @@ msgstr "" #: ../../enterprise/include/class/CommandCenter.class.php:171 #: ../../enterprise/include/functions_groups.php:49 -#: ../../include/ajax/module.php:1834 +#: ../../include/ajax/module.php:1862 msgid "Metaconsole" msgstr "Metaconsola" @@ -28576,7 +28719,7 @@ msgid "Please restore your backups" msgstr "Restaure sus copias de seguridad" #: ../../enterprise/include/class/CommandCenter.class.php:454 -#: ../../include/functions_ui.php:7102 +#: ../../include/functions_ui.php:7174 msgid "Query" msgstr "Consulta" @@ -28586,8 +28729,8 @@ msgid "Table" msgstr "Tabla" #: ../../enterprise/include/class/CommandCenter.class.php:456 -#: ../../include/class/Heatmap.class.php:1302 -#: ../../general/reporting_console_node.php:65 +#: ../../include/class/Heatmap.class.php:1358 +#: ../../general/reporting_console_node.php:70 msgid "Info" msgstr "Información" @@ -28618,8 +28761,8 @@ msgstr "El proceso se ha completado correctamente" #: ../../enterprise/include/class/CommandCenter.class.php:463 #: ../../enterprise/include/functions_login.php:213 -#: ../../include/functions_menu.php:883 -#: ../../include/class/Diagnostics.class.php:1846 +#: ../../include/functions_menu.php:888 +#: ../../include/class/Diagnostics.class.php:1850 msgid "Successfully" msgstr "Correcto" @@ -28794,12 +28937,12 @@ msgstr "" #: ../../extensions/files_repo/files_repo_list.php:57 #: ../../godmode/events/event_responses.editor.php:175 #: ../../include/functions_visual_map_editor.php:125 -#: ../../include/functions_visual_map_editor.php:178 -#: ../../include/functions_visual_map_editor.php:836 -#: ../../include/functions_visual_map_editor.php:931 +#: ../../include/functions_visual_map_editor.php:174 +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/functions_visual_map_editor.php:979 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:214 -#: ../../include/rest-api/models/VisualConsole/Item.php:1992 -#: ../../include/functions_filemanager.php:646 +#: ../../include/rest-api/models/VisualConsole/Item.php:1995 +#: ../../include/functions_filemanager.php:661 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:135 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:266 msgid "Size" @@ -28838,7 +28981,7 @@ msgid "Missed id parameter." msgstr "Parámetro id omitido." #: ../../enterprise/include/class/ManageBackups.class.php:433 -#: ../../include/class/AuditLog.class.php:412 +#: ../../include/class/AuditLog.class.php:424 msgid "There is no additional information to display" msgstr "No hay información adicional que mostrar" @@ -28854,11 +28997,11 @@ msgstr "" msgid "Do you like perform a database restoration?" msgstr "¿Desea realizar una restauración de base de datos?" -#: ../../enterprise/include/functions_enterprise.php:451 +#: ../../enterprise/include/functions_enterprise.php:461 msgid "Tree view by tags" msgstr "Vista de árbol por etiquetas" -#: ../../enterprise/include/functions_enterprise.php:481 +#: ../../enterprise/include/functions_enterprise.php:491 msgid "" "If the interval of days until events data purge is shorter than the events " "data history storage interval, data will be lost. It is recommended that the " @@ -28869,14 +29012,14 @@ msgstr "" "datos. Se recomienda configurar una frecuencia de almacenamiento inferior a la " "frecuencia de purga." -#: ../../enterprise/include/functions_enterprise.php:483 +#: ../../enterprise/include/functions_enterprise.php:493 msgid "" "Problems with event days purge and event days that pass data to history DB." msgstr "" "Problemas con la fecha de purga de eventos y la fecha de traspaso de " "información a histórico." -#: ../../enterprise/include/functions_enterprise.php:494 +#: ../../enterprise/include/functions_enterprise.php:504 msgid "" "If days purge is less than history days pass to history db, you will have a " "problems and you lost data. Recommended that days purge will more taller than " @@ -28886,7 +29029,7 @@ msgstr "" "perderán. Recomendamos poner una fecha de purga mayor a la del traspaso de " "datos a histórico." -#: ../../enterprise/include/functions_enterprise.php:496 +#: ../../enterprise/include/functions_enterprise.php:506 msgid "Problems with days purge and days that pass data to history DB" msgstr "" "Problemas con la fecha de purga y la fecha de traspaso de información al " @@ -28939,7 +29082,7 @@ msgstr "Cumplimiento del SLA" #: ../../enterprise/include/functions_reporting.php:4223 #: ../../enterprise/include/functions_reporting.php:4874 #: ../../include/functions_reporting_html.php:877 -#: ../../include/functions_reporting_html.php:4881 +#: ../../include/functions_reporting_html.php:4909 msgid "Not Init" msgstr "No iniciado" @@ -28985,7 +29128,7 @@ msgstr "Log" #: ../../enterprise/include/functions_reporting.php:3458 #: ../../enterprise/include/functions_reporting.php:4434 #: ../../include/functions_reporting.php:1011 -#: ../../include/functions_reporting.php:9335 +#: ../../include/functions_reporting.php:9344 msgid "There are no SLAs defined" msgstr "No hay SLA definidos" @@ -28993,7 +29136,7 @@ msgstr "No hay SLA definidos" #: ../../enterprise/include/functions_reporting.php:3511 #: ../../enterprise/include/functions_reporting.php:4487 #: ../../include/functions_reporting.php:1086 -#: ../../include/functions_reporting.php:9713 +#: ../../include/functions_reporting.php:9722 msgid "Inverse" msgstr "Inverso" @@ -29042,7 +29185,7 @@ msgstr "SLA %" #: ../../enterprise/include/functions_reporting.php:6224 #: ../../enterprise/include/functions_services.php:1453 #: ../../include/functions_reporting_html.php:872 -#: ../../include/functions_reporting_html.php:4876 +#: ../../include/functions_reporting_html.php:4904 msgid "Unknow" msgstr "Desconocido" @@ -29050,7 +29193,7 @@ msgstr "Desconocido" #: ../../enterprise/include/functions_reporting.php:4228 #: ../../enterprise/include/functions_reporting.php:6229 #: ../../include/functions_reporting_html.php:882 -#: ../../include/functions_reporting_html.php:4886 +#: ../../include/functions_reporting_html.php:4914 msgid "Downtimes" msgstr "Paradas planificadas" @@ -29084,8 +29227,8 @@ msgstr "% tiempo ok" #: ../../include/functions_reporting_html.php:680 #: ../../include/functions_reporting_html.php:751 #: ../../include/functions_reporting_html.php:829 -#: ../../include/functions_reporting_html.php:4333 -#: ../../include/functions_reporting_html.php:4480 +#: ../../include/functions_reporting_html.php:4361 +#: ../../include/functions_reporting_html.php:4508 msgid "24 x 7" msgstr "24/7" @@ -29108,17 +29251,17 @@ msgid "Checks Critical" msgstr "Comprobaciones Crítico" #: ../../enterprise/include/functions_reporting.php:5085 -#: ../../include/functions_reporting_html.php:4257 +#: ../../include/functions_reporting_html.php:4285 msgid "Checks Warning" msgstr "Comprobaciones Advertencia" #: ../../enterprise/include/functions_reporting.php:5168 #: ../../include/functions_reporting_html.php:809 -#: ../../include/functions_reporting_html.php:4523 -#: ../../include/functions_reporting_html.php:5075 -#: ../../include/functions_reporting_html.php:5078 +#: ../../include/functions_reporting_html.php:4551 +#: ../../include/functions_reporting_html.php:5103 +#: ../../include/functions_reporting_html.php:5106 #: ../../include/functions_reporting.php:1656 -#: ../../include/functions_reporting.php:3735 +#: ../../include/functions_reporting.php:3744 msgid "There are no Agent/Modules defined" msgstr "No hay Agentes/Módulos definidos" @@ -29142,51 +29285,51 @@ msgid "Scheduled shutdow" msgstr "Parada planeada" #: ../../enterprise/include/functions_reporting.php:6600 -#: ../../enterprise/include/functions_reporting.php:7490 +#: ../../enterprise/include/functions_reporting.php:7499 #, php-format msgid "Graph agents(%s) - %s" msgstr "Gráficos de agentes (%s) - %s" -#: ../../enterprise/include/functions_reporting.php:7398 +#: ../../enterprise/include/functions_reporting.php:7407 #, php-format msgid "Graph agent(%s) - %s" msgstr "Gráfico de agente(%s) - %s" -#: ../../enterprise/include/functions_reporting.php:7845 +#: ../../enterprise/include/functions_reporting.php:7854 msgid "There is not data for the selected conditions" msgstr "No hay datos para las condiciones seleccionadas" -#: ../../enterprise/include/functions_reporting.php:8039 -#: ../../enterprise/include/functions_reporting.php:8105 +#: ../../enterprise/include/functions_reporting.php:8048 +#: ../../enterprise/include/functions_reporting.php:8114 msgid "Template editor" msgstr "Editor de plantillas" -#: ../../enterprise/include/functions_reporting.php:8171 +#: ../../enterprise/include/functions_reporting.php:8180 #: ../../enterprise/operation/reporting/custom_reporting.php:130 msgid "ID Report" msgstr "ID Informe" -#: ../../enterprise/include/functions_reporting.php:8239 +#: ../../enterprise/include/functions_reporting.php:8248 #: ../../enterprise/operation/reporting/custom_reporting.php:116 #: ../../enterprise/operation/reporting/custom_reporting.php:193 msgid "Send by email" msgstr "Enviar por correo electrónico" -#: ../../enterprise/include/functions_reporting.php:8327 +#: ../../enterprise/include/functions_reporting.php:8336 #: ../../enterprise/operation/reporting/custom_reporting.php:229 msgid "Send by email " msgstr "Enviar por correo electrónico " -#: ../../enterprise/include/functions_reporting.php:8368 +#: ../../enterprise/include/functions_reporting.php:8377 #: ../../include/functions_reports.php:655 msgid "Simple baseline graph" msgstr "Gráfico simple de línea base" -#: ../../enterprise/include/functions_reporting.php:8538 +#: ../../enterprise/include/functions_reporting.php:8547 msgid "Configuration changes" msgstr "Cambios en la configuración" -#: ../../enterprise/include/functions_reporting.php:8555 +#: ../../enterprise/include/functions_reporting.php:8564 msgid "No NCM capabilities detected" msgstr "No se han detectado capacidades de NCM" @@ -29351,40 +29494,52 @@ msgstr "Peso OK" #: ../../enterprise/include/functions_services.php:1672 #: ../../enterprise/include/functions_services.php:1717 #: ../../enterprise/include/functions_services.php:1785 +#: ../../mobile/operation/services.php:231 +#: ../../mobile/operation/services.php:272 +#: ../../mobile/operation/services.php:338 msgid "Nonexistent. This element should be deleted" msgstr "Inexistente. Este elemento debería eliminarse." #: ../../enterprise/include/functions_services.php:1700 #: ../../enterprise/include/functions_services.php:1767 #: ../../enterprise/include/functions_services.php:1813 +#: ../../mobile/operation/services.php:255 +#: ../../mobile/operation/services.php:320 +#: ../../mobile/operation/services.php:363 msgid "This element does not affect service weigth because is disabled." msgstr "El elemento no afecta al peso del servicio porque está deshabilitado." #: ../../enterprise/include/functions_services.php:1828 +#: ../../mobile/operation/services.php:386 #, php-format msgid "Dynamic element (%d) '%s' does not match any target" msgstr "El elemento dinámico (%d) '%s' no coincide con ningún objetivo" #: ../../enterprise/include/functions_services.php:1837 +#: ../../mobile/operation/services.php:395 #, php-format msgid "Dynamic element (%d) '%s' causes an error: %s" msgstr "El elemento dinámico (%d) '%s' provoca un error: %s" #: ../../enterprise/include/functions_services.php:1849 +#: ../../mobile/operation/services.php:377 msgid "Dynamic element" msgstr "Elemento dinámico" #: ../../enterprise/include/functions_services.php:1855 +#: ../../mobile/operation/services.php:405 #, php-format msgid "agents like \"%s\"" msgstr "agentes como \"%s\"" #: ../../enterprise/include/functions_services.php:1860 +#: ../../mobile/operation/services.php:410 #, php-format msgid "modules like \"%s\"" msgstr "módulos como \"%s\"" #: ../../enterprise/include/functions_services.php:1995 +#: ../../mobile/operation/services.php:450 msgid "NOT INITIALIZED" msgstr "NO INICIADO" @@ -29480,46 +29635,46 @@ msgstr "La contraseña tiene que contener símbolos." msgid "Invalid old password" msgstr "Contraseña antigua no válida" -#: ../../enterprise/include/functions_login.php:451 +#: ../../enterprise/include/functions_login.php:455 msgid "Password confirm does not match" msgstr "Las contraseñas no coinciden." -#: ../../enterprise/include/functions_login.php:458 +#: ../../enterprise/include/functions_login.php:462 msgid "Password empty" msgstr "La contraseña está vacía." -#: ../../enterprise/include/functions_login.php:577 -#: ../../godmode/users/configure_user.php:2065 -#: ../../godmode/users/configure_user.php:2134 -#: ../../godmode/users/configure_user.php:2205 +#: ../../enterprise/include/functions_login.php:581 +#: ../../godmode/users/configure_user.php:2117 +#: ../../godmode/users/configure_user.php:2186 +#: ../../godmode/users/configure_user.php:2257 #: ../../include/ajax/double_auth.ajax.php:267 #: ../../include/ajax/double_auth.ajax.php:365 #: ../../include/ajax/double_auth.ajax.php:411 #: ../../include/ajax/double_auth.ajax.php:527 -#: ../../operation/users/user_edit.php:1238 -#: ../../operation/users/user_edit.php:1304 -#: ../../operation/users/user_edit.php:1375 ../../general/register.php:165 +#: ../../operation/users/user_edit.php:1235 +#: ../../operation/users/user_edit.php:1301 +#: ../../operation/users/user_edit.php:1372 ../../general/register.php:165 #: ../../general/logon_failed.php:18 msgid "Authentication error" msgstr "Error de autentificación" -#: ../../enterprise/include/functions_login.php:584 -#: ../../godmode/users/configure_user.php:2071 -#: ../../godmode/users/configure_user.php:2140 +#: ../../enterprise/include/functions_login.php:588 +#: ../../godmode/users/configure_user.php:2123 +#: ../../godmode/users/configure_user.php:2192 #: ../../include/ajax/double_auth.ajax.php:274 #: ../../include/ajax/double_auth.ajax.php:372 #: ../../include/ajax/double_auth.ajax.php:418 #: ../../include/ajax/double_auth.ajax.php:535 -#: ../../operation/users/user_edit.php:1245 -#: ../../operation/users/user_edit.php:1311 ../../general/register.php:172 +#: ../../operation/users/user_edit.php:1242 +#: ../../operation/users/user_edit.php:1308 ../../general/register.php:172 msgid "There was an error loading the data" msgstr "Error al cargar los datos" -#: ../../enterprise/include/functions_login.php:593 -#: ../../godmode/users/configure_user.php:2148 -#: ../../godmode/users/configure_user.php:2224 -#: ../../operation/users/user_edit.php:1319 -#: ../../operation/users/user_edit.php:1395 ../../general/register.php:181 +#: ../../enterprise/include/functions_login.php:597 +#: ../../godmode/users/configure_user.php:2200 +#: ../../godmode/users/configure_user.php:2276 +#: ../../operation/users/user_edit.php:1316 +#: ../../operation/users/user_edit.php:1392 ../../general/register.php:181 msgid "Double authentication activation" msgstr "Activación de doble autenticación" @@ -29567,10 +29722,11 @@ msgid "Invalid plugin definition" msgstr "Definición de plugin no válida" #: ../../enterprise/include/lib/NetworkManager.php:82 -#: ../../godmode/setup/setup_ehorus.php:139 -#: ../../godmode/setup/setup_integria.php:652 -#: ../../operation/users/user_edit.php:872 -#: ../../operation/users/user_edit.php:925 +#: ../../godmode/setup/setup_ehorus.php:141 +#: ../../godmode/setup/setup_websocket_engine.php:91 +#: ../../godmode/setup/setup_integria.php:654 +#: ../../operation/users/user_edit.php:869 +#: ../../operation/users/user_edit.php:922 msgid "Test" msgstr "Probar" @@ -29662,7 +29818,7 @@ msgstr "Recursividad del grupo de eventos" #: ../../enterprise/include/lib/AlertCorrelation.class.php:1130 #: ../../include/functions_reporting_html.php:1057 #: ../../include/functions_reporting_html.php:1309 -#: ../../include/functions_reporting_html.php:2640 +#: ../../include/functions_reporting_html.php:2659 #: ../../include/class/SnmpConsole.class.php:276 msgid "Count" msgstr "Número" @@ -30392,22 +30548,22 @@ msgstr "La política ya se ha definido: \"%s\"" #: ../../enterprise/include/functions_events.php:40 #: ../../godmode/events/event_filter.php:147 -#: ../../godmode/events/event_edit_filter.php:391 +#: ../../godmode/events/event_edit_filter.php:393 #: ../../include/lib/Dashboard/Widgets/events_list.php:389 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:305 -#: ../../operation/events/events.php:1763 ../../operation/events/events.php:2385 +#: ../../operation/events/events.php:1817 ../../operation/events/events.php:2439 msgid "Event status" msgstr "Estado del evento" #: ../../enterprise/include/functions_events.php:101 -#: ../../godmode/events/event_edit_filter.php:501 -#: ../../operation/events/events.php:2008 +#: ../../godmode/events/event_edit_filter.php:503 +#: ../../operation/events/events.php:2062 msgid "User ack." msgstr "Validación del usuario" #: ../../enterprise/include/functions_events.php:111 -#: ../../godmode/events/event_edit_filter.php:558 -#: ../../godmode/events/event_edit_filter.php:574 +#: ../../godmode/events/event_edit_filter.php:560 +#: ../../godmode/events/event_edit_filter.php:576 msgid "Date from" msgstr "Fecha desde" @@ -30416,15 +30572,15 @@ msgid "Date to" msgstr "Fecha hasta" #: ../../enterprise/include/functions_events.php:131 -#: ../../godmode/events/event_edit_filter.php:542 -#: ../../mobile/operation/events.php:816 ../../include/functions_events.php:4968 -#: ../../operation/events/events.php:1795 +#: ../../godmode/events/event_edit_filter.php:544 +#: ../../mobile/operation/events.php:845 ../../include/functions_events.php:4973 +#: ../../operation/events/events.php:1849 msgid "Repeated" msgstr "Repetido" #: ../../enterprise/include/functions_events.php:141 -#: ../../godmode/events/event_edit_filter.php:759 -#: ../../operation/events/events.php:2054 +#: ../../godmode/events/event_edit_filter.php:761 +#: ../../operation/events/events.php:2108 msgid "Alert events" msgstr "Eventos de la alerta" @@ -30433,15 +30589,15 @@ msgid "Id source events" msgstr "Eventos fuente de ID" #: ../../enterprise/include/functions_events.php:162 -#: ../../godmode/events/event_edit_filter.php:475 -#: ../../mobile/operation/events.php:997 ../../include/functions_snmp.php:401 +#: ../../godmode/events/event_edit_filter.php:477 +#: ../../mobile/operation/events.php:1041 ../../include/functions_snmp.php:401 #: ../../include/class/SnmpConsole.class.php:407 #: ../../include/class/AuditLog.class.php:204 #: ../../include/lib/Dashboard/Widgets/events_list.php:347 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:286 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270 -#: ../../operation/events/events.php:1776 ../../operation/events/events.php:2415 +#: ../../operation/events/events.php:1830 ../../operation/events/events.php:2469 msgid "Max. hours old" msgstr "Máx. horas de antiguedad" @@ -30451,14 +30607,14 @@ msgid "More than 5 tags" msgstr "Más de 5 etiquetas" #: ../../enterprise/include/functions_events.php:184 -#: ../../godmode/events/event_edit_filter.php:629 -#: ../../operation/events/events.php:2255 ../../operation/events/events.php:2258 +#: ../../godmode/events/event_edit_filter.php:631 +#: ../../operation/events/events.php:2309 ../../operation/events/events.php:2312 msgid "Events with following tags" msgstr "Eventos con las siguientes etiquetas" #: ../../enterprise/include/functions_events.php:206 -#: ../../godmode/events/event_edit_filter.php:694 -#: ../../operation/events/events.php:2256 ../../operation/events/events.php:2259 +#: ../../godmode/events/event_edit_filter.php:696 +#: ../../operation/events/events.php:2310 ../../operation/events/events.php:2313 msgid "Events without following tags" msgstr "Eventos sin las siguientes etiquetas" @@ -30530,8 +30686,8 @@ msgid "Subscription" msgstr "Suscripción" #: ../../enterprise/include/functions_license.php:120 -#: ../../include/functions_menu.php:956 -#: ../../include/class/Diagnostics.class.php:1179 +#: ../../include/functions_menu.php:961 +#: ../../include/class/Diagnostics.class.php:1183 msgid "Support expires" msgstr "El soporte caduca" @@ -30553,7 +30709,7 @@ msgstr "Siguiente IP disponible" #: ../../enterprise/include/functions_ipam.php:1343 #: ../../enterprise/tools/ipam/ipam_ajax.php:486 -#: ../../include/ajax/events.php:1753 +#: ../../include/ajax/events.php:1754 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:73 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:394 msgid "Details" @@ -30561,12 +30717,12 @@ msgstr "Detalles" #: ../../enterprise/include/functions_ipam.php:1388 #: ../../enterprise/operation/services/services.list.php:677 -#: ../../godmode/agentes/inventory_manager.php:270 +#: ../../godmode/agentes/inventory_manager.php:271 #: ../../godmode/wizards/DiscoveryTaskList.class.php:589 #: ../../godmode/wizards/DiscoveryTaskList.class.php:679 -#: ../../operation/visual_console/view.php:424 -#: ../../operation/agentes/group_view.php:239 -#: ../../operation/agentes/group_view.php:302 +#: ../../operation/visual_console/view.php:426 +#: ../../operation/agentes/group_view.php:242 +#: ../../operation/agentes/group_view.php:305 msgid "Force" msgstr "Forzar" @@ -30973,7 +31129,7 @@ msgstr "Copia de" #: ../../enterprise/operation/agentes/ux_console_view.php:297 #: ../../enterprise/operation/agentes/ux_console_view.php:384 #: ../../enterprise/operation/agentes/wux_console_view.php:337 -#: ../../include/functions_ui.php:6749 +#: ../../include/functions_ui.php:6824 msgid "Snapshot view" msgstr "Vista de captura de pantalla" @@ -30984,9 +31140,11 @@ msgstr "No se han podido obtener datos del módulo de inventario." #: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 #: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 #: ../../godmode/reporting/visual_console_builder.wizard.php:589 -#: ../../mobile/operation/agents.php:463 ../../mobile/operation/modules.php:799 -#: ../../mobile/operation/module_graph.php:477 -#: ../../mobile/operation/events.php:1150 ../../mobile/operation/tactical.php:239 +#: ../../mobile/operation/agents.php:471 ../../mobile/operation/modules.php:823 +#: ../../mobile/operation/module_graph.php:478 +#: ../../mobile/operation/events.php:1197 +#: ../../mobile/operation/server_status.php:389 +#: ../../mobile/operation/tactical.php:240 msgid "Loading..." msgstr "Cargando…" @@ -31038,8 +31196,8 @@ msgstr "Mostrar alertas" #: ../../enterprise/operation/agentes/policy_view.php:346 #: ../../godmode/alerts/alert_list.list.php:645 #: ../../godmode/alerts/alert_view.php:111 ../../mobile/operation/alerts.php:324 -#: ../../include/functions_ui.php:1417 -#: ../../include/class/AgentsAlerts.class.php:956 +#: ../../include/functions_ui.php:1460 +#: ../../include/class/AgentsAlerts.class.php:957 msgid "time(s)" msgstr "Veces" @@ -31047,10 +31205,10 @@ msgstr "Veces" #: ../../godmode/alerts/alert_list.list.php:651 #: ../../godmode/alerts/alert_view.php:117 ../../mobile/operation/alerts.php:330 #: ../../include/functions_agents.php:3000 -#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1423 -#: ../../include/class/AgentsAlerts.class.php:962 -#: ../../include/class/SnmpConsole.class.php:843 -#: ../../include/functions_reporting.php:13066 +#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1466 +#: ../../include/class/AgentsAlerts.class.php:963 +#: ../../include/class/SnmpConsole.class.php:845 +#: ../../include/functions_reporting.php:13139 msgid "Alert not fired" msgstr "Alerta no disparada" @@ -31084,7 +31242,7 @@ msgid "(Adopted) (Unlinked)" msgstr "(Adoptados)(Desvinculados)" #: ../../enterprise/operation/agentes/policy_view.php:458 -#: ../../godmode/agentes/module_manager.php:881 +#: ../../godmode/agentes/module_manager.php:895 msgid "Non initialized module" msgstr "Módulo no iniciado" @@ -31098,22 +31256,22 @@ msgstr "Módulo no iniciado" #: ../../enterprise/operation/agentes/tag_view.php:1169 #: ../../enterprise/operation/agentes/tag_view.php:1175 #: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634 -#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650 +#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/modules.php:653 ../../mobile/operation/modules.php:661 #: ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:2919 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:142 ../../operation/search_modules.php:150 -#: ../../operation/search_modules.php:158 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:145 ../../operation/search_modules.php:153 +#: ../../operation/search_modules.php:161 msgid "Last status" msgstr "Último estado" @@ -31123,114 +31281,115 @@ msgid "Tag view" msgstr "Visor de etiquetas" #: ../../enterprise/operation/agentes/tag_view.php:54 -#: ../../extensions/agents_modules.php:556 ../../extensions/module_groups.php:264 +#: ../../extensions/agents_modules.php:564 ../../extensions/module_groups.php:264 #: ../../extensions/realtime_graphs.php:71 +#: ../../godmode/agentes/status_monitor_custom_fields.php:48 #: ../../include/class/AgentsAlerts.class.php:755 ../../operation/heatmap.php:144 #: ../../operation/agentes/alerts_status.php:202 #: ../../operation/agentes/estado_agente.php:250 #: ../../operation/agentes/interface_view.php:76 -#: ../../operation/agentes/status_monitor.php:340 +#: ../../operation/agentes/status_monitor.php:339 #: ../../operation/agentes/group_view.php:102 #: ../../operation/agentes/tactical.php:85 ../../operation/menu.php:165 msgid "Views" msgstr "Vistas" #: ../../enterprise/operation/agentes/tag_view.php:139 -#: ../../operation/agentes/status_monitor.php:884 +#: ../../operation/agentes/status_monitor.php:883 msgid "Monitor status" msgstr "Estado del monitor" #: ../../enterprise/operation/agentes/tag_view.php:241 -#: ../../operation/agentes/status_monitor.php:609 +#: ../../operation/agentes/status_monitor.php:608 #: ../../operation/agentes/alerts_status.functions.php:146 msgid "Only it is show tags in use." msgstr "Mostrar solo etiquetas en uso" #: ../../enterprise/operation/agentes/tag_view.php:288 #: ../../godmode/agentes/module_manager_editor_data.php:15 -#: ../../operation/agentes/status_monitor.php:655 +#: ../../operation/agentes/status_monitor.php:654 msgid "Data server module" msgstr "Módulo del servidor de datos" #: ../../enterprise/operation/agentes/tag_view.php:290 -#: ../../godmode/agentes/module_manager_editor_network.php:78 -#: ../../operation/agentes/status_monitor.php:657 +#: ../../godmode/agentes/module_manager_editor_network.php:79 +#: ../../operation/agentes/status_monitor.php:656 msgid "Network server module" msgstr "Módulo del servidor de red" #: ../../enterprise/operation/agentes/tag_view.php:294 #: ../../godmode/agentes/module_manager_editor_plugin.php:46 -#: ../../operation/agentes/status_monitor.php:661 +#: ../../operation/agentes/status_monitor.php:660 msgid "Plugin server module" msgstr "Módulo del servidor de plugin" #: ../../enterprise/operation/agentes/tag_view.php:298 #: ../../godmode/agentes/module_manager_editor_wmi.php:33 -#: ../../operation/agentes/status_monitor.php:665 +#: ../../operation/agentes/status_monitor.php:664 msgid "WMI server module" msgstr "Módulo del servidor WMI" #: ../../enterprise/operation/agentes/tag_view.php:302 #: ../../godmode/agentes/module_manager_editor_prediction.php:117 -#: ../../operation/agentes/status_monitor.php:669 +#: ../../operation/agentes/status_monitor.php:668 msgid "Prediction server module" msgstr "Módulo del servidor de predicción" #: ../../enterprise/operation/agentes/tag_view.php:306 #: ../../godmode/agentes/module_manager_editor_web.php:57 -#: ../../operation/agentes/status_monitor.php:673 +#: ../../operation/agentes/status_monitor.php:672 msgid "Web server module" msgstr "Módulo del servidor web" #: ../../enterprise/operation/agentes/tag_view.php:310 #: ../../enterprise/operation/agentes/tag_view.php:783 -#: ../../godmode/agentes/status_monitor_custom_fields.php:89 -#: ../../godmode/agentes/status_monitor_custom_fields.php:144 -#: ../../operation/agentes/status_monitor.php:935 -#: ../../operation/agentes/status_monitor.php:1553 +#: ../../godmode/agentes/status_monitor_custom_fields.php:109 +#: ../../godmode/agentes/status_monitor_custom_fields.php:164 +#: ../../operation/agentes/status_monitor.php:937 +#: ../../operation/agentes/status_monitor.php:1555 msgid "Server type" msgstr "Tipo de servidor" #: ../../enterprise/operation/agentes/tag_view.php:329 #: ../../godmode/agentes/modificar_agente.php:290 -#: ../../operation/agentes/status_monitor.php:681 +#: ../../operation/agentes/status_monitor.php:680 msgid "Only enabled" msgstr "Solo habilitados" #: ../../enterprise/operation/agentes/tag_view.php:330 #: ../../godmode/agentes/modificar_agente.php:289 #: ../../include/class/SatelliteAgent.class.php:153 -#: ../../operation/agentes/status_monitor.php:682 +#: ../../operation/agentes/status_monitor.php:681 msgid "Only disabled" msgstr "Solo deshabilitados" #: ../../enterprise/operation/agentes/tag_view.php:334 -#: ../../operation/agentes/status_monitor.php:953 +#: ../../operation/agentes/status_monitor.php:955 msgid "Show monitors..." msgstr "Mostrar módulos..." #: ../../enterprise/operation/agentes/tag_view.php:358 #: ../../enterprise/operation/agentes/tag_view.php:782 -#: ../../godmode/agentes/status_monitor_custom_fields.php:81 -#: ../../godmode/agentes/status_monitor_custom_fields.php:142 -#: ../../operation/agentes/status_monitor.php:976 +#: ../../godmode/agentes/status_monitor_custom_fields.php:101 +#: ../../godmode/agentes/status_monitor_custom_fields.php:162 +#: ../../operation/agentes/status_monitor.php:978 msgid "Data type" msgstr "Tipo de dato" #: ../../enterprise/operation/agentes/tag_view.php:503 #: ../../operation/agentes/estado_agente.php:431 #: ../../operation/agentes/agent_fields.php:37 -#: ../../operation/agentes/status_monitor.php:1007 +#: ../../operation/agentes/status_monitor.php:1009 msgid "Agent custom fields" msgstr "Campos personalizados de agente" #: ../../enterprise/operation/agentes/tag_view.php:672 -#: ../../operation/agentes/status_monitor.php:2280 +#: ../../operation/agentes/status_monitor.php:2282 msgid "Sorry no search parameters" msgstr "No hay parámetros de búsqueda" #: ../../enterprise/operation/agentes/tag_view.php:748 -#: ../../operation/agentes/estado_agente.php:1206 +#: ../../operation/agentes/estado_agente.php:1215 msgid "Remote config" msgstr "Configuración remota" @@ -31238,67 +31397,68 @@ msgstr "Configuración remota" #: ../../enterprise/operation/services/services.service.php:121 #: ../../enterprise/operation/services/services.list.php:547 #: ../../extensions/realtime_graphs.php:112 -#: ../../godmode/agentes/status_monitor_custom_fields.php:105 -#: ../../godmode/agentes/status_monitor_custom_fields.php:148 +#: ../../godmode/agentes/status_monitor_custom_fields.php:125 +#: ../../godmode/agentes/status_monitor_custom_fields.php:168 +#: ../../mobile/operation/modules.php:856 #: ../../include/functions_visual_map_editor.php:58 -#: ../../include/class/NetworkMap.class.php:3065 +#: ../../include/class/NetworkMap.class.php:3071 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:340 -#: ../../include/functions_events.php:4508 +#: ../../include/functions_events.php:4513 #: ../../operation/agentes/interface_view.functions.php:558 -#: ../../operation/agentes/status_monitor.php:1579 -#: ../../operation/search_modules.php:37 +#: ../../operation/agentes/status_monitor.php:1581 +#: ../../operation/search_modules.php:40 msgid "Graph" msgstr "Gráfico" #: ../../enterprise/operation/agentes/tag_view.php:786 -#: ../../godmode/agentes/status_monitor_custom_fields.php:109 -#: ../../godmode/agentes/status_monitor_custom_fields.php:149 +#: ../../godmode/agentes/status_monitor_custom_fields.php:129 +#: ../../godmode/agentes/status_monitor_custom_fields.php:169 #: ../../godmode/agentes/module_manager.php:646 msgid "Warn" msgstr "Advertencia" #: ../../enterprise/operation/agentes/tag_view.php:1083 -#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605 +#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:616 #: ../../include/functions_modules.php:2896 #: ../../include/functions_modules.php:4251 ../../include/functions_events.php:70 -#: ../../operation/agentes/status_monitor.php:1784 -#: ../../operation/search_modules.php:109 ../../operation/events/events.php:746 +#: ../../operation/agentes/status_monitor.php:1786 +#: ../../operation/search_modules.php:112 ../../operation/events/events.php:751 msgid "NOT INIT" msgstr "No iniciado" #: ../../enterprise/operation/agentes/tag_view.php:1223 -#: ../../include/functions_reporting.php:13188 -#: ../../include/functions_reporting.php:13197 +#: ../../include/functions_reporting.php:13261 +#: ../../include/functions_reporting.php:13270 #, php-format msgid "%d Total modules" msgstr "%d módulos totales" #: ../../enterprise/operation/agentes/tag_view.php:1224 -#: ../../include/functions_reporting.php:13189 +#: ../../include/functions_reporting.php:13262 #, php-format msgid "%d Modules in normal status" msgstr "%d módulos en estado normal" #: ../../enterprise/operation/agentes/tag_view.php:1225 -#: ../../include/functions_reporting.php:13190 +#: ../../include/functions_reporting.php:13263 #, php-format msgid "%d Modules in critical status" msgstr "%d módulos en estado crítico" #: ../../enterprise/operation/agentes/tag_view.php:1226 -#: ../../include/functions_reporting.php:13191 +#: ../../include/functions_reporting.php:13264 #, php-format msgid "%d Modules in warning status" msgstr "%d módulos en estado de advertencia" #: ../../enterprise/operation/agentes/tag_view.php:1227 -#: ../../include/functions_reporting.php:13192 +#: ../../include/functions_reporting.php:13265 #, php-format msgid "%d Modules in unknown status" msgstr "%d módulos en estado desconocido" #: ../../enterprise/operation/agentes/tag_view.php:1228 -#: ../../include/functions_reporting.php:13193 +#: ../../include/functions_reporting.php:13266 #, php-format msgid "%d Modules in not init status" msgstr "%d módulos en estado no iniciado" @@ -31309,7 +31469,7 @@ msgid "Main IP" msgstr "IP principal" #: ../../enterprise/operation/agentes/ver_agente.php:96 -#: ../../include/functions_events.php:4435 +#: ../../godmode/groups/tactical.php:182 ../../include/functions_events.php:4440 #: ../../operation/agentes/ver_agente.php:1047 msgid "Last remote contact" msgstr "Último contacto remoto" @@ -31320,24 +31480,24 @@ msgid "Monitors down" msgstr "Monitores caídos" #: ../../enterprise/operation/agentes/ver_agente.php:182 -#: ../../mobile/operation/groups.php:174 +#: ../../mobile/operation/groups.php:213 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:600 #: ../../operation/agentes/ver_agente.php:1133 msgid "Alerts fired" msgstr "Alertas disparadas" #: ../../enterprise/operation/agentes/ver_agente.php:297 -#: ../../operation/agentes/ver_agente.php:1877 +#: ../../operation/agentes/ver_agente.php:1873 msgid "URL Route Analyzer" msgstr "Analizador de ruta de URL" #: ../../enterprise/operation/agentes/ver_agente.php:316 -#: ../../operation/agentes/ver_agente.php:1868 +#: ../../operation/agentes/ver_agente.php:1864 msgid "UX Console" msgstr "Consola UX" #: ../../enterprise/operation/agentes/ver_agente.php:335 -#: ../../operation/agentes/ver_agente.php:1872 +#: ../../operation/agentes/ver_agente.php:1868 msgid "WUX Console" msgstr "Consola WUX" @@ -31437,10 +31597,10 @@ msgid "View all stats" msgstr "Ver todas las estadísticas" #: ../../enterprise/operation/agentes/wux_console_view.php:570 -#: ../../include/class/SnmpConsole.class.php:893 -#: ../../include/class/SnmpConsole.class.php:894 ../../operation/menu.php:379 -#: ../../operation/menu.php:381 ../../operation/events/events.php:590 -#: ../../operation/events/events.php:855 +#: ../../include/class/SnmpConsole.class.php:895 +#: ../../include/class/SnmpConsole.class.php:896 ../../operation/menu.php:379 +#: ../../operation/menu.php:381 ../../operation/events/events.php:595 +#: ../../operation/events/events.php:860 msgid "Show more" msgstr "Mostrar más" @@ -31450,7 +31610,7 @@ msgstr "Transacción no válida" #: ../../enterprise/operation/log/elasticsearch_interface.php:37 #: ../../enterprise/operation/log/elasticsearch_interface.php:50 -#: ../../enterprise/operation/log/log_viewer.php:413 +#: ../../enterprise/operation/log/log_viewer.php:411 #: ../../enterprise/operation/menu.php:192 msgid "Elasticsearch Interface" msgstr "Interfaz de ElasticSearch" @@ -31469,50 +31629,50 @@ msgstr "" "está haciendo con exactitud. \n" "Esta vista esta destinada a aquellos usuarios que conocen bien ElasticSearch" -#: ../../enterprise/operation/log/log_viewer.php:427 -#: ../../enterprise/operation/log/log_viewer.php:445 -#: ../../enterprise/operation/log/log_viewer.php:455 +#: ../../enterprise/operation/log/log_viewer.php:425 +#: ../../enterprise/operation/log/log_viewer.php:443 +#: ../../enterprise/operation/log/log_viewer.php:453 msgid "Log sources" msgstr "Fuentes de log" -#: ../../enterprise/operation/log/log_viewer.php:519 +#: ../../enterprise/operation/log/log_viewer.php:517 #: ../../godmode/modules/manage_inventory_modules.php:83 #: ../../godmode/modules/manage_inventory_modules_form.php:57 #: ../../godmode/netflow/nf_edit.php:70 -#: ../../operation/netflow/nf_live_view.php:150 +#: ../../operation/netflow/nf_live_view.php:155 msgid "Not supported in Windows systems" msgstr "No compatible con sistemas Windows" -#: ../../enterprise/operation/log/log_viewer.php:541 +#: ../../enterprise/operation/log/log_viewer.php:539 msgid "All words" msgstr "Todas las palabras" -#: ../../enterprise/operation/log/log_viewer.php:542 +#: ../../enterprise/operation/log/log_viewer.php:540 msgid "Any word" msgstr "Cualquier palabra" -#: ../../enterprise/operation/log/log_viewer.php:547 +#: ../../enterprise/operation/log/log_viewer.php:545 msgid "Search mode" msgstr "Modo de búsqueda" -#: ../../enterprise/operation/log/log_viewer.php:607 +#: ../../enterprise/operation/log/log_viewer.php:605 #: ../../godmode/reporting/reporting_builder.item_editor.php:1325 msgid "Full context" msgstr "Contexto completo" -#: ../../enterprise/operation/log/log_viewer.php:660 +#: ../../enterprise/operation/log/log_viewer.php:658 msgid "Select dates by range" msgstr "Seleccionar fechas por rango" -#: ../../enterprise/operation/log/log_viewer.php:671 +#: ../../enterprise/operation/log/log_viewer.php:669 #: ../../godmode/reporting/create_container.php:417 #: ../../include/functions.php:2744 msgid "custom" msgstr "personalizado" +#: ../../enterprise/operation/log/log_viewer.php:671 +#: ../../enterprise/operation/log/log_viewer.php:672 #: ../../enterprise/operation/log/log_viewer.php:673 -#: ../../enterprise/operation/log/log_viewer.php:674 -#: ../../enterprise/operation/log/log_viewer.php:675 #: ../../godmode/reporting/create_container.php:419 #: ../../godmode/reporting/create_container.php:420 #: ../../godmode/reporting/create_container.php:421 @@ -31523,8 +31683,8 @@ msgstr "personalizado" msgid "%s hours" msgstr "%s horas" -#: ../../enterprise/operation/log/log_viewer.php:677 -#: ../../enterprise/operation/log/log_viewer.php:678 +#: ../../enterprise/operation/log/log_viewer.php:675 +#: ../../enterprise/operation/log/log_viewer.php:676 #: ../../godmode/reporting/create_container.php:423 #: ../../godmode/reporting/create_container.php:424 #: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152 @@ -31532,81 +31692,81 @@ msgstr "%s horas" msgid "%s days" msgstr "%s días" -#: ../../enterprise/operation/log/log_viewer.php:679 +#: ../../enterprise/operation/log/log_viewer.php:677 #: ../../godmode/reporting/create_container.php:425 -#: ../../include/functions.php:2759 ../../include/ajax/module.php:225 +#: ../../include/functions.php:2759 ../../include/ajax/module.php:248 #: ../../include/ajax/graph.ajax.php:153 msgid "1 week" msgstr "1 semana" -#: ../../enterprise/operation/log/log_viewer.php:681 +#: ../../enterprise/operation/log/log_viewer.php:679 #: ../../godmode/reporting/create_container.php:427 -#: ../../include/functions.php:2761 ../../include/ajax/module.php:227 +#: ../../include/functions.php:2761 ../../include/ajax/module.php:250 #: ../../include/ajax/graph.ajax.php:155 #: ../../include/class/AuditLog.class.php:214 msgid "1 month" msgstr "1 mes" -#: ../../enterprise/operation/log/log_viewer.php:684 -#: ../../enterprise/operation/log/log_viewer.php:704 +#: ../../enterprise/operation/log/log_viewer.php:682 +#: ../../enterprise/operation/log/log_viewer.php:702 #: ../../operation/network/network_report.php:114 #: ../../operation/network/network_usage_map.php:128 -#: ../../operation/netflow/nf_live_view.php:403 +#: ../../operation/netflow/nf_live_view.php:476 msgid "Start date" msgstr "Fecha de inicio" -#: ../../enterprise/operation/log/log_viewer.php:736 +#: ../../enterprise/operation/log/log_viewer.php:734 #: ../../operation/agentes/exportdata.php:427 #: ../../operation/network/network_report.php:157 #: ../../operation/network/network_usage_map.php:161 -#: ../../operation/netflow/nf_live_view.php:436 +#: ../../operation/netflow/nf_live_view.php:509 msgid "End date" msgstr "Fecha final" -#: ../../enterprise/operation/log/log_viewer.php:806 -#: ../../enterprise/operation/log/log_viewer.php:807 +#: ../../enterprise/operation/log/log_viewer.php:804 +#: ../../enterprise/operation/log/log_viewer.php:805 msgid "Edit sources" msgstr "Editar fuentes" -#: ../../enterprise/operation/log/log_viewer.php:853 +#: ../../enterprise/operation/log/log_viewer.php:851 msgid "Show log entries" msgstr "Mostrar entradas de log" -#: ../../enterprise/operation/log/log_viewer.php:854 +#: ../../enterprise/operation/log/log_viewer.php:852 msgid "Graph log results" msgstr "Resultados de logs de gráficas" -#: ../../enterprise/operation/log/log_viewer.php:857 +#: ../../enterprise/operation/log/log_viewer.php:855 msgid "Display mode" msgstr "Modo de visualización" -#: ../../enterprise/operation/log/log_viewer.php:875 +#: ../../enterprise/operation/log/log_viewer.php:873 msgid "Use capture model" msgstr "Usar modelo de captura" -#: ../../enterprise/operation/log/log_viewer.php:910 +#: ../../enterprise/operation/log/log_viewer.php:908 msgid "Create new model" msgstr "Crear nuevo modelo" -#: ../../enterprise/operation/log/log_viewer.php:918 +#: ../../enterprise/operation/log/log_viewer.php:916 #: ../../godmode/reporting/graph_builder.main.php:214 msgid "Horizontal bars" msgstr "Barras horizontales" -#: ../../enterprise/operation/log/log_viewer.php:919 +#: ../../enterprise/operation/log/log_viewer.php:917 #: ../../godmode/reporting/graph_builder.main.php:215 msgid "Vertical bars" msgstr "Barras verticales" -#: ../../enterprise/operation/log/log_viewer.php:922 +#: ../../enterprise/operation/log/log_viewer.php:920 msgid "Graph type" msgstr "Tipo de gráfica" -#: ../../enterprise/operation/log/log_viewer.php:942 +#: ../../enterprise/operation/log/log_viewer.php:940 msgid "Advanced options " msgstr "Opciones avanzadas " -#: ../../enterprise/operation/log/log_viewer.php:1101 +#: ../../enterprise/operation/log/log_viewer.php:1099 msgid "" "The maximum limit of rows has been exceeded. Please enter an email to send the " "csv file" @@ -31614,11 +31774,11 @@ msgstr "" "El límite máximo de filas se ha superado. Añada un correo electrónico para " "enviar el archivo CSV" -#: ../../enterprise/operation/log/log_viewer.php:1103 +#: ../../enterprise/operation/log/log_viewer.php:1101 msgid "e-mail address" msgstr "dirección de correo electrónico" -#: ../../enterprise/operation/log/log_viewer.php:1106 +#: ../../enterprise/operation/log/log_viewer.php:1104 msgid "" "WARNING: If your email size exceeds your mail attachment size limit, the file " "will be saved in the local attachment folder." @@ -31626,27 +31786,27 @@ msgstr "" "ADVERTENCIA: Si el tamaño del correo electrónico supera el límite de tamaño de " "archivo adjunto, el archivo se guardará en la carpeta de adjuntos local." -#: ../../enterprise/operation/log/log_viewer.php:1239 +#: ../../enterprise/operation/log/log_viewer.php:1237 msgid "The start date cannot be greater than the end date" msgstr "La fecha de inicio no puede ser posterior a la fecha de finalización." -#: ../../enterprise/operation/log/log_viewer.php:1676 +#: ../../enterprise/operation/log/log_viewer.php:1674 msgid "Add new capture model" msgstr "Añadir nuevo modelo de captura" -#: ../../enterprise/operation/log/log_viewer.php:1679 +#: ../../enterprise/operation/log/log_viewer.php:1677 msgid "Edit capture model" msgstr "Editar modelo de captura" -#: ../../enterprise/operation/log/log_viewer.php:1762 +#: ../../enterprise/operation/log/log_viewer.php:1760 msgid "Error create new model" msgstr "Error al crear nuevo modelo" -#: ../../enterprise/operation/log/log_viewer.php:1789 +#: ../../enterprise/operation/log/log_viewer.php:1787 msgid "Error delete model" msgstr "Error al borrar modelo" -#: ../../enterprise/operation/log/log_viewer.php:1835 +#: ../../enterprise/operation/log/log_viewer.php:1833 msgid "Error update model" msgstr "Error al actualizar modelo" @@ -31659,8 +31819,8 @@ msgid "AWS view" msgstr "Vista AWS" #: ../../enterprise/operation/menu.php:48 -#: ../../operation/agentes/ver_agente.php:1698 -#: ../../operation/agentes/ver_agente.php:1905 +#: ../../operation/agentes/ver_agente.php:1694 +#: ../../operation/agentes/ver_agente.php:1901 msgid "SAP view" msgstr "Vista SAP" @@ -31797,7 +31957,7 @@ msgstr "Definición de elemento(s)" msgid "Add selected" msgstr "Añadir seleccionado" -#: ../../enterprise/operation/services/massive/services.create.php:1170 +#: ../../enterprise/operation/services/massive/services.create.php:1182 msgid "" "Weights configured are common for every item added to the service, if you want " "to customize them, please edit the service." @@ -31805,49 +31965,49 @@ msgstr "" "Los pesos configurados son comunes a todos los elementos añadidos al servicio. " "Si desea personalizarlos, edite el servicio." -#: ../../enterprise/operation/services/massive/services.create.php:1174 +#: ../../enterprise/operation/services/massive/services.create.php:1186 #: ../../enterprise/operation/services/massive/service.delete.elements.php:209 #: ../../enterprise/operation/services/massive/service.create.elements.php:532 #: ../../enterprise/operation/services/massive/service.edit.elements.php:290 msgid "Service items summary" msgstr "Resumen de elementos de servicio" -#: ../../enterprise/operation/services/massive/services.create.php:1181 +#: ../../enterprise/operation/services/massive/services.create.php:1193 #: ../../enterprise/operation/services/massive/service.create.elements.php:539 #: ../../enterprise/operation/services/massive/service.edit.elements.php:298 -#: ../../include/functions_visual_map_editor.php:1146 -#: ../../include/rest-api/models/VisualConsole/Item.php:2528 +#: ../../include/functions_visual_map_editor.php:1198 +#: ../../include/rest-api/models/VisualConsole/Item.php:2531 msgid "Critical weight" msgstr "Peso crítico" -#: ../../enterprise/operation/services/massive/services.create.php:1193 +#: ../../enterprise/operation/services/massive/services.create.php:1205 #: ../../enterprise/operation/services/massive/service.create.elements.php:552 #: ../../enterprise/operation/services/massive/service.edit.elements.php:311 -#: ../../include/functions_visual_map_editor.php:1172 -#: ../../include/rest-api/models/VisualConsole/Item.php:2542 +#: ../../include/functions_visual_map_editor.php:1224 +#: ../../include/rest-api/models/VisualConsole/Item.php:2545 msgid "Warning weight" msgstr "Peso de advertencia" -#: ../../enterprise/operation/services/massive/services.create.php:1205 +#: ../../enterprise/operation/services/massive/services.create.php:1217 #: ../../enterprise/operation/services/massive/service.create.elements.php:565 #: ../../enterprise/operation/services/massive/service.edit.elements.php:324 msgid "Unknown weight" msgstr "Peso desconocido" -#: ../../enterprise/operation/services/massive/services.create.php:1217 +#: ../../enterprise/operation/services/massive/services.create.php:1229 #: ../../enterprise/operation/services/massive/service.create.elements.php:578 #: ../../enterprise/operation/services/massive/service.edit.elements.php:337 msgid "Normal weight" msgstr "Peso normal" -#: ../../enterprise/operation/services/massive/services.create.php:1289 +#: ../../enterprise/operation/services/massive/services.create.php:1301 #: ../../enterprise/operation/services/massive/service.delete.elements.php:246 #: ../../enterprise/operation/services/massive/service.create.elements.php:594 #: ../../enterprise/operation/services/massive/service.edit.elements.php:353 msgid "Selected services" msgstr "Servicios seleccionados" -#: ../../enterprise/operation/services/massive/services.create.php:1370 +#: ../../enterprise/operation/services/massive/services.create.php:1382 msgid "Create service" msgstr "Crear servicio" @@ -31969,10 +32129,10 @@ msgid "Show sunburst" msgstr "Mostrar sunburst" #: ../../enterprise/operation/services/services.service_map.php:129 -#: ../../extensions/agents_modules.php:1043 +#: ../../extensions/agents_modules.php:1067 #: ../../extensions/module_groups.php:464 #: ../../godmode/snmpconsole/snmp_alert.php:2203 -#: ../../include/functions_reporting_html.php:2281 +#: ../../include/functions_reporting_html.php:2302 #: ../../include/class/SnmpConsole.class.php:522 msgid "Legend" msgstr "Leyenda" @@ -32011,23 +32171,24 @@ msgstr "Crear servicio" #: ../../enterprise/operation/services/services.treeview_services.php:281 #: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:89 -#: ../../godmode/groups/group_list.php:1074 -#: ../../include/functions_inventory.php:301 -#: ../../include/class/Heatmap.class.php:1234 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:694 -#: ../../operation/tree.php:463 ../../operation/tree.php:493 +#: ../../godmode/groups/group_list.php:1086 +#: ../../include/functions_inventory.php:310 +#: ../../include/class/Heatmap.class.php:1272 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:687 +#: ../../operation/tree.php:465 ../../operation/tree.php:495 #: ../../operation/network/network_report.php:391 msgid "No data found" msgstr "No se encontraron datos" #: ../../enterprise/operation/services/services.treeview_services.php:282 -#: ../../godmode/groups/group_list.php:1075 +#: ../../godmode/groups/group_list.php:1087 msgid "Found groups" msgstr "Grupos encontrados" #: ../../enterprise/operation/services/services.treeview_services.php:376 -#: ../../operation/tree.php:591 ../../operation/agentes/status_monitor.php:2419 -#: ../../operation/agentes/estado_monitores.php:430 +#: ../../operation/tree.php:593 ../../operation/agentes/status_monitor.php:2421 +#: ../../operation/agentes/estado_monitores.php:427 +#: ../../operation/search_modules.php:302 msgid "Module: " msgstr "Módulo: " @@ -32060,7 +32221,7 @@ msgstr "Error al forzar el servicio" #: ../../enterprise/operation/services/services.list.php:309 #: ../../enterprise/operation/services/services.table_services.php:277 msgid "Show only root services" -msgstr "Mostrar solo los servicios root" +msgstr "Mostrar solo los servicios raíz" #: ../../enterprise/operation/services/services.list.php:628 msgid "Status graph" @@ -32431,8 +32592,8 @@ msgstr "Borrar superred" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1515 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:990 -#: ../../include/functions_visual_map_editor.php:791 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564 +#: ../../include/functions_visual_map_editor.php:831 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:727 msgid "Show statistics" msgstr "Mostrar estadísticas" @@ -32496,7 +32657,7 @@ msgstr "Eliminar red" #: ../../operation/agentes/interface_view.functions.php:97 #: ../../operation/agentes/interface_view.functions.php:150 #: ../../operation/agentes/ver_agente.php:1419 -#: ../../operation/agentes/ver_agente.php:1844 +#: ../../operation/agentes/ver_agente.php:1840 msgid "Interfaces" msgstr "Interfaces" @@ -32521,7 +32682,7 @@ msgid "Please enter adress, for search vlans" msgstr "Añada una dirección para buscar vlans" #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:435 -#: ../../godmode/wizards/HostDevices.class.php:1287 +#: ../../godmode/wizards/HostDevices.class.php:1283 msgid "Context" msgstr "Contexto" @@ -32564,13 +32725,13 @@ msgid "Network name already exists in supernet %s (%s)" msgstr "El nombre de red ya existe en la superred %s (%s)" #: ../../enterprise/tools/ipam/ipam_action.php:445 -#: ../../operation/agentes/pandora_networkmap.view.php:1689 +#: ../../operation/agentes/pandora_networkmap.view.php:1690 msgid "Could not be updated." msgstr "No se pudo actualizar" #: ../../enterprise/tools/ipam/ipam_action.php:451 #: ../../update_manager_client/views/offline.php:78 -#: ../../update_manager_client/views/online.php:94 +#: ../../update_manager_client/views/online.php:96 msgid "Successfully updated." msgstr "Actualizado correctamente" @@ -32586,8 +32747,8 @@ msgstr "No pudo ser creado. Nombre en blanco" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:72 #: ../../godmode/modules/manage_nc_groups.php:143 -#: ../../godmode/netflow/nf_edit_form.php:141 ../../godmode/setup/news.php:125 -#: ../../godmode/events/event_edit_filter.php:243 +#: ../../godmode/netflow/nf_edit_form.php:173 ../../godmode/setup/news.php:125 +#: ../../godmode/events/event_edit_filter.php:245 msgid "Not updated. Error updating data" msgstr "No se ha podido actualizar. Error al actualizar los datos." @@ -32657,7 +32818,7 @@ msgid "leased expiration" msgstr "Concesión caducada" #: ../../enterprise/tools/ipam/ipam_ajax.php:476 -#: ../../include/class/NetworkMap.class.php:3067 +#: ../../include/class/NetworkMap.class.php:3073 msgid "MAC" msgstr "MAC" @@ -32679,7 +32840,7 @@ msgid "Executing command: %s" msgstr "Ejecutar comando: %s" #: ../../enterprise/tools/ipam/ipam_ajax.php:554 -#: ../../include/functions_events.php:5965 +#: ../../include/functions_events.php:5970 msgid "Execute again" msgstr "Ejecutar de nuevo" @@ -32927,8 +33088,8 @@ msgid "Click on the file below to begin." msgstr "Haz clic en el archivo de abajo para comenzar." #: ../../update_manager_client/views/offline.php:70 -#: ../../update_manager_client/views/online.php:123 -#: ../../update_manager_client/views/online.php:164 +#: ../../update_manager_client/views/online.php:125 +#: ../../update_manager_client/views/online.php:166 msgid "This action will upgrade this console to version " msgstr "Esta acción actualizará esta consola a la versión " @@ -32937,27 +33098,27 @@ msgid "This action will upgrade all servers to version " msgstr "Esta acción actualizará todos los servidores a la versión " #: ../../update_manager_client/views/offline.php:73 -#: ../../update_manager_client/views/online.php:89 +#: ../../update_manager_client/views/online.php:91 msgid "Updating to" msgstr "Actualizando" #: ../../update_manager_client/views/offline.php:74 -#: ../../update_manager_client/views/online.php:90 +#: ../../update_manager_client/views/online.php:92 msgid "Do you really want to leave our brilliant application?" msgstr "¿Estás seguro de que quieres realizar esta acción?" #: ../../update_manager_client/views/offline.php:75 -#: ../../update_manager_client/views/online.php:91 +#: ../../update_manager_client/views/online.php:93 msgid "There are no updates available" msgstr "No hay actualizaciones disponibles" #: ../../update_manager_client/views/offline.php:76 -#: ../../update_manager_client/views/online.php:92 +#: ../../update_manager_client/views/online.php:94 msgid "Searching for updates..." msgstr "Buscando actualizaciones..." #: ../../update_manager_client/views/offline.php:77 -#: ../../update_manager_client/views/online.php:93 +#: ../../update_manager_client/views/online.php:95 msgid "Package" msgstr "Paquete" @@ -33036,16 +33197,16 @@ msgstr "" "a instalar a menos que se permitan parches. Habilite los parches en la " "configuración del administrador de actualizaciones." -#: ../../update_manager_client/views/register.php:47 +#: ../../update_manager_client/views/register.php:48 msgid "Register to Warp Update" msgstr "Regístrese para Warp Update" -#: ../../update_manager_client/views/register.php:54 +#: ../../update_manager_client/views/register.php:55 #, php-format msgid "Keep this %s console up to date with latest updates." msgstr "Mantener la consola %s actualizada con las últimas actualizaciones." -#: ../../update_manager_client/views/register.php:61 +#: ../../update_manager_client/views/register.php:62 #, php-format msgid "" "When you subscribe to the Warp update service for %s, you accept that we\n" @@ -33063,24 +33224,24 @@ msgstr "" " base de datos en cualquier momento desde las opciones de Warp " "update." -#: ../../update_manager_client/views/register.php:74 +#: ../../update_manager_client/views/register.php:75 msgid "Visit our privacy policy for more information" msgstr "Visite nuestra política de privacidad para obtener más información" -#: ../../update_manager_client/views/register.php:78 -#: ../../include/class/Diagnostics.class.php:1938 +#: ../../update_manager_client/views/register.php:79 +#: ../../include/class/Diagnostics.class.php:1942 msgid "Your email" msgstr "Su email" -#: ../../update_manager_client/views/register.php:97 +#: ../../update_manager_client/views/register.php:98 msgid "OK!" msgstr "¡OK!" -#: ../../update_manager_client/views/register.php:112 +#: ../../update_manager_client/views/register.php:113 msgid "Are you sure you don't want to use Warp update?" msgstr "¿Está seguro de que no quiere usar Warp update?" -#: ../../update_manager_client/views/register.php:116 +#: ../../update_manager_client/views/register.php:117 msgid "" "You will need to update your system manually, through source code or RPM\n" " packages to be up to date with latest updates." @@ -33088,11 +33249,11 @@ msgstr "" "Deberá actualizar su sistema manualmente a través del código fuente o de los " "paquetes RPM para estar al día con las últimas actualizaciones." -#: ../../update_manager_client/views/register.php:208 +#: ../../update_manager_client/views/register.php:209 msgid "Unsuccessful subscription" msgstr "Suscripción incorrecta" -#: ../../update_manager_client/views/register.php:213 +#: ../../update_manager_client/views/register.php:214 msgid "Pandora successfully subscribed with UID: " msgstr "Pandora FMS se suscribió correctamente con UID: " @@ -33100,25 +33261,25 @@ msgstr "Pandora FMS se suscribió correctamente con UID: " msgid "The latest version of package installed is" msgstr "La última versión instalada del paquete es:" -#: ../../update_manager_client/views/online.php:64 +#: ../../update_manager_client/views/online.php:65 msgid "Update to next version" msgstr "Actualizar a la siguiente versión" -#: ../../update_manager_client/views/online.php:65 +#: ../../update_manager_client/views/online.php:66 msgid "Update to latest version" msgstr "Actualizar a la última versión" -#: ../../update_manager_client/views/online.php:124 -#: ../../update_manager_client/views/online.php:165 +#: ../../update_manager_client/views/online.php:126 +#: ../../update_manager_client/views/online.php:167 msgid "Update to" msgstr "Actualización para" -#: ../../update_manager_client/views/online.php:145 -#: ../../update_manager_client/views/online.php:149 +#: ../../update_manager_client/views/online.php:147 +#: ../../update_manager_client/views/online.php:151 msgid "Failed to update to " msgstr "Error al actualizar a " -#: ../../update_manager_client/views/online.php:188 +#: ../../update_manager_client/views/online.php:190 msgid "Failed to update:" msgstr "Error al actualizar" @@ -33147,25 +33308,25 @@ msgstr "Error al crear un directorio temporal." msgid "Failed storing uploaded file." msgstr "Error al almacenar el archivo cargado." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:648 #, php-format msgid "Invalid extension. The package needs to be in `%s` or `%s` format." msgstr "Extensión no válida. El paquete debe estar en formato \"%s\" o \"%s\"." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:657 msgid "Failed uploading file." msgstr "Error al cargar el archivo." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:692 msgid "Signatures does not match." msgstr "Las firmas no coinciden." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:751 #, php-format msgid "Update %s successfully installed." msgstr "La actualización %s instalado correctamente." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:754 #, php-format msgid "Failed while updating: %s" msgstr "Error al actualizar: %s" @@ -33237,6 +33398,7 @@ msgid "Matrix events" msgstr "Eventos matriz" #: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:251 +#: ../../godmode/setup/setup_websocket_engine.php:162 msgid "WebService engine has not been started, please check documentation." msgstr "El motor WebService aún no se ha iniciado, consulte la documentación." @@ -33473,7 +33635,7 @@ msgstr "Registro de recursos" #: ../../godmode/netflow/nf_edit.php:59 ../../godmode/menu.php:132 #: ../../godmode/category/category.php:81 #: ../../godmode/category/edit_category.php:92 -#: ../../operation/agentes/ver_agente.php:1934 +#: ../../operation/agentes/ver_agente.php:1930 msgid "Resources" msgstr "Recursos" @@ -33529,8 +33691,8 @@ msgid "%s Console URL" msgstr "%s URL de la consola" #: ../../extensions/api_checker.php:243 -#: ../../godmode/users/configure_user.php:1006 -#: ../../godmode/users/configure_user.php:1029 +#: ../../godmode/users/configure_user.php:1054 +#: ../../godmode/users/configure_user.php:1077 #: ../../operation/users/user_edit.php:299 #: ../../operation/users/user_edit.php:338 msgid "API Token" @@ -33589,7 +33751,7 @@ msgid "Show URL" msgstr "Mostrar URL" #: ../../extensions/db_status.php:25 ../../extensions/db_status.php:520 -#: ../../godmode/menu.php:478 +#: ../../godmode/menu.php:476 msgid "DB Schema check" msgstr "Comprobación del esquema de la BD" @@ -33774,84 +33936,84 @@ msgstr "Ejecutar SQL" msgid "Error querying database node" msgstr "Error al consultar el nodo de la base de datos" -#: ../../extensions/agents_modules.php:396 +#: ../../extensions/agents_modules.php:404 #: ../../godmode/reporting/reporting_builder.item_editor.php:2000 #: ../../include/lib/Dashboard/Widgets/agent_module.php:255 msgid "Show module status" msgstr "Mostrar el estado del módulo" -#: ../../extensions/agents_modules.php:397 +#: ../../extensions/agents_modules.php:405 #: ../../godmode/reporting/reporting_builder.item_editor.php:2001 #: ../../include/lib/Dashboard/Widgets/agent_module.php:256 msgid "Show module data" msgstr "Mostrar datos del módulo" -#: ../../extensions/agents_modules.php:401 +#: ../../extensions/agents_modules.php:409 #: ../../godmode/reporting/reporting_builder.item_editor.php:1996 #: ../../include/lib/Dashboard/Widgets/agent_module.php:265 msgid "Information to be shown" msgstr "Información que debe mostrarse" -#: ../../extensions/agents_modules.php:543 +#: ../../extensions/agents_modules.php:551 #: ../../include/functions_reports.php:807 msgid "Agents/Modules" msgstr "Agentes/Módulos" -#: ../../extensions/agents_modules.php:636 +#: ../../extensions/agents_modules.php:644 msgid "Agent/module view" msgstr "Vista de agente/módulo" -#: ../../extensions/agents_modules.php:681 +#: ../../extensions/agents_modules.php:690 msgid "Filters " msgstr "Filtros " -#: ../../extensions/agents_modules.php:681 +#: ../../extensions/agents_modules.php:690 msgid "Secondary groups and agent subgroups will be taken into account." msgstr "Los grupos secundarios y los subgrupos de agentes se tendrán en cuenta." -#: ../../extensions/agents_modules.php:833 -#: ../../include/functions_reporting.php:3376 +#: ../../extensions/agents_modules.php:857 +#: ../../include/functions_reporting.php:3385 msgid "There are no agents with modules" msgstr "No hay agentes con módulos" -#: ../../extensions/agents_modules.php:848 +#: ../../extensions/agents_modules.php:872 msgid "Previous modules" msgstr "Módulos anteriores" -#: ../../extensions/agents_modules.php:874 +#: ../../extensions/agents_modules.php:898 msgid "More modules" msgstr "Más módulos" -#: ../../extensions/agents_modules.php:1030 -#: ../../include/functions_reporting_html.php:2282 +#: ../../extensions/agents_modules.php:1054 +#: ../../include/functions_reporting_html.php:2303 msgid "Orange cell when the module has fired alerts" msgstr "Cuadro naranja cuando el módulo ha disparado alertas" -#: ../../extensions/agents_modules.php:1032 -#: ../../include/functions_reporting_html.php:2283 +#: ../../extensions/agents_modules.php:1056 +#: ../../include/functions_reporting_html.php:2304 msgid "Red cell when the module has a critical status" msgstr "Celda roja cuando el módulo está en estado crítico" -#: ../../extensions/agents_modules.php:1035 -#: ../../include/functions_reporting_html.php:2284 +#: ../../extensions/agents_modules.php:1059 +#: ../../include/functions_reporting_html.php:2305 msgid "Yellow cell when the module has a warning status" msgstr "Cuadro amarillo cuando el módulo está en estado advertencia" -#: ../../extensions/agents_modules.php:1037 -#: ../../include/functions_reporting_html.php:2285 +#: ../../extensions/agents_modules.php:1061 +#: ../../include/functions_reporting_html.php:2306 msgid "Green cell when the module has a normal status" msgstr "Cuadro verde cuando el módulo está en estado normal" -#: ../../extensions/agents_modules.php:1039 -#: ../../include/functions_reporting_html.php:2286 +#: ../../extensions/agents_modules.php:1063 +#: ../../include/functions_reporting_html.php:2307 msgid "Grey cell when the module has an unknown status" msgstr "Cuadro gris cuando el módulo está en estado desconocido" -#: ../../extensions/agents_modules.php:1041 +#: ../../extensions/agents_modules.php:1065 msgid "Cell turns blue when the module is in 'not initialize' status" msgstr "Celda azul cuando el módulo está en estado \"no iniciado\"" -#: ../../extensions/agents_modules.php:1055 +#: ../../extensions/agents_modules.php:1079 msgid "Agents/Modules view" msgstr "Vista de Agentes/Módulos" @@ -33948,7 +34110,7 @@ msgid "Public link" msgstr "Enlace público" #: ../../extensions/files_repo/files_repo_list.php:58 -#: ../../include/functions_filemanager.php:645 +#: ../../include/functions_filemanager.php:660 msgid "Last modification" msgstr "Última modificación" @@ -33957,8 +34119,8 @@ msgid "Copy to clipboard" msgstr "Copiar al portapapeles" #: ../../extensions/files_repo/files_repo_list.php:167 -#: ../../include/functions_reporting_html.php:2314 -#: ../../include/functions_reporting_html.php:2318 +#: ../../include/functions_reporting_html.php:2335 +#: ../../include/functions_reporting_html.php:2339 msgid "No items" msgstr "No hay elementos" @@ -34077,7 +34239,7 @@ msgid "Save agent (%s), module (%s) data xml." msgstr "Guardar agente (%s), módulo (%s) datos XML" #: ../../extensions/realtime_graphs.php:58 -#: ../../extensions/realtime_graphs.php:295 +#: ../../extensions/realtime_graphs.php:301 msgid "Realtime graphs" msgstr "Gráficas en tiempo real" @@ -34124,12 +34286,12 @@ msgstr "Intervalo de actualización" msgid "Incremental" msgstr "Incremental" -#: ../../extensions/realtime_graphs.php:203 +#: ../../extensions/realtime_graphs.php:199 msgid "Clear graph" msgstr "Limpiar gráfica" -#: ../../extensions/realtime_graphs.php:276 -#: ../../godmode/agentes/module_manager_editor_network.php:44 +#: ../../extensions/realtime_graphs.php:282 +#: ../../godmode/agentes/module_manager_editor_network.php:45 msgid "Use this OID" msgstr "Usar esta OID" @@ -34218,8 +34380,8 @@ msgid "No modules for this profile" msgstr "No existen módulos para este perfil" #: ../../godmode/modules/manage_network_templates_form.php:260 -#: ../../operation/snmpconsole/snmp_browser.php:155 -#: ../../operation/snmpconsole/snmp_browser.php:175 +#: ../../operation/snmpconsole/snmp_browser.php:160 +#: ../../operation/snmpconsole/snmp_browser.php:180 msgid "Add modules" msgstr "Añadir módulos" @@ -34297,15 +34459,15 @@ msgid "You can find more information at:" msgstr "Encontrará más información en:" #: ../../godmode/modules/manage_network_components_form_common.php:723 -#: ../../godmode/agentes/module_manager_editor_common.php:2270 +#: ../../godmode/agentes/module_manager_editor_common.php:2280 msgid "Please introduce a positive percentage value" msgstr "Introduzca un valor porcentual positivo" -#: ../../godmode/modules/manage_network_components_form_network.php:72 +#: ../../godmode/modules/manage_network_components_form_network.php:98 msgid "SNMP Enterprise String" msgstr "Cadena SNMP Enterprise" -#: ../../godmode/modules/manage_network_components_form_network.php:191 +#: ../../godmode/modules/manage_network_components_form_network.php:193 #: ../../godmode/modules/manage_network_components_form_wizard.php:315 msgid "Name OID" msgstr "Nombre del OID" @@ -34313,23 +34475,23 @@ msgstr "Nombre del OID" #: ../../godmode/modules/manage_network_components_form_wmi.php:41 #: ../../godmode/agentes/module_manager_editor_wmi.php:106 #: ../../include/class/CredentialStore.class.php:1009 -#: ../../include/class/CredentialStore.class.php:1347 +#: ../../include/class/CredentialStore.class.php:1353 msgid "Namespace" msgstr "Espacio de nombres" -#: ../../godmode/modules/manage_network_components_form.php:358 +#: ../../godmode/modules/manage_network_components_form.php:361 msgid "Update Network Component" msgstr "Actualización de componente de red" -#: ../../godmode/modules/manage_network_components_form.php:360 +#: ../../godmode/modules/manage_network_components_form.php:363 msgid "Create Network Component" msgstr "Crear componente de red" -#: ../../godmode/modules/manage_network_components.php:289 +#: ../../godmode/modules/manage_network_components.php:290 msgid "Remote component management" msgstr "Gestión remota de componentes" -#: ../../godmode/modules/manage_network_components.php:321 +#: ../../godmode/modules/manage_network_components.php:322 #, php-format msgid "" "This node is configured with centralized mode. All remote components are read " @@ -34338,36 +34500,36 @@ msgstr "" "Este nodo esta configurado con el modo centralizado. Toda la información de " "las políticas está en modo lectura. Vaya a %s para administrarlo." -#: ../../godmode/modules/manage_network_components.php:433 +#: ../../godmode/modules/manage_network_components.php:435 msgid "Could not be created because the component exists" msgstr "No se ha podido crear porque el componente existe" -#: ../../godmode/modules/manage_network_components.php:686 +#: ../../godmode/modules/manage_network_components.php:689 msgid "Search by name, description, tcp send or tcp rcv, list matches." msgstr "" "Búsqueda por nombre, descripción, envío TCP o TCP RCV, lista las coincidencias." -#: ../../godmode/modules/manage_network_components.php:779 +#: ../../godmode/modules/manage_network_components.php:782 msgid "Max/Min" msgstr "Máx/Mín" -#: ../../godmode/modules/manage_network_components.php:888 +#: ../../godmode/modules/manage_network_components.php:891 msgid "There are no defined network components" msgstr "No hay componentes de red definidos" -#: ../../godmode/modules/manage_network_components.php:921 +#: ../../godmode/modules/manage_network_components.php:924 msgid "Create a new network component" msgstr "Crear un componente de red nuevo" -#: ../../godmode/modules/manage_network_components.php:922 +#: ../../godmode/modules/manage_network_components.php:925 msgid "Create a new plugin component" msgstr "Crear un componente de plugin nuevo" -#: ../../godmode/modules/manage_network_components.php:923 +#: ../../godmode/modules/manage_network_components.php:926 msgid "Create a new WMI component" msgstr "Crear un componente WMI nuevo" -#: ../../godmode/modules/manage_network_components.php:924 +#: ../../godmode/modules/manage_network_components.php:927 msgid "Create a new wizard component" msgstr "Crear un nuevo componente de wizard" @@ -34482,6 +34644,7 @@ msgstr "Dejar en blanco para los módulos de inventario LOCALES" #: ../../godmode/massive/massive_enable_disable_alerts.php:196 #: ../../godmode/massive/massive_enable_disable_alerts.php:231 #: ../../include/class/ModuleTemplates.class.php:1184 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:491 msgid "Format" msgstr "Formato" @@ -34565,7 +34728,7 @@ msgid "Database size stats" msgstr "Tamaño de estadísticas de la base de datos" #: ../../godmode/db/db_main.php:108 ../../include/class/Diagnostics.class.php:603 -#: ../../include/functions_reporting.php:14740 +#: ../../include/functions_reporting.php:14813 msgid "Total events" msgstr "Total de eventos" @@ -34622,7 +34785,7 @@ msgid "Update group" msgstr "Actualizar grupo" #: ../../godmode/groups/configure_group.php:95 -#: ../../godmode/groups/group_list.php:1006 +#: ../../godmode/groups/group_list.php:1018 msgid "Create group" msgstr "Crear grupo" @@ -34631,46 +34794,46 @@ msgstr "Crear grupo" msgid "Manage agents group" msgstr "Administrar grupo de agentes" -#: ../../godmode/groups/configure_group.php:160 +#: ../../godmode/groups/configure_group.php:179 msgid "You have not access to the parent." msgstr "No tienes acceso al padre" -#: ../../godmode/groups/configure_group.php:218 +#: ../../godmode/groups/configure_group.php:237 msgid "Group Password" msgstr "Contraseña del grupo" -#: ../../godmode/groups/configure_group.php:224 +#: ../../godmode/groups/configure_group.php:243 msgid "Enable alert use in this group." msgstr "Habilitar el uso de alertas en este grupo." -#: ../../godmode/groups/configure_group.php:229 +#: ../../godmode/groups/configure_group.php:248 msgid "Propagate ACL" msgstr "Propagar ACL" -#: ../../godmode/groups/configure_group.php:229 +#: ../../godmode/groups/configure_group.php:248 msgid "Propagate the same ACL security into the child subgroups." msgstr "" "Propaga la misma seguridad ACL del padre a todos los grupos hijos que dependen " "de él." -#: ../../godmode/groups/configure_group.php:244 -#: ../../include/functions_events.php:5068 +#: ../../godmode/groups/configure_group.php:263 +#: ../../include/functions_events.php:5073 msgid "Contact" msgstr "Contacto" -#: ../../godmode/groups/configure_group.php:244 +#: ../../godmode/groups/configure_group.php:263 msgid "Contact information accessible through the _groupcontact_ macro" msgstr "Información de contacto accesible a través de _groupcontact_ macro" -#: ../../godmode/groups/configure_group.php:249 +#: ../../godmode/groups/configure_group.php:268 msgid "Information accessible through the _group_other_ macro" msgstr "Información accesible a través de _group_other_ macro" -#: ../../godmode/groups/configure_group.php:254 +#: ../../godmode/groups/configure_group.php:273 msgid "Max agents allowed" msgstr "Máximo de agentes permitidos" -#: ../../godmode/groups/configure_group.php:254 +#: ../../godmode/groups/configure_group.php:273 msgid "Set the maximum of agents allowed for this group. 0 is unlimited." msgstr "" "Establezca el máximo de agentes permitidos en este grupo. 0 es ilimitado." @@ -34689,8 +34852,8 @@ msgid "Groups defined in %s" msgstr "Grupos definidos en %s" #: ../../godmode/groups/group_list.php:352 -#: ../../godmode/agentes/module_manager_editor_network.php:172 -#: ../../godmode/menu.php:226 ../../include/class/AgentWizard.class.php:723 +#: ../../godmode/agentes/module_manager_editor_network.php:173 +#: ../../godmode/menu.php:225 ../../include/class/AgentWizard.class.php:723 #: ../../include/class/AgentWizard.class.php:779 msgid "Credential store" msgstr "Almacén de credenciales" @@ -34715,32 +34878,32 @@ msgid "There was a problem creating group" msgstr "Ha habido un problema al crear el grupo." #: ../../godmode/groups/group_list.php:470 -#: ../../godmode/groups/group_list.php:542 +#: ../../godmode/groups/group_list.php:543 msgid "Each group must have a different name" msgstr "Cada grupo debe tener un nombre diferente" #: ../../godmode/groups/group_list.php:473 -#: ../../godmode/groups/group_list.php:545 +#: ../../godmode/groups/group_list.php:546 msgid "Group must have a name" msgstr "El grupo debe tener un nombre" -#: ../../godmode/groups/group_list.php:537 +#: ../../godmode/groups/group_list.php:538 #: ../../godmode/groups/modu_group_list.php:165 msgid "Group successfully updated" msgstr "Grupo actualizado correctamente" -#: ../../godmode/groups/group_list.php:539 +#: ../../godmode/groups/group_list.php:540 #: ../../godmode/groups/modu_group_list.php:168 msgid "There was a problem modifying group" msgstr "Ha habido un problema al modificar el grupo" -#: ../../godmode/groups/group_list.php:602 +#: ../../godmode/groups/group_list.php:603 #, php-format msgid "The group %s could not be deleted because it is not empty in the nodes" msgstr "" "El grupo %s no puede ser borrado porque en el nodo se está usando en este grupo" -#: ../../godmode/groups/group_list.php:676 +#: ../../godmode/groups/group_list.php:677 msgid "" "The group has not been deleted in the metaconsole due to an error in the node " "database" @@ -34748,40 +34911,40 @@ msgstr "" "El grupo no se ha eliminado de la Metaconsola por un error en la base de datos " "de los nodos" -#: ../../godmode/groups/group_list.php:685 +#: ../../godmode/groups/group_list.php:686 #, php-format msgid "The group %s has been deleted in the nodes" msgstr "El grupo %s se ha borrado de los nodos" -#: ../../godmode/groups/group_list.php:725 +#: ../../godmode/groups/group_list.php:726 #: ../../godmode/groups/modu_group_list.php:238 msgid "Group successfully deleted" msgstr "Grupo eliminado correctamente" -#: ../../godmode/groups/group_list.php:728 +#: ../../godmode/groups/group_list.php:729 #: ../../godmode/groups/modu_group_list.php:239 msgid "There was a problem deleting group" msgstr "Ha habido un problema al borrar el grupo." -#: ../../godmode/groups/group_list.php:735 +#: ../../godmode/groups/group_list.php:736 #, php-format msgid "The group is not empty. It is use in %s." msgstr "El grupo no está vacío. Está en uso en %s." -#: ../../godmode/groups/group_list.php:774 -#: ../../godmode/groups/group_list.php:994 +#: ../../godmode/groups/group_list.php:775 +#: ../../godmode/groups/group_list.php:1006 msgid "There are no defined groups" msgstr "No hay grupos definidos" -#: ../../godmode/groups/group_list.php:832 +#: ../../godmode/groups/group_list.php:833 msgid "Edit or delete groups can cause problems with synchronization" msgstr "Editar o borrar grupos puede causar problemas con la sincronización." -#: ../../godmode/groups/group_list.php:958 +#: ../../godmode/groups/group_list.php:970 msgid "Are you sure? This group will also be deleted in all the nodes." msgstr "¿Está seguro? Este grupo también se borrará de todos los nodos." -#: ../../godmode/groups/group_list.php:964 +#: ../../godmode/groups/group_list.php:976 msgid "" "The child groups will be updated to use the parent id of the deleted group" msgstr "Los grupos hijo se actualizarán y usarán el id padre del grupo eliminado" @@ -34829,24 +34992,20 @@ msgstr "Crear grupo de módulos" msgid "Tactical group view" msgstr "Vista táctica de grupo" -#: ../../godmode/groups/tactical.php:115 +#: ../../godmode/groups/tactical.php:114 msgid "Distribution by os" msgstr "Distribución por sistema operativo" -#: ../../godmode/groups/tactical.php:146 +#: ../../godmode/groups/tactical.php:145 #: ../../include/functions_reporting_html.php:1204 -#: ../../include/functions_reporting_html.php:1419 +#: ../../include/functions_reporting_html.php:1428 msgid "Events by agent" msgstr "Eventos por agente" -#: ../../godmode/groups/tactical.php:155 +#: ../../godmode/groups/tactical.php:154 msgid "Alerts and events" msgstr "Alertas y eventos" -#: ../../godmode/groups/tactical.php:182 -msgid "Ultimo contacto remoto" -msgstr "Ultimo contacto remoto" - #: ../../godmode/extensions.php:46 msgid "Defined extensions" msgstr "Extensiones definidas" @@ -34991,7 +35150,7 @@ msgstr "Gestión de perfiles de usuario" #: ../../godmode/users/configure_profile.php:90 #: ../../godmode/users/configure_profile.php:389 #: ../../godmode/users/user_list.php:301 -#: ../../godmode/users/configure_user.php:280 +#: ../../godmode/users/configure_user.php:218 msgid "Manage users" msgstr "Gestionar usuarios" @@ -35144,7 +35303,7 @@ msgid "Create Profile" msgstr "Crear perfil" #: ../../godmode/users/configure_profile.php:283 -#: ../../operation/agentes/ver_agente.php:1938 +#: ../../operation/agentes/ver_agente.php:1934 msgid "View agents" msgstr "Ver agentes" @@ -35165,7 +35324,7 @@ msgid "Edit events" msgstr "Editar eventos" #: ../../godmode/users/configure_profile.php:317 -#: ../../operation/events/events.php:1545 +#: ../../operation/events/events.php:1599 msgid "Manage events" msgstr "Gestionar eventos" @@ -35194,7 +35353,7 @@ msgid "Manage network maps" msgstr "Gestionar mapas de red" #: ../../godmode/users/configure_profile.php:354 -#: ../../include/functions_menu.php:571 +#: ../../include/functions_menu.php:573 msgid "View visual console" msgstr "Ver consola visual" @@ -35224,36 +35383,36 @@ msgid "Profile name already on use, please, change the name before save" msgstr "Nombre de perfil en uso, por favor, cambie el nombre antes de guardar" #: ../../godmode/users/user_list.php:351 -#: ../../godmode/users/configure_user.php:115 +#: ../../godmode/users/configure_user.php:885 #, php-format msgid "Deleted user %s" msgstr "Usuario eliminado %s" #: ../../godmode/users/user_list.php:358 ../../godmode/users/user_list.php:400 -#: ../../godmode/users/configure_user.php:122 +#: ../../godmode/users/configure_user.php:892 msgid "There was a problem deleting the user" msgstr "Error al borrar el usuario" #: ../../godmode/users/user_list.php:376 -#: ../../godmode/users/configure_user.php:137 +#: ../../godmode/users/configure_user.php:907 #, php-format msgid "Deleted user %s from metaconsole" msgstr "Usuario %s eliminado de la Metaconsola" #: ../../godmode/users/user_list.php:388 -#: ../../godmode/users/configure_user.php:149 +#: ../../godmode/users/configure_user.php:919 #, php-format msgid "Deleted user %s from %s" msgstr "Usuario %s eliminado de %s" #: ../../godmode/users/user_list.php:394 -#: ../../godmode/users/configure_user.php:158 +#: ../../godmode/users/configure_user.php:928 #, php-format msgid "Successfully deleted from %s" msgstr "Eliminado correctamente de %s" #: ../../godmode/users/user_list.php:395 -#: ../../godmode/users/configure_user.php:159 +#: ../../godmode/users/configure_user.php:929 #, php-format msgid "There was a problem deleting the user from %s" msgstr "Error al eliminar al usuario de %s" @@ -35262,15 +35421,15 @@ msgstr "Error al eliminar al usuario de %s" msgid "ID user cannot be empty" msgstr "El ID de usuario no puede estar vacío" -#: ../../godmode/users/user_list.php:443 +#: ../../godmode/users/user_list.php:444 msgid "There was a problem disabling user" msgstr "Error al deshabilitar el usuario" -#: ../../godmode/users/user_list.php:449 +#: ../../godmode/users/user_list.php:450 msgid "There was a problem enabling user" msgstr "Error al habilitar el usuario" -#: ../../godmode/users/user_list.php:544 ../../operation/users/user_edit.php:284 +#: ../../godmode/users/user_list.php:545 ../../operation/users/user_edit.php:284 #, php-format msgid "" "This node is configured with centralized mode. All users information is read " @@ -35279,23 +35438,23 @@ msgstr "" "Este nodo esta configurado con el modo centralizado. Toda la información de " "las políticas está en modo lectura. Vaya a%s para administrarlo." -#: ../../godmode/users/user_list.php:580 +#: ../../godmode/users/user_list.php:581 msgid "Profile / Group" msgstr "Perfil/Grupo" -#: ../../godmode/users/user_list.php:768 ../../operation/search_users.php:63 +#: ../../godmode/users/user_list.php:769 ../../operation/search_users.php:63 msgid "Administrator" msgstr "Administrador" -#: ../../godmode/users/user_list.php:794 +#: ../../godmode/users/user_list.php:795 msgid "Show profiles" msgstr "Mostrar perfiles" -#: ../../godmode/users/user_list.php:812 +#: ../../godmode/users/user_list.php:813 msgid "Other profiles are also assigned." msgstr "Otros perfiles también han sido asignados" -#: ../../godmode/users/user_list.php:814 +#: ../../godmode/users/user_list.php:815 msgid "" "Other profiles you cannot manage are also assigned. These profiles are not " "shown. You cannot enable/disable or delete this user." @@ -35303,62 +35462,79 @@ msgstr "" "Otros perfiles que no puede gestionar también han sido asignados. Estos " "perfiles no se muestran. No puede habilitar/deshabilitar o borrar este usuario." -#: ../../godmode/users/user_list.php:823 -#: ../../include/functions_reporting.php:5140 -#: ../../include/functions_reporting.php:5187 ../../operation/search_users.php:87 +#: ../../godmode/users/user_list.php:824 +#: ../../include/functions_reporting.php:5149 +#: ../../include/functions_reporting.php:5196 ../../operation/search_users.php:87 msgid "The user doesn't have any assigned profile/group" msgstr "El usuario no tiene ningún perfil asignado." -#: ../../godmode/users/user_list.php:935 +#: ../../godmode/users/user_list.php:936 #: ../../operation/users/user_edit_header.php:129 msgid "Edit user" msgstr "Editar usuario" -#: ../../godmode/users/user_list.php:1032 +#: ../../godmode/users/user_list.php:1034 msgid "Create user" msgstr "Crear usuario" -#: ../../godmode/users/user_list.php:1046 -#: ../../godmode/users/configure_user.php:357 +#: ../../godmode/users/user_list.php:1048 +#: ../../godmode/users/configure_user.php:295 #, php-format msgid "The current authentication scheme doesn't support creating users on %s" msgstr "El sistema de autenticación no permite crear usuarios en %s." -#: ../../godmode/users/configure_user.php:267 +#: ../../godmode/users/configure_user.php:60 +#: ../../godmode/users/user_management.php:39 +#: ../../godmode/massive/massive_edit_users.php:275 +#: ../../godmode/events/events.php:56 ../../include/auth/mysql.php:808 +#: ../../operation/users/user_edit.php:470 ../../operation/events/events.php:1525 +msgid "Event list" +msgstr "Lista de eventos" + +#: ../../godmode/users/configure_user.php:64 +#: ../../godmode/users/user_management.php:43 ../../include/auth/mysql.php:812 +msgid "External link" +msgstr "Enlace externo" + +#: ../../godmode/users/configure_user.php:205 msgid "Update User" msgstr "Actualizar usuario" -#: ../../godmode/users/configure_user.php:267 +#: ../../godmode/users/configure_user.php:205 msgid "Create User" msgstr "Crear usuario" -#: ../../godmode/users/configure_user.php:284 +#: ../../godmode/users/configure_user.php:222 msgid "User Detail Editor" msgstr "Editor de detalles de usuario" -#: ../../godmode/users/configure_user.php:449 +#: ../../godmode/users/configure_user.php:391 msgid "User ID cannot be empty" msgstr "El ID de usuario no puede estar vacío." -#: ../../godmode/users/configure_user.php:456 +#: ../../godmode/users/configure_user.php:399 +msgid "User ID already exists" +msgstr "La ID de este usuario ya existe." + +#: ../../godmode/users/configure_user.php:405 msgid "Invalid user ID: leading or trailing blank spaces not allowed" msgstr "" "ID de usuario no válido: no están permitidos los espacios en blanco al " "principio o al final" -#: ../../godmode/users/configure_user.php:464 +#: ../../godmode/users/configure_user.php:413 msgid "Passwords cannot be empty" msgstr "Las contraseñas no pueden estar vacías." -#: ../../godmode/users/configure_user.php:471 +#: ../../godmode/users/configure_user.php:420 msgid "Passwords didn't match" msgstr "Las contraseñas no coinciden." -#: ../../godmode/users/configure_user.php:478 +#: ../../godmode/users/configure_user.php:427 msgid "The password provided is not valid. Please set another one." msgstr "La contraseña proporcionada no es válida. Por favor, introduzca otra." -#: ../../godmode/users/configure_user.php:540 +#: ../../godmode/users/configure_user.php:489 msgid "" "Strict ACL is not recommended for admin users because performance could be " "affected." @@ -35366,59 +35542,59 @@ msgstr "" "ACL estricto no está recomendado para usuarios administradores porque el " "rendimiento podría verse afectado." -#: ../../godmode/users/configure_user.php:624 -#: ../../godmode/users/configure_user.php:963 +#: ../../godmode/users/configure_user.php:573 +#: ../../godmode/users/configure_user.php:1011 msgid "Profile added successfully" msgstr "Perfil añadido correctamente" -#: ../../godmode/users/configure_user.php:625 -#: ../../godmode/users/configure_user.php:964 +#: ../../godmode/users/configure_user.php:574 +#: ../../godmode/users/configure_user.php:1012 msgid "Profile cannot be added" msgstr "El perfil no se puede añadir." -#: ../../godmode/users/configure_user.php:754 -#: ../../godmode/users/configure_user.php:778 -#: ../../godmode/users/configure_user.php:852 -#: ../../godmode/users/configure_user.php:859 -#: ../../godmode/users/configure_user.php:891 +#: ../../godmode/users/configure_user.php:715 +#: ../../godmode/users/configure_user.php:743 +#: ../../godmode/users/configure_user.php:817 +#: ../../godmode/users/configure_user.php:824 +#: ../../godmode/users/configure_user.php:939 #: ../../operation/users/user_edit.php:216 #: ../../operation/users/user_edit.php:262 msgid "User info successfully updated" msgstr "Información del usuario actualizada correctamente" -#: ../../godmode/users/configure_user.php:755 -#: ../../godmode/users/configure_user.php:779 -#: ../../godmode/users/configure_user.php:853 -#: ../../godmode/users/configure_user.php:860 -#: ../../godmode/users/configure_user.php:892 +#: ../../godmode/users/configure_user.php:716 +#: ../../godmode/users/configure_user.php:744 +#: ../../godmode/users/configure_user.php:818 +#: ../../godmode/users/configure_user.php:825 +#: ../../godmode/users/configure_user.php:940 msgid "Error updating user info (no change?)" msgstr "Error al actualizar la información del usuario (¿no hubo cambios?)" -#: ../../godmode/users/configure_user.php:784 +#: ../../godmode/users/configure_user.php:749 msgid "Password of the active user is required to perform password change" msgstr "Se necesita la contraseña del usuario activo para cambiar la contraseña" -#: ../../godmode/users/configure_user.php:786 +#: ../../godmode/users/configure_user.php:751 msgid "Password of active user is not correct" msgstr "La contraseña del usuario activo no es correcta" -#: ../../godmode/users/configure_user.php:802 +#: ../../godmode/users/configure_user.php:767 msgid "Passwords does not match" msgstr "Las contraseñas no coinciden." -#: ../../godmode/users/configure_user.php:852 +#: ../../godmode/users/configure_user.php:817 #: ../../operation/users/user_edit.php:214 msgid "You have generated a new API Token." msgstr "Ha generado un nuevo token de API." -#: ../../godmode/users/configure_user.php:881 +#: ../../godmode/users/configure_user.php:846 msgid "" "Strict ACL is not recommended for this user. Performance could be affected." msgstr "" "ACL estricto no está recomendado para este usuario. El rendimiento podría " "verse afectado." -#: ../../godmode/users/configure_user.php:1014 +#: ../../godmode/users/configure_user.php:1062 #: ../../operation/users/user_edit.php:306 msgid "" "The API token will be renewed. After this action, the last token you were " @@ -35427,67 +35603,67 @@ msgstr "" "Se renovará el token de la API. Después de esta acción, el último token que " "estabs usando no funcionará. ¿Está seguro?" -#: ../../godmode/users/configure_user.php:1030 +#: ../../godmode/users/configure_user.php:1078 #: ../../operation/users/user_edit.php:339 msgid "Your API Token is:" msgstr "Su token de API es:" -#: ../../godmode/users/configure_user.php:1030 +#: ../../godmode/users/configure_user.php:1078 #: ../../operation/users/user_edit.php:339 msgid "Please, avoid share this string with others." msgstr "Por favor, evite compartir esta cadena con otros." -#: ../../godmode/users/configure_user.php:1091 +#: ../../godmode/users/configure_user.php:1155 #: ../../godmode/users/user_management.php:178 #: ../../operation/users/user_edit.php:384 msgid "Full (display) name" msgstr "Nombre completo" -#: ../../godmode/users/configure_user.php:1109 -#: ../../godmode/users/user_management.php:664 +#: ../../godmode/users/configure_user.php:1173 +#: ../../godmode/users/user_management.php:690 #: ../../godmode/massive/massive_edit_users.php:469 -#: ../../operation/users/user_edit.php:537 +#: ../../operation/users/user_edit.php:530 msgid "The timezone must be that of the associated server." msgstr "La zona horaria debe ser la del servidor asociado." -#: ../../godmode/users/configure_user.php:1142 +#: ../../godmode/users/configure_user.php:1206 #: ../../godmode/users/user_management.php:299 #: ../../operation/users/user_edit.php:411 msgid "Password confirmation" msgstr "Confirmar contraseña" -#: ../../godmode/users/configure_user.php:1160 +#: ../../godmode/users/configure_user.php:1224 #: ../../godmode/users/user_management.php:319 msgid "Own password confirmation" msgstr "Confirmación de contraseña propia" -#: ../../godmode/users/configure_user.php:1170 +#: ../../godmode/users/configure_user.php:1234 #: ../../godmode/users/user_management.php:233 msgid "Administrator user" msgstr "Usuario administrador" -#: ../../godmode/users/configure_user.php:1197 +#: ../../godmode/users/configure_user.php:1261 #: ../../godmode/users/user_management.php:198 #: ../../operation/users/user_edit.php:404 msgid "E-mail" msgstr "Correo electrónico" -#: ../../godmode/users/configure_user.php:1213 +#: ../../godmode/users/configure_user.php:1277 #: ../../godmode/users/user_management.php:206 #: ../../godmode/users/user_management.php:218 #: ../../operation/users/user_edit.php:406 msgid "Phone number" msgstr "Número de teléfono" -#: ../../godmode/users/configure_user.php:1229 -#: ../../godmode/users/user_management.php:695 -#: ../../operation/users/user_edit.php:755 +#: ../../godmode/users/configure_user.php:1293 +#: ../../godmode/users/user_management.php:721 +#: ../../operation/users/user_edit.php:752 msgid "Login allowed IP list" msgstr "Lista de IP permitidas para iniciar sesión" -#: ../../godmode/users/configure_user.php:1230 -#: ../../godmode/users/user_management.php:712 -#: ../../operation/users/user_edit.php:756 +#: ../../godmode/users/configure_user.php:1294 +#: ../../godmode/users/user_management.php:738 +#: ../../operation/users/user_edit.php:753 msgid "" "Add the source IPs that will allow console access. Each IP must be separated " "only by comma. * allows all." @@ -35495,31 +35671,31 @@ msgstr "" "Agregue las direcciones IP de origen que permitirán el acceso a la consola. " "Cada IP debe estar separada solo por comas. * permite todo." -#: ../../godmode/users/configure_user.php:1269 +#: ../../godmode/users/configure_user.php:1333 msgid "Skin" msgstr "Apariencia" -#: ../../godmode/users/configure_user.php:1280 +#: ../../godmode/users/configure_user.php:1344 msgid "Search custom field view" msgstr "Buscar vista de campo personalizado" -#: ../../godmode/users/configure_user.php:1294 +#: ../../godmode/users/configure_user.php:1358 msgid "Load by default the selected view in custom field view" msgstr "" "Cargar por defecto la vista seleccionada en la vista de campo personalizado" -#: ../../godmode/users/configure_user.php:1300 +#: ../../godmode/users/configure_user.php:1364 msgid "Use global conf" msgstr "Usar configuración global" -#: ../../godmode/users/configure_user.php:1305 -#: ../../godmode/users/user_management.php:614 +#: ../../godmode/users/configure_user.php:1369 +#: ../../godmode/users/user_management.php:629 #: ../../godmode/massive/massive_edit_users.php:270 #: ../../operation/users/user_edit.php:466 msgid "Home screen" msgstr "Pantalla de inicio" -#: ../../godmode/users/configure_user.php:1306 +#: ../../godmode/users/configure_user.php:1370 #: ../../godmode/massive/massive_edit_users.php:270 #: ../../operation/users/user_edit.php:466 msgid "" @@ -35532,73 +35708,73 @@ msgstr "" "sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 para mostrar la vista " "de detalle de agente" -#: ../../godmode/users/configure_user.php:1410 +#: ../../godmode/users/configure_user.php:1459 msgid "Metaconsole access" msgstr "Acceso a la Metaconsola" -#: ../../godmode/users/configure_user.php:1442 +#: ../../godmode/users/configure_user.php:1495 msgid "Default event filter" msgstr "Filtro de evento por defecto" -#: ../../godmode/users/configure_user.php:1456 +#: ../../godmode/users/configure_user.php:1509 msgid "eHorus user access enabled" msgstr "Acceso de usuario eHorus habilitado" -#: ../../godmode/users/configure_user.php:1464 -#: ../../include/functions_config.php:1820 +#: ../../godmode/users/configure_user.php:1517 +#: ../../include/functions_config.php:1832 msgid "eHorus user" msgstr "Usuario de eHorus" -#: ../../godmode/users/configure_user.php:1473 -#: ../../include/functions_config.php:1824 +#: ../../godmode/users/configure_user.php:1526 +#: ../../include/functions_config.php:1836 msgid "eHorus password" msgstr "Contraseña de eHorus" -#: ../../godmode/users/configure_user.php:1502 +#: ../../godmode/users/configure_user.php:1555 msgid "User must be created before activating double authentication." msgstr "El usuario debe estar creado antes de activar la doble autenticación." -#: ../../godmode/users/configure_user.php:1529 -#: ../../operation/users/user_edit.php:559 +#: ../../godmode/users/configure_user.php:1582 +#: ../../operation/users/user_edit.php:552 msgid "Show information" msgstr "Mostrar información" -#: ../../godmode/users/configure_user.php:1608 +#: ../../godmode/users/configure_user.php:1662 msgid "Enable agents managment" msgstr "Habilitar gestión de agentes" -#: ../../godmode/users/configure_user.php:1616 +#: ../../godmode/users/configure_user.php:1670 msgid "Enable node access" msgstr "Habilitar el acceso al nodo" -#: ../../godmode/users/configure_user.php:1617 +#: ../../godmode/users/configure_user.php:1671 msgid "With this option enabled, the user will can access to nodes console" msgstr "" "Con esta opción habilitada, el usuario podrá tener acceso a los nodos de la " "consola." -#: ../../godmode/users/configure_user.php:1849 +#: ../../godmode/users/configure_user.php:1901 msgid "yes" msgstr "sí" -#: ../../godmode/users/configure_user.php:1852 +#: ../../godmode/users/configure_user.php:1904 msgid "no" msgstr "no" -#: ../../godmode/users/configure_user.php:1856 +#: ../../godmode/users/configure_user.php:1908 msgid "Please select profile and group" msgstr "Seleccione un perfil y grupo" -#: ../../godmode/users/configure_user.php:1870 -#: ../../godmode/users/configure_user.php:1921 +#: ../../godmode/users/configure_user.php:1922 +#: ../../godmode/users/configure_user.php:1973 msgid "This profile is already defined" msgstr "Este perfil ya está definido" -#: ../../godmode/users/configure_user.php:1935 +#: ../../godmode/users/configure_user.php:1987 msgid "Deleting last profile will delete this user" msgstr "Eliminar el último perfil eliminará este usuario" -#: ../../godmode/users/configure_user.php:1975 +#: ../../godmode/users/configure_user.php:2027 msgid "" "User will be created without profiles assigned and won't be able to log in, " "are you sure?" @@ -35606,44 +35782,33 @@ msgstr "" "El usuario se creará sin perfiles asignados y no podrá identificarse, ¿está " "seguro?" -#: ../../godmode/users/configure_user.php:2082 -#: ../../operation/users/user_edit.php:1256 +#: ../../godmode/users/configure_user.php:2134 +#: ../../operation/users/user_edit.php:1253 msgid "Double autentication information" msgstr "Información sobre la doble autentificación" -#: ../../godmode/users/configure_user.php:2171 -#: ../../operation/users/user_edit.php:1345 +#: ../../godmode/users/configure_user.php:2223 +#: ../../operation/users/user_edit.php:1342 msgid "The double authentication will be deactivated" msgstr "La doble autentificación se desactivará" -#: ../../godmode/users/configure_user.php:2172 -#: ../../operation/users/user_edit.php:1346 +#: ../../godmode/users/configure_user.php:2224 +#: ../../operation/users/user_edit.php:1343 msgid "Deactivate" msgstr "Desactivado" -#: ../../godmode/users/configure_user.php:2207 -#: ../../operation/users/user_edit.php:1378 +#: ../../godmode/users/configure_user.php:2259 +#: ../../operation/users/user_edit.php:1375 msgid "The double autentication was deactivated successfully" msgstr "La doble autentificación fue desactivada correctamente" -#: ../../godmode/users/configure_user.php:2210 -#: ../../godmode/users/configure_user.php:2214 -#: ../../operation/users/user_edit.php:1381 -#: ../../operation/users/user_edit.php:1385 +#: ../../godmode/users/configure_user.php:2262 +#: ../../godmode/users/configure_user.php:2266 +#: ../../operation/users/user_edit.php:1378 +#: ../../operation/users/user_edit.php:1382 msgid "There was an error deactivating the double autentication" msgstr "Error al desactivar la doble autentificación" -#: ../../godmode/users/user_management.php:39 -#: ../../godmode/massive/massive_edit_users.php:275 -#: ../../godmode/events/events.php:56 ../../operation/users/user_edit.php:470 -#: ../../operation/events/events.php:1471 -msgid "Event list" -msgstr "Lista de eventos" - -#: ../../godmode/users/user_management.php:43 -msgid "External link" -msgstr "Enlace externo" - #: ../../godmode/users/user_management.php:136 msgid "Profile information" msgstr "Información de perfil" @@ -35685,11 +35850,11 @@ msgstr "" "El usuario con la autenticación local habilitada siempre utilizará la " "autenticación local." -#: ../../godmode/users/user_management.php:384 +#: ../../godmode/users/user_management.php:390 msgid "Session time" msgstr "TIempo de sesión" -#: ../../godmode/users/user_management.php:394 +#: ../../godmode/users/user_management.php:400 msgid "" "This is defined in minutes, If you wish a permanent session should putting -1 " "in this field." @@ -35697,53 +35862,53 @@ msgstr "" "Esto está definido en minutos; si quieres una sesión permanente, pon -1 en " "este campo." -#: ../../godmode/users/user_management.php:399 +#: ../../godmode/users/user_management.php:405 #: ../../godmode/massive/massive_edit_users.php:378 -#: ../../operation/users/user_edit.php:645 +#: ../../operation/users/user_edit.php:642 msgid "Autorefresh" msgstr "Actualización automática" -#: ../../godmode/users/user_management.php:434 +#: ../../godmode/users/user_management.php:440 #: ../../godmode/massive/massive_edit_users.php:418 -#: ../../operation/users/user_edit.php:681 +#: ../../operation/users/user_edit.php:678 msgid "Full list of pages" msgstr "Lista completa de páginas" -#: ../../godmode/users/user_management.php:445 +#: ../../godmode/users/user_management.php:451 msgid "Pages with autorefresh" msgstr "Páginas con auto-refresco" -#: ../../godmode/users/user_management.php:466 -#: ../../godmode/users/user_management.php:467 +#: ../../godmode/users/user_management.php:472 +#: ../../godmode/users/user_management.php:473 #: ../../godmode/massive/massive_edit_users.php:427 #: ../../godmode/massive/massive_edit_users.php:428 -#: ../../include/functions_html.php:1381 ../../include/functions_html.php:1382 -#: ../../operation/users/user_edit.php:690 -#: ../../operation/users/user_edit.php:691 +#: ../../include/functions_html.php:1386 ../../include/functions_html.php:1387 +#: ../../operation/users/user_edit.php:687 +#: ../../operation/users/user_edit.php:688 msgid "Push selected pages into autorefresh list" msgstr "Añadir las páginas seleccionadas a la lista de actualización automática" -#: ../../godmode/users/user_management.php:483 -#: ../../godmode/users/user_management.php:484 +#: ../../godmode/users/user_management.php:489 +#: ../../godmode/users/user_management.php:490 #: ../../godmode/massive/massive_edit_users.php:437 #: ../../godmode/massive/massive_edit_users.php:438 -#: ../../include/functions_html.php:1393 ../../include/functions_html.php:1394 -#: ../../operation/users/user_edit.php:699 -#: ../../operation/users/user_edit.php:700 +#: ../../include/functions_html.php:1398 ../../include/functions_html.php:1399 +#: ../../operation/users/user_edit.php:696 +#: ../../operation/users/user_edit.php:697 msgid "Pop selected pages out of autorefresh list" msgstr "Quitar las páginas seleccionadas de la lista de actualización automática" -#: ../../godmode/users/user_management.php:530 +#: ../../godmode/users/user_management.php:536 msgid "Autorefresh pages" msgstr "Auto-refrescar páginas" -#: ../../godmode/users/user_management.php:536 +#: ../../godmode/users/user_management.php:542 msgid "Time for autorefresh" msgstr "Tiempo de auto-refresco" -#: ../../godmode/users/user_management.php:549 +#: ../../godmode/users/user_management.php:555 #: ../../godmode/massive/massive_edit_users.php:454 -#: ../../operation/users/user_edit.php:716 +#: ../../operation/users/user_edit.php:713 msgid "" "Interval of autorefresh of the elements, by default they are 30 seconds, " "needing to enable the autorefresh first" @@ -35751,41 +35916,36 @@ msgstr "" "Intervalo de auto refresco de los elementos, 30 segundos por defecto, pero " "debe habilitar primero el auto refresco." -#: ../../godmode/users/user_management.php:554 +#: ../../godmode/users/user_management.php:560 msgid "Language and Appearance" msgstr "Idioma y aspecto" -#: ../../godmode/users/user_management.php:576 +#: ../../godmode/users/user_management.php:582 msgid "User color scheme" msgstr "Combinación de colores del usuario" -#: ../../godmode/users/user_management.php:593 +#: ../../godmode/users/user_management.php:603 #: ../../godmode/massive/massive_edit_users.php:340 -#: ../../operation/users/user_edit.php:574 +#: ../../operation/users/user_edit.php:571 msgid "Event filter" msgstr "Filtro de eventos" -#: ../../godmode/users/user_management.php:661 -#: ../../include/functions_visual_map_editor.php:313 +#: ../../godmode/users/user_management.php:687 +#: ../../include/functions_visual_map_editor.php:309 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302 msgid "Time zone" msgstr "Zona horaria" -#: ../../godmode/users/user_management.php:678 +#: ../../godmode/users/user_management.php:704 msgid "Additional settings" msgstr "Ajustes adicionales" -#: ../../godmode/users/user_management.php:717 +#: ../../godmode/users/user_management.php:743 msgid "Allow all IPs" msgstr "Permitir todas las direcciones IP" -#: ../../godmode/users/user_management.php:749 -msgid "Generated automatically with the information provided for the user" -msgstr "" -"Generado automáticamente con la información proporcionada para el usuario" - #: ../../godmode/agentes/agent_template.php:83 -#: ../../include/functions_api.php:15092 +#: ../../include/functions_api.php:15103 msgid "Created by template " msgstr "Creado mediante la plantilla " @@ -35798,14 +35958,14 @@ msgid "Error adding modules. The following errors already exists: " msgstr "Error al añadir los módulos. Ocurrieron los siguientes errores: " #: ../../godmode/agentes/agent_template.php:179 -#: ../../include/functions_api.php:15186 +#: ../../include/functions_api.php:15197 msgid "Modules successfully added" msgstr "Módulos añadidos correctamente" #: ../../godmode/agentes/agent_template.php:204 #: ../../godmode/agentes/configurar_agente.php:456 #: ../../godmode/agentes/configurar_agente.php:749 ../../godmode/menu.php:177 -#: ../../godmode/wizards/HostDevices.class.php:1098 +#: ../../godmode/wizards/HostDevices.class.php:1094 msgid "Module templates" msgstr "Plantillas de módulos" @@ -35816,7 +35976,7 @@ msgid "Assign" msgstr "Asignar" #: ../../godmode/agentes/agent_template.php:317 -#: ../../mobile/operation/modules.php:772 +#: ../../mobile/operation/modules.php:804 msgid "No modules" msgstr "Sin módulos" @@ -35837,70 +35997,75 @@ msgid "Column number to retrieve from the WQL query result (starting from zero). msgstr "" "Número de columna a obtener del resultado de la consulta WQL (a partir de 0)." -#: ../../godmode/agentes/module_manager_editor_web.php:161 +#: ../../godmode/agentes/module_manager_editor_web.php:164 msgid "Debug remotely this module" msgstr "Depurar este módulo en remoto" -#: ../../godmode/agentes/module_manager_editor_web.php:164 +#: ../../godmode/agentes/module_manager_editor_web.php:167 msgid "Debug this module once it has been initialized" msgstr "Depurar este módulo una vez iniciado" -#: ../../godmode/agentes/module_manager_editor_web.php:190 +#: ../../godmode/agentes/module_manager_editor_web.php:193 #: ../../include/class/WebServerModuleDebug.class.php:325 msgid "Debug" msgstr "Depurar" -#: ../../godmode/agentes/module_manager_editor_web.php:219 +#: ../../godmode/agentes/module_manager_editor_web.php:222 msgid "Requests" msgstr "Peticiones" -#: ../../godmode/agentes/module_manager_editor_web.php:222 +#: ../../godmode/agentes/module_manager_editor_web.php:225 msgid "Agent browser id" msgstr "ID del navegador (Agent Browser)" -#: ../../godmode/agentes/module_manager_editor_web.php:228 +#: ../../godmode/agentes/module_manager_editor_web.php:231 msgid "HTTP auth (login)" msgstr "Autentificación HTTP (inicio de sesión)" -#: ../../godmode/agentes/module_manager_editor_web.php:231 +#: ../../godmode/agentes/module_manager_editor_web.php:234 msgid "HTTP auth (password)" msgstr "Autentificación HTTP (contraseña)" -#: ../../godmode/agentes/module_manager_editor_web.php:245 +#: ../../godmode/agentes/module_manager_editor_web.php:248 msgid "Proxy auth (login)" msgstr "Autentificación Proxy (inicio de sesión)" -#: ../../godmode/agentes/module_manager_editor_web.php:249 +#: ../../godmode/agentes/module_manager_editor_web.php:252 msgid "Proxy auth (pass)" msgstr "Autentificación proxy (contraseña)" -#: ../../godmode/agentes/module_manager_editor_web.php:256 +#: ../../godmode/agentes/module_manager_editor_web.php:259 msgid "Proxy auth (server)" msgstr "Autentificación proxy (servidor)" -#: ../../godmode/agentes/module_manager_editor_web.php:260 +#: ../../godmode/agentes/module_manager_editor_web.php:263 msgid "Proxy auth (realm)" msgstr "Autentificación proxy (área)" -#: ../../godmode/agentes/module_manager_editor_web.php:272 +#: ../../godmode/agentes/module_manager_editor_web.php:275 msgid "There isn't get or post" msgstr "No se puede obtener o publicar." -#: ../../godmode/agentes/status_monitor_custom_fields.php:101 -#: ../../godmode/agentes/status_monitor_custom_fields.php:147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4011 -#: ../../include/functions_reporting_html.php:1784 +#: ../../godmode/agentes/status_monitor_custom_fields.php:35 +#: ../../operation/agentes/status_monitor.php:326 ../../operation/menu.php:186 +msgid "Monitor detail" +msgstr "Detalle del monitor" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:121 +#: ../../godmode/agentes/status_monitor_custom_fields.php:167 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4020 +#: ../../mobile/operation/agents.php:100 ../../mobile/operation/agents.php:426 +#: ../../include/functions_reporting_html.php:1793 #: ../../include/functions_treeview.php:310 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560 -#: ../../operation/agentes/status_monitor.php:1572 -#: ../../operation/agentes/estado_generalagente.php:529 -#: ../../operation/inventory/inventory.php:1008 -#: ../../operation/inventory/inventory.php:1302 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561 +#: ../../operation/agentes/status_monitor.php:1574 +#: ../../operation/agentes/estado_generalagente.php:500 +#: ../../operation/inventory/inventory.php:1254 msgid "Last status change" msgstr "Último cambio de estado" -#: ../../godmode/agentes/status_monitor_custom_fields.php:165 +#: ../../godmode/agentes/status_monitor_custom_fields.php:185 msgid "Show monitor detail fields" msgstr "Mostrar campo de detalle de monitor" @@ -35924,15 +36089,15 @@ msgid "Could not be created, because IP already exists" msgstr "No se ha podido crear porque la IP ya existe" #: ../../godmode/agentes/configurar_agente.php:536 -#: ../../operation/agentes/ver_agente.php:1523 -#: ../../operation/agentes/ver_agente.php:1827 +#: ../../operation/agentes/ver_agente.php:1519 +#: ../../operation/agentes/ver_agente.php:1823 msgid "GIS data" msgstr "Datos GIS" #: ../../godmode/agentes/configurar_agente.php:605 #: ../../godmode/agentes/configurar_agente.php:758 -#: ../../operation/agentes/ver_agente.php:1538 -#: ../../operation/agentes/ver_agente.php:1885 ../../operation/menu.php:657 +#: ../../operation/agentes/ver_agente.php:1534 +#: ../../operation/agentes/ver_agente.php:1881 ../../operation/menu.php:657 #: ../../general/first_task/incidents.php:28 msgid "Incidents" msgstr "Incidentes" @@ -35962,12 +36127,12 @@ msgid "Manage agents" msgstr "Gestionar agentes" #: ../../godmode/agentes/configurar_agente.php:874 -#: ../../godmode/servers/modificar_server.php:350 +#: ../../godmode/servers/modificar_server.php:372 msgid "Conf file deleted successfully" msgstr "Archivo de configuración borrado correctamente" #: ../../godmode/agentes/configurar_agente.php:875 -#: ../../godmode/servers/modificar_server.php:351 +#: ../../godmode/servers/modificar_server.php:373 msgid "Could not delete conf file" msgstr "No se puede borrar el archivo de configuración" @@ -36010,11 +36175,11 @@ msgstr "Duplicar la dirección IP principal" msgid "There was a problem updating the agent" msgstr "Hubo un problema al actualizar el agente" -#: ../../godmode/agentes/configurar_agente.php:1227 +#: ../../godmode/agentes/configurar_agente.php:1243 msgid "There was a problem loading the agent" msgstr "Hubo un problema al cargar el agente" -#: ../../godmode/agentes/configurar_agente.php:1736 +#: ../../godmode/agentes/configurar_agente.php:1797 msgid "" "There was a problem updating module. Another module already exists with the " "same name." @@ -36022,26 +36187,26 @@ msgstr "" "Hubo un problema al actualizar el módulo. Ya existe otro módulo con el mismo " "nombre." -#: ../../godmode/agentes/configurar_agente.php:1740 +#: ../../godmode/agentes/configurar_agente.php:1801 msgid "" "There was a problem updating module. Some required fields are missed: (name)" msgstr "" "Hubo un problema al actualizar el módulo. Faltan algunos campos requeridos: " "(nombre)" -#: ../../godmode/agentes/configurar_agente.php:1744 +#: ../../godmode/agentes/configurar_agente.php:1805 msgid "There was a problem updating module. \"No change\"" msgstr "Hubo un problema al actualizar el módulo. \"Sin cambios\"." -#: ../../godmode/agentes/configurar_agente.php:1750 +#: ../../godmode/agentes/configurar_agente.php:1811 msgid "There was a problem updating module. Processing error" msgstr "Hubo un problema al actualizar el módulo. Error de procesamiento." -#: ../../godmode/agentes/configurar_agente.php:1779 +#: ../../godmode/agentes/configurar_agente.php:1840 msgid "Module successfully updated" msgstr "Módulo actualizado correctamente" -#: ../../godmode/agentes/configurar_agente.php:1913 +#: ../../godmode/agentes/configurar_agente.php:1974 msgid "" "There was a problem adding module. Another module already exists with the same " "name." @@ -36049,50 +36214,50 @@ msgstr "" "Hubo un problema al añadir el módulo. Ya existe otro módulo con el mismo " "nombre." -#: ../../godmode/agentes/configurar_agente.php:1917 +#: ../../godmode/agentes/configurar_agente.php:1978 msgid "" "There was a problem adding module. Some required fields are missed : (name)" msgstr "" "Hubo un problema al añadir el módulo. Faltan algunos campos requeridos: " "(nombre)" -#: ../../godmode/agentes/configurar_agente.php:1923 +#: ../../godmode/agentes/configurar_agente.php:1984 msgid "There was a problem adding module. Processing error" msgstr "Hubo un problema al añadir el módulo. Error de procesamiento." -#: ../../godmode/agentes/configurar_agente.php:1952 +#: ../../godmode/agentes/configurar_agente.php:2013 #: ../../godmode/reporting/graph_builder.php:392 msgid "Module added successfully" msgstr "Módulo añadido correctamente" -#: ../../godmode/agentes/configurar_agente.php:2106 +#: ../../godmode/agentes/configurar_agente.php:2169 msgid "There was a problem deleting the module" msgstr "Hubo un problema al borrar el módulo" -#: ../../godmode/agentes/configurar_agente.php:2110 +#: ../../godmode/agentes/configurar_agente.php:2173 msgid "Module deleted succesfully" msgstr "Módulo borrado correctamente" -#: ../../godmode/agentes/configurar_agente.php:2249 -#: ../../include/functions_api.php:11217 +#: ../../godmode/agentes/configurar_agente.php:2312 +#: ../../include/functions_api.php:11220 #, php-format msgid "Save by %s Console" msgstr "Guardar por consola de %s" -#: ../../godmode/agentes/configurar_agente.php:2267 -#: ../../include/functions_api.php:11218 +#: ../../godmode/agentes/configurar_agente.php:2330 +#: ../../include/functions_api.php:11221 #, php-format msgid "Update by %s Console" msgstr "Actualizar por consola de %s" -#: ../../godmode/agentes/configurar_agente.php:2283 -#: ../../include/functions_api.php:11219 +#: ../../godmode/agentes/configurar_agente.php:2346 +#: ../../include/functions_api.php:11222 #, php-format msgid "Insert by %s Console" msgstr "Insertar por consola de %s" -#: ../../godmode/agentes/configurar_agente.php:2356 -#: ../../godmode/agentes/configurar_agente.php:2372 +#: ../../godmode/agentes/configurar_agente.php:2419 +#: ../../godmode/agentes/configurar_agente.php:2435 msgid "Invalid tab specified" msgstr "La pestaña no es válida" @@ -36180,7 +36345,7 @@ msgid "Error forcing inventory module" msgstr "Error al forzar un módulo del inventario" #: ../../godmode/agentes/inventory_manager.php:235 -#: ../../include/functions_ui.php:7438 +#: ../../include/functions_ui.php:7515 msgid "Target" msgstr "Destino" @@ -36233,50 +36398,55 @@ msgstr "" "Buscar filtro por alias, nombre, descripción, dirección IP o contenido de " "campos personalizados." -#: ../../godmode/agentes/modificar_agente.php:692 +#: ../../godmode/agentes/modificar_agente.php:702 msgid "Remote agent configuration" msgstr "Configuración remota del agente" -#: ../../godmode/agentes/modificar_agente.php:692 +#: ../../godmode/agentes/modificar_agente.php:702 msgid "R" msgstr "R" -#: ../../godmode/agentes/modificar_agente.php:772 -#: ../../godmode/agentes/module_manager.php:788 +#: ../../godmode/agentes/modificar_agente.php:784 +#: ../../godmode/agentes/module_manager.php:798 msgid "Module in scheduled downtime" msgstr "Módulo en tiempo de inactividad programado" -#: ../../godmode/agentes/modificar_agente.php:858 +#: ../../godmode/agentes/modificar_agente.php:870 msgid "Edit remote config" msgstr "Editar configuración remota" -#: ../../godmode/agentes/modificar_agente.php:905 +#: ../../godmode/agentes/modificar_agente.php:917 msgid "Enable agent" msgstr "Habilitar agente" -#: ../../godmode/agentes/modificar_agente.php:907 +#: ../../godmode/agentes/modificar_agente.php:919 msgid "You are going to enable a cluster agent. Are you sure?" msgstr "¿Esta seguro de que desea habilitar el cluster de agentes?" -#: ../../godmode/agentes/modificar_agente.php:910 +#: ../../godmode/agentes/modificar_agente.php:922 msgid "Disable agent" msgstr "Deshabilitar agente" -#: ../../godmode/agentes/modificar_agente.php:912 +#: ../../godmode/agentes/modificar_agente.php:924 msgid "You are going to disable a cluster agent. Are you sure?" msgstr "¿Esta seguro de que desea deshabilitar el cluster de agentes?" -#: ../../godmode/agentes/modificar_agente.php:943 +#: ../../godmode/agentes/modificar_agente.php:955 msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" msgstr "" "¡ADVERTENCIA! - ¿Esta seguro de que desea eliminar el cluster de agentes?" -#: ../../godmode/agentes/modificar_agente.php:965 -#: ../../godmode/agentes/agent_manager.php:1067 -#: ../../godmode/agentes/agent_manager.php:1120 +#: ../../godmode/agentes/modificar_agente.php:977 +#: ../../godmode/agentes/agent_manager.php:1073 +#: ../../godmode/agentes/agent_manager.php:1126 msgid "Delete agent" msgstr "Borrar agente" +#: ../../godmode/agentes/modificar_agente.php:1046 +#: ../../include/class/AgentDeployWizard.class.php:706 +msgid "Deploy agent" +msgstr "Desplegar agente" + #: ../../godmode/agentes/agent_conf_gis.php:38 #: ../../operation/agentes/gis_view.php:59 msgid "There is no default map. Please go to the setup for to set a default map." @@ -36331,7 +36501,7 @@ msgstr "Todos los módulos" #: ../../godmode/agentes/planned_downtime.editor.php:66 #: ../../godmode/agentes/planned_downtime.editor.php:79 #: ../../include/functions_reporting_html.php:887 -#: ../../include/functions_reporting_html.php:4891 +#: ../../include/functions_reporting_html.php:4919 msgid "Scheduled Downtime" msgstr "Parada planificada" @@ -36428,7 +36598,7 @@ msgstr "¿Quiere migrar automáticamente los elementos mal formados?" #: ../../godmode/agentes/planned_downtime.editor.php:229 #: ../../godmode/agentes/planned_downtime.editor.php:1574 -#: ../../godmode/agentes/planned_downtime.editor.php:1777 +#: ../../godmode/agentes/planned_downtime.editor.php:1775 msgid "This elements cannot be modified while the downtime is being executed" msgstr "" "Estos elementos no se pueden modificar mientras se está ejecutando el tiempo " @@ -36583,12 +36753,12 @@ msgid "Type Periodicity" msgstr "Tipo de periodicidad" #: ../../godmode/agentes/planned_downtime.editor.php:1069 -#: ../../include/functions_reporting.php:14923 +#: ../../include/functions_reporting.php:14996 msgid "From day" msgstr "Desde el día" #: ../../godmode/agentes/planned_downtime.editor.php:1085 -#: ../../include/functions_reporting.php:14924 +#: ../../include/functions_reporting.php:14997 msgid "To day" msgstr "Hasta el día" @@ -36605,14 +36775,14 @@ msgid "To hour" msgstr "Hasta la hora:" #: ../../godmode/agentes/planned_downtime.editor.php:1152 -#: ../../godmode/agentes/module_manager_editor_common.php:1085 -#: ../../godmode/agentes/module_manager_editor_common.php:1091 +#: ../../godmode/agentes/module_manager_editor_common.php:1095 +#: ../../godmode/agentes/module_manager_editor_common.php:1101 msgid "Cron from" msgstr "Cron desde" #: ../../godmode/agentes/planned_downtime.editor.php:1155 -#: ../../godmode/agentes/module_manager_editor_common.php:1088 -#: ../../godmode/agentes/module_manager_editor_common.php:1094 +#: ../../godmode/agentes/module_manager_editor_common.php:1098 +#: ../../godmode/agentes/module_manager_editor_common.php:1104 msgid "Cron to" msgstr "Cron hasta" @@ -36656,12 +36826,12 @@ msgstr "Algunos módulos" msgid "Add Module:" msgstr "Añadir módulo:" -#: ../../godmode/agentes/planned_downtime.editor.php:1907 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4939 +#: ../../godmode/agentes/planned_downtime.editor.php:1903 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4948 msgid "Please select a module." msgstr "Por favor, seleccione un módulo." -#: ../../godmode/agentes/planned_downtime.editor.php:2046 +#: ../../godmode/agentes/planned_downtime.editor.php:2042 msgid "" "WARNING: If you edit this scheduled downtime, the data of future SLA reports " "may be altered" @@ -36722,12 +36892,12 @@ msgstr "" msgid "Create field" msgstr "Crear campo" -#: ../../godmode/agentes/module_manager_editor_network.php:310 +#: ../../godmode/agentes/module_manager_editor_network.php:311 #: ../../include/class/AgentWizard.class.php:584 msgid "SNMP Walk" msgstr "Exploración SNMP" -#: ../../godmode/agentes/module_manager_editor_network.php:477 +#: ../../godmode/agentes/module_manager_editor_network.php:482 msgid "" "Please use single quotation marks when necessary. \n" "\n" @@ -36739,13 +36909,13 @@ msgstr "" "Si se necesitan comillas dobles, escápase de ellas con una barra diagonal " "inversa (\\")" -#: ../../godmode/agentes/module_manager_editor_network.php:536 +#: ../../godmode/agentes/module_manager_editor_network.php:541 msgid "Windows remote" msgstr "Windows remoto" #: ../../godmode/agentes/agent_manager.php:329 -#: ../../godmode/agentes/agent_manager.php:744 -#: ../../godmode/massive/massive_edit_agents.php:1014 +#: ../../godmode/agentes/agent_manager.php:748 +#: ../../godmode/massive/massive_edit_agents.php:1031 msgid "Agent icon" msgstr "Icono de agente" @@ -36755,7 +36925,7 @@ msgstr "Usar el alias como nombre" #: ../../godmode/agentes/agent_manager.php:407 #: ../../godmode/setup/setup_general.php:649 -#: ../../include/functions_config.php:390 +#: ../../include/functions_config.php:398 msgid "Unique IP" msgstr "IP única" @@ -36782,64 +36952,64 @@ msgstr "Lista de direcciones IP" msgid "Primary group" msgstr "Grupo primario" -#: ../../godmode/agentes/agent_manager.php:673 +#: ../../godmode/agentes/agent_manager.php:677 msgid "Cascade protection modules" msgstr "Módulos de protección en cascada" -#: ../../godmode/agentes/agent_manager.php:689 -#: ../../godmode/massive/massive_edit_agents.php:891 +#: ../../godmode/agentes/agent_manager.php:693 +#: ../../godmode/massive/massive_edit_agents.php:908 msgid "Learning mode" msgstr "Modo de aprendizaje" -#: ../../godmode/agentes/agent_manager.php:699 -#: ../../godmode/massive/massive_edit_agents.php:902 +#: ../../godmode/agentes/agent_manager.php:703 +#: ../../godmode/massive/massive_edit_agents.php:919 msgid "Normal mode" msgstr "Modo normal" -#: ../../godmode/agentes/agent_manager.php:709 -#: ../../godmode/massive/massive_edit_agents.php:913 +#: ../../godmode/agentes/agent_manager.php:713 +#: ../../godmode/massive/massive_edit_agents.php:930 msgid "Autodisable mode" msgstr "Modo autodeshabilitado" -#: ../../godmode/agentes/agent_manager.php:718 -#: ../../godmode/massive/massive_edit_agents.php:879 +#: ../../godmode/agentes/agent_manager.php:722 +#: ../../godmode/massive/massive_edit_agents.php:896 msgid "Module definition" msgstr "Definición de módulos" -#: ../../godmode/agentes/agent_manager.php:730 +#: ../../godmode/agentes/agent_manager.php:734 msgid "Cascade protection services" msgstr "Servicios de protección en cascada" -#: ../../godmode/agentes/agent_manager.php:737 +#: ../../godmode/agentes/agent_manager.php:741 msgid "Update new GIS data" msgstr "Actualizar nuevos datos GIS" -#: ../../godmode/agentes/agent_manager.php:809 +#: ../../godmode/agentes/agent_manager.php:817 msgid "URL Address" msgstr "Dirección URL" -#: ../../godmode/agentes/agent_manager.php:815 +#: ../../godmode/agentes/agent_manager.php:823 msgid "Disabled mode" msgstr "Modo deshabilitado" -#: ../../godmode/agentes/agent_manager.php:892 -#: ../../godmode/massive/massive_edit_agents.php:1128 +#: ../../godmode/agentes/agent_manager.php:900 +#: ../../godmode/massive/massive_edit_agents.php:1144 msgid "Safe operation mode" msgstr "Modo seguro de operación" -#: ../../godmode/agentes/agent_manager.php:969 +#: ../../godmode/agentes/agent_manager.php:975 msgid "Link text:" msgstr "Texto del enlace:" -#: ../../godmode/agentes/agent_manager.php:980 +#: ../../godmode/agentes/agent_manager.php:986 msgid "Link URL:" msgstr "URL del enlace:" -#: ../../godmode/agentes/agent_manager.php:1121 +#: ../../godmode/agentes/agent_manager.php:1127 msgid "This action is not reversible. Are you sure" msgstr "Esta acción no es reversible. ¿Está seguro?" -#: ../../godmode/agentes/agent_manager.php:1182 +#: ../../godmode/agentes/agent_manager.php:1188 msgid "Secondary group cannot be primary too." msgstr "Un grupo secundario no puede ser también primario." @@ -36942,86 +37112,86 @@ msgid "Warning threshold" msgstr "Umbral de advertencia" #: ../../godmode/agentes/module_manager_editor_common.php:448 -#: ../../godmode/agentes/module_manager_editor_common.php:531 +#: ../../godmode/agentes/module_manager_editor_common.php:536 msgid "Min / Max" msgstr "Mín / Máx" -#: ../../godmode/agentes/module_manager_editor_common.php:530 +#: ../../godmode/agentes/module_manager_editor_common.php:535 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:435 msgid "Critical threshold" msgstr "Umbral crítico" -#: ../../godmode/agentes/module_manager_editor_common.php:741 +#: ../../godmode/agentes/module_manager_editor_common.php:751 msgid "Identification and Categorization" msgstr "Identificación y categorización" -#: ../../godmode/agentes/module_manager_editor_common.php:944 +#: ../../godmode/agentes/module_manager_editor_common.php:954 msgid "Module parent" msgstr "Padre del módulo" -#: ../../godmode/agentes/module_manager_editor_common.php:994 +#: ../../godmode/agentes/module_manager_editor_common.php:1004 msgid "Tags from policy" msgstr "Etiquetas desde política" -#: ../../godmode/agentes/module_manager_editor_common.php:1065 +#: ../../godmode/agentes/module_manager_editor_common.php:1075 msgid "Execution interval" msgstr "Intervalo de ejecución" -#: ../../godmode/agentes/module_manager_editor_common.php:1101 +#: ../../godmode/agentes/module_manager_editor_common.php:1111 msgid "Thresholds and state changes" msgstr "Umbrales y cambios de estado" -#: ../../godmode/agentes/module_manager_editor_common.php:1119 +#: ../../godmode/agentes/module_manager_editor_common.php:1129 msgid "Dynamic Threshold Interval" msgstr "Intervalo de rango dinámico" -#: ../../godmode/agentes/module_manager_editor_common.php:1172 +#: ../../godmode/agentes/module_manager_editor_common.php:1182 msgid "Two Tailed" msgstr "Dos colas" -#: ../../godmode/agentes/module_manager_editor_common.php:1323 +#: ../../godmode/agentes/module_manager_editor_common.php:1333 msgid "Data and their processing" msgstr "Datos y su tratamiento" -#: ../../godmode/agentes/module_manager_editor_common.php:1353 +#: ../../godmode/agentes/module_manager_editor_common.php:1363 msgid "Notifications and alerts" msgstr "Notificaciones y alertas" -#: ../../godmode/agentes/module_manager_editor_common.php:1357 +#: ../../godmode/agentes/module_manager_editor_common.php:1367 msgid "Not needed" msgstr "No necesario" -#: ../../godmode/agentes/module_manager_editor_common.php:1403 +#: ../../godmode/agentes/module_manager_editor_common.php:1413 msgid "Cascade Protection Services" msgstr "Servicios de protección en cascada" -#: ../../godmode/agentes/module_manager_editor_common.php:1486 -#: ../../godmode/agentes/module_manager_editor_common.php:1620 +#: ../../godmode/agentes/module_manager_editor_common.php:1496 +#: ../../godmode/agentes/module_manager_editor_common.php:1630 msgid "Direct" msgstr "Directo" -#: ../../godmode/agentes/module_manager_editor_common.php:1487 -#: ../../godmode/agentes/module_manager_editor_common.php:1620 -#: ../../include/functions_reporting_html.php:4132 -#: ../../include/functions_reporting_html.php:4226 -#: ../../include/functions_reporting_html.php:4306 -#: ../../include/functions_reporting_html.php:4315 -#: ../../include/functions_reporting_html.php:4453 -#: ../../include/functions_reporting_html.php:4462 -#: ../../include/functions_reporting_html.php:4788 -#: ../../include/functions_reporting_html.php:4794 +#: ../../godmode/agentes/module_manager_editor_common.php:1497 +#: ../../godmode/agentes/module_manager_editor_common.php:1630 +#: ../../include/functions_reporting_html.php:4160 +#: ../../include/functions_reporting_html.php:4254 +#: ../../include/functions_reporting_html.php:4334 +#: ../../include/functions_reporting_html.php:4343 +#: ../../include/functions_reporting_html.php:4481 +#: ../../include/functions_reporting_html.php:4490 +#: ../../include/functions_reporting_html.php:4816 +#: ../../include/functions_reporting_html.php:4822 msgid "Failover" msgstr "Conmutación" -#: ../../godmode/agentes/module_manager_editor_common.php:1489 +#: ../../godmode/agentes/module_manager_editor_common.php:1499 msgid "Rel. type" msgstr "Rel. tipo" -#: ../../godmode/agentes/module_manager_editor_common.php:1511 +#: ../../godmode/agentes/module_manager_editor_common.php:1521 msgid "Add relationship" msgstr "Añadir relación" -#: ../../godmode/agentes/module_manager_editor_common.php:1537 +#: ../../godmode/agentes/module_manager_editor_common.php:1547 msgid "Changes" msgstr "Cambios" @@ -37051,7 +37221,8 @@ msgid "There was a problem completing the operation. Applied to %d/%d modules." msgstr "" "Ha habido un problema al completar la operación. Aplicado a los módulos %d/%d." -#: ../../godmode/agentes/module_manager.php:619 ../../include/ajax/module.php:999 +#: ../../godmode/agentes/module_manager.php:619 +#: ../../include/ajax/module.php:1022 msgid "P" msgstr "P" @@ -37059,42 +37230,42 @@ msgstr "P" msgid "S" msgstr "S" -#: ../../godmode/agentes/module_manager.php:836 -#: ../../godmode/agentes/module_manager.php:844 -#: ../../include/ajax/module.php:1064 ../../include/ajax/module.php:1072 +#: ../../godmode/agentes/module_manager.php:846 +#: ../../godmode/agentes/module_manager.php:854 +#: ../../include/ajax/module.php:1087 ../../include/ajax/module.php:1095 msgid "Adopted" msgstr "Adoptado" -#: ../../godmode/agentes/module_manager.php:972 +#: ../../godmode/agentes/module_manager.php:986 msgid "Normalize" msgstr "Normalizar" -#: ../../godmode/agentes/module_manager.php:985 +#: ../../godmode/agentes/module_manager.php:999 #: ../../include/functions_snmp_browser.php:638 msgid "Create network component" msgstr "Crear componentes de red" -#: ../../godmode/agentes/module_manager.php:1020 +#: ../../godmode/agentes/module_manager.php:1034 #: ../../godmode/reporting/map_builder.php:485 -#: ../../godmode/reporting/map_builder.php:502 -#: ../../operation/agentes/datos_agente.php:295 +#: ../../godmode/reporting/map_builder.php:502 ../../include/ajax/module.php:609 +#: ../../operation/agentes/datos_agente.php:297 msgid "No available data to show" msgstr "No hay datos disponibles para mostrar" -#: ../../godmode/agentes/module_manager.php:1037 +#: ../../godmode/agentes/module_manager.php:1051 #: ../../include/class/SatelliteAgent.class.php:233 msgid "Execute action" msgstr "Ejecutar acción" -#: ../../godmode/agentes/module_manager.php:1081 +#: ../../godmode/agentes/module_manager.php:1095 msgid "Select module type" msgstr "Seleccionar el tipo de módulo" -#: ../../godmode/agentes/module_manager.php:1104 +#: ../../godmode/agentes/module_manager.php:1119 msgid "Get more modules on Monitoring Library" msgstr "Añadir más módulos de la Librería de módulos" -#: ../../godmode/agentes/module_manager.php:1239 +#: ../../godmode/agentes/module_manager.php:1260 msgid "" "This module has children modules.The following modules will also be deleted: " msgstr "" @@ -37124,7 +37295,7 @@ msgid "Item list" msgstr "Lista de elementos" #: ../../godmode/netflow/nf_item_list.php:176 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2549 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2558 msgid "Max. values" msgstr "Valores máximos" @@ -37150,49 +37321,49 @@ msgstr "Filtros Netflow" msgid "There are no defined filters" msgstr "No hay filtros definidos" -#: ../../godmode/netflow/nf_edit_form.php:66 ../../godmode/events/events.php:69 +#: ../../godmode/netflow/nf_edit_form.php:77 ../../godmode/events/events.php:69 msgid "Filter list" msgstr "Lista de filtros" -#: ../../godmode/netflow/nf_edit_form.php:67 +#: ../../godmode/netflow/nf_edit_form.php:78 msgid "Add filter" msgstr "Añadir filtro" -#: ../../godmode/netflow/nf_edit_form.php:181 -#: ../../operation/netflow/nf_live_view.php:261 +#: ../../godmode/netflow/nf_edit_form.php:224 +#: ../../operation/netflow/nf_live_view.php:270 msgid "Src Ip Address" msgstr "Dirección IP origen" -#: ../../godmode/netflow/nf_edit_form.php:182 -#: ../../operation/netflow/nf_live_view.php:262 +#: ../../godmode/netflow/nf_edit_form.php:225 +#: ../../operation/netflow/nf_live_view.php:271 msgid "Dst Ip Address" msgstr "Dirección IP destino" -#: ../../godmode/netflow/nf_edit_form.php:183 -#: ../../godmode/netflow/nf_edit_form.php:314 -#: ../../operation/netflow/nf_live_view.php:263 -#: ../../operation/netflow/nf_live_view.php:321 +#: ../../godmode/netflow/nf_edit_form.php:226 +#: ../../godmode/netflow/nf_edit_form.php:359 +#: ../../operation/netflow/nf_live_view.php:272 +#: ../../operation/netflow/nf_live_view.php:330 msgid "Src Port" msgstr "Puerto origen" -#: ../../godmode/netflow/nf_edit_form.php:184 -#: ../../godmode/netflow/nf_edit_form.php:302 -#: ../../operation/netflow/nf_live_view.php:264 -#: ../../operation/netflow/nf_live_view.php:313 +#: ../../godmode/netflow/nf_edit_form.php:227 +#: ../../godmode/netflow/nf_edit_form.php:347 +#: ../../operation/netflow/nf_live_view.php:273 +#: ../../operation/netflow/nf_live_view.php:322 msgid "Dst Port" msgstr "Puerto destino" -#: ../../godmode/netflow/nf_edit_form.php:261 +#: ../../godmode/netflow/nf_edit_form.php:306 msgid "Aggregate by" msgstr "Agregado por" -#: ../../godmode/netflow/nf_edit_form.php:278 -#: ../../operation/netflow/nf_live_view.php:294 +#: ../../godmode/netflow/nf_edit_form.php:323 +#: ../../operation/netflow/nf_live_view.php:303 msgid "Dst Ip" msgstr "Dst IP" -#: ../../godmode/netflow/nf_edit_form.php:286 -#: ../../operation/netflow/nf_live_view.php:294 +#: ../../godmode/netflow/nf_edit_form.php:331 +#: ../../operation/netflow/nf_live_view.php:303 msgid "" "Destination IP. A comma separated list of destination ip. If we leave the " "field blank, will show all ip. Example filter by ip:" @@ -37202,13 +37373,13 @@ msgstr "" "campo mostrará todas las IPs. Ejemplo de filtro por IP: " "25.46.157.214,160.253.135.249" -#: ../../godmode/netflow/nf_edit_form.php:290 -#: ../../operation/netflow/nf_live_view.php:302 +#: ../../godmode/netflow/nf_edit_form.php:335 +#: ../../operation/netflow/nf_live_view.php:311 msgid "Src Ip" msgstr "IP Origen" -#: ../../godmode/netflow/nf_edit_form.php:298 -#: ../../operation/netflow/nf_live_view.php:302 +#: ../../godmode/netflow/nf_edit_form.php:343 +#: ../../operation/netflow/nf_live_view.php:311 msgid "" "Source IP. A comma separated list of source ip. If we leave the field blank, " "will show all ip. Example filter by ip:
25.46.157.214,160.253.135.249" @@ -37217,8 +37388,8 @@ msgstr "" "campo mostrará todas las IPs. Ejemplo de filtro por IP: " "25.46.157.214,160.253.135.249" -#: ../../godmode/netflow/nf_edit_form.php:310 -#: ../../operation/netflow/nf_live_view.php:313 +#: ../../godmode/netflow/nf_edit_form.php:355 +#: ../../operation/netflow/nf_live_view.php:322 msgid "" "Destination port. A comma separated list of destination ports. If we leave the " "field blank, will show all ports. Example filter by ports 80 and 22:
80,22" @@ -37227,8 +37398,8 @@ msgstr "" "este campo en blanco se mostrarán todos los puertos. Ejemplo de filtrado por " "puertos: 80,22" -#: ../../godmode/netflow/nf_edit_form.php:322 -#: ../../operation/netflow/nf_live_view.php:321 +#: ../../godmode/netflow/nf_edit_form.php:367 +#: ../../operation/netflow/nf_live_view.php:330 msgid "" "Source port. A comma separated list of source ports. If we leave the field " "blank, will show all ports. Example filter by ports 80 and 22:
80,22" @@ -37237,21 +37408,88 @@ msgstr "" "campo en blanco se mostrarán todos los puertos. Ejemplo de filtrado por " "puertos: 80,22" -#: ../../godmode/netflow/nf_edit_form.php:327 +#: ../../godmode/netflow/nf_edit_form.php:372 msgid "Advanced filters" msgstr "Filtros avanzados" +#: ../../godmode/netflow/nf_edit_form.php:380 +#: ../../operation/netflow/nf_live_view.php:377 +msgid "Enable Netflow monitoring" +msgstr "Activar monitorización de Netflow" + +#: ../../godmode/netflow/nf_edit_form.php:389 +#: ../../operation/netflow/nf_live_view.php:377 +msgid "" +"Allows you to create an agent that monitors the traffic volume of this filter. " +"It also creates a module that measures if the traffic of any IP of this filter " +"exceeds a certain threshold. A text type module will be created with the " +"traffic rate for each IP within this filter every five minutes (the 10 IP's " +"with the most traffic). Only available for Enterprise version." +msgstr "" +"Le permite crear un agente que monitor ice el volumen del tráfico de este " +"filtro. También crea un módulo que mide si el tráfico de cualquier IP de este " +"filtro sobrepasa un cierto umbral. Se creará un módulo de tipo texto con la " +"tasa de tráfico de cada IP dentro de este filtro cada cinco minutos (las 10 " +"IPs con más tráfico). Solo disponible en la versión Enterprise." + +#: ../../godmode/netflow/nf_edit_form.php:395 +#: ../../operation/netflow/nf_live_view.php:391 +msgid "Netflow monitoring interval" +msgstr "Intérvalo de monitorización de Netflow" + +#: ../../godmode/netflow/nf_edit_form.php:403 +#: ../../operation/netflow/nf_live_view.php:391 +msgid "Netflow monitoring interval in secs." +msgstr "Intérvalo de monitorización Netflow en segundos" + +#: ../../godmode/netflow/nf_edit_form.php:407 +#: ../../operation/netflow/nf_live_view.php:401 +msgid "Maximum traffic value of the filter" +msgstr "Valor máximo de tráfico del filtro" + +#: ../../godmode/netflow/nf_edit_form.php:415 +#: ../../operation/netflow/nf_live_view.php:401 +#, php-format +msgid "" +"Specifies the maximum rate (in bytes/sec) of traffic in the filter. It is then " +"used to calculate the % of maximum traffic per IP." +msgstr "" +"Especifica la tasa máxima (en bytes/seg) del tráfico del filtro. " +"Posteriormente se utiliza para calcular el % del tráfico máximo por IP." + +#: ../../godmode/netflow/nf_edit_form.php:421 +#: ../../operation/netflow/nf_live_view.php:415 +#, php-format +msgid "CRITICAL threshold for the maximum % of traffic for an IP." +msgstr "Umbral CRÍTICO para el máximo % de tráfico para una IP." + +#: ../../godmode/netflow/nf_edit_form.php:431 +#: ../../operation/netflow/nf_live_view.php:415 +msgid "" +"If this % is exceeded by any IP within the filter, a CRITICAL status will be " +"generated." +msgstr "" +"Si cualquier IP dentro del filtro sobrepasa el %, se generará el estado " +"CRÍTICO." + +#: ../../godmode/netflow/nf_edit_form.php:435 +#, php-format +msgid "WARNING threshold for the maximum % of traffic for an IP." +msgstr "Umbral de ADVERTENCIA para el máximo % de tráfico para una IP." + +#: ../../godmode/netflow/nf_edit_form.php:445 +#: ../../operation/netflow/nf_live_view.php:425 +msgid "" +"If this % is exceeded by any IP within the filter, a WARNING status will be " +"generated." +msgstr "" +"Si cualquier IP dentro del filtro sobrepasa el %, se generará el estado de " +"ADVERTENCIA." + #: ../../godmode/snmpconsole/snmp_trap_generator.php:38 msgid "SNMP Trap generator" msgstr "Generador de traps SNMP" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 -#: ../../godmode/snmpconsole/snmp_filters.php:59 -#: ../../operation/snmpconsole/snmp_browser.php:90 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 -msgid "SMNP" -msgstr "SMNP" - #: ../../godmode/snmpconsole/snmp_trap_generator.php:68 msgid "Empty parameters" msgstr "Parámetros vacíos" @@ -37370,9 +37608,9 @@ msgid "Custom Value/Enterprise String" msgstr "Valor personalizado/Cadena Enterprise" #: ../../godmode/snmpconsole/snmp_alert.php:1908 -#: ../../include/functions_reporting_html.php:5373 -#: ../../include/functions_reporting_html.php:5495 -#: ../../include/functions_treeview.php:441 +#: ../../include/functions_reporting_html.php:5401 +#: ../../include/functions_reporting_html.php:5523 +#: ../../include/functions_treeview.php:445 msgid "Times fired" msgstr "Nº de veces disparada" @@ -37392,7 +37630,7 @@ msgstr "¿Desea eliminar esta alerta?" msgid "Do you want delete the selected alerts?" msgstr "¿Desea eliminar las alertas seleccionadas?" -#: ../../godmode/snmpconsole/snmp_alert.php:2355 +#: ../../godmode/snmpconsole/snmp_alert.php:2343 msgid "Add action " msgstr "Añadir acción " @@ -37481,147 +37719,147 @@ msgstr "Configuración de grupos de agentes" msgid "Private Enterprise Numbers" msgstr "Números privados de empresa" -#: ../../godmode/menu.php:183 +#: ../../godmode/menu.php:182 msgid "Remote components" msgstr "Componentes remotos" -#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:246 +#: ../../godmode/menu.php:208 ../../godmode/massive/massive_operations.php:246 msgid "Agents operations" msgstr "Operaciones sobre agentes" -#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:258 +#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:258 msgid "Modules operations" msgstr "Operaciones sobre módulos" -#: ../../godmode/menu.php:211 ../../godmode/massive/massive_operations.php:270 +#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:270 msgid "Plugins operations" msgstr "Operaciones de plugins" -#: ../../godmode/menu.php:213 ../../godmode/massive/massive_operations.php:234 +#: ../../godmode/menu.php:212 ../../godmode/massive/massive_operations.php:234 msgid "Users operations" msgstr "Operaciones sobre usuarios" -#: ../../godmode/menu.php:216 ../../godmode/massive/massive_operations.php:222 +#: ../../godmode/menu.php:215 ../../godmode/massive/massive_operations.php:222 msgid "Alerts operations" msgstr "Operaciones sobre alertas" -#: ../../godmode/menu.php:234 +#: ../../godmode/menu.php:233 msgid "Event filters" msgstr "Filtro de eventos" -#: ../../godmode/menu.php:239 ../../godmode/events/events.php:95 +#: ../../godmode/menu.php:238 ../../godmode/events/events.php:95 #: ../../godmode/events/events.php:110 msgid "Custom columns" msgstr "Columnas personalizadas" -#: ../../godmode/menu.php:270 +#: ../../godmode/menu.php:268 msgid "List of Alerts" msgstr "Lista de alertas" -#: ../../godmode/menu.php:285 +#: ../../godmode/menu.php:283 msgid "Special days list" msgstr "Lista de días especiales" -#: ../../godmode/menu.php:290 +#: ../../godmode/menu.php:288 ../../include/functions_groups.php:267 msgid "SNMP alerts" msgstr "Alertas SNMP" -#: ../../godmode/menu.php:307 +#: ../../godmode/menu.php:305 msgid "Manage servers" msgstr "Gestionar servidores" -#: ../../godmode/menu.php:314 +#: ../../godmode/menu.php:312 msgid "Manage consoles" msgstr "Gestionar consolas" -#: ../../godmode/menu.php:325 +#: ../../godmode/menu.php:323 msgid "Register Plugin" msgstr "Registrar Plugin" -#: ../../godmode/menu.php:351 ../../include/class/OrderInterpreter.class.php:141 +#: ../../godmode/menu.php:349 ../../include/class/OrderInterpreter.class.php:141 msgid "General Setup" msgstr "Configuración general" -#: ../../godmode/menu.php:376 ../../godmode/setup/setup.php:165 +#: ../../godmode/menu.php:374 ../../godmode/setup/setup.php:165 #: ../../godmode/setup/setup.php:296 msgid "Sflow" msgstr "Sflow" -#: ../../godmode/menu.php:381 ../../godmode/setup/setup.php:191 -#: ../../godmode/setup/setup.php:302 ../../operation/agentes/ver_agente.php:1623 -#: ../../operation/agentes/ver_agente.php:1897 +#: ../../godmode/menu.php:379 ../../godmode/setup/setup.php:191 +#: ../../godmode/setup/setup.php:302 ../../operation/agentes/ver_agente.php:1619 +#: ../../operation/agentes/ver_agente.php:1893 msgid "eHorus" msgstr "eHorus" -#: ../../godmode/menu.php:384 ../../godmode/setup/setup.php:179 +#: ../../godmode/menu.php:382 ../../godmode/setup/setup.php:179 #: ../../godmode/setup/setup.php:308 ../../godmode/setup/setup_integria.php:681 msgid "Integria IMS" msgstr "Integria IMS" -#: ../../godmode/menu.php:392 +#: ../../godmode/menu.php:390 msgid "Websocket Engine" msgstr "Websocket Engine" -#: ../../godmode/menu.php:395 ../../godmode/setup/setup.php:238 -#: ../../godmode/setup/setup.php:336 ../../operation/agentes/ver_agente.php:1713 -#: ../../operation/agentes/ver_agente.php:1914 +#: ../../godmode/menu.php:393 ../../godmode/setup/setup.php:238 +#: ../../godmode/setup/setup.php:336 ../../operation/agentes/ver_agente.php:1709 +#: ../../operation/agentes/ver_agente.php:1910 msgid "External Tools" msgstr "Herramientas externas" -#: ../../godmode/menu.php:398 +#: ../../godmode/menu.php:396 msgid "Welcome Tips" msgstr "Tips de bienvenida" -#: ../../godmode/menu.php:402 ../../godmode/setup/setup.php:320 +#: ../../godmode/menu.php:400 ../../godmode/setup/setup.php:320 msgid "Map conections GIS" msgstr "Conexión de mapa GIS" -#: ../../godmode/menu.php:430 +#: ../../godmode/menu.php:428 msgid "Diagnostic info" msgstr "Información de diagnóstico" -#: ../../godmode/menu.php:435 ../../godmode/setup/news.php:43 +#: ../../godmode/menu.php:433 ../../godmode/setup/news.php:43 msgid "Site news" msgstr "Noticias del sistema" -#: ../../godmode/menu.php:444 +#: ../../godmode/menu.php:442 msgid "DB Schema Check" msgstr "Comprobación del esquema de la BD" -#: ../../godmode/menu.php:447 +#: ../../godmode/menu.php:445 msgid "DB Interface" msgstr "Interfaz de la BBDD" -#: ../../godmode/menu.php:456 ../../include/class/EventSound.class.php:230 -msgid "Accoustic console setup" +#: ../../godmode/menu.php:454 ../../include/class/EventSound.class.php:230 +msgid "Acoustic console setup" msgstr "Configuración de la consola acústica" -#: ../../godmode/menu.php:533 +#: ../../godmode/menu.php:531 msgid "Extension manager view" msgstr "Vista del gestor de extensiones" -#: ../../godmode/menu.php:569 ../../include/class/OrderInterpreter.class.php:339 +#: ../../godmode/menu.php:567 ../../include/class/OrderInterpreter.class.php:339 msgid "Warp Update" msgstr "Actualización de Warp" -#: ../../godmode/menu.php:574 +#: ../../godmode/menu.php:572 msgid "Update offline" msgstr "Actualizar sin conexión" -#: ../../godmode/menu.php:577 +#: ../../godmode/menu.php:575 msgid "Update online" msgstr "Actualizar en línea" -#: ../../godmode/menu.php:583 +#: ../../godmode/menu.php:581 msgid "Warp journal" msgstr "Diario Warp" -#: ../../godmode/menu.php:592 +#: ../../godmode/menu.php:590 #: ../../godmode/module_library/module_library_view.php:81 msgid "Module library" msgstr "Librería de módulos" -#: ../../godmode/menu.php:599 +#: ../../godmode/menu.php:597 #: ../../godmode/module_library/module_library_view.php:54 #: ../../godmode/module_library/module_library_view.php:68 #: ../../godmode/module_library/module_library_view.php:104 @@ -37923,10 +38161,10 @@ msgstr "Agentes con plantillas" #: ../../godmode/massive/massive_delete_action_alerts.php:240 #: ../../godmode/massive/massive_add_action_alerts.php:219 -#: ../../godmode/alerts/alert_templates.php:139 -#: ../../godmode/alerts/alert_templates.php:188 -#: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/alerts/alert_templates.php:142 +#: ../../godmode/alerts/alert_templates.php:192 +#: ../../godmode/alerts/alert_templates.php:215 +#: ../../godmode/alerts/alert_templates.php:236 msgid "Alert templates" msgstr "Plantillas de alertas" @@ -37948,7 +38186,7 @@ msgstr "No se seleccionó ningún módulo" #: ../../godmode/massive/massive_delete_alerts.php:113 #: ../../godmode/massive/massive_add_action_alerts.php:75 #: ../../include/functions_visual_map.php:2568 -#: ../../include/functions_visual_map.php:2914 +#: ../../include/functions_visual_map.php:2917 msgid "No agents selected" msgstr "No se seleccionó ningún agente" @@ -38037,29 +38275,29 @@ msgstr "Los usuarios no se pueden actualizar (%s)" #: ../../godmode/massive/massive_edit_users.php:209 #: ../../godmode/massive/massive_delete_profiles.php:154 #: ../../godmode/massive/massive_add_profiles.php:204 -#: ../../include/functions_reporting.php:12397 +#: ../../include/functions_reporting.php:12470 #: ../../operation/search_results.php:94 msgid "Users" msgstr "Usuarios" #: ../../godmode/massive/massive_edit_users.php:379 -#: ../../operation/users/user_edit.php:646 +#: ../../operation/users/user_edit.php:643 msgid "This will activate autorefresh in selected pages" msgstr "Esto activará la actualización automática en las páginas seleccionadas." #: ../../godmode/massive/massive_edit_users.php:443 -#: ../../operation/users/user_edit.php:705 +#: ../../operation/users/user_edit.php:702 msgid "List of pages with autorefresh" msgstr "Lista de páginas con actualización automática" #: ../../godmode/massive/massive_edit_users.php:452 -#: ../../operation/users/user_edit.php:714 +#: ../../operation/users/user_edit.php:711 msgid "Time autorefresh" msgstr "Tiempo de actualización automática" #: ../../godmode/massive/massive_add_alerts.php:105 #: ../../godmode/massive/massive_delete_alerts.php:108 -#: ../../operation/agentes/alerts_status.php:566 +#: ../../operation/agentes/alerts_status.php:576 #: ../../operation/agentes/alerts_status.functions.php:54 msgid "No alert selected" msgstr "No se seleccionó ninguna alerta" @@ -38178,31 +38416,31 @@ msgstr "Los archivos de configuración se borraron correctamente." msgid "Configuration files cannot be deleted" msgstr "Los archivos de configuración no se pudieron borrar." -#: ../../godmode/massive/massive_edit_agents.php:382 +#: ../../godmode/massive/massive_edit_agents.php:399 #, php-format msgid "Agents updated successfully (%d)" msgstr "Agentes actualizados correctamente (%d)" -#: ../../godmode/massive/massive_edit_agents.php:397 +#: ../../godmode/massive/massive_edit_agents.php:414 #, php-format msgid "Agents cannot be updated (%d), ids (%s)" msgstr "Los agentes no se pueden actualizar (%d), identificadores (%s)" -#: ../../godmode/massive/massive_edit_agents.php:412 +#: ../../godmode/massive/massive_edit_agents.php:429 #, php-format msgid "Agent ID: %s cannot be updated custom fields (%s)" msgstr "ID del agente: %s no se pueden actualizar los campos personalizados (%s)" -#: ../../godmode/massive/massive_edit_agents.php:432 +#: ../../godmode/massive/massive_edit_agents.php:449 #, php-format msgid "Agent ID: %s cannot be updated %s secondary groups (%s)" msgstr "ID de agente: %s no se puede actualizar %s grupos secundarios (%s)" -#: ../../godmode/massive/massive_edit_agents.php:668 +#: ../../godmode/massive/massive_edit_agents.php:685 msgid "Cascade protection" msgstr "Protección en cascada" -#: ../../godmode/massive/massive_edit_agents.php:940 +#: ../../godmode/massive/massive_edit_agents.php:957 msgid "" "If the remote configuration is enabled, it will also go into standby mode when " "disabling it." @@ -38210,33 +38448,33 @@ msgstr "" "Si la configuración remota está habilitada, también entrará en modo de espera " "cuando se deshabilite." -#: ../../godmode/massive/massive_edit_agents.php:953 +#: ../../godmode/massive/massive_edit_agents.php:970 #: ../../include/class/EventSound.class.php:344 msgid "Active" msgstr "Activo" -#: ../../godmode/massive/massive_edit_agents.php:969 +#: ../../godmode/massive/massive_edit_agents.php:986 msgid "Delete available remote configurations" msgstr "Borrar las configuraciones remotas disponibles" -#: ../../godmode/massive/massive_edit_agents.php:1025 +#: ../../godmode/massive/massive_edit_agents.php:1042 msgid "Without status" msgstr "Sin estado" -#: ../../godmode/massive/massive_edit_agents.php:1052 +#: ../../godmode/massive/massive_edit_agents.php:1069 #: ../../include/lib/Dashboard/Widgets/maps_status.php:371 msgid "Bad" msgstr "Mal" -#: ../../godmode/massive/massive_edit_agents.php:1072 +#: ../../godmode/massive/massive_edit_agents.php:1089 msgid "Ignore new GIS data:" msgstr "Ignorar nuevos datos GIS:" -#: ../../godmode/massive/massive_edit_agents.php:1110 +#: ../../godmode/massive/massive_edit_agents.php:1127 msgid "The agent still runs but the alerts and events will be stop" msgstr "El agente seguirá ejecutándose, pero las alertas y eventos se detendrán." -#: ../../godmode/massive/massive_edit_agents.php:1130 +#: ../../godmode/massive/massive_edit_agents.php:1146 #, php-format msgid "" "This mode allow %s to disable all modules of this agent while the selected " @@ -38288,15 +38526,11 @@ msgstr "" "actualizar)" #: ../../godmode/massive/massive_edit_modules.php:506 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:419 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:423 msgid "Filter agents" msgstr "Filtrar agentes" -#: ../../godmode/massive/massive_edit_modules.php:811 -msgid "SMNP community" -msgstr "Comunidad SMNP" - -#: ../../godmode/consoles/consoles.php:59 +#: ../../godmode/consoles/consoles.php:67 msgid "" "If you want to have your consoles registered, you must define them by editing " "config.php in each individual console and wait for cron to run in order to be " @@ -38338,7 +38572,7 @@ msgid "Hide" msgstr "Ocultar" #: ../../godmode/alerts/alert_actions.php:79 -#: ../../include/functions_reporting.php:3226 +#: ../../include/functions_reporting.php:3235 msgid "Alert actions" msgstr "Acciones de alerta" @@ -38401,12 +38635,12 @@ msgstr "" "Las acciones por defecto se ejecutarán cada vez que la alerta se dispare y " "ninguna otra acción sea ejecutada." -#: ../../godmode/alerts/alert_list.list.php:1061 +#: ../../godmode/alerts/alert_list.list.php:1060 msgid "View alert advanced details" msgstr "Ver detalles avanzados de la alerta" -#: ../../godmode/alerts/alert_list.list.php:1081 -#: ../../include/functions_reporting_html.php:3441 +#: ../../godmode/alerts/alert_list.list.php:1080 +#: ../../include/functions_reporting_html.php:3469 msgid "No alerts defined" msgstr "No hay alertas definidas" @@ -38450,12 +38684,12 @@ msgid "Alert commands" msgstr "Comandos de alerta" #: ../../godmode/alerts/alert_commands.php:657 -#: ../../include/functions_alerts.php:2659 +#: ../../include/functions_alerts.php:2660 msgid "No name specified" msgstr "Ningún nombre especificado" #: ../../godmode/alerts/alert_commands.php:661 -#: ../../include/functions_alerts.php:2654 +#: ../../include/functions_alerts.php:2655 msgid "No command specified" msgstr "Ningún comando especificado" @@ -38467,7 +38701,7 @@ msgstr " (copia)" msgid "No alert commands configured" msgstr "Comandos de alertas no configurados" -#: ../../godmode/alerts/alert_templates.php:273 +#: ../../godmode/alerts/alert_templates.php:277 #, php-format msgid "" "This node is configured with centralized mode. All alert templates information " @@ -38476,7 +38710,7 @@ msgstr "" "Este nodo se configura en modo centralizado. Toda la información de plantillas " "de alertas es solo de lectura. Vaya a %s para gestionarlo." -#: ../../godmode/alerts/alert_templates.php:438 +#: ../../godmode/alerts/alert_templates.php:442 msgid "" "You cannot edit this alert template, You don't have the permission to edit All " "group." @@ -38484,7 +38718,7 @@ msgstr "" "No puede edit esta plantilla de alerta. No tiene los permisos para editar el " "grupo All (todos)." -#: ../../godmode/alerts/alert_templates.php:505 +#: ../../godmode/alerts/alert_templates.php:509 msgid "No alert templates defined" msgstr "No hay plantillas de alerta definidas" @@ -38501,6 +38735,14 @@ msgstr "Esta acción podría dejar de funcionar si cambia el nombre." msgid "Create Command" msgstr "Crear comando" +#: ../../godmode/alerts/configure_alert_action.php:287 +msgid "" +"An alert action is executed only once within this time interval, regardless of " +"how many times the alert is triggered." +msgstr "" +"La acción de alerta solo se ejecuta una vez dentro de este intervalo de " +"tiempo, sin importar cuántas veces se active la alerta." + #: ../../godmode/alerts/configure_alert_action.php:320 msgid "Triggering" msgstr "Activación" @@ -38530,7 +38772,7 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:104 #: ../../godmode/alerts/configure_alert_template.php:135 #: ../../godmode/alerts/configure_alert_template.php:174 -#: ../../include/functions_menu.php:569 +#: ../../include/functions_menu.php:571 msgid "Configure alert template" msgstr "Configurar plantilla de alerta" @@ -38557,6 +38799,14 @@ msgstr "" msgid "No template name specified" msgstr "Ningún nombre de plantilla especificado" +#: ../../godmode/alerts/configure_alert_template.php:691 +msgid "" +"Reset the alert counter within the configured period if there is no manual " +"recovery or validation of the alert." +msgstr "" +"Resetear el contador de alerta dentro del periodo configurado si la alerta no " +"se recupera o valida manualmente." + #: ../../godmode/alerts/configure_alert_template.php:722 msgid "" "Unless they're left blank, the fields from the action will override those set " @@ -38602,7 +38852,7 @@ msgid "No wizard" msgstr "No hay asistente" #: ../../godmode/alerts/configure_alert_template.php:1266 -#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1504 +#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1547 msgid "The alert would fire when the value matches " msgstr "" "La alerta se disparará cuando el valor coincida con ." @@ -38613,18 +38863,18 @@ msgid "The alert would fire when the value doesn\\'t match %s" msgstr "La alerta se disparará cuando el valor no coincida con %s" #: ../../godmode/alerts/configure_alert_template.php:1268 -#: ../../godmode/alerts/alert_view.php:181 ../../include/functions_ui.php:1493 +#: ../../godmode/alerts/alert_view.php:181 ../../include/functions_ui.php:1536 msgid "The alert would fire when the value is " msgstr "La alerta se disparará cuando el valor sea ." #: ../../godmode/alerts/configure_alert_template.php:1269 -#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1498 +#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1541 msgid "The alert would fire when the value is not " msgstr "" "La alerta se disparará cuando el valor no sea ." #: ../../godmode/alerts/configure_alert_template.php:1270 -#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1516 +#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1559 msgid "" "The alert would fire when the value is between and " "" @@ -38654,12 +38904,12 @@ msgstr "" "La alerta se disparará cuando el valor sea superior a ." #: ../../godmode/alerts/configure_alert_template.php:1274 -#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1535 +#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1578 msgid "The alert would fire when the module is in warning status" msgstr "La alerta se disparará cuando el módulo esté en estado advertencia." #: ../../godmode/alerts/configure_alert_template.php:1275 -#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1540 +#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1583 msgid "The alert would fire when the module is in critical status" msgstr "La alerta se disparará cuando el módulo esté en estado crítico." @@ -38708,14 +38958,14 @@ msgstr "Lista de alertas" msgid "Stand by" msgstr "En espera" -#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1507 +#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1550 msgid "" "The alert would fire when the value doesn't match " msgstr "" "La alerta se disparará cuando el valor no coincida con ." -#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1519 +#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1562 msgid "" "The alert would fire when the value is not between " "and " @@ -38802,6 +39052,10 @@ msgstr "Crear acción" msgid "Create Template" msgstr "Crear plantilla" +#: ../../godmode/alerts/alert_list.builder.php:169 +msgid "It takes precedence over the action's threshold configuration." +msgstr "Tiene prioridad sobre la configuración del umbral de la acción." + #: ../../godmode/alerts/alert_list.builder.php:199 msgid "Finish and view cluster" msgstr "Finalizar y ver cluster" @@ -38835,12 +39089,12 @@ msgid "Licence" msgstr "Licencia" #: ../../godmode/setup/license.php:158 -#: ../../include/class/Diagnostics.class.php:1175 +#: ../../include/class/Diagnostics.class.php:1179 msgid "Customer key" msgstr "Clave del cliente" #: ../../godmode/setup/license.php:183 -#: ../../include/class/Diagnostics.class.php:1183 +#: ../../include/class/Diagnostics.class.php:1187 msgid "Platform Limit" msgstr "Límite de la plataforma" @@ -38856,22 +39110,22 @@ msgid "modules" msgstr "módulos" #: ../../godmode/setup/license.php:196 -#: ../../include/class/Diagnostics.class.php:1187 +#: ../../include/class/Diagnostics.class.php:1191 msgid "Current Platform Count" msgstr "Cómputo de la plataforma actual" #: ../../godmode/setup/license.php:209 -#: ../../include/class/Diagnostics.class.php:1191 +#: ../../include/class/Diagnostics.class.php:1195 msgid "Current Platform Count (enabled: items)" msgstr "Cómputo de la plataforma actual (activado: elementos)" #: ../../godmode/setup/license.php:222 -#: ../../include/class/Diagnostics.class.php:1195 +#: ../../include/class/Diagnostics.class.php:1199 msgid "Current Platform Count (disabled: items)" msgstr "Cómputo de la plataforma actual (desactivado: elementos)" #: ../../godmode/setup/license.php:235 -#: ../../include/class/Diagnostics.class.php:1199 +#: ../../include/class/Diagnostics.class.php:1203 msgid "License Mode" msgstr "Modalidad de licencia" @@ -38880,7 +39134,7 @@ msgid "NMS" msgstr "NMS" #: ../../godmode/setup/license.php:274 -#: ../../include/class/Diagnostics.class.php:1211 +#: ../../include/class/Diagnostics.class.php:1215 msgid "Licensed to" msgstr "Con licencia para" @@ -38936,40 +39190,44 @@ msgstr "" msgid "Site news management" msgstr "Gestionar noticias del sitio" -#: ../../godmode/setup/news.php:169 ../../godmode/setup/links.php:105 +#: ../../godmode/setup/news.php:173 ../../godmode/setup/links.php:105 msgid "Name error" msgstr "Error de nombre" -#: ../../godmode/setup/news.php:234 +#: ../../godmode/setup/news.php:238 msgid "Modal screen" msgstr "Pantalla modal" -#: ../../godmode/setup/news.php:247 +#: ../../godmode/setup/news.php:251 msgid "Expire" msgstr "Caduca" -#: ../../godmode/setup/news.php:260 ../../godmode/setup/news.php:353 +#: ../../godmode/setup/news.php:264 ../../godmode/setup/news.php:357 msgid "Expiration" msgstr "Vencimiento" -#: ../../godmode/setup/news.php:344 +#: ../../godmode/setup/news.php:348 msgid "There are no defined news" msgstr "No hay noticias definidas" -#: ../../godmode/setup/news.php:351 -#: ../../operation/agentes/estado_generalagente.php:749 +#: ../../godmode/setup/news.php:355 +#: ../../operation/agentes/estado_generalagente.php:718 msgid "Author" msgstr "Autor" -#: ../../godmode/setup/news.php:371 +#: ../../godmode/setup/news.php:364 ../../general/logon_ok.php:216 +msgid "Welcome to Pandora FMS Console" +msgstr "Bienvenido/a a la Consola de Pandora FMS" + +#: ../../godmode/setup/news.php:370 msgid "Modal" msgstr "Modal" -#: ../../godmode/setup/news.php:373 +#: ../../godmode/setup/news.php:372 msgid "Board" msgstr "Tablero" -#: ../../godmode/setup/news.php:384 +#: ../../godmode/setup/news.php:383 msgid "Expired" msgstr "Caducado" @@ -38997,7 +39255,7 @@ msgstr "Conexión mapa GIS" msgid "Pandora Websocket Engine" msgstr "Motor Websocket Pandora" -#: ../../godmode/setup/setup.php:344 ../../include/class/TipsWindow.class.php:493 +#: ../../godmode/setup/setup.php:344 ../../include/class/TipsWindow.class.php:505 msgid "Create tip" msgstr "Crear Tip" @@ -39014,7 +39272,7 @@ msgid "Correct update the setup options" msgstr "Actualización correcta de las opciones de configuración" #: ../../godmode/setup/setup_ehorus.php:67 -#: ../../include/functions_config.php:1812 +#: ../../include/functions_config.php:1824 msgid "Enable eHorus" msgstr "Activar eHorus" @@ -39035,6 +39293,17 @@ msgstr "Puerto de la API" msgid "Request timeout" msgstr "Tiempo de espera excedido para la petición" +#: ../../godmode/setup/setup_ehorus.php:135 +#: ../../godmode/setup/setup_integria.php:665 +msgid "Connection its OK" +msgstr "La conexión es correcta" + +#: ../../godmode/setup/setup_ehorus.php:139 +#: ../../godmode/setup/setup_websocket_engine.php:89 +#: ../../godmode/setup/setup_integria.php:652 +msgid "Test connection" +msgstr "Comprobar conexión" + #: ../../godmode/setup/setup_ehorus.php:175 msgid "Remote Management System" msgstr "Sistema de gestión remota" @@ -39076,24 +39345,24 @@ msgstr "La sesión ha caducado." #: ../../godmode/setup/setup_ehorus.php:297 #: ../../godmode/setup/setup_integria.php:825 #: ../../godmode/setup/setup_integria.php:906 -#: ../../operation/users/user_edit.php:1420 -#: ../../operation/users/user_edit.php:1498 +#: ../../operation/users/user_edit.php:1417 +#: ../../operation/users/user_edit.php:1495 msgid "Empty user or password" msgstr "Usuario o contraseña vacío" #: ../../godmode/setup/setup_ehorus.php:298 #: ../../godmode/setup/setup_integria.php:826 #: ../../godmode/setup/setup_integria.php:907 -#: ../../operation/users/user_edit.php:1421 -#: ../../operation/users/user_edit.php:1499 +#: ../../operation/users/user_edit.php:1418 +#: ../../operation/users/user_edit.php:1496 msgid "User not found" msgstr "Usuario no encontrado" #: ../../godmode/setup/setup_ehorus.php:299 #: ../../godmode/setup/setup_integria.php:827 #: ../../godmode/setup/setup_integria.php:908 -#: ../../operation/users/user_edit.php:1422 -#: ../../operation/users/user_edit.php:1500 +#: ../../operation/users/user_edit.php:1419 +#: ../../operation/users/user_edit.php:1497 msgid "Invalid password" msgstr "Contraseña incorrecta" @@ -39102,55 +39371,52 @@ msgstr "Contraseña incorrecta" msgid "Data storage path" msgstr "Ruta de almacenamiento de datos" -#: ../../godmode/setup/setup_sflow.php:50 -#: ../../godmode/setup/setup_netflow.php:50 -#: ../../include/functions_config.php:1540 -#: ../../include/functions_config.php:1583 +#: ../../godmode/setup/setup_sflow.php:50 ../../include/functions_config.php:1595 msgid "Daemon interval" msgstr "Intervalo del demonio" #: ../../godmode/setup/setup_sflow.php:55 -#: ../../godmode/setup/setup_netflow.php:55 -#: ../../include/functions_config.php:1544 -#: ../../include/functions_config.php:1587 +#: ../../godmode/setup/setup_netflow.php:51 +#: ../../include/functions_config.php:1556 +#: ../../include/functions_config.php:1599 msgid "Daemon binary path" msgstr "Ruta de demonio binario" #: ../../godmode/setup/setup_sflow.php:60 -#: ../../godmode/setup/setup_netflow.php:60 -#: ../../include/functions_config.php:1548 -#: ../../include/functions_config.php:1591 +#: ../../godmode/setup/setup_netflow.php:56 +#: ../../include/functions_config.php:1560 +#: ../../include/functions_config.php:1603 msgid "Nfdump binary path" msgstr "Ruta binaria Nfdump" #: ../../godmode/setup/setup_sflow.php:65 -#: ../../godmode/setup/setup_netflow.php:65 -#: ../../include/functions_config.php:1552 -#: ../../include/functions_config.php:1595 +#: ../../godmode/setup/setup_netflow.php:61 +#: ../../include/functions_config.php:1564 +#: ../../include/functions_config.php:1607 msgid "Nfexpire binary path" msgstr "Ruta binaria Nfexpire" #: ../../godmode/setup/setup_sflow.php:70 -#: ../../godmode/setup/setup_netflow.php:70 -#: ../../include/functions_config.php:1556 -#: ../../include/functions_config.php:1599 +#: ../../godmode/setup/setup_netflow.php:66 +#: ../../include/functions_config.php:1568 +#: ../../include/functions_config.php:1611 msgid "Maximum chart resolution" msgstr "Máxima resolución del gráfico" -#: ../../godmode/setup/setup_sflow.php:80 ../../include/functions_config.php:1607 +#: ../../godmode/setup/setup_sflow.php:80 ../../include/functions_config.php:1619 msgid "Sflow max lifetime" msgstr "Vida útil máxima de Sflow" #: ../../godmode/setup/setup_sflow.php:84 -#: ../../godmode/setup/setup_netflow.php:84 -#: ../../operation/netflow/nf_live_view.php:339 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../operation/netflow/nf_live_view.php:348 msgid "IP address resolution can take a lot of time" msgstr "La resolución de direcciones IP puede tardar mucho tiempo." #: ../../godmode/setup/setup_sflow.php:86 -#: ../../godmode/setup/setup_netflow.php:86 -#: ../../include/functions_config.php:1568 -#: ../../include/functions_config.php:1611 +#: ../../godmode/setup/setup_netflow.php:82 +#: ../../include/functions_config.php:1580 +#: ../../include/functions_config.php:1623 msgid "Name resolution for IP address" msgstr "Habilitar la resolución de nombre con IP" @@ -39167,7 +39433,7 @@ msgid "Bind port" msgstr "Puerto de enlace" #: ../../godmode/setup/setup_websocket_engine.php:71 -#: ../../include/functions_config.php:1964 +#: ../../include/functions_config.php:1976 msgid "WebSocket proxy url" msgstr "URL del proxy de WebSocket" @@ -39180,11 +39446,11 @@ msgstr "" "Este nodo esta configurado con el modo centralizado. Toda la información de " "las políticas está en modo lectura. Vaya a %s para administrarlo." -#: ../../godmode/setup/os.list.php:163 +#: ../../godmode/setup/os.list.php:162 msgid "There are no defined operating systems" msgstr "No hay sistemas operativos definidos" -#: ../../godmode/setup/os.list.php:170 +#: ../../godmode/setup/os.list.php:169 msgid "Create OS" msgstr "Crear SO" @@ -39270,9 +39536,9 @@ msgstr "Google Maps" #: ../../godmode/setup/gis_step_2.php:254 #: ../../godmode/reporting/visual_console_builder.elements.php:199 -#: ../../include/functions_visual_map_editor.php:1385 -#: ../../include/functions_visual_map.php:4200 -#: ../../operation/visual_console/view.php:316 +#: ../../include/functions_visual_map_editor.php:1443 +#: ../../include/functions_visual_map.php:4209 +#: ../../operation/visual_console/view.php:318 msgid "Static Image" msgstr "Imagen estática" @@ -39321,24 +39587,24 @@ msgid "Corners of the area of the image" msgstr "Esquinas del área de la imagen" #: ../../godmode/setup/gis_step_2.php:364 -#: ../../include/rest-api/models/VisualConsole/Item.php:1961 +#: ../../include/rest-api/models/VisualConsole/Item.php:1964 msgid "Left" msgstr "Izquierda" #: ../../godmode/setup/gis_step_2.php:371 -#: ../../include/rest-api/models/VisualConsole/Item.php:1958 +#: ../../include/rest-api/models/VisualConsole/Item.php:1961 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317 msgid "Bottom" msgstr "Inferior" #: ../../godmode/setup/gis_step_2.php:378 -#: ../../include/rest-api/models/VisualConsole/Item.php:1960 +#: ../../include/rest-api/models/VisualConsole/Item.php:1963 msgid "Right" msgstr "Derecha" #: ../../godmode/setup/gis_step_2.php:385 -#: ../../include/rest-api/models/VisualConsole/Item.php:1959 +#: ../../include/rest-api/models/VisualConsole/Item.php:1962 msgid "Top" msgstr "Superior" @@ -39434,7 +39700,7 @@ msgid "Integria IMS API is not reachable" msgstr "API de Integria IMS no accesible" #: ../../godmode/setup/setup_integria.php:262 -#: ../../include/functions_config.php:1850 +#: ../../include/functions_config.php:1862 msgid "Enable Integria IMS" msgstr "Habilitar Integria IMS" @@ -39507,183 +39773,183 @@ msgstr "No se pudo guardar la traducción de SNMP" msgid "Unsucessful save the snmp translation." msgstr "No se pudo guardar la traducción de SNMP" -#: ../../godmode/setup/setup_netflow.php:80 -#: ../../include/functions_config.php:1564 +#: ../../godmode/setup/setup_netflow.php:76 +#: ../../include/functions_config.php:1576 msgid "Netflow max lifetime" msgstr "Tiempo máximo del Netflow" -#: ../../godmode/setup/setup_visuals.php:108 +#: ../../godmode/setup/setup_visuals.php:112 msgid "Click to display lateral menus" msgstr "Haz clic para mostrar el menú lateral" -#: ../../godmode/setup/setup_visuals.php:120 +#: ../../godmode/setup/setup_visuals.php:124 msgid "Paginated module view" msgstr "Vista del módulo paginada" -#: ../../godmode/setup/setup_visuals.php:152 -#: ../../include/functions_config.php:1347 +#: ../../godmode/setup/setup_visuals.php:156 +#: ../../include/functions_config.php:1363 msgid "Service label font size" msgstr "Tamaño de fuente para el mapa de servicios" -#: ../../godmode/setup/setup_visuals.php:156 +#: ../../godmode/setup/setup_visuals.php:160 msgid "Space between items in Service maps" msgstr "Espacio entre nodos para el mapa de servicios" -#: ../../godmode/setup/setup_visuals.php:235 +#: ../../godmode/setup/setup_visuals.php:239 msgid "Colors" msgstr "Colores" -#: ../../godmode/setup/setup_visuals.php:236 +#: ../../godmode/setup/setup_visuals.php:240 msgid "Faces" msgstr "Caras" -#: ../../godmode/setup/setup_visuals.php:237 +#: ../../godmode/setup/setup_visuals.php:241 msgid "Colors and text" msgstr "Colores y texto" -#: ../../godmode/setup/setup_visuals.php:339 -#: ../../include/functions_config.php:1038 +#: ../../godmode/setup/setup_visuals.php:343 +#: ../../include/functions_config.php:1050 msgid "Style template" msgstr "Plantilla de estilo" -#: ../../godmode/setup/setup_visuals.php:357 -#: ../../include/functions_config.php:1058 +#: ../../godmode/setup/setup_visuals.php:361 +#: ../../include/functions_config.php:1070 msgid "Status icon set" msgstr "Icono de estado en" -#: ../../godmode/setup/setup_visuals.php:602 -#: ../../include/functions_config.php:1094 +#: ../../godmode/setup/setup_visuals.php:606 +#: ../../include/functions_config.php:1106 msgid "Custom documentation logo" msgstr "Logo de documentación personalizado" -#: ../../godmode/setup/setup_visuals.php:642 -#: ../../include/functions_config.php:1098 +#: ../../godmode/setup/setup_visuals.php:646 +#: ../../include/functions_config.php:1110 msgid "Custom support logo" msgstr "Logo de soporte personalizado" -#: ../../godmode/setup/setup_visuals.php:680 -#: ../../include/functions_config.php:1102 -#: ../../include/functions_config.php:1106 +#: ../../godmode/setup/setup_visuals.php:684 +#: ../../include/functions_config.php:1114 +#: ../../include/functions_config.php:1118 msgid "Custom networkmap center logo" msgstr "Logo central del mapa de red personalizado" -#: ../../godmode/setup/setup_visuals.php:720 +#: ../../godmode/setup/setup_visuals.php:724 msgid "Custom mobile console icon" msgstr "Icono de la consola móvil personalizada" -#: ../../godmode/setup/setup_visuals.php:814 +#: ../../godmode/setup/setup_visuals.php:818 msgid "Disable logo in graphs" msgstr "Deshabilitar el logo en los gráficos" -#: ../../godmode/setup/setup_visuals.php:832 +#: ../../godmode/setup/setup_visuals.php:836 msgid "Disable helps" msgstr "Deshabilitar ayudas" -#: ../../godmode/setup/setup_visuals.php:842 -#: ../../include/functions_config.php:1286 +#: ../../godmode/setup/setup_visuals.php:846 +#: ../../include/functions_config.php:1302 msgid "Fixed header" msgstr "Cabecera fija" -#: ../../godmode/setup/setup_visuals.php:854 +#: ../../godmode/setup/setup_visuals.php:858 msgid "Automatically hide submenu" msgstr "Ocultar submenú automáticamente" -#: ../../godmode/setup/setup_visuals.php:901 -#: ../../include/functions_config.php:1250 +#: ../../godmode/setup/setup_visuals.php:905 +#: ../../include/functions_config.php:1266 msgid "GIS Labels" msgstr "Etiquetas GIS" -#: ../../godmode/setup/setup_visuals.php:911 -#: ../../include/functions_config.php:1258 +#: ../../godmode/setup/setup_visuals.php:915 +#: ../../include/functions_config.php:1274 msgid "Default icon in GIS" msgstr "Icono GIS por defecto" -#: ../../godmode/setup/setup_visuals.php:920 +#: ../../godmode/setup/setup_visuals.php:924 msgid "Agent icon group" msgstr "Grupo de iconos de agente" -#: ../../godmode/setup/setup_visuals.php:970 +#: ../../godmode/setup/setup_visuals.php:974 msgid "Graphs font size" msgstr "Tamaño de fuente de las gráficas" -#: ../../godmode/setup/setup_visuals.php:989 +#: ../../godmode/setup/setup_visuals.php:993 msgid "Show unit along with value in reports" msgstr "Mostrar la unidad junto con el valor en los informes" -#: ../../godmode/setup/setup_visuals.php:1000 -#: ../../include/functions_config.php:1226 -#: ../../include/functions_config.php:1230 +#: ../../godmode/setup/setup_visuals.php:1004 +#: ../../include/functions_config.php:1242 +#: ../../include/functions_config.php:1246 msgid "Agent size text" msgstr "Tamaño del texto del agente" -#: ../../godmode/setup/setup_visuals.php:1007 -#: ../../godmode/setup/setup_visuals.php:1029 +#: ../../godmode/setup/setup_visuals.php:1011 +#: ../../godmode/setup/setup_visuals.php:1033 msgid "Small" msgstr "Pequeño" -#: ../../godmode/setup/setup_visuals.php:1022 -#: ../../include/functions_config.php:1234 +#: ../../godmode/setup/setup_visuals.php:1026 +#: ../../include/functions_config.php:1250 msgid "Module size text" msgstr "Tamaño del nombre del módulo" -#: ../../godmode/setup/setup_visuals.php:1046 -#: ../../include/functions_config.php:1238 -#: ../../include/functions_config.php:1242 +#: ../../godmode/setup/setup_visuals.php:1050 +#: ../../include/functions_config.php:1254 +#: ../../include/functions_config.php:1258 msgid "Description size text" msgstr "Tamaño del texto de la descripción" -#: ../../godmode/setup/setup_visuals.php:1057 -#: ../../include/functions_config.php:1246 +#: ../../godmode/setup/setup_visuals.php:1061 +#: ../../include/functions_config.php:1262 msgid "Item title size text" msgstr "Tamaño del texto de los títulos de elementos" -#: ../../godmode/setup/setup_visuals.php:1109 +#: ../../godmode/setup/setup_visuals.php:1113 msgid "Graph color #" msgstr "Color del gráfico #" -#: ../../godmode/setup/setup_visuals.php:1123 +#: ../../godmode/setup/setup_visuals.php:1127 msgid "Data precision" msgstr "Precisión de datos" -#: ../../godmode/setup/setup_visuals.php:1141 +#: ../../godmode/setup/setup_visuals.php:1145 msgid "Data precision in graphs" msgstr "Precisión de datos en los gráficos" -#: ../../godmode/setup/setup_visuals.php:1172 -#: ../../include/functions_config.php:1314 +#: ../../godmode/setup/setup_visuals.php:1176 +#: ../../include/functions_config.php:1330 msgid "Default line thickness for the Custom Graph." msgstr "Espesor de la línea predeterminada para el gráfico personalizado" -#: ../../godmode/setup/setup_visuals.php:1299 +#: ../../godmode/setup/setup_visuals.php:1303 msgid "Zoom graphs" msgstr "Ampliar gráficas" -#: ../../godmode/setup/setup_visuals.php:1328 +#: ../../godmode/setup/setup_visuals.php:1332 msgid "Classic view" msgstr "Vista clásica" -#: ../../godmode/setup/setup_visuals.php:1329 +#: ../../godmode/setup/setup_visuals.php:1333 msgid "View of favorites" msgstr "Vista de favoritos" -#: ../../godmode/setup/setup_visuals.php:1384 +#: ../../godmode/setup/setup_visuals.php:1388 msgid "Type of view of visual consoles" msgstr "Tipo de vista de las consolas visuales" -#: ../../godmode/setup/setup_visuals.php:1398 +#: ../../godmode/setup/setup_visuals.php:1402 msgid "Number of favorite visual consoles to show in the menu" msgstr "Nº de consolas visuales favoritas mostradas en el menú" -#: ../../godmode/setup/setup_visuals.php:1403 -#: ../../include/functions_config.php:1214 +#: ../../godmode/setup/setup_visuals.php:1407 +#: ../../include/functions_config.php:1226 msgid "Default line thickness for the Visual Console" msgstr "Grosor de línea por defecto en las consolas visuales" -#: ../../godmode/setup/setup_visuals.php:1437 +#: ../../godmode/setup/setup_visuals.php:1452 msgid "Number of favorite services to show in the menu" msgstr "Número de servicios favoritos a mostrar en el menú" -#: ../../godmode/setup/setup_visuals.php:1535 +#: ../../godmode/setup/setup_visuals.php:1550 msgid "" "The dir of custom logos is in your www Console in 'images/custom_logo'. You " "can upload more files (ONLY JPEG AND PNG) in upload tool in console." @@ -39692,90 +39958,90 @@ msgstr "" "custom_logo'. Puede añadir más archivos (SOLO JPEG AND PNG) en la herramienta " "de actualización de la consola." -#: ../../godmode/setup/setup_visuals.php:1724 -#: ../../include/functions_config.php:1298 +#: ../../godmode/setup/setup_visuals.php:1739 +#: ../../include/functions_config.php:1314 msgid "Networkmap max width" msgstr "Máximo ancho de Networkmap" -#: ../../godmode/setup/setup_visuals.php:1747 +#: ../../godmode/setup/setup_visuals.php:1762 msgid "Show empty groups in group view" msgstr "Mostrar grupos vacíos en la vista de grupo" -#: ../../godmode/setup/setup_visuals.php:1773 -#: ../../include/functions_config.php:1520 +#: ../../godmode/setup/setup_visuals.php:1788 +#: ../../include/functions_config.php:1536 msgid "Decimal separator" msgstr "Separador decimal" -#: ../../godmode/setup/setup_visuals.php:1788 +#: ../../godmode/setup/setup_visuals.php:1803 msgid "Visible time of successful notifiations" msgstr "Tiempo visible de notificaciones exitosas" -#: ../../godmode/setup/setup_visuals.php:1816 +#: ../../godmode/setup/setup_visuals.php:1831 msgid "Custom values post process" msgstr "Valores personalizados para postprocesado" -#: ../../godmode/setup/setup_visuals.php:1856 -#: ../../godmode/setup/setup_visuals.php:2023 +#: ../../godmode/setup/setup_visuals.php:1871 +#: ../../godmode/setup/setup_visuals.php:2038 msgid "Delete custom values" msgstr "Eliminar valores personalizados" -#: ../../godmode/setup/setup_visuals.php:1906 +#: ../../godmode/setup/setup_visuals.php:1921 msgid "Interval values" msgstr "Valores del intervalo" -#: ../../godmode/setup/setup_visuals.php:1945 +#: ../../godmode/setup/setup_visuals.php:1960 msgid "Delete interval values" msgstr "Eliminar valores de intervalo" -#: ../../godmode/setup/setup_visuals.php:1988 +#: ../../godmode/setup/setup_visuals.php:2003 msgid "Module units" msgstr "Unidades de módulo" -#: ../../godmode/setup/setup_visuals.php:2084 +#: ../../godmode/setup/setup_visuals.php:2099 msgid "Behaviour configuration" msgstr "Configuración del comportamiento" -#: ../../godmode/setup/setup_visuals.php:2089 +#: ../../godmode/setup/setup_visuals.php:2104 msgid "GIS configuration" msgstr "Configuración GIS" -#: ../../godmode/setup/setup_visuals.php:2094 +#: ../../godmode/setup/setup_visuals.php:2109 msgid "Style configuration" msgstr "Configuración de estilo" -#: ../../godmode/setup/setup_visuals.php:2099 +#: ../../godmode/setup/setup_visuals.php:2114 msgid "Charts configuration" msgstr "Configuración de gráficos" -#: ../../godmode/setup/setup_visuals.php:2104 +#: ../../godmode/setup/setup_visuals.php:2119 msgid "Font and Text configuration" msgstr "Configuración de fuente y texto" -#: ../../godmode/setup/setup_visuals.php:2109 +#: ../../godmode/setup/setup_visuals.php:2124 msgid "Visual consoles configuration" msgstr "Configuración de las consolas visuales" -#: ../../godmode/setup/setup_visuals.php:2114 +#: ../../godmode/setup/setup_visuals.php:2129 msgid "Reports configuration " msgstr "Configuración de informes " -#: ../../godmode/setup/setup_visuals.php:2119 +#: ../../godmode/setup/setup_visuals.php:2134 msgid "Services configuration" msgstr "Configuración de servicios" -#: ../../godmode/setup/setup_visuals.php:2124 +#: ../../godmode/setup/setup_visuals.php:2139 msgid "Other configuration" msgstr "Otra configuración" -#: ../../godmode/setup/setup_visuals.php:2405 +#: ../../godmode/setup/setup_visuals.php:2425 msgid "Mobile console logo preview" msgstr "Vista previa del logo de la consola móvil" -#: ../../godmode/setup/setup_visuals.php:2441 +#: ../../godmode/setup/setup_visuals.php:2461 msgid "Gis icons preview" msgstr "Vista previa de los iconos GIS" -#: ../../godmode/setup/setup_visuals.php:2507 +#: ../../godmode/setup/setup_visuals.php:2527 msgid "Status set preview" msgstr "Vista previa del estado" @@ -39858,8 +40124,12 @@ msgstr "Habilitar Sflow" msgid "General network path" msgstr "Ruta de red general" +#: ../../godmode/setup/setup_general.php:434 +msgid "Server timezone setup" +msgstr "Configuración de zona horaria del servidor" + #: ../../godmode/setup/setup_general.php:515 -#: ../../include/functions_config.php:423 +#: ../../include/functions_config.php:431 msgid "Inventory changes blacklist" msgstr "Lista negra ante cambios de inventario" @@ -39923,11 +40193,11 @@ msgstr "Útil para integraciones" msgid "Log location" msgstr "Localización de logs" -#: ../../godmode/setup/setup_general.php:710 +#: ../../godmode/setup/setup_general.php:736 msgid "General options" msgstr "Opciones generales" -#: ../../godmode/setup/setup_general.php:729 +#: ../../godmode/setup/setup_general.php:755 msgid "" "Please notice that some providers like Gmail or Office365 need to setup/enable " "manually external connections using SMTP and you need to use STARTTLS on port " @@ -39940,29 +40210,29 @@ msgstr "" "las conexiones externas manualmente utilizando SNMP y necesita usar STARTTLS " "en el puerto 587." -#: ../../godmode/setup/setup_general.php:744 +#: ../../godmode/setup/setup_general.php:770 msgid "From address" msgstr "De" -#: ../../godmode/setup/setup_general.php:768 +#: ../../godmode/setup/setup_general.php:794 msgid "SMTP Server" msgstr "Servidor SMTP" -#: ../../godmode/setup/setup_general.php:780 +#: ../../godmode/setup/setup_general.php:806 msgid "SMTP Port" msgstr "Puerto SMTP" -#: ../../godmode/setup/setup_general.php:847 +#: ../../godmode/setup/setup_general.php:873 msgid "Email test" msgstr "Prueba de email" -#: ../../godmode/setup/setup_general.php:896 -#: ../../include/class/TipsWindow.class.php:767 -#: ../../include/class/TipsWindow.class.php:934 ../../general/header.php:833 +#: ../../godmode/setup/setup_general.php:922 +#: ../../include/class/TipsWindow.class.php:787 +#: ../../include/class/TipsWindow.class.php:954 ../../general/header.php:833 msgid "Send" msgstr "Enviar" -#: ../../godmode/setup/setup_general.php:910 +#: ../../godmode/setup/setup_general.php:936 msgid "Check mail configuration" msgstr "Revisar configuración de correo" @@ -39974,29 +40244,29 @@ msgstr "Pandora_db en ejecución en la base de datos histórica." msgid "not executed" msgstr "No ejecutado" -#: ../../godmode/setup/performance.php:278 ../../include/functions_config.php:834 +#: ../../godmode/setup/performance.php:278 ../../include/functions_config.php:846 msgid "Max. days before delete traps" msgstr "Nº max. de días antes de borrar traps SNMP" #: ../../godmode/setup/performance.php:308 -#: ../../godmode/setup/performance.php:518 ../../include/functions_config.php:838 +#: ../../godmode/setup/performance.php:518 ../../include/functions_config.php:850 msgid "Max. days before delete string data" msgstr "Nº max. de días antes de borrar datos de tipo texto" -#: ../../godmode/setup/performance.php:323 ../../include/functions_config.php:846 +#: ../../godmode/setup/performance.php:323 ../../include/functions_config.php:858 msgid "Max. days before delete GIS data" msgstr "Nº max. de días antes de borrar información GIS" #: ../../godmode/setup/performance.php:353 -#: ../../godmode/setup/performance.php:482 ../../include/functions_config.php:862 +#: ../../godmode/setup/performance.php:482 ../../include/functions_config.php:874 msgid "Max. days before compact data" msgstr "Máx. días antes de comprimir datos" -#: ../../godmode/setup/performance.php:368 ../../include/functions_config.php:854 +#: ../../godmode/setup/performance.php:368 ../../include/functions_config.php:866 msgid "Max. days before delete unknown modules" msgstr "Máximo de días antes de borrar módulos desconocidos" -#: ../../godmode/setup/performance.php:383 ../../include/functions_config.php:858 +#: ../../godmode/setup/performance.php:383 ../../include/functions_config.php:870 msgid "Max. days before delete not initialized modules" msgstr "Máx. días antes de eliminar módulos no inicializados" @@ -40005,24 +40275,24 @@ msgid "Max. days before delete autodisabled agents" msgstr "" "Nº máximo de días antes de la eliminación de los agentes autodeshabilitados" -#: ../../godmode/setup/performance.php:413 ../../include/functions_config.php:914 +#: ../../godmode/setup/performance.php:413 ../../include/functions_config.php:926 msgid "Retention period of past special days" msgstr "Período de retención de días especiales pasados" #: ../../godmode/setup/performance.php:494 -#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:878 +#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:890 msgid "Compact interpolation in hours (1 Fine-20 bad)" msgstr "Interpolación de la compactación en horas (1 bueno - 20 malo)" -#: ../../godmode/setup/performance.php:537 ../../include/functions_config.php:928 +#: ../../godmode/setup/performance.php:537 ../../include/functions_config.php:940 msgid "Max. days before delete old messages" msgstr "Núm. máx. de días antes de borrar mensajes antiguos" -#: ../../godmode/setup/performance.php:549 ../../include/functions_config.php:932 +#: ../../godmode/setup/performance.php:549 ../../include/functions_config.php:944 msgid "Max. days before delete old network matrix data" msgstr "Núm. máx. de días antes de borrar datos de matriz antiguos" -#: ../../godmode/setup/performance.php:565 ../../include/functions_config.php:923 +#: ../../godmode/setup/performance.php:565 ../../include/functions_config.php:935 msgid "Max. days before delete inventory data" msgstr "Nº de días máximo antes del borrado de datos de inventario" @@ -40042,19 +40312,19 @@ msgstr "10 días" msgid "2 weeks" msgstr "2 semanas" -#: ../../godmode/setup/performance.php:652 ../../include/functions_config.php:886 +#: ../../godmode/setup/performance.php:652 ../../include/functions_config.php:898 msgid "Use realtime statistics" msgstr "Usar estadísticas en tiempo real" -#: ../../godmode/setup/performance.php:662 ../../include/functions_config.php:890 +#: ../../godmode/setup/performance.php:662 ../../include/functions_config.php:902 msgid "Batch statistics period (secs)" msgstr "Período de las estadísticas programadas (seg.)" -#: ../../godmode/setup/performance.php:685 ../../include/functions_config.php:898 +#: ../../godmode/setup/performance.php:685 ../../include/functions_config.php:910 msgid "Max. recommended number of files in attachment directory" msgstr "Max. número de archivos recomendado para el directorio de adjuntos" -#: ../../godmode/setup/performance.php:697 ../../include/functions_config.php:902 +#: ../../godmode/setup/performance.php:697 ../../include/functions_config.php:914 msgid "Delete not init modules" msgstr "Borrar módulos no iniciados" @@ -40062,11 +40332,11 @@ msgstr "Borrar módulos no iniciados" msgid "Big Operation Step to purge old data" msgstr "Gran operación para la purga de datos antiguos" -#: ../../godmode/setup/performance.php:722 ../../include/functions_config.php:910 +#: ../../godmode/setup/performance.php:722 ../../include/functions_config.php:922 msgid "Small Operation Step to purge old data" msgstr "Operación menor para la purga de datos antiguos" -#: ../../godmode/setup/performance.php:737 ../../include/functions_config.php:936 +#: ../../godmode/setup/performance.php:737 ../../include/functions_config.php:948 msgid "Graph container - Max. Items" msgstr "Contenedor de gráficas - Máx. elementos" @@ -40109,7 +40379,7 @@ msgstr "Opciones de mantenimiento de la base de datos histórica" #: ../../godmode/setup/performance.php:868 ../../include/graphs/fgraph.php:404 #: ../../include/functions_netflow.php:2097 -#: ../../include/functions_reporting.php:4063 +#: ../../include/functions_reporting.php:4072 msgid "Others" msgstr "Otros" @@ -40118,7 +40388,7 @@ msgid "Agent SNMP Interface Wizard defaults" msgstr "Valores predeterminados del Asistente de interfaz SNMP del agente" #: ../../godmode/setup/file_manager.php:83 -#: ../../include/functions_filemanager.php:630 +#: ../../include/functions_filemanager.php:645 #, php-format msgid "Index of %s" msgstr "Índice de %s" @@ -40129,7 +40399,7 @@ msgstr "El idioma está vacío" #: ../../godmode/setup/welcome_tips.php:65 msgid "Title is empty" -msgstr "El titulo esta vacio" +msgstr "El título está vacío" #: ../../godmode/setup/welcome_tips.php:69 msgid "Text is empty" @@ -40158,8 +40428,8 @@ msgstr "Crear consola visual" #: ../../godmode/reporting/visual_console_builder.data.php:182 #: ../../godmode/reporting/visual_console_builder.elements.php:167 #: ../../include/functions_visual_map_editor.php:55 -#: ../../include/functions_visual_map_editor.php:632 -#: ../../include/lib/Dashboard/Widget.php:575 +#: ../../include/functions_visual_map_editor.php:626 +#: ../../include/lib/Dashboard/Widget.php:576 msgid "Background" msgstr "Imagen de fondo" @@ -40168,10 +40438,10 @@ msgid "Background image" msgstr "Imagen de fondo" #: ../../godmode/reporting/visual_console_builder.data.php:227 -#: ../../include/functions_visual_map_editor.php:347 +#: ../../include/functions_visual_map_editor.php:343 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:372 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:514 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:250 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:247 msgid "Background color" msgstr "Color de fondo" @@ -40220,107 +40490,107 @@ msgstr "El archivo no tiene una extensión válida." msgid "Problems with move file to target." msgstr "Error al mover el archivo al objetivo" -#: ../../godmode/reporting/visual_console_builder.php:303 +#: ../../godmode/reporting/visual_console_builder.php:304 msgid "Successfully update." msgstr "Actualizado correctamente" -#: ../../godmode/reporting/visual_console_builder.php:322 +#: ../../godmode/reporting/visual_console_builder.php:323 msgid "Could not be update." msgstr "No se puede actualizar" -#: ../../godmode/reporting/visual_console_builder.php:342 +#: ../../godmode/reporting/visual_console_builder.php:343 msgid "Successfully created." msgstr "Creado correctamente" -#: ../../godmode/reporting/visual_console_builder.php:361 +#: ../../godmode/reporting/visual_console_builder.php:362 msgid "Could not be created." msgstr "No se pudo crear" -#: ../../godmode/reporting/visual_console_builder.php:409 +#: ../../godmode/reporting/visual_console_builder.php:410 msgid "Successfully multiple delete." msgstr "Supresión múltiple realizada correctamente" -#: ../../godmode/reporting/visual_console_builder.php:410 +#: ../../godmode/reporting/visual_console_builder.php:411 msgid "Unsuccessful multiple delete." msgstr "Error de supresión múltiple" -#: ../../godmode/reporting/visual_console_builder.php:530 +#: ../../godmode/reporting/visual_console_builder.php:531 msgid "Successfully delete." msgstr "Borrado satisfactoriamente" -#: ../../godmode/reporting/visual_console_builder.php:801 -#: ../../operation/visual_console/view.php:130 +#: ../../godmode/reporting/visual_console_builder.php:809 +#: ../../operation/visual_console/view.php:132 #: ../../operation/visual_console/legacy_view.php:117 msgid "Visual consoles list" msgstr "Lista de consolas visuales" -#: ../../godmode/reporting/visual_console_builder.php:810 -#: ../../operation/visual_console/view.php:164 +#: ../../godmode/reporting/visual_console_builder.php:818 +#: ../../operation/visual_console/view.php:166 #: ../../operation/visual_console/legacy_view.php:133 msgid "Show link to public Visual Console" msgstr "Mostrar enlace a la Consola Visual pública" -#: ../../godmode/reporting/visual_console_builder.php:814 +#: ../../godmode/reporting/visual_console_builder.php:822 #: ../../godmode/reporting/graph_builder.php:304 -#: ../../godmode/reporting/reporting_builder.php:3634 -#: ../../operation/visual_console/view.php:174 +#: ../../godmode/reporting/reporting_builder.php:3651 +#: ../../operation/visual_console/view.php:176 #: ../../operation/visual_console/legacy_view.php:143 #: ../../operation/reporting/reporting_viewer.php:138 #: ../../operation/reporting/graph_viewer.php:193 msgid "Main data" msgstr "Datos principales" -#: ../../godmode/reporting/visual_console_builder.php:818 -#: ../../operation/visual_console/view.php:182 +#: ../../godmode/reporting/visual_console_builder.php:826 +#: ../../operation/visual_console/view.php:184 #: ../../operation/visual_console/legacy_view.php:151 msgid "List elements" msgstr "Lista de elementos" -#: ../../godmode/reporting/visual_console_builder.php:824 -#: ../../operation/visual_console/view.php:192 +#: ../../godmode/reporting/visual_console_builder.php:832 +#: ../../operation/visual_console/view.php:194 #: ../../operation/visual_console/legacy_view.php:161 msgid "Services wizard" msgstr "Asistente de servicios" -#: ../../godmode/reporting/visual_console_builder.php:849 +#: ../../godmode/reporting/visual_console_builder.php:857 msgid "New visual console" msgstr "Nueva consola visual" -#: ../../godmode/reporting/reporting_builder.list_items.php:701 +#: ../../godmode/reporting/reporting_builder.list_items.php:702 msgid "Sort selected items from position: " msgstr "Ordenar elementos desde posición: " -#: ../../godmode/reporting/reporting_builder.list_items.php:704 +#: ../../godmode/reporting/reporting_builder.list_items.php:705 msgid "Move before to" msgstr "Mover antes de" -#: ../../godmode/reporting/reporting_builder.list_items.php:705 +#: ../../godmode/reporting/reporting_builder.list_items.php:706 msgid "Move after to" msgstr "Mover después de" -#: ../../godmode/reporting/reporting_builder.list_items.php:754 -#: ../../godmode/reporting/graph_builder.graph_editor.php:301 -#: ../../godmode/reporting/graph_builder.graph_editor.php:369 +#: ../../godmode/reporting/reporting_builder.list_items.php:755 +#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/graph_builder.graph_editor.php:284 msgid "Sort items" msgstr "Ordenar elementos" -#: ../../godmode/reporting/reporting_builder.list_items.php:763 +#: ../../godmode/reporting/reporting_builder.list_items.php:764 msgid "Delete selected items from position: " msgstr "Borrar los elementos seleccionados desde la posición: " -#: ../../godmode/reporting/reporting_builder.list_items.php:766 +#: ../../godmode/reporting/reporting_builder.list_items.php:767 msgid "Delete above to" msgstr "Borrar lo que está encima de" -#: ../../godmode/reporting/reporting_builder.list_items.php:767 +#: ../../godmode/reporting/reporting_builder.list_items.php:768 msgid "Delete below to" msgstr "Borrar lo que está debajo de" -#: ../../godmode/reporting/reporting_builder.list_items.php:779 +#: ../../godmode/reporting/reporting_builder.list_items.php:780 msgid "Poisition" msgstr "Posición" -#: ../../godmode/reporting/reporting_builder.list_items.php:845 +#: ../../godmode/reporting/reporting_builder.list_items.php:846 msgid "" "Are you sure to sort the items into the report?\\n. This action change the " "sorting of items into data base." @@ -40328,16 +40598,16 @@ msgstr "" "¿Está seguro de que quiere clasificar los elementos en el informe?\\n. Esta " "acción podría cambiar la clasificación de los elementos en la base de datos." -#: ../../godmode/reporting/reporting_builder.list_items.php:867 -#: ../../godmode/reporting/graph_builder.graph_editor.php:463 +#: ../../godmode/reporting/reporting_builder.list_items.php:868 +#: ../../godmode/reporting/graph_builder.graph_editor.php:478 msgid "Please select any item to order" msgstr "Por favor, selecciona cualquier elemento para ordenar." -#: ../../godmode/reporting/reporting_builder.list_items.php:897 +#: ../../godmode/reporting/reporting_builder.list_items.php:898 msgid "Are you sure to delete the items into the report?\\n" msgstr "¿Estás seguro de que quieres borrar los elementos en el informe?\\n" -#: ../../godmode/reporting/reporting_builder.list_items.php:925 +#: ../../godmode/reporting/reporting_builder.list_items.php:926 msgid "Please select any item to delete" msgstr "Por favor, selecciona cualquier elemento para borrarlo." @@ -40389,7 +40659,7 @@ msgstr "" #: ../../godmode/reporting/create_container.php:498 #: ../../godmode/reporting/create_container.php:686 #: ../../godmode/reporting/graph_builder.main.php:219 -#: ../../include/functions_visual_map_editor.php:554 +#: ../../include/functions_visual_map_editor.php:548 msgid "Type of graph" msgstr "Tipo de gráfica" @@ -40397,8 +40667,8 @@ msgstr "Tipo de gráfica" #: ../../godmode/reporting/create_container.php:576 #: ../../godmode/reporting/create_container.php:691 #: ../../godmode/reporting/graph_builder.main.php:290 -#: ../../operation/agentes/stat_win.php:395 -#: ../../operation/agentes/interface_traffic_graph_win.php:240 +#: ../../operation/agentes/stat_win.php:403 +#: ../../operation/agentes/interface_traffic_graph_win.php:256 msgid "Show full scale graph (TIP)" msgstr "Mostrar gráfica a escala completa (TIP)" @@ -40456,7 +40726,7 @@ msgid "Graph editor" msgstr "Editor de gráficas" #: ../../godmode/reporting/graph_builder.php:326 -#: ../../include/functions_events.php:4542 +#: ../../include/functions_events.php:4547 #: ../../operation/reporting/graph_viewer.php:223 msgid "View graph" msgstr "Ver gráfica" @@ -40543,23 +40813,23 @@ msgstr "" "El número máximo de elementos en una tabla es %d. Tiene %d elementos, solo se " "mostrarán los primeros %d." -#: ../../godmode/reporting/graph_builder.graph_editor.php:315 +#: ../../godmode/reporting/graph_builder.graph_editor.php:228 msgid "Sort selected items" msgstr "Ordenar elementos seleccionados" -#: ../../godmode/reporting/graph_builder.graph_editor.php:318 +#: ../../godmode/reporting/graph_builder.graph_editor.php:231 msgid "before to" msgstr "antes de" -#: ../../godmode/reporting/graph_builder.graph_editor.php:319 +#: ../../godmode/reporting/graph_builder.graph_editor.php:232 msgid "after to" msgstr "después de" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1067 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1069 msgid "Not valid" msgstr "No válido" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1075 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1077 msgid "" "This type of report brings a lot of data loading, it is recommended to use it " "for scheduled reports and not for real-time view." @@ -40592,55 +40862,55 @@ msgstr "" msgid "Show modules" msgstr "Mostrar módulos" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2221 -#: ../../include/functions_ui.php:2494 -#: ../../operation/inventory/inventory.php:687 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2230 +#: ../../include/functions_ui.php:2537 +#: ../../operation/inventory/inventory.php:688 msgid "Last" msgstr "Último" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2300 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2309 msgid "Target server" msgstr "Servidor Target" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2618 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2627 msgid "Macros definition" msgstr "Definición de macros" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2629 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2638 msgid "Render definition" msgstr "Definición de renderizado" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2630 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2639 msgid "Please note that not all CSS styles are supported by PDF reports." msgstr "" "Tenga en cuenta que no todos los estilos CSS son compatibles con los informes " "PDF." -#: ../../godmode/reporting/reporting_builder.item_editor.php:2728 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2737 msgid "Greater or equal (>=)" msgstr "Mayor o igual (>=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2729 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2738 msgid "Less or equal (<=)" msgstr "Menor o igual (<=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2730 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2739 msgid "Less (<)" msgstr "Menor a (<)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2731 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2740 msgid "Greater (>)" msgstr "Mayor a (>)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2732 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2741 msgid "Equal (=)" msgstr "Igual a (=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2733 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2742 msgid "Not equal (!=)" msgstr "No igual a (!=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2858 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2867 msgid "" "Show a summary chart with max, min and average number of total modules at the " "end of the report and Checks." @@ -40648,39 +40918,39 @@ msgstr "" "Mostrar una gráfica de sumario con el máximo, mínimo y la media del total de " "módulos al final del informe y las comprobaciones." -#: ../../godmode/reporting/reporting_builder.item_editor.php:2913 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2922 msgid "Checks in Warning status" msgstr "Chequeos en estado Warning" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2983 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2992 msgid "Only data" msgstr "Sólo datos" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3081 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3090 msgid "Include extended events" msgstr "Incluir eventos ampliados" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3098 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3107 msgid "Show custom data" msgstr "Mostrar datos personalizados" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3117 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3126 msgid "By agent " msgstr "Por agente " -#: ../../godmode/reporting/reporting_builder.item_editor.php:3127 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3136 msgid "By user validator " msgstr "Por validador de usuario " -#: ../../godmode/reporting/reporting_builder.item_editor.php:3137 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3146 msgid "By criticity " msgstr "Por prioridad " -#: ../../godmode/reporting/reporting_builder.item_editor.php:3147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3156 msgid "Validated vs unvalidated " msgstr "Validado vs invalidado " -#: ../../godmode/reporting/reporting_builder.item_editor.php:3162 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3171 msgid "" "With the token enabled the query will affect the Historical Database, which " "may mean a small drop in performance." @@ -40688,20 +40958,20 @@ msgstr "" "Con el token habilitado, la consulta afectará a la base de datos histórica, " "que puede acarrear una bajada del rendimiento." -#: ../../godmode/reporting/reporting_builder.item_editor.php:3347 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3356 msgid "Include filter" msgstr "Incluir filtro" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3351 #: ../../godmode/reporting/reporting_builder.item_editor.php:3360 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3369 msgid "Free text string search on event description" msgstr "Búsqueda de cadena de texto libre en descripción del evento" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3356 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3365 msgid "Exclude filter" msgstr "Excluir filtro" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3464 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3473 msgid "" "Use prefix notation for numeric values (example: 20,8Kbytes/sec), otherwise " "full value will be displayed (example: 20.742 bytes/sec)" @@ -40710,87 +40980,87 @@ msgstr "" "Kbytes/seg), de lo contrario se mostrará el valor completo (ejemplo: 20,742 " "bytes/seg)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3502 -#: ../../include/functions_reporting.php:5163 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3511 +#: ../../include/functions_reporting.php:5172 msgid "Unassigned group" msgstr "Grupo no asignado" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3548 -#: ../../include/functions_reporting.php:5157 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3557 +#: ../../include/functions_reporting.php:5166 msgid "Unnasigned group" msgstr "Grupo no asignado" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3571 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3580 msgid "Select by group" msgstr "Seleccionar por grupo" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3659 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3668 msgid "Display options" msgstr "Mostrar opciones" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3717 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3726 msgid "Agent group filter" msgstr "Filtro de grupo de agentes" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3752 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3761 msgid "Agent OS filter" msgstr "Filtro del so del agente" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3778 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3787 msgid "Agent custom field" msgstr "Campo personalizado de agente" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3800 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3809 msgid "Agent custom field filter" msgstr "Filtro de campo personalizado de agente" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3824 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3833 msgid "Agent status filter" msgstr "Filtro de estado del agente" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3862 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3871 msgid "Agent version filter" msgstr "Filtro de versión del agente" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3886 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3895 msgid "Agent has remote configuration" msgstr "El agente tiene configuración remota" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3887 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3896 msgid "Filter agents by remote configuration enabled." msgstr "Filtrar agentes por configuración remota habilitada." -#: ../../godmode/reporting/reporting_builder.item_editor.php:3898 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3907 msgid "Agent module filter" msgstr "Filtro del módulo del agente" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3922 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3931 msgid "Module group filter" msgstr "Filtro de grupo de módulos" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3952 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3961 msgid "Search module name" msgstr "Buscar nombre de módulo" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4105 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4620 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4114 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4629 msgid "Agent Failover" msgstr "Conmutación de agente" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4110 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4623 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4119 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4632 msgid "Module Failover" msgstr "Conmutación de módulo" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4150 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4159 msgid "Please save the item before adding entries to this list." msgstr "Guarde el elemento antes de agregar entradas a esta lista." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4596 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4605 msgid "rate" msgstr "tasa" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4644 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4653 msgid "" "Please be careful, when the module have diferent intervals in their life, the " "summatory maybe get bad result." @@ -40798,46 +41068,46 @@ msgstr "" "Por favor, ten en cuenta que cuando el módulo tiene diferentes intervalos a lo " "largo de su historia, el sumatorio puede obtener resultados incorrectos." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4664 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4673 msgid "Please save the report to start adding items into the list." msgstr "Por favor, guarda el informe para empezar a añadir elementos a la lista." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4930 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4934 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4938 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4942 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4946 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4950 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4954 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4958 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4939 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4943 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4947 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4951 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4955 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4959 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4963 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4967 msgid "Item Editor Information" msgstr "Información de editor de elemento" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4931 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4940 msgid "Please select a name." msgstr "Seleccione un nombre." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4935 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4944 msgid "Please select an agent." msgstr "Seleccione un agente." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4943 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4952 msgid "Please insert a SQL query." msgstr "Inserte una consulta SQL." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4947 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4956 msgid "Please insert a URL." msgstr "Inserte una URL." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4951 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4960 msgid "Please checked a custom interval option." msgstr "Compruebe la opción de intervalo personalizado" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4955 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4964 msgid "Please select a user." msgstr "Seleccione un usuario." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4959 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4968 msgid "Please select a group." msgstr "Seleccione un grupo" @@ -40858,26 +41128,26 @@ msgid "Percentile Bubble" msgstr "Burbuja percentil" #: ../../godmode/reporting/visual_console_builder.elements.php:244 -#: ../../mobile/operation/events.php:837 -#: ../../include/functions_visual_map_editor.php:1387 +#: ../../mobile/operation/events.php:866 +#: ../../include/functions_visual_map_editor.php:1445 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:545 -#: ../../operation/visual_console/view.php:326 +#: ../../operation/visual_console/view.php:328 msgid "Module Graph" msgstr "Gráfico de módulo" #: ../../godmode/reporting/visual_console_builder.elements.php:255 #: ../../include/functions_visual_map_editor.php:59 -#: ../../include/functions_visual_map_editor.php:1390 -#: ../../include/functions_visual_map.php:4180 -#: ../../operation/visual_console/view.php:346 +#: ../../include/functions_visual_map_editor.php:1448 +#: ../../include/functions_visual_map.php:4189 +#: ../../operation/visual_console/view.php:348 msgid "Event history graph" msgstr "Gráfica de histórico de eventos" #: ../../godmode/reporting/visual_console_builder.elements.php:266 -#: ../../include/functions_visual_map_editor.php:1391 -#: ../../include/functions_visual_map.php:4205 -#: ../../include/rest-api/models/VisualConsole/Item.php:2132 -#: ../../operation/visual_console/view.php:351 +#: ../../include/functions_visual_map_editor.php:1449 +#: ../../include/functions_visual_map.php:4214 +#: ../../include/rest-api/models/VisualConsole/Item.php:2135 +#: ../../operation/visual_console/view.php:353 msgid "Simple Value" msgstr "Valor simple" @@ -40895,52 +41165,54 @@ msgstr "Valor simple (media)" #: ../../godmode/reporting/visual_console_builder.elements.php:332 #: ../../include/functions_visual_map_editor.php:71 -#: ../../include/functions_visual_map_editor.php:1396 -#: ../../include/functions_visual_map.php:4160 -#: ../../operation/visual_console/view.php:376 +#: ../../include/functions_visual_map_editor.php:1454 +#: ../../include/functions_visual_map.php:4169 +#: ../../operation/visual_console/view.php:378 msgid "Box" msgstr "Caja" #: ../../godmode/reporting/visual_console_builder.elements.php:354 -#: ../../include/functions_visual_map_editor.php:1403 -#: ../../operation/visual_console/view.php:391 +#: ../../include/functions_visual_map_editor.php:1461 +#: ../../operation/visual_console/view.php:393 msgid "Network link" msgstr "Link de red" #: ../../godmode/reporting/visual_console_builder.elements.php:376 #: ../../include/functions_visual_map_editor.php:73 -#: ../../include/functions_visual_map_editor.php:1398 -#: ../../include/functions_visual_map.php:4220 -#: ../../include/rest-api/models/VisualConsole/Item.php:2144 -#: ../../operation/visual_console/view.php:386 +#: ../../include/functions_visual_map_editor.php:1456 +#: ../../include/functions_visual_map.php:4229 +#: ../../include/rest-api/models/VisualConsole/Item.php:2147 +#: ../../operation/visual_console/view.php:388 msgid "Color cloud" msgstr "Nube de color" #: ../../godmode/reporting/visual_console_builder.elements.php:387 -#: ../../include/rest-api/models/VisualConsole/Item.php:2156 -#: ../../operation/visual_console/view.php:331 +#: ../../include/rest-api/models/VisualConsole/Item.php:2159 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:172 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:653 +#: ../../operation/visual_console/view.php:333 msgid "Basic chart" msgstr "Gráfico básico" #: ../../godmode/reporting/visual_console_builder.elements.php:398 -#: ../../include/rest-api/models/VisualConsole/Item.php:2152 -#: ../../operation/visual_console/view.php:396 +#: ../../include/rest-api/models/VisualConsole/Item.php:2155 +#: ../../operation/visual_console/view.php:398 msgid "Odometer" msgstr "Odómetro #1" #: ../../godmode/reporting/visual_console_builder.elements.php:409 #: ../../include/functions_visual_map_editor.php:69 -#: ../../include/functions_visual_map_editor.php:1394 -#: ../../include/functions_visual_map.php:4170 -#: ../../include/rest-api/models/VisualConsole/Item.php:2104 +#: ../../include/functions_visual_map_editor.php:1452 +#: ../../include/functions_visual_map.php:4179 +#: ../../include/rest-api/models/VisualConsole/Item.php:2107 #: ../../include/lib/Dashboard/Widgets/clock.php:158 #: ../../include/lib/Dashboard/Widgets/clock.php:310 -#: ../../operation/visual_console/view.php:366 +#: ../../operation/visual_console/view.php:368 msgid "Clock" msgstr "Reloj" #: ../../godmode/reporting/visual_console_builder.elements.php:438 -#: ../../godmode/reporting/visual_console_builder.elements.php:910 +#: ../../godmode/reporting/visual_console_builder.elements.php:895 msgid "Edit label" msgstr "Editar etiqueta" @@ -40983,14 +41255,14 @@ msgid "An error has ocurred" msgstr "Ha ocurrido un error" #: ../../godmode/reporting/reporting_builder.php:515 -#: ../../godmode/reporting/reporting_builder.php:3560 -#: ../../godmode/reporting/reporting_builder.php:3627 -#: ../../godmode/reporting/reporting_builder.php:3675 +#: ../../godmode/reporting/reporting_builder.php:3577 +#: ../../godmode/reporting/reporting_builder.php:3644 +#: ../../godmode/reporting/reporting_builder.php:3692 msgid "Reports list" msgstr "Lista de informes" #: ../../godmode/reporting/reporting_builder.php:531 -#: ../../godmode/reporting/reporting_builder.php:3571 +#: ../../godmode/reporting/reporting_builder.php:3588 #: ../../operation/menu.php:457 ../../operation/reporting/custom_reporting.php:23 msgid "Custom reporting" msgstr "Informes personalizados" @@ -41012,16 +41284,16 @@ msgstr "" msgid "Create report" msgstr "Crear informe" -#: ../../godmode/reporting/reporting_builder.php:3659 +#: ../../godmode/reporting/reporting_builder.php:3676 #: ../../operation/reporting/reporting_viewer.php:172 msgid "View report" msgstr "Ver informe" -#: ../../godmode/reporting/reporting_builder.php:3678 +#: ../../godmode/reporting/reporting_builder.php:3695 msgid "Create Custom Report" msgstr "Crear informa personalizado" -#: ../../godmode/reporting/reporting_builder.php:3750 +#: ../../godmode/reporting/reporting_builder.php:3767 msgid "Unsuccessful action

" msgstr "Acción fallida

" @@ -41032,16 +41304,16 @@ msgstr "Gráfico estático" #: ../../godmode/reporting/visual_console_builder.wizard.php:124 #: ../../include/functions_visual_map_editor.php:57 -#: ../../include/functions_visual_map_editor.php:1386 -#: ../../operation/visual_console/view.php:321 +#: ../../include/functions_visual_map_editor.php:1444 +#: ../../operation/visual_console/view.php:323 msgid "Percentile Item" msgstr "Elemento percentil" #: ../../godmode/reporting/visual_console_builder.wizard.php:125 -#: ../../mobile/operation/home.php:102 -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map.php:4165 -#: ../../include/rest-api/models/VisualConsole/Item.php:2100 +#: ../../mobile/operation/home.php:118 +#: ../../include/functions_visual_map_editor.php:391 +#: ../../include/functions_visual_map.php:4174 +#: ../../include/rest-api/models/VisualConsole/Item.php:2103 msgid "Module graph" msgstr "Gráfico de módulo" @@ -41059,30 +41331,30 @@ msgid "Size (px)" msgstr "Tamaño (px)" #: ../../godmode/reporting/visual_console_builder.wizard.php:232 -#: ../../include/functions_config.php:1066 +#: ../../include/functions_config.php:1078 msgid "Font size" msgstr "Tamaño de fuente" #: ../../godmode/reporting/visual_console_builder.wizard.php:260 -#: ../../include/functions_visual_map_editor.php:612 +#: ../../include/functions_visual_map_editor.php:606 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371 msgid "Process" msgstr "Procesar" #: ../../godmode/reporting/visual_console_builder.wizard.php:263 -#: ../../include/functions_visual_map_editor.php:615 +#: ../../include/functions_visual_map_editor.php:609 msgid "Min value" msgstr "Valor mínimo" #: ../../godmode/reporting/visual_console_builder.wizard.php:264 #: ../../godmode/reporting/visual_console_builder.wizard.php:284 -#: ../../include/functions_visual_map_editor.php:616 -#: ../../include/functions_visual_map_editor.php:680 +#: ../../include/functions_visual_map_editor.php:610 +#: ../../include/functions_visual_map_editor.php:730 msgid "Max value" msgstr "Valor máx." #: ../../godmode/reporting/visual_console_builder.wizard.php:265 -#: ../../include/functions_visual_map_editor.php:617 +#: ../../include/functions_visual_map_editor.php:611 msgid "Avg value" msgstr "Valor medio" @@ -41091,20 +41363,20 @@ msgid "Width (px)" msgstr "Ancho (px)" #: ../../godmode/reporting/visual_console_builder.wizard.php:300 -#: ../../include/functions_visual_map_editor.php:685 +#: ../../include/functions_visual_map_editor.php:735 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459 msgid "Bubble" msgstr "Burbuja" #: ../../godmode/reporting/visual_console_builder.wizard.php:319 -#: ../../include/functions_visual_map_editor.php:690 +#: ../../include/functions_visual_map_editor.php:740 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504 msgid "Percent" msgstr "Porcentaje" #: ../../godmode/reporting/visual_console_builder.wizard.php:345 -#: ../../include/functions_visual_map_editor.php:709 -#: ../../include/functions_visual_map_editor.php:727 +#: ../../include/functions_visual_map_editor.php:759 +#: ../../include/functions_visual_map_editor.php:777 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509 msgid "Value to show" msgstr "Valor para mostrar" @@ -41160,7 +41432,7 @@ msgstr "El tamaño mínimo permitido es 1024x768" #: ../../godmode/reporting/visual_console_builder.editor.php:177 #: ../../godmode/reporting/visual_console_builder.editor.php:179 #: ../../godmode/reporting/visual_console_builder.editor.php:181 -#: ../../operation/snmpconsole/snmp_browser.php:225 +#: ../../operation/snmpconsole/snmp_browser.php:230 msgid "Action in progress" msgstr "Acción en curso" @@ -41307,88 +41579,88 @@ msgstr "" "Si está habilitado, el comando se mostrará a cualquier usuario que pueda " "ejecutar esta respuesta de evento" -#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_edit_filter.php:306 msgid "Save in group" msgstr "Guardar en grupo" -#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_edit_filter.php:306 msgid "" "This group will be use to restrict the visibility of this filter with ACLs" msgstr "" "Este grupo se usará para restringir la visibilidad de este filtro con ACLs." -#: ../../godmode/events/event_edit_filter.php:502 +#: ../../godmode/events/event_edit_filter.php:504 msgid "Choose between the users who have validated an event. " msgstr "Escoge entre los usuarios que tienen validado un evento. " -#: ../../godmode/events/event_edit_filter.php:520 +#: ../../godmode/events/event_edit_filter.php:522 msgid "Owner." msgstr "Propietario." -#: ../../godmode/events/event_edit_filter.php:535 -#: ../../operation/events/events.php:1783 +#: ../../godmode/events/event_edit_filter.php:537 +#: ../../operation/events/events.php:1837 msgid "All events" msgstr "Todos los eventos" -#: ../../godmode/events/event_edit_filter.php:536 -#: ../../operation/events/events.php:1784 ../../operation/events/events.php:2435 +#: ../../godmode/events/event_edit_filter.php:538 +#: ../../operation/events/events.php:1838 ../../operation/events/events.php:2489 msgid "Group events" msgstr "Eventos agrupados" -#: ../../godmode/events/event_edit_filter.php:537 -#: ../../include/ajax/heatmap.ajax.php:80 +#: ../../godmode/events/event_edit_filter.php:539 +#: ../../include/ajax/heatmap.ajax.php:99 #: ../../include/lib/Dashboard/Widgets/heatmap.php:252 -#: ../../operation/events/events.php:1785 +#: ../../operation/events/events.php:1839 msgid "Group agents" msgstr "Grupos de agente" -#: ../../godmode/events/event_edit_filter.php:538 -#: ../../operation/events/events.php:1786 +#: ../../godmode/events/event_edit_filter.php:540 +#: ../../operation/events/events.php:1840 msgid "Group extra id" msgstr "ID adicional de grupo" -#: ../../godmode/events/event_edit_filter.php:763 -#: ../../operation/events/events.php:2033 +#: ../../godmode/events/event_edit_filter.php:765 +#: ../../operation/events/events.php:2087 msgid "Filter alert events" msgstr "Filtrar eventos de alertas" -#: ../../godmode/events/event_edit_filter.php:764 -#: ../../operation/events/events.php:2034 +#: ../../godmode/events/event_edit_filter.php:766 +#: ../../operation/events/events.php:2088 msgid "Only alert events" msgstr "Solo eventos de alertas" -#: ../../godmode/events/event_edit_filter.php:813 -#: ../../operation/events/events.php:1893 +#: ../../godmode/events/event_edit_filter.php:815 +#: ../../operation/events/events.php:1947 msgid "Extra ID" msgstr "ID extra" -#: ../../godmode/events/event_edit_filter.php:845 +#: ../../godmode/events/event_edit_filter.php:847 msgid "Custom data filter type" msgstr "Tipo de filtro de datos personalizado" -#: ../../godmode/events/event_edit_filter.php:848 +#: ../../godmode/events/event_edit_filter.php:850 msgid "Filter custom data by name field" msgstr "Filtrar datos personalizados por campo de nombre" -#: ../../godmode/events/event_edit_filter.php:849 +#: ../../godmode/events/event_edit_filter.php:851 msgid "Filter custom data by value field" msgstr "Filtrar datos personalizados por campo de valor" -#: ../../godmode/events/event_edit_filter.php:864 +#: ../../godmode/events/event_edit_filter.php:866 #: ../../godmode/events/custom_events.php:117 #: ../../include/functions_reporting_html.php:1074 #: ../../include/functions_reporting_html.php:1322 -#: ../../include/functions_reporting_html.php:2648 -#: ../../include/ajax/events.php:1798 ../../include/functions_events.php:221 +#: ../../include/functions_reporting_html.php:2667 +#: ../../include/ajax/events.php:1799 ../../include/functions_events.php:221 #: ../../include/functions_events.php:323 msgid "Custom data" msgstr "Datos personalizados" -#: ../../godmode/events/event_edit_filter.php:881 +#: ../../godmode/events/event_edit_filter.php:883 msgid "Id souce event" msgstr "Evento de origen de ID" -#: ../../godmode/events/event_edit_filter.php:911 +#: ../../godmode/events/event_edit_filter.php:913 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:313 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:358 #: ../../operation/events/events.php:265 @@ -41460,7 +41732,7 @@ msgid "Severity mini" msgstr "Prioridad baja" #: ../../godmode/events/custom_events.php:116 -#: ../../include/functions_events.php:307 ../../include/functions_events.php:5103 +#: ../../include/functions_events.php:307 ../../include/functions_events.php:5108 msgid "Module custom ID" msgstr "ID personalizada de módulo" @@ -41550,24 +41822,19 @@ msgstr "Error interno, vuelva a ejecutar el asistente." msgid "Manual interval means that it will be executed only On-demand" msgstr "Intervalo manual significa que será ejecutado solo bajo demanda." -#: ../../godmode/wizards/HostDevices.class.php:814 -#: ../../include/class/CustomNetScan.class.php:551 -msgid "The minimum recomended interval for Recon Task is 5 minutes" -msgstr "El intervalo mínimo recomendado para Recon Task es de 5 minutos." - -#: ../../godmode/wizards/HostDevices.class.php:869 +#: ../../godmode/wizards/HostDevices.class.php:865 msgid "Use CSV file definition" msgstr "Usar definición del archivo CSV" -#: ../../godmode/wizards/HostDevices.class.php:870 +#: ../../godmode/wizards/HostDevices.class.php:866 msgid "Define targets using csv o network definition." msgstr "Definir objetivos utilizando la definición de CSV o red." -#: ../../godmode/wizards/HostDevices.class.php:888 +#: ../../godmode/wizards/HostDevices.class.php:884 msgid "Networks (csv)" msgstr "Redes (CSV)" -#: ../../godmode/wizards/HostDevices.class.php:889 +#: ../../godmode/wizards/HostDevices.class.php:885 msgid "" "You can upload a CSV file. Each line must contain a network in IP/MASK format. " "For instance: 192.168.1.1/32" @@ -41575,15 +41842,15 @@ msgstr "" "Puede subir un archivo CSV. Cada línea debe contener una red en formato IP/" "MASK. Por ejemplo: 192.168.1.1/32" -#: ../../godmode/wizards/HostDevices.class.php:901 +#: ../../godmode/wizards/HostDevices.class.php:897 msgid "Networks (current)" msgstr "Redes (actual)" -#: ../../godmode/wizards/HostDevices.class.php:902 +#: ../../godmode/wizards/HostDevices.class.php:898 msgid "Please upload a new file to overwrite this content." msgstr "Sube un nuevo archivo para sobrescribir este contenido." -#: ../../godmode/wizards/HostDevices.class.php:918 +#: ../../godmode/wizards/HostDevices.class.php:914 msgid "" "You can specify networks or fully qualified domain names of a specific host, " "separated by commas, for example: 192.168.50.0/24,192.168.60.0/24, hostname." @@ -41593,11 +41860,11 @@ msgstr "" "separados por comas, por ejemplo: 192.168.50.0/24,192.168.60.0/24, hostname." "artica.es" -#: ../../godmode/wizards/HostDevices.class.php:1068 +#: ../../godmode/wizards/HostDevices.class.php:1064 msgid "Filter by opened ports" msgstr "Filtrar por puertos abiertos" -#: ../../godmode/wizards/HostDevices.class.php:1070 +#: ../../godmode/wizards/HostDevices.class.php:1066 msgid "" "Targets will be scanned if at least one of defined ports (comma separated) is " "open." @@ -41605,11 +41872,11 @@ msgstr "" "Los objetivos se escanearán si al menos uno de los puertos definidos " "(separados por comas) está abierto." -#: ../../godmode/wizards/HostDevices.class.php:1083 +#: ../../godmode/wizards/HostDevices.class.php:1079 msgid "Auto discover known hardware" msgstr "Auto descubrir el hardware conocido" -#: ../../godmode/wizards/HostDevices.class.php:1085 +#: ../../godmode/wizards/HostDevices.class.php:1081 msgid "" "Targets will be monitorized based on its Private Enterprise Number. " "Requires SNMP." @@ -41617,12 +41884,12 @@ msgstr "" "Los objetivos se monitorizarán en base a su Número de empresa privado. " "Precisa de SNMP." -#: ../../godmode/wizards/HostDevices.class.php:1100 +#: ../../godmode/wizards/HostDevices.class.php:1096 msgid "Module Host Alive will be added to discovered agents by default." msgstr "" "El módulo Host Alive se añadirá a los agentes descubiertos por defecto." -#: ../../godmode/wizards/HostDevices.class.php:1148 +#: ../../godmode/wizards/HostDevices.class.php:1144 #, php-format msgid "" "Configured networks could generate %d agents, your license only allows %d, " @@ -41631,20 +41898,20 @@ msgstr "" "Las redes configuradas pueden generar %d agentes, su licencia solo permite %d, " "'revisar resultados' es obligatorio." -#: ../../godmode/wizards/HostDevices.class.php:1156 +#: ../../godmode/wizards/HostDevices.class.php:1152 #: ../../godmode/wizards/DiscoveryTaskList.class.php:917 msgid "Review results" msgstr "Revisar resultados" -#: ../../godmode/wizards/HostDevices.class.php:1158 +#: ../../godmode/wizards/HostDevices.class.php:1154 msgid "Targets must be validated by user before create agents." msgstr "El usuario debe validar los objetivos antes de crear agentes" -#: ../../godmode/wizards/HostDevices.class.php:1184 +#: ../../godmode/wizards/HostDevices.class.php:1180 msgid "Apply autoconfiguration rules" msgstr "Aplicar normas de autoconfiguración" -#: ../../godmode/wizards/HostDevices.class.php:1186 +#: ../../godmode/wizards/HostDevices.class.php:1182 msgid "" "System is able to auto configure detected host & devices by applying your " "defined configuration rules." @@ -41652,19 +41919,19 @@ msgstr "" "El sistema puede auto configurar el host y los dispositivos detectados " "aplicando las normas de configuración." -#: ../../godmode/wizards/HostDevices.class.php:1202 +#: ../../godmode/wizards/HostDevices.class.php:1198 msgid "SNMP enabled" msgstr "SNMP activado" -#: ../../godmode/wizards/HostDevices.class.php:1243 +#: ../../godmode/wizards/HostDevices.class.php:1239 msgid "Skip non-enabled interfaces" msgstr "Omitir interfaces no habilitadas" -#: ../../godmode/wizards/HostDevices.class.php:1262 +#: ../../godmode/wizards/HostDevices.class.php:1258 msgid "SNMP communities to try with" msgstr "Comunidades SNMP con las que probar" -#: ../../godmode/wizards/HostDevices.class.php:1264 +#: ../../godmode/wizards/HostDevices.class.php:1260 msgid "" "You can specify several values, separated by commas, for example: public," "mysecret,1234" @@ -41672,30 +41939,35 @@ msgstr "" "Puede especificar varios valores, separados por coma, por ejemplo: public," "mysecret,1234" -#: ../../godmode/wizards/HostDevices.class.php:1391 +#: ../../godmode/wizards/HostDevices.class.php:1387 msgid "OS detection" msgstr "Detección de SO" -#: ../../godmode/wizards/HostDevices.class.php:1403 +#: ../../godmode/wizards/HostDevices.class.php:1399 msgid "Name resolution" msgstr "Resolución de nombres" -#: ../../godmode/wizards/HostDevices.class.php:1414 +#: ../../godmode/wizards/HostDevices.class.php:1410 msgid "Parent detection" msgstr "Detección de padres" -#: ../../godmode/wizards/HostDevices.class.php:1425 +#: ../../godmode/wizards/HostDevices.class.php:1421 msgid "Parent recursion" msgstr "Recursión del padre" -#: ../../godmode/wizards/HostDevices.class.php:1436 +#: ../../godmode/wizards/HostDevices.class.php:1432 msgid "VLAN enabled" msgstr "VLAN habilitada" -#: ../../godmode/wizards/HostDevices.class.php:1447 +#: ../../godmode/wizards/HostDevices.class.php:1443 msgid "WMI enabled" msgstr "WMI habilitado" +#: ../../godmode/wizards/HostDevices.class.php:1590 +#: ../../include/functions_html.php:648 ../../include/functions_html.php:6387 +msgid "Please select..." +msgstr "Seleccione..." + #: ../../godmode/wizards/DiscoveryTaskList.class.php:259 msgid "Task successfully deleted" msgstr "Tarea eliminada" @@ -42008,6 +42280,7 @@ msgstr "" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1865 #: ../../include/help/clippy/operation_agentes_ver_agente.php:40 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 +#: ../../include/class/AgentDeployWizard.class.php:558 msgid "Done" msgstr "Hecho" @@ -42020,47 +42293,42 @@ msgstr "No iniciado" msgid "Searching" msgstr "Buscando" -#: ../../godmode/servers/servers.build_table.php:122 +#: ../../godmode/servers/servers.build_table.php:124 +#: ../../mobile/operation/server_status.php:269 +#: ../../mobile/operation/server_status.php:307 +#: ../../mobile/operation/server_status.php:337 msgid "Server has crashed." msgstr "El servidor se ha caído." -#: ../../godmode/servers/servers.build_table.php:130 +#: ../../godmode/servers/servers.build_table.php:132 +#: ../../mobile/operation/server_status.php:275 +#: ../../mobile/operation/server_status.php:313 +#: ../../mobile/operation/server_status.php:343 msgid "Server is stopped." msgstr "El servidor se ha parado." -#: ../../godmode/servers/servers.build_table.php:142 +#: ../../godmode/servers/servers.build_table.php:144 msgid "Exec server enabled" msgstr "Servidor de ejecución habilitado" -#: ../../godmode/servers/servers.build_table.php:200 +#: ../../godmode/servers/servers.build_table.php:213 msgid "Manage Discovery tasks" msgstr "Gestionar las tareas de Discovery" -#: ../../godmode/servers/servers.build_table.php:214 +#: ../../godmode/servers/servers.build_table.php:227 msgid "Reset module status and fired alert counts" msgstr "Reiniciar el estado de los módulos y el conteo de las alertas disparadas" -#: ../../godmode/servers/servers.build_table.php:225 +#: ../../godmode/servers/servers.build_table.php:238 msgid "Claim back SNMP modules" msgstr "Recuperar módulos SNMP" -#: ../../godmode/servers/servers.build_table.php:249 -msgid "Manage satellite hosts" -msgstr "Administrar hosts satélite" - #: ../../godmode/servers/modificar_server.php:50 msgid "Update Server" msgstr "Actualizar el servidor" -#: ../../godmode/servers/modificar_server.php:63 -#: ../../godmode/servers/modificar_server.php:222 -#: ../../godmode/servers/modificar_server.php:262 -#, php-format -msgid "%s servers" -msgstr "Servidores de %s" - #: ../../godmode/servers/modificar_server.php:73 -#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1080 +#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1072 #: ../../include/ajax/consoles.ajax.php:61 msgid "Standard" msgstr "Estándar" @@ -42089,34 +42357,35 @@ msgstr "Editor estándar" msgid "Advanced editor" msgstr "Editor avanzado" -#: ../../godmode/servers/modificar_server.php:209 +#: ../../godmode/servers/modificar_server.php:210 +#: ../../godmode/servers/modificar_server.php:229 msgid "Remote Configuration" msgstr "Configuración remota" -#: ../../godmode/servers/modificar_server.php:235 +#: ../../godmode/servers/modificar_server.php:257 msgid "Dynamic search" msgstr "Búsqueda dinámica" -#: ../../godmode/servers/modificar_server.php:275 +#: ../../godmode/servers/modificar_server.php:297 #: ../../include/class/OrderInterpreter.class.php:247 msgid "Manage Servers" msgstr "Gestionar servidores" -#: ../../godmode/servers/modificar_server.php:287 -#: ../../godmode/servers/modificar_server.php:298 +#: ../../godmode/servers/modificar_server.php:309 +#: ../../godmode/servers/modificar_server.php:320 msgid "Successfully action" msgstr "Acción procesada satisfactoriamente" -#: ../../godmode/servers/modificar_server.php:329 +#: ../../godmode/servers/modificar_server.php:351 msgid "Server updated successfully" msgstr "Servidor actualizado correctamente" -#: ../../godmode/servers/modificar_server.php:331 +#: ../../godmode/servers/modificar_server.php:353 msgid "There was a problem updating the server" msgstr "Hubo un problema al actualizar el servidor" #: ../../godmode/servers/plugin_registration.php:58 -#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:751 +#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:743 msgid "To manage plugin you must activate centralized management" msgstr "Active la gestión centralizada para gestionar el plugin" @@ -42126,7 +42395,7 @@ msgstr "REGISTRO DE PLUGINS" #: ../../godmode/servers/plugin_registration.php:77 msgid "Register plugin" -msgstr "Registrar Plugin" +msgstr "Registrar plugin" #: ../../godmode/servers/plugin_registration.php:86 #, php-format @@ -42137,55 +42406,66 @@ msgstr "" "La consola no administra este entorno, gestione esta funcionalidad desde la " "funcionalidad desde %s." -#: ../../godmode/servers/plugin_registration.php:105 +#: ../../godmode/servers/plugin_registration.php:101 msgid "Plugin Registration" msgstr "Registro de puglins" -#: ../../godmode/servers/plugin_registration.php:113 +#: ../../godmode/servers/plugin_registration.php:107 +msgid "" +"This extension makes registering server plugins an easier task. Here you can " +"upload a server plugin in .pspz zipped format. Please refer to the official " +"documentation on how to obtain and use Server Plugins." +msgstr "" +"Esta extensión facilita el registro de los plugins de servidor. Aquí puede " +"subir un plugin de servidor en formato .pspz comprimido. Consulte la " +"documentación oficial para saber como obtener y utilizar los plugins de " +"servidor." + +#: ../../godmode/servers/plugin_registration.php:109 msgid "You can get more plugins in our" msgstr "Puede encontrar más plugins en nuestra" -#: ../../godmode/servers/plugin_registration.php:115 +#: ../../godmode/servers/plugin_registration.php:111 msgid "Public Resource Library" msgstr "Biblioteca de Recursos Públicos" -#: ../../godmode/servers/plugin_registration.php:143 +#: ../../godmode/servers/plugin_registration.php:139 msgid "Failed to create temporary directory" msgstr "Error al crear un directorio temporal" -#: ../../godmode/servers/plugin_registration.php:162 +#: ../../godmode/servers/plugin_registration.php:158 msgid "Cannot load INI file" msgstr "No se puede abrir el archivo .INI" -#: ../../godmode/servers/plugin_registration.php:187 +#: ../../godmode/servers/plugin_registration.php:183 msgid "Plugin exec not found. Aborting!" msgstr "Plugin de ejecución no encontrado. ¡Deteniendo el proceso!" -#: ../../godmode/servers/plugin_registration.php:198 +#: ../../godmode/servers/plugin_registration.php:194 msgid "Plugin already registered. Aborting!" msgstr "El plugin ya está registrado. ¡Deteniendo el proceso!" -#: ../../godmode/servers/plugin_registration.php:365 +#: ../../godmode/servers/plugin_registration.php:361 msgid "Plug-in Remote Registered unsuccessfull" msgstr "Error al registrar el plugin remoto" -#: ../../godmode/servers/plugin_registration.php:368 +#: ../../godmode/servers/plugin_registration.php:364 msgid "Please check the syntax of file \"plugin_definition.ini\"" msgstr "Por favor, comprueba la sintaxis del archivo \"plugin_definition.ini\"." -#: ../../godmode/servers/plugin_registration.php:508 +#: ../../godmode/servers/plugin_registration.php:504 msgid "Module plugin registered" msgstr "Plugin de módulo registrado" -#: ../../godmode/servers/plugin_registration.php:513 +#: ../../godmode/servers/plugin_registration.php:509 msgid "Registered successfully" msgstr "Registrado correctamente" -#: ../../godmode/servers/plugin_registration.php:526 +#: ../../godmode/servers/plugin_registration.php:522 msgid "Unable to uncompress uploaded file" msgstr "No se puede descomprimir el archivo cargado" -#: ../../godmode/servers/plugin_registration.php:544 +#: ../../godmode/servers/plugin_registration.php:540 #, php-format msgid "Cannot move uploaded file to %s." msgstr "No se puede mover el archivo cargado a %s." @@ -42194,15 +42474,15 @@ msgstr "No se puede mover el archivo cargado a %s." msgid "Network Components" msgstr "Componentes de red" -#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:775 +#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:767 msgid "Attachments" msgstr "Archivos adjuntos" -#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:785 +#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:777 msgid "Index of attachment/plugin" msgstr "Índice de archivo adjunto/plugin" -#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:788 +#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:780 #, php-format msgid "Plug-ins registered on %s" msgstr "Plugins registrados en %s" @@ -42211,7 +42491,7 @@ msgstr "Plugins registrados en %s" msgid "Plugin update" msgstr "Actualización de plugin" -#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:815 +#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:807 msgid "" "This console is not manager of this environment,\n" " \t\tplease manage this feature from centralized manager console " @@ -42221,7 +42501,7 @@ msgstr "" " \t\tadministre esta funcionalidad desde el administrador centralizado " "de la consola (Metaconsola)." -#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1080 +#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1072 msgid "Nagios" msgstr "Nagios" @@ -42266,74 +42546,78 @@ msgstr "" msgid "Plug-in parameters" msgstr "Parámetros del plugin" -#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:689 +#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:681 msgid "Parameters macros" msgstr "Macros de los parámetros" #: ../../godmode/servers/plugin.php:585 -#: ../../include/class/ManageNetScanScripts.class.php:675 +#: ../../include/class/ManageNetScanScripts.class.php:671 msgid "Hide value" msgstr "Ocultar valor" #: ../../godmode/servers/plugin.php:596 -#: ../../include/class/ManageNetScanScripts.class.php:677 +#: ../../include/class/ManageNetScanScripts.class.php:673 msgid "This field will show up as dots like a password" msgstr "En este campo aparecerán puntos como en un campo de tipo contraseña." -#: ../../godmode/servers/plugin.php:824 +#: ../../godmode/servers/plugin.php:655 +msgid "Remove macro" +msgstr "Eliminar macro" + +#: ../../godmode/servers/plugin.php:816 msgid "You need to create your own plugins with Windows compatibility" msgstr "Necesitas crear tus propios plugins compatibles con Windows." -#: ../../godmode/servers/plugin.php:890 +#: ../../godmode/servers/plugin.php:882 msgid "Problem updating plugin" msgstr "Problema al actualizar el plugin" -#: ../../godmode/servers/plugin.php:892 +#: ../../godmode/servers/plugin.php:884 msgid "Plugin updated successfully" msgstr "Plugin actualizado correctamente" -#: ../../godmode/servers/plugin.php:950 +#: ../../godmode/servers/plugin.php:942 msgid "Problem creating plugin" msgstr "Error al crear plugin" -#: ../../godmode/servers/plugin.php:952 +#: ../../godmode/servers/plugin.php:944 msgid "Plugin created successfully" msgstr "Plugin creado correctamente" -#: ../../godmode/servers/plugin.php:964 +#: ../../godmode/servers/plugin.php:956 msgid "Problem deleting plugin" msgstr "Error al borrar plugin" -#: ../../godmode/servers/plugin.php:966 ../../godmode/servers/plugin.php:978 +#: ../../godmode/servers/plugin.php:958 ../../godmode/servers/plugin.php:970 msgid "Plugin deleted successfully" msgstr "Plugin borrado correctamente" -#: ../../godmode/servers/plugin.php:1034 +#: ../../godmode/servers/plugin.php:1026 msgid "Lock" msgstr "Bloqueo" -#: ../../godmode/servers/plugin.php:1062 +#: ../../godmode/servers/plugin.php:1054 msgid "All the modules that are using this plugin will be deleted" msgstr "Todos los módulos que estén utilizando este plugin se borrarán." -#: ../../godmode/servers/plugin.php:1096 +#: ../../godmode/servers/plugin.php:1088 msgid "There are no plugins in the system" msgstr "No hay plugins en el sistema" -#: ../../godmode/servers/plugin.php:1104 +#: ../../godmode/servers/plugin.php:1096 msgid "Add plugin" msgstr "Añadir plugin" -#: ../../godmode/servers/plugin.php:1117 +#: ../../godmode/servers/plugin.php:1109 #, php-format msgid "List of modules and components created by \"%s\" " msgstr "Lista de los módulos y componentes creados por '%s' " -#: ../../godmode/servers/plugin.php:1221 +#: ../../godmode/servers/plugin.php:1213 msgid "Some modules or components are using the plugin" msgstr "Algunos módulos o componentes están usando el plugin." -#: ../../godmode/servers/plugin.php:1222 +#: ../../godmode/servers/plugin.php:1214 msgid "" "The modules or components should be updated manually or using the bulk " "operations for plugins after this change" @@ -42341,11 +42625,11 @@ msgstr "" "Los módulos o componentes deberían ser actualizados manualmente o usando las " "operaciones masivas para los plugins después de este cambio." -#: ../../godmode/servers/plugin.php:1224 +#: ../../godmode/servers/plugin.php:1216 msgid "Are you sure you want to perform this action?" msgstr "¿Estás seguro de que quieres realizar esta acción?" -#: ../../godmode/servers/plugin.php:1233 +#: ../../godmode/servers/plugin.php:1225 msgid "" "The plugin macros cannot be updated because some modules or components are " "using the plugin" @@ -42390,37 +42674,37 @@ msgstr "" "Este nodo esta configurado con el modo centralizado. Toda la información de " "las políticas está en modo lectura. Vaya a %s para administrarlo." -#: ../../godmode/tag/tag.php:302 +#: ../../godmode/tag/tag.php:303 msgid "Tag name" msgstr "Nombre de etiqueta" -#: ../../godmode/tag/tag.php:304 +#: ../../godmode/tag/tag.php:305 msgid "Detail information" msgstr "Información de los detalles" -#: ../../godmode/tag/tag.php:305 +#: ../../godmode/tag/tag.php:306 msgid "Number of modules affected" msgstr "Número de módulos afectados" -#: ../../godmode/tag/tag.php:307 ../../godmode/tag/edit_tag.php:233 +#: ../../godmode/tag/tag.php:308 ../../godmode/tag/edit_tag.php:237 msgid "Phone" msgstr "Teléfono" -#: ../../godmode/tag/tag.php:336 +#: ../../godmode/tag/tag.php:337 msgid "Tag details" msgstr "Detalles de la etiqueta" -#: ../../godmode/tag/tag.php:369 +#: ../../godmode/tag/tag.php:370 #, php-format msgid "Emails for the tag: %s" msgstr "Correos para la etiqueta: %s" -#: ../../godmode/tag/tag.php:392 +#: ../../godmode/tag/tag.php:393 #, php-format msgid "Phones for the tag: %s" msgstr "Teléfonos par la etiqueta: %s" -#: ../../godmode/tag/tag.php:455 +#: ../../godmode/tag/tag.php:456 msgid "Create tag" msgstr "Crear etiqueta" @@ -42436,25 +42720,25 @@ msgstr "Etiqueta actualizada correctamente" msgid "Error updating tag" msgstr "Error al actualizar la etiqueta" -#: ../../godmode/tag/edit_tag.php:160 +#: ../../godmode/tag/edit_tag.php:163 msgid "Successfully created tag" msgstr "Etiqueta creada correctamente" -#: ../../godmode/tag/edit_tag.php:161 +#: ../../godmode/tag/edit_tag.php:164 msgid "Error creating tag" msgstr "Error al crear etiqueta" -#: ../../godmode/tag/edit_tag.php:213 +#: ../../godmode/tag/edit_tag.php:217 msgid "Hyperlink to help information that has to exist previously." msgstr "Hipervínculo a la información de ayuda que debe existir previamente" -#: ../../godmode/tag/edit_tag.php:225 +#: ../../godmode/tag/edit_tag.php:229 msgid "Associated Email direction to use later in alerts associated to Tags." msgstr "" "Direccion de email asociada para utilizarla después en alertas asociadas a " "etiquetas" -#: ../../godmode/tag/edit_tag.php:234 +#: ../../godmode/tag/edit_tag.php:238 msgid "Associated phone number to use later in alerts associated to Tags." msgstr "" "Número de teléfono asociado para usar posteriormente en alertas asociadas a " @@ -42569,7 +42853,7 @@ msgstr "Error al cargar los resultados" msgid "Pandora FMS %s - Build %s" msgstr "Pandora FMS %s - Revisión %s" -#: ../../mobile/include/system.class.php:156 +#: ../../mobile/include/system.class.php:175 msgid "" "Access to this page is restricted to authorized users only, please contact " "your system administrator if you should need help." @@ -42578,7 +42862,8 @@ msgstr "" "autorizados. Póngase en contacto con el administrador de sistemas si necesita " "ayuda." -#: ../../mobile/include/system.class.php:156 +#: ../../mobile/include/system.class.php:175 +#: ../../mobile/include/system.class.php:181 #, php-format msgid "" "Please remember that any attempts to access this page will be recorded on the " @@ -42587,6 +42872,14 @@ msgstr "" "Recuerde que cualquier intento de acceso a esta página quedara grabado en la " "base de datos del sistema de %s." +#: ../../mobile/include/system.class.php:181 +msgid "" +"Invalid license, please contact your system administrator if you should need " +"help." +msgstr "" +"Licencia no válida, póngase en contacto con el administrador de sistemas si " +"necesita ayuda." + #: ../../mobile/include/ui.class.php:120 #, php-format msgid "%s mobile" @@ -42597,7 +42890,7 @@ msgstr "%s móvil" msgid "%s : Mobile" msgstr "%s : Móvil" -#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:161 +#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:180 msgid "Home" msgstr "Inicio" @@ -42606,27 +42899,27 @@ msgstr "Inicio" msgid "%s %s - Build %s" msgstr "%s %s - Desarrollo %s" -#: ../../mobile/include/ui.class.php:773 +#: ../../mobile/include/ui.class.php:803 msgid "Not found header." msgstr "Encabezado no encontrado" -#: ../../mobile/include/ui.class.php:775 +#: ../../mobile/include/ui.class.php:805 msgid "Not found content." msgstr "Contenido no encontrado." -#: ../../mobile/include/ui.class.php:777 +#: ../../mobile/include/ui.class.php:807 msgid "Not found footer." msgstr "Pie de página no encontrado" -#: ../../mobile/include/ui.class.php:779 +#: ../../mobile/include/ui.class.php:809 msgid "Incorrect form." msgstr "Forma incorrecta" -#: ../../mobile/include/ui.class.php:781 +#: ../../mobile/include/ui.class.php:811 msgid "Incorrect grid." msgstr "Matriz incorrecta" -#: ../../mobile/include/ui.class.php:783 +#: ../../mobile/include/ui.class.php:813 msgid "Incorrect collapsible." msgstr "Plegable incorrecto" @@ -42668,52 +42961,62 @@ msgstr "Usuario no encontrado en la base de datos o contraseña incorrecta" msgid "Login out" msgstr "Cerrar sesión" -#: ../../mobile/include/user.class.php:391 +#: ../../mobile/include/user.class.php:445 msgid "user" msgstr "Usuario" -#: ../../mobile/include/user.class.php:398 +#: ../../mobile/include/user.class.php:453 msgid "password" msgstr "contraseña" -#: ../../mobile/include/user.class.php:488 -#: ../../mobile/include/user.class.php:489 +#: ../../mobile/include/user.class.php:589 msgid "Authenticator code" msgstr "Código de autentificación" -#: ../../mobile/operation/agents.php:218 +#: ../../mobile/operation/agents.php:219 #, php-format msgid "Filter Agents by %s" msgstr "Filtros de agentes por %s" -#: ../../mobile/operation/agents.php:260 ../../mobile/operation/modules.php:325 -#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1009 +#: ../../mobile/operation/agents.php:261 ../../mobile/operation/modules.php:325 +#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1053 msgid "Apply Filter" msgstr "Aplicar el filtro" -#: ../../mobile/operation/agents.php:454 +#: ../../mobile/operation/agents.php:459 msgid "No agents" msgstr "Sin agentes" -#: ../../mobile/operation/agents.php:550 ../../mobile/operation/modules.php:885 -#: ../../mobile/operation/alerts.php:379 ../../mobile/operation/events.php:1450 +#: ../../mobile/operation/agents.php:561 ../../mobile/operation/modules.php:981 +#: ../../mobile/operation/alerts.php:388 +#: ../../mobile/operation/module_data.php:299 +#: ../../mobile/operation/events.php:1575 +#: ../../mobile/operation/server_status.php:501 msgid "(Default)" msgstr "(Por defecto)" -#: ../../mobile/operation/agents.php:556 ../../mobile/operation/modules.php:891 -#: ../../mobile/operation/alerts.php:392 ../../mobile/operation/events.php:1483 +#: ../../mobile/operation/agents.php:567 ../../mobile/operation/modules.php:987 +#: ../../mobile/operation/alerts.php:401 +#: ../../mobile/operation/module_data.php:305 +#: ../../mobile/operation/events.php:1608 +#: ../../mobile/operation/server_status.php:507 #, php-format msgid "Group: %s" msgstr "Grupo: %s" -#: ../../mobile/operation/agents.php:563 ../../mobile/operation/modules.php:913 -#: ../../mobile/operation/alerts.php:399 ../../mobile/operation/events.php:1503 +#: ../../mobile/operation/agents.php:574 ../../mobile/operation/modules.php:1009 +#: ../../mobile/operation/alerts.php:408 +#: ../../mobile/operation/module_data.php:327 +#: ../../mobile/operation/events.php:1628 +#: ../../mobile/operation/server_status.php:529 #, php-format msgid "Status: %s" msgstr "Estado: %s" -#: ../../mobile/operation/agents.php:570 ../../mobile/operation/modules.php:920 -#: ../../mobile/operation/alerts.php:406 +#: ../../mobile/operation/agents.php:581 ../../mobile/operation/modules.php:1016 +#: ../../mobile/operation/alerts.php:415 +#: ../../mobile/operation/module_data.php:334 +#: ../../mobile/operation/server_status.php:536 #, php-format msgid "Free Search: %s" msgstr "Búsqueda libre: %s" @@ -42723,20 +43026,28 @@ msgstr "Búsqueda libre: %s" msgid "Filter Modules by %s" msgstr "Filtrar módulos por %s" -#: ../../mobile/operation/modules.php:659 +#: ../../mobile/operation/modules.php:670 msgid "Interval." msgstr "Intervalo" -#: ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/modules.php:672 msgid "Last update." msgstr "Última actualización" -#: ../../mobile/operation/modules.php:906 +#: ../../mobile/operation/modules.php:850 +msgid "Choose option" +msgstr "Seleccionar opción" + +#: ../../mobile/operation/modules.php:1002 +#: ../../mobile/operation/module_data.php:320 +#: ../../mobile/operation/server_status.php:522 #, php-format msgid "Module group: %s" msgstr "Grupos de módulos: %s" -#: ../../mobile/operation/modules.php:928 +#: ../../mobile/operation/modules.php:1024 +#: ../../mobile/operation/module_data.php:342 +#: ../../mobile/operation/server_status.php:544 #, php-format msgid "Tag: %s" msgstr "Etiqueta: %s" @@ -42746,20 +43057,29 @@ msgstr "Etiqueta: %s" msgid "Visual consoles" msgstr "Consola visual" -#: ../../mobile/operation/agent.php:162 +#: ../../mobile/operation/home.php:95 +#: ../../mobile/operation/server_status.php:227 +msgid "Server status" +msgstr "Estado del servidor" + +#: ../../mobile/operation/services.php:139 +msgid "No services found" +msgstr "No se han encontrado servicios" + +#: ../../mobile/operation/agent.php:168 msgid "No agent found" msgstr "No se han encontrado agentes" -#: ../../mobile/operation/agent.php:238 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:588 +#: ../../mobile/operation/agent.php:241 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:589 msgid "Modules by status" msgstr "Módulos por estado" -#: ../../mobile/operation/agent.php:268 ../../include/functions_treeview.php:724 +#: ../../mobile/operation/agent.php:271 ../../include/functions_treeview.php:728 msgid "Events (24h)" msgstr "Eventos (24h)" -#: ../../mobile/operation/agent.php:369 +#: ../../mobile/operation/agent.php:372 #, php-format msgid "Last %s Events" msgstr "Últimos %s eventos" @@ -42769,15 +43089,22 @@ msgstr "Últimos %s eventos" msgid "Filter Alerts by %s" msgstr "Filtros de alertas por %s" -#: ../../mobile/operation/alerts.php:346 +#: ../../mobile/operation/alerts.php:336 ../../mobile/operation/alerts.php:337 +#: ../../mobile/operation/alerts.php:342 ../../mobile/operation/alerts.php:344 +#: ../../mobile/operation/alerts.php:347 +msgid "Module/Agent" +msgstr "Agente/módulo" + +#: ../../mobile/operation/alerts.php:353 msgid "Last Fired" msgstr "Última vez que se disparó" -#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2508 +#: ../../mobile/operation/alerts.php:363 ../../include/ajax/events.php:2509 +#: ../../operation/events/sound_events.php:394 msgid "No alerts" msgstr "Sin alertas" -#: ../../mobile/operation/alerts.php:385 +#: ../../mobile/operation/alerts.php:394 #, php-format msgid "Standby: %s" msgstr "Standby: %s" @@ -42790,128 +43117,155 @@ msgstr "Todas las consolas visuales" msgid "Favourite visual consoles" msgstr "Consolas visuales favoritas" -#: ../../mobile/operation/visualmaps.php:263 -msgid "No maps defined" -msgstr "No hay mapas definidos" +#: ../../mobile/operation/visualmaps.php:265 +msgid "There are no favorite maps to show" +msgstr "No hay mapas famritos que mostrar" -#: ../../mobile/operation/module_graph.php:359 -#: ../../mobile/operation/module_graph.php:372 +#: ../../mobile/operation/module_data.php:125 +msgid "Module data" +msgstr "Datos del módulo" + +#: ../../mobile/operation/module_data.php:184 +#: ../../include/graphs/functions_flot.php:515 +#: ../../include/functions_reporting_html.php:663 +#: ../../include/functions_reporting_html.php:4709 +#: ../../include/ajax/events.php:1305 ../../include/functions_graph.php:4832 +#: ../../include/functions_treeview.php:299 +msgid "No data" +msgstr "Sin datos" + +#: ../../mobile/operation/module_graph.php:360 +#: ../../mobile/operation/module_graph.php:373 #, php-format msgid "%s: %s" msgstr "%s: %s" -#: ../../mobile/operation/module_graph.php:405 +#: ../../mobile/operation/module_graph.php:406 #, php-format msgid "Options for %s : %s" msgstr "Opciones para %s: %s" -#: ../../mobile/operation/module_graph.php:412 +#: ../../mobile/operation/module_graph.php:413 msgid "Show Alerts" msgstr "Mostrar alertas" -#: ../../mobile/operation/module_graph.php:420 +#: ../../mobile/operation/module_graph.php:421 msgid "Show Events" msgstr "Mostrar eventos" -#: ../../mobile/operation/module_graph.php:428 -#: ../../operation/agentes/stat_win.php:377 -#: ../../operation/agentes/stat_win.php:439 +#: ../../mobile/operation/module_graph.php:429 +#: ../../operation/agentes/stat_win.php:385 +#: ../../operation/agentes/stat_win.php:455 msgid "Time compare (Separated)" msgstr "Comparación de tiempo (por separado)" -#: ../../mobile/operation/module_graph.php:444 -#: ../../operation/agentes/stat_win.php:317 +#: ../../mobile/operation/module_graph.php:445 +#: ../../operation/agentes/stat_win.php:325 msgid "Show unknown graph" msgstr "Mostrar gráficos desconocidos" -#: ../../mobile/operation/module_graph.php:449 +#: ../../mobile/operation/module_graph.php:450 msgid "Time range (hours)" msgstr "Rango de tiempo (horas)" -#: ../../mobile/operation/module_graph.php:461 +#: ../../mobile/operation/module_graph.php:462 #: ../../operation/agentes/stat_win.php:289 -#: ../../operation/agentes/stat_win.php:408 +#: ../../operation/agentes/stat_win.php:416 #: ../../operation/agentes/interface_traffic_graph_win.php:183 #: ../../operation/agentes/graphs.php:222 #: ../../operation/agentes/exportdata.php:393 msgid "Begin date" msgstr "Fecha de inicio" -#: ../../mobile/operation/module_graph.php:468 +#: ../../mobile/operation/module_graph.php:469 msgid "Update graph" msgstr "Actualizar gráfico" -#: ../../mobile/operation/module_graph.php:478 +#: ../../mobile/operation/module_graph.php:479 msgid "Error get the graph" msgstr "Error al obtener el gráfico" -#: ../../mobile/operation/events.php:450 +#: ../../mobile/operation/events.php:442 #: ../../include/functions_reporting_html.php:1095 #: ../../include/functions_reporting_html.php:1337 -#: ../../include/functions_reporting_html.php:2658 +#: ../../include/functions_reporting_html.php:2677 #: ../../include/functions_events.php:2571 -#: ../../include/functions_events.php:4742 ../../operation/events/events.php:779 +#: ../../include/functions_events.php:4747 ../../operation/events/events.php:784 msgid "New event" msgstr "Nuevo evento" -#: ../../mobile/operation/events.php:455 +#: ../../mobile/operation/events.php:447 #: ../../include/functions_reporting_html.php:1084 #: ../../include/functions_reporting_html.php:1342 -#: ../../include/functions_reporting_html.php:2663 +#: ../../include/functions_reporting_html.php:2682 #: ../../include/functions_events.php:2576 -#: ../../include/functions_events.php:4748 ../../operation/events/events.php:792 +#: ../../include/functions_events.php:4753 ../../operation/events/events.php:797 msgid "Event validated" msgstr "Evento validado" -#: ../../mobile/operation/events.php:460 +#: ../../mobile/operation/events.php:452 #: ../../include/functions_reporting_html.php:1089 #: ../../include/functions_reporting_html.php:1347 -#: ../../include/functions_reporting_html.php:2668 +#: ../../include/functions_reporting_html.php:2687 #: ../../include/functions_events.php:2581 -#: ../../include/functions_events.php:4754 ../../operation/events/events.php:804 +#: ../../include/functions_events.php:4759 ../../operation/events/events.php:809 msgid "Event in process" msgstr "Evento en proceso" -#: ../../mobile/operation/events.php:768 +#: ../../mobile/operation/events.php:797 msgid "ERROR: Event detail" msgstr "ERROR: detalles del evento" -#: ../../mobile/operation/events.php:769 +#: ../../mobile/operation/events.php:798 msgid "Error connecting to DB." msgstr "Error al conectar con la base de datos" -#: ../../mobile/operation/events.php:789 +#: ../../mobile/operation/events.php:818 msgid "Event detail" msgstr "Detalles del evento" -#: ../../mobile/operation/events.php:800 ../../include/functions_events.php:4895 +#: ../../mobile/operation/events.php:829 ../../include/functions_events.php:4900 msgid "Event ID" msgstr "ID del evento" -#: ../../mobile/operation/events.php:828 ../../include/functions_events.php:5013 +#: ../../mobile/operation/events.php:857 ../../include/functions_events.php:5018 msgid "Acknowledged by" msgstr "Admitido por" -#: ../../mobile/operation/events.php:878 +#: ../../mobile/operation/events.php:894 ../../include/functions_events.php:3275 +#: ../../include/functions_events.php:3548 +#: ../../include/functions_events.php:3557 +msgid "In process" +msgstr "En proceso" + +#: ../../mobile/operation/events.php:915 msgid "Sucessful validate" msgstr "Validación correcta" -#: ../../mobile/operation/events.php:880 +#: ../../mobile/operation/events.php:917 msgid "Fail validate" msgstr "Validación fallida" +#: ../../mobile/operation/events.php:922 +msgid "Sucessful in process" +msgstr "Proceso correcto" + #: ../../mobile/operation/events.php:924 +msgid "Fail in process" +msgstr "Error en proceso" + +#: ../../mobile/operation/events.php:968 #, php-format msgid "Filter Events by %s" msgstr "Filtrar eventos por %s" -#: ../../mobile/operation/events.php:934 ../../mobile/operation/events.php:935 +#: ../../mobile/operation/events.php:978 ../../mobile/operation/events.php:979 msgid "Preset Filters" msgstr "Fijar los filtros" -#: ../../mobile/operation/events.php:1144 -#: ../../include/functions_reporting_html.php:6176 -#: ../../include/functions_reporting_html.php:6335 +#: ../../mobile/operation/events.php:1191 +#: ../../include/functions_reporting_html.php:6210 +#: ../../include/functions_reporting_html.php:6369 #: ../../include/functions_reporting.php:2189 #: ../../include/functions_reporting.php:2564 #: ../../include/functions_events.php:2497 @@ -42919,31 +43273,35 @@ msgstr "Fijar los filtros" msgid "No events" msgstr "No hay eventos" -#: ../../mobile/operation/events.php:1455 +#: ../../mobile/operation/events.php:1580 #, php-format msgid "Filter: %s" msgstr "Filtro: %s" -#: ../../mobile/operation/events.php:1467 +#: ../../mobile/operation/events.php:1592 #, php-format msgid "Severity: %s" msgstr "Gravedad: %s" -#: ../../mobile/operation/events.php:1496 +#: ../../mobile/operation/events.php:1621 #, php-format msgid "Type: %s" msgstr "Tipo: %s" -#: ../../mobile/operation/events.php:1510 +#: ../../mobile/operation/events.php:1635 #, php-format msgid "Free search: %s" msgstr "Búsqueda libre: %s" -#: ../../mobile/operation/events.php:1517 +#: ../../mobile/operation/events.php:1642 #, php-format msgid "Hours: %s" msgstr "Horas: %s" +#: ../../mobile/operation/server_status.php:371 +msgid "No servers" +msgstr "No hay servidores" + #: ../../mobile/operation/tactical.php:216 msgid "Last activity" msgstr "Última actividad" @@ -42972,167 +43330,163 @@ msgstr "" msgid "Border color" msgstr "Color del borde" -#: ../../include/functions_visual_map_editor.php:151 +#: ../../include/functions_visual_map_editor.php:149 msgid "Border width" msgstr "Ancho del borde" -#: ../../include/functions_visual_map_editor.php:160 +#: ../../include/functions_visual_map_editor.php:158 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:323 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364 msgid "Fill color" msgstr "Color de relleno" -#: ../../include/functions_visual_map_editor.php:239 +#: ../../include/functions_visual_map_editor.php:235 msgid "" "Scroll the mouse wheel over the label editor to change the background color" msgstr "" "Desliza la rueda del ratón sobre el editor de etiquetas para cambiar el color " "de fondo." -#: ../../include/functions_visual_map_editor.php:255 +#: ../../include/functions_visual_map_editor.php:251 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333 msgid "Clock animation" msgstr "Animación de reloj" -#: ../../include/functions_visual_map_editor.php:258 +#: ../../include/functions_visual_map_editor.php:254 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328 msgid "Simple analogic" msgstr "Analógico" -#: ../../include/functions_visual_map_editor.php:259 +#: ../../include/functions_visual_map_editor.php:255 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329 msgid "Simple digital" msgstr "Digital" -#: ../../include/functions_visual_map_editor.php:273 +#: ../../include/functions_visual_map_editor.php:269 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351 msgid "Time format" msgstr "Formato de hora" -#: ../../include/functions_visual_map_editor.php:276 +#: ../../include/functions_visual_map_editor.php:272 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346 msgid "Only time" msgstr "Solo la hora" -#: ../../include/functions_visual_map_editor.php:277 +#: ../../include/functions_visual_map_editor.php:273 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347 msgid "Time and date" msgstr "Hora y fecha" -#: ../../include/functions_visual_map_editor.php:329 +#: ../../include/functions_visual_map_editor.php:325 msgid "Enable link" msgstr "Activar enlace" -#: ../../include/functions_visual_map_editor.php:350 +#: ../../include/functions_visual_map_editor.php:346 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:366 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:508 msgid "White" msgstr "Blanco" -#: ../../include/functions_visual_map_editor.php:351 +#: ../../include/functions_visual_map_editor.php:347 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:367 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:509 msgid "Black" msgstr "Negro" -#: ../../include/functions_visual_map_editor.php:352 +#: ../../include/functions_visual_map_editor.php:348 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:368 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:510 msgid "Transparent" msgstr "Transparente" -#: ../../include/functions_visual_map_editor.php:378 +#: ../../include/functions_visual_map_editor.php:374 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:402 msgid "Grid color" msgstr "Color de cuadrícula" -#: ../../include/functions_visual_map_editor.php:498 +#: ../../include/functions_visual_map_editor.php:492 msgid "Data image" msgstr "Datos en imagen" -#: ../../include/functions_visual_map_editor.php:503 +#: ../../include/functions_visual_map_editor.php:498 msgid "Resume data color" msgstr "Color de la leyenda" -#: ../../include/functions_visual_map_editor.php:517 +#: ../../include/functions_visual_map_editor.php:511 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:274 msgid "24h" msgstr "24h" -#: ../../include/functions_visual_map_editor.php:518 +#: ../../include/functions_visual_map_editor.php:512 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:276 msgid "8h" msgstr "8h" -#: ../../include/functions_visual_map_editor.php:519 +#: ../../include/functions_visual_map_editor.php:513 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277 msgid "2h" msgstr "2h" -#: ../../include/functions_visual_map_editor.php:520 +#: ../../include/functions_visual_map_editor.php:514 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:278 msgid "1h" msgstr "1h" -#: ../../include/functions_visual_map_editor.php:524 +#: ../../include/functions_visual_map_editor.php:518 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:282 msgid "Max. Time" msgstr "Tiempo máximo" -#: ../../include/functions_visual_map_editor.php:640 +#: ../../include/functions_visual_map_editor.php:634 msgid "Original Size" msgstr "Tamaño original" -#: ../../include/functions_visual_map_editor.php:648 +#: ../../include/functions_visual_map_editor.php:654 msgid "Aspect ratio" msgstr "Relación de aspecto" -#: ../../include/functions_visual_map_editor.php:649 +#: ../../include/functions_visual_map_editor.php:657 msgid "Proportional Width" msgstr "Ancho proporcional" -#: ../../include/functions_visual_map_editor.php:657 +#: ../../include/functions_visual_map_editor.php:677 msgid "Height proportional" msgstr "Altura proporcional" -#: ../../include/functions_visual_map_editor.php:668 -msgid "Widtzzzzh" -msgstr "Ancho" - -#: ../../include/functions_visual_map_editor.php:686 -#: ../../include/functions_visual_map.php:4190 +#: ../../include/functions_visual_map_editor.php:736 +#: ../../include/functions_visual_map.php:4199 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460 -#: ../../include/rest-api/models/VisualConsole/Item.php:2124 +#: ../../include/rest-api/models/VisualConsole/Item.php:2127 msgid "Circular progress bar" msgstr "Barra de progreso circular" -#: ../../include/functions_visual_map_editor.php:687 -#: ../../include/functions_visual_map.php:4195 +#: ../../include/functions_visual_map_editor.php:737 +#: ../../include/functions_visual_map.php:4204 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462 -#: ../../include/rest-api/models/VisualConsole/Item.php:2128 +#: ../../include/rest-api/models/VisualConsole/Item.php:2131 msgid "Circular progress bar (interior)" msgstr "Barra de progreso circular (interior)" -#: ../../include/functions_visual_map_editor.php:737 +#: ../../include/functions_visual_map_editor.php:787 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522 msgid "Element color" msgstr "Color del elemento" -#: ../../include/functions_visual_map_editor.php:757 +#: ../../include/functions_visual_map_editor.php:802 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:534 msgid "Value color" msgstr "Color del valor" -#: ../../include/functions_visual_map_editor.php:799 +#: ../../include/functions_visual_map_editor.php:839 msgid "Diameter" msgstr "Diámetro" -#: ../../include/functions_visual_map_editor.php:806 +#: ../../include/functions_visual_map_editor.php:846 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:426 msgid "Default color" msgstr "Color predeterminado" -#: ../../include/functions_visual_map_editor.php:810 +#: ../../include/functions_visual_map_editor.php:850 msgid "" "The color of the element will be the one selected in the first range created " "in which the value of the module is found (with the initial and final values " @@ -43142,32 +43496,32 @@ msgstr "" "el que se encuentra el valor del módulo (con los valores iniciales y finales " "del intervalo incluidos)" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "Ranges" msgstr "Intervalos" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "From value" msgstr "Desde el valor" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "To value" msgstr "Hasta el valor" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 #: ../../include/rest-api/index.php:379 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:533 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:487 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:942 msgid "Color" msgstr "Color" -#: ../../include/functions_visual_map_editor.php:818 +#: ../../include/functions_visual_map_editor.php:859 msgid "Always show on top" msgstr "Mostrar siempre arriba" -#: ../../include/functions_visual_map_editor.php:819 +#: ../../include/functions_visual_map_editor.php:861 msgid "" "It allows the element to be superimposed to the rest of items of the visual " "console" @@ -43175,61 +43529,61 @@ msgstr "" "Permite que el elemento se superponga al resto de los elementos de la consola " "visual" -#: ../../include/functions_visual_map_editor.php:822 +#: ../../include/functions_visual_map_editor.php:870 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:404 msgid "Hide last value on boolean modules" msgstr "Ocultar el último valor en módulos boleanos" -#: ../../include/functions_visual_map_editor.php:828 +#: ../../include/functions_visual_map_editor.php:876 msgid "Show last value" msgstr "Mostrar último valor" -#: ../../include/functions_visual_map_editor.php:932 +#: ../../include/functions_visual_map_editor.php:980 msgid "For use the original image file size, set 0 width and 0 height." msgstr "" "Para usar el tamaño original de la imagen, configura en 0 el ancho y en 0 el " "alto." -#: ../../include/functions_visual_map_editor.php:972 -#: ../../include/rest-api/models/VisualConsole/Item.php:2439 +#: ../../include/functions_visual_map_editor.php:1020 +#: ../../include/rest-api/models/VisualConsole/Item.php:2442 msgid "Linked visual console" msgstr "Consola visual enlazada" -#: ../../include/functions_visual_map_editor.php:1079 -#: ../../include/rest-api/models/VisualConsole/Item.php:2490 +#: ../../include/functions_visual_map_editor.php:1131 +#: ../../include/rest-api/models/VisualConsole/Item.php:2493 msgid "By status weight" msgstr "Por peso de estadp" -#: ../../include/functions_visual_map_editor.php:1080 -#: ../../include/rest-api/models/VisualConsole/Item.php:2491 +#: ../../include/functions_visual_map_editor.php:1132 +#: ../../include/rest-api/models/VisualConsole/Item.php:2494 msgid "By critical elements" msgstr "Por elementos críticos" -#: ../../include/functions_visual_map_editor.php:1095 -#: ../../include/rest-api/models/VisualConsole/Item.php:2498 +#: ../../include/functions_visual_map_editor.php:1147 +#: ../../include/rest-api/models/VisualConsole/Item.php:2501 msgid "Type of the status calculation of the linked visual console" msgstr "Tipo de cálculo de estado de la consola visual enlazada" -#: ../../include/functions_visual_map_editor.php:1100 -#: ../../include/rest-api/models/VisualConsole/Item.php:2489 +#: ../../include/functions_visual_map_editor.php:1152 +#: ../../include/rest-api/models/VisualConsole/Item.php:2492 msgid "By default" msgstr "Por defecto" -#: ../../include/functions_visual_map_editor.php:1120 -#: ../../include/rest-api/models/VisualConsole/Item.php:2514 +#: ../../include/functions_visual_map_editor.php:1172 +#: ../../include/rest-api/models/VisualConsole/Item.php:2517 msgid "Linked visual console weight" msgstr "Peso de la consola visual enlazada" -#: ../../include/functions_visual_map_editor.php:1187 +#: ../../include/functions_visual_map_editor.php:1239 msgid "Lines haven't advanced options" msgstr "Las líneas no tienen opciones avanzadas." -#: ../../include/functions_visual_map_editor.php:1204 -#: ../../include/rest-api/models/VisualConsole/Item.php:2189 +#: ../../include/functions_visual_map_editor.php:1257 +#: ../../include/rest-api/models/VisualConsole/Item.php:2192 msgid "Restrict access to group" msgstr "Restringir acceso al grupo" -#: ../../include/functions_visual_map_editor.php:1215 +#: ../../include/functions_visual_map_editor.php:1259 msgid "" "If selected, restrict visualization of this item in the visual console to " "users who have access to selected group. This is also used on calculating " @@ -43239,133 +43593,133 @@ msgstr "" "consola visual a los usuarios que tengan acceso al grupo seleccionado. También " "se utiliza para calcular consolas visuales de los hijos." -#: ../../include/functions_visual_map_editor.php:1246 -#: ../../include/rest-api/models/VisualConsole/Item.php:2202 +#: ../../include/functions_visual_map_editor.php:1304 +#: ../../include/rest-api/models/VisualConsole/Item.php:2205 msgid "Cache expiration" msgstr "Caducidad del caché" -#: ../../include/functions_visual_map_editor.php:1285 +#: ../../include/functions_visual_map_editor.php:1343 msgid "Click start point
of the line" msgstr "Haz clic en el punto de inicio
de la línea" -#: ../../include/functions_visual_map_editor.php:1288 +#: ../../include/functions_visual_map_editor.php:1346 msgid "Click end point
of the line" msgstr "Haz clic en el punto final
de la línea" -#: ../../include/functions_visual_map_editor.php:1388 -#: ../../operation/visual_console/view.php:336 +#: ../../include/functions_visual_map_editor.php:1446 +#: ../../operation/visual_console/view.php:338 msgid "Serialized pie graph" msgstr "Gráfico circular serializado" -#: ../../include/functions_visual_map_editor.php:1389 -#: ../../operation/visual_console/view.php:341 +#: ../../include/functions_visual_map_editor.php:1447 +#: ../../operation/visual_console/view.php:343 msgid "Bars Graph" msgstr "Gráfico de barras" -#: ../../include/functions_visual_map_editor.php:1418 +#: ../../include/functions_visual_map_editor.php:1476 msgid "Show grid" msgstr "Mostrar cuadrícula" -#: ../../include/functions_visual_map_editor.php:1420 +#: ../../include/functions_visual_map_editor.php:1478 msgid "Delete item" msgstr "Borrar elemento" -#: ../../include/functions_visual_map_editor.php:1421 +#: ../../include/functions_visual_map_editor.php:1479 msgid "Copy item" msgstr "Copiar elemento" -#: ../../include/functions_visual_map_editor.php:1458 -#: ../../include/functions_visual_map_editor.php:1462 -#: ../../include/functions_visual_map_editor.php:1466 -#: ../../include/functions_visual_map_editor.php:1470 -#: ../../include/functions_visual_map_editor.php:1474 -#: ../../include/functions_visual_map_editor.php:1478 -#: ../../include/functions_visual_map_editor.php:1482 -#: ../../include/functions_visual_map_editor.php:1486 -#: ../../include/functions_visual_map_editor.php:1490 -#: ../../include/functions_visual_map_editor.php:1494 -#: ../../include/functions_visual_map_editor.php:1498 -#: ../../include/functions_visual_map_editor.php:1502 -#: ../../include/functions_visual_map_editor.php:1506 -#: ../../include/functions_visual_map_editor.php:1510 -#: ../../include/functions_visual_map_editor.php:1514 -#: ../../include/functions_visual_map_editor.php:1518 -#: ../../include/functions_visual_map_editor.php:1522 -#: ../../include/functions_visual_map_editor.php:1526 -#: ../../include/functions_visual_map_editor.php:1530 +#: ../../include/functions_visual_map_editor.php:1516 +#: ../../include/functions_visual_map_editor.php:1520 +#: ../../include/functions_visual_map_editor.php:1524 +#: ../../include/functions_visual_map_editor.php:1528 +#: ../../include/functions_visual_map_editor.php:1532 +#: ../../include/functions_visual_map_editor.php:1536 +#: ../../include/functions_visual_map_editor.php:1540 +#: ../../include/functions_visual_map_editor.php:1544 +#: ../../include/functions_visual_map_editor.php:1548 +#: ../../include/functions_visual_map_editor.php:1552 +#: ../../include/functions_visual_map_editor.php:1556 +#: ../../include/functions_visual_map_editor.php:1560 +#: ../../include/functions_visual_map_editor.php:1564 +#: ../../include/functions_visual_map_editor.php:1568 +#: ../../include/functions_visual_map_editor.php:1572 +#: ../../include/functions_visual_map_editor.php:1576 +#: ../../include/functions_visual_map_editor.php:1580 +#: ../../include/functions_visual_map_editor.php:1584 +#: ../../include/functions_visual_map_editor.php:1588 msgid "Visual Console Builder Information" msgstr "Información del desarrollador de la consola visual" -#: ../../include/functions_visual_map_editor.php:1459 +#: ../../include/functions_visual_map_editor.php:1517 msgid "Min allowed size is 1024x768." msgstr "El tamaño mín. permitido es 1024x768." -#: ../../include/functions_visual_map_editor.php:1463 -#: ../../include/functions_visual_map_editor.php:1531 +#: ../../include/functions_visual_map_editor.php:1521 +#: ../../include/functions_visual_map_editor.php:1589 msgid "No custom graph defined." msgstr "No hay gráfica personalizada definida." -#: ../../include/functions_visual_map_editor.php:1467 +#: ../../include/functions_visual_map_editor.php:1525 msgid "No image or name defined." msgstr "No se ha definido ningún nombre o imagen." -#: ../../include/functions_visual_map_editor.php:1471 +#: ../../include/functions_visual_map_editor.php:1529 msgid "No label defined." msgstr "No se ha definido ninguna etiqueta." -#: ../../include/functions_visual_map_editor.php:1475 +#: ../../include/functions_visual_map_editor.php:1533 msgid "No service defined." msgstr "No hay servicio definido." -#: ../../include/functions_visual_map_editor.php:1479 +#: ../../include/functions_visual_map_editor.php:1537 msgid "No image defined." msgstr "No se ha definido ninguna imagen." -#: ../../include/functions_visual_map_editor.php:1483 +#: ../../include/functions_visual_map_editor.php:1541 msgid "No process defined." msgstr "No hay ningún proceso definido." -#: ../../include/functions_visual_map_editor.php:1487 +#: ../../include/functions_visual_map_editor.php:1545 msgid "No Max value defined." msgstr "No hay ningún valor máximo definido." -#: ../../include/functions_visual_map_editor.php:1491 +#: ../../include/functions_visual_map_editor.php:1549 msgid "No width defined." msgstr "No hay margen definido." -#: ../../include/functions_visual_map_editor.php:1495 +#: ../../include/functions_visual_map_editor.php:1553 msgid "No height defined." msgstr "Altura sin definir" -#: ../../include/functions_visual_map_editor.php:1499 +#: ../../include/functions_visual_map_editor.php:1557 msgid "The width must not exceed the size of the visual console container." msgstr "El ancho no debe exceder el tamaño del contenedor de la consola visual." -#: ../../include/functions_visual_map_editor.php:1503 +#: ../../include/functions_visual_map_editor.php:1561 msgid "The height must not exceed the size of the visual console container." msgstr "La altura no debe exceder el tamaño del contenedor de la consola visual." -#: ../../include/functions_visual_map_editor.php:1507 +#: ../../include/functions_visual_map_editor.php:1565 msgid "No period defined." msgstr "No hay ningún período definido." -#: ../../include/functions_visual_map_editor.php:1511 +#: ../../include/functions_visual_map_editor.php:1569 msgid "No agent defined." msgstr "No hay ningún agente definido." -#: ../../include/functions_visual_map_editor.php:1515 +#: ../../include/functions_visual_map_editor.php:1573 msgid "No module defined." msgstr "No hay ningún módulo definido." -#: ../../include/functions_visual_map_editor.php:1519 +#: ../../include/functions_visual_map_editor.php:1577 msgid "No module defined. This module must be string type." msgstr "No hay módulo definido. Este módulo debe ser del tipo cadena." -#: ../../include/functions_visual_map_editor.php:1523 +#: ../../include/functions_visual_map_editor.php:1581 msgid "Successfully save the changes." msgstr "Cambios guardados con éxito" -#: ../../include/functions_visual_map_editor.php:1527 +#: ../../include/functions_visual_map_editor.php:1585 msgid "Could not be save." msgstr "No se ha podido guardar." @@ -43379,100 +43733,96 @@ msgid "Selected" msgstr "Seleccionado" #: ../../include/graphs/functions_gd.php:183 -#: ../../include/graphs/functions_gd.php:466 -#: ../../include/functions_graph.php:2774 ../../include/functions_graph.php:2822 +#: ../../include/graphs/functions_gd.php:470 +#: ../../include/functions_graph.php:2784 ../../include/functions_graph.php:2832 msgid "Out of limits" msgstr "Fuera de límites" -#: ../../include/graphs/functions_flot.php:370 +#: ../../include/graphs/functions_flot.php:371 msgid "Cancel zoom" msgstr "Cancelar el zoom" -#: ../../include/graphs/functions_flot.php:372 +#: ../../include/graphs/functions_flot.php:373 msgid "Warning and Critical thresholds" msgstr "Umbrales de advertencia y crítico" -#: ../../include/graphs/functions_flot.php:377 +#: ../../include/graphs/functions_flot.php:378 msgid "Overview graph" msgstr "Gráfico de vista general" -#: ../../include/graphs/functions_flot.php:514 -#: ../../include/functions_reporting_html.php:663 -#: ../../include/functions_reporting_html.php:4681 -#: ../../include/ajax/events.php:1304 ../../include/functions_graph.php:4822 -#: ../../include/functions_treeview.php:299 -msgid "No data" -msgstr "Sin datos" - -#: ../../include/functions_servers.php:582 +#: ../../include/functions_servers.php:590 msgid "SNMP Trap server" msgstr "Servidor de traps SNMP" -#: ../../include/functions_servers.php:699 +#: ../../include/functions_servers.php:707 msgid "Correlation server" msgstr "Servidor de correlación" -#: ../../include/functions_servers.php:712 -#: ../../include/functions_servers.php:1230 +#: ../../include/functions_servers.php:720 +#: ../../include/functions_servers.php:1253 msgid "Enterprise ICMP server" msgstr "Servidor ICMP Enterprise" -#: ../../include/functions_servers.php:725 -#: ../../include/functions_servers.php:1233 +#: ../../include/functions_servers.php:733 +#: ../../include/functions_servers.php:1256 msgid "Enterprise SNMP server" msgstr "Servidor SNMP Enterprise" -#: ../../include/functions_servers.php:738 +#: ../../include/functions_servers.php:746 #: ../../include/class/AgentWizard.class.php:1353 msgid "Enterprise Satellite server" msgstr "Servidor Enterprise Satélite" -#: ../../include/functions_servers.php:751 +#: ../../include/functions_servers.php:759 msgid "Enterprise Transactional server" msgstr "Servidor transaccional Enterprise" -#: ../../include/functions_servers.php:764 +#: ../../include/functions_servers.php:772 msgid "Mainframe server" msgstr "Servidor mainframe" -#: ../../include/functions_servers.php:777 +#: ../../include/functions_servers.php:785 msgid "Sync server" msgstr "Servidor sync" -#: ../../include/functions_servers.php:790 +#: ../../include/functions_servers.php:798 msgid "Wux server" msgstr "Servidor WUX" -#: ../../include/functions_servers.php:803 -#: ../../include/functions_servers.php:1260 +#: ../../include/functions_servers.php:811 +#: ../../include/functions_servers.php:1283 msgid "Log server" msgstr "Servidor de registros" -#: ../../include/functions_servers.php:829 +#: ../../include/functions_servers.php:837 msgid "Autoprovision server" msgstr "Servidor de auto aprovisionamiento" -#: ../../include/functions_servers.php:842 +#: ../../include/functions_servers.php:850 msgid "Migration server" msgstr "Servidor de migración" -#: ../../include/functions_servers.php:1239 +#: ../../include/functions_servers.php:876 +msgid "Netflow server" +msgstr "Servidor Netflow" + +#: ../../include/functions_servers.php:1262 msgid "Prediction Server" msgstr "Servidor de predicción" -#: ../../include/functions_servers.php:1266 +#: ../../include/functions_servers.php:1289 #: ../../operation/agentes/estado_generalagente.php:329 msgid "Satellite server" msgstr "Servidor Satélite" #: ../../include/functions_reporting_html.php:87 -#: ../../include/functions_reporting_html.php:5823 +#: ../../include/functions_reporting_html.php:5851 #: ../../include/ajax/alert_list.ajax.php:592 msgid "From:" msgstr "Desde:" #: ../../include/functions_reporting_html.php:87 -#: ../../include/functions_reporting_html.php:5823 +#: ../../include/functions_reporting_html.php:5851 #: ../../include/ajax/alert_list.ajax.php:606 msgid "To:" msgstr "Hasta:" @@ -43499,31 +43849,31 @@ msgid "Downtime" msgstr "Parada planificada" #: ../../include/functions_reporting_html.php:1003 -#: ../../include/functions_reporting_html.php:2514 -#: ../../include/functions_reporting_html.php:4563 -#: ../../include/functions_reporting_html.php:5102 +#: ../../include/functions_reporting_html.php:2535 +#: ../../include/functions_reporting_html.php:4591 +#: ../../include/functions_reporting_html.php:5130 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367 msgid "Min Value" msgstr "Valor mínimo" #: ../../include/functions_reporting_html.php:1004 -#: ../../include/functions_reporting_html.php:2515 -#: ../../include/functions_reporting_html.php:4564 -#: ../../include/functions_reporting_html.php:5103 +#: ../../include/functions_reporting_html.php:2536 +#: ../../include/functions_reporting_html.php:4592 +#: ../../include/functions_reporting_html.php:5131 msgid "Average Value" msgstr "Valor medio" #: ../../include/functions_reporting_html.php:1005 -#: ../../include/functions_reporting_html.php:2516 -#: ../../include/functions_reporting_html.php:4561 -#: ../../include/functions_reporting_html.php:5105 +#: ../../include/functions_reporting_html.php:2537 +#: ../../include/functions_reporting_html.php:4589 +#: ../../include/functions_reporting_html.php:5133 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 msgid "Max Value" msgstr "Valor máximo" #: ../../include/functions_reporting_html.php:1061 #: ../../include/functions_reporting_html.php:1069 -#: ../../include/functions_reporting_html.php:2645 +#: ../../include/functions_reporting_html.php:2664 msgid "Val. by" msgstr "Val. por" @@ -43533,190 +43883,195 @@ msgid "%s System" msgstr "Sistema %s" #: ../../include/functions_reporting_html.php:1221 -#: ../../include/functions_reporting_html.php:1436 +#: ../../include/functions_reporting_html.php:1445 msgid "Events by user validator" msgstr "Eventos por usuario validador" #: ../../include/functions_reporting_html.php:1238 -#: ../../include/functions_reporting_html.php:1453 +#: ../../include/functions_reporting_html.php:1462 msgid "Events by Severity" msgstr "Eventos por gravedad" #: ../../include/functions_reporting_html.php:1255 -#: ../../include/functions_reporting_html.php:1470 +#: ../../include/functions_reporting_html.php:1479 msgid "Events validated vs unvalidated" msgstr "Eventos validados vs no validados" -#: ../../include/functions_reporting_html.php:1612 +#: ../../include/functions_reporting_html.php:1621 msgid "Sec. groups" msgstr "Sec. grupos" -#: ../../include/functions_reporting_html.php:1632 +#: ../../include/functions_reporting_html.php:1641 msgid "Remote conf." msgstr "Configuración remota" -#: ../../include/functions_reporting_html.php:1919 -#: ../../include/functions_inventory.php:1068 -#: ../../include/functions_inventory.php:1131 +#: ../../include/functions_reporting_html.php:1928 +#: ../../include/functions_inventory.php:1178 +#: ../../include/functions_inventory.php:1241 msgid "Added" msgstr "Añadido" -#: ../../include/functions_reporting_html.php:1930 -#: ../../include/functions_inventory.php:1074 -#: ../../include/functions_inventory.php:1139 +#: ../../include/functions_reporting_html.php:1939 +#: ../../include/functions_inventory.php:1184 +#: ../../include/functions_inventory.php:1249 #: ../../include/functions_filemanager.php:343 #: ../../include/functions_filemanager.php:360 msgid "Deleted" msgstr "Eliminado(s)" -#: ../../include/functions_reporting_html.php:2287 +#: ../../include/functions_reporting_html.php:2308 msgid "Cell turns grey when the module is in 'not initialize' status" msgstr "Celda gris cuando el módulo está en estado \"no iniciado\"" -#: ../../include/functions_reporting_html.php:2580 -#: ../../include/functions_reporting_html.php:5691 +#: ../../include/functions_reporting_html.php:2601 +#: ../../include/functions_reporting_html.php:5719 msgid "Monitors" msgstr "Monitores" -#: ../../include/functions_reporting_html.php:2599 +#: ../../include/functions_reporting_html.php:2620 msgid "Events (not validated)" msgstr "Eventos (no validados)" -#: ../../include/functions_reporting_html.php:2755 +#: ../../include/functions_reporting_html.php:2783 msgid "Events validated by user" msgstr "Eventos validados por el usuario" -#: ../../include/functions_reporting_html.php:2772 -#: ../../include/functions_reporting_html.php:5980 +#: ../../include/functions_reporting_html.php:2800 +#: ../../include/functions_reporting_html.php:6008 msgid "Events by severity" msgstr "Eventos por gravedad" -#: ../../include/functions_reporting_html.php:2789 +#: ../../include/functions_reporting_html.php:2817 msgid "Amount events validated" msgstr "Cantidad de eventos validados" -#: ../../include/functions_reporting_html.php:3219 +#: ../../include/functions_reporting_html.php:3247 msgid "Total summary" msgstr "Resumen total" -#: ../../include/functions_reporting_html.php:3226 +#: ../../include/functions_reporting_html.php:3254 msgid "No alerts fired" msgstr "No hay alertas disparadas" -#: ../../include/functions_reporting_html.php:3326 +#: ../../include/functions_reporting_html.php:3354 #, php-format msgid "Interface '%s' throughput graph" msgstr "Interfaz '%s' gráfico de rendimiento" -#: ../../include/functions_reporting_html.php:3330 +#: ../../include/functions_reporting_html.php:3358 msgid "Mac" msgstr "Mac" -#: ../../include/functions_reporting_html.php:3331 +#: ../../include/functions_reporting_html.php:3359 msgid "Actual status" msgstr "Estado actual" -#: ../../include/functions_reporting_html.php:3702 -#: ../../include/functions_reporting_html.php:3704 +#: ../../include/functions_reporting_html.php:3730 +#: ../../include/functions_reporting_html.php:3732 msgid "Empty modules" msgstr "Módulos vacíos" -#: ../../include/functions_reporting_html.php:4175 +#: ../../include/functions_reporting_html.php:4203 msgid "Time Not Init Module" msgstr "Tiempo en módulo no iniciado" -#: ../../include/functions_reporting_html.php:4186 +#: ../../include/functions_reporting_html.php:4214 msgid "% Ok" msgstr "% OK" -#: ../../include/functions_reporting_html.php:4263 +#: ../../include/functions_reporting_html.php:4291 msgid "Checks Uknown" msgstr "Comprobaciones en desconocido" -#: ../../include/functions_reporting_html.php:4302 -#: ../../include/functions_reporting_html.php:4449 -#: ../../include/functions_reporting_html.php:4776 -#: ../../include/functions_reporting_html.php:4782 +#: ../../include/functions_reporting_html.php:4330 +#: ../../include/functions_reporting_html.php:4477 +#: ../../include/functions_reporting_html.php:4804 +#: ../../include/functions_reporting_html.php:4810 msgid "Primary" msgstr "Primario" -#: ../../include/functions_reporting_html.php:5217 -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:12115 +#: ../../include/functions_reporting_html.php:5245 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12124 +#: ../../include/functions_reporting.php:12169 msgid "Alert level" msgstr "Nivel de alerta" -#: ../../include/functions_reporting_html.php:5465 +#: ../../include/functions_reporting_html.php:5493 #, php-format msgid "Agents in group: %s" msgstr "Agentes en el grupo: %s" -#: ../../include/functions_reporting_html.php:5567 +#: ../../include/functions_reporting_html.php:5595 msgid "Last failure" msgstr "Último fallo" -#: ../../include/functions_reporting_html.php:5657 +#: ../../include/functions_reporting_html.php:5685 msgid "N/A(*)" msgstr "N/A(*)" -#: ../../include/functions_reporting_html.php:5905 -#: ../../include/functions_reporting.php:12322 -#: ../../include/functions_groups.php:2650 +#: ../../include/functions_reporting_html.php:5933 +#: ../../include/functions_reporting.php:12395 +#: ../../include/functions_groups.php:2675 msgid "Monitor checks" msgstr "Comprobaciones de monitores" -#: ../../include/functions_reporting_html.php:5912 -#: ../../include/functions_reporting.php:12341 -#: ../../include/functions_groups.php:2669 +#: ../../include/functions_reporting_html.php:5940 +#: ../../include/functions_reporting.php:12414 +#: ../../include/functions_groups.php:2694 msgid "Total agents and monitors" msgstr "Total de agentes y monitores" -#: ../../include/functions_reporting_html.php:5931 -#: ../../include/functions_reporting_html.php:5936 +#: ../../include/functions_reporting_html.php:5959 +#: ../../include/functions_reporting_html.php:5964 msgid "Node overview" msgstr "Resumen de nodos" -#: ../../include/functions_reporting_html.php:5956 -#: ../../include/functions_reporting_html.php:5968 +#: ../../include/functions_reporting_html.php:5984 +#: ../../include/functions_reporting_html.php:5996 msgid "Critical events" msgstr "Eventos en estado crítico" -#: ../../include/functions_reporting_html.php:5959 -#: ../../include/functions_reporting_html.php:5970 +#: ../../include/functions_reporting_html.php:5987 +#: ../../include/functions_reporting_html.php:5998 msgid "Warning events" msgstr "Eventos en estado de advertencia" -#: ../../include/functions_reporting_html.php:5962 -#: ../../include/functions_reporting_html.php:5972 +#: ../../include/functions_reporting_html.php:5990 +#: ../../include/functions_reporting_html.php:6000 msgid "OK events" msgstr "Eventos OK" -#: ../../include/functions_reporting_html.php:5965 -#: ../../include/functions_reporting_html.php:5974 +#: ../../include/functions_reporting_html.php:5993 +#: ../../include/functions_reporting_html.php:6002 msgid "Unknown events" msgstr "Eventos desconocidos" -#: ../../include/functions_reporting_html.php:5990 +#: ../../include/functions_reporting_html.php:6019 +msgid "Event count corresponds to events within the last hour" +msgstr "El conteo de eventos corresponde a los eventos en la última hora" + +#: ../../include/functions_reporting_html.php:6024 msgid "Important Events by Criticity" msgstr "Eventos importantes por gravedad" -#: ../../include/functions_reporting_html.php:6017 +#: ../../include/functions_reporting_html.php:6051 #, php-format msgid "Last activity in %s console" msgstr "Última actividad en la consola %s" -#: ../../include/functions_reporting_html.php:6066 -#: ../../include/functions_reporting_html.php:6208 +#: ../../include/functions_reporting_html.php:6100 +#: ../../include/functions_reporting_html.php:6242 msgid "Events info (1hr.)" msgstr "Información de eventos (1h)" -#: ../../include/functions_reporting_html.php:6365 +#: ../../include/functions_reporting_html.php:6399 msgid "This SLA has been affected by the following scheduled downtimes" msgstr "" "Este SLA se ha visto afectado por los siguientes tiempos de inactividad " "programados" -#: ../../include/functions_reporting_html.php:6366 +#: ../../include/functions_reporting_html.php:6400 msgid "" "If the duration of the scheduled downtime is less than 5 minutes it will not " "be represented in the graph" @@ -43724,16 +44079,16 @@ msgstr "" "Si la duración de la parada planificada es de menos de 5 minutos, no se " "representará en el gráfico" -#: ../../include/functions_reporting_html.php:6373 +#: ../../include/functions_reporting_html.php:6407 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:396 msgid "Dates" msgstr "Fechas" -#: ../../include/functions_reporting_html.php:6404 +#: ../../include/functions_reporting_html.php:6438 msgid "This item is affected by a malformed scheduled downtime" msgstr "A este elemento le afecta una parada planificada mal formada." -#: ../../include/functions_reporting_html.php:6404 +#: ../../include/functions_reporting_html.php:6438 msgid "Go to the scheduled downtimes section to solve this" msgstr "Ir a la sección de paradas planificadas para solucionar este problema" @@ -43751,7 +44106,7 @@ msgstr "M" #: ../../include/functions.php:501 ../../include/functions.php:653 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:259 -#: ../../include/rest-api/models/VisualConsole/Item.php:2037 +#: ../../include/rest-api/models/VisualConsole/Item.php:2040 msgid "Y" msgstr "Y" @@ -43768,47 +44123,47 @@ msgid "N" msgstr "N" #: ../../include/functions.php:1079 ../../include/functions.php:1325 -#: ../../include/functions.php:1359 ../../include/functions_graph.php:3317 -#: ../../include/functions_graph.php:3319 ../../include/functions_graph.php:4834 +#: ../../include/functions.php:1359 ../../include/functions_graph.php:3327 +#: ../../include/functions_graph.php:3329 ../../include/functions_graph.php:4844 #: ../../include/functions_incidents.php:34 #: ../../include/functions_incidents.php:75 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:547 -#: ../../include/functions_events.php:3210 -#: ../../operation/visual_console/view.php:451 +#: ../../include/functions_events.php:3215 +#: ../../operation/visual_console/view.php:453 msgid "Maintenance" msgstr "Mantenimiento" #: ../../include/functions.php:1083 ../../include/functions.php:1326 -#: ../../include/functions.php:1363 ../../include/functions_graph.php:3323 -#: ../../include/functions_graph.php:3325 ../../include/functions_graph.php:4838 +#: ../../include/functions.php:1363 ../../include/functions_graph.php:3333 +#: ../../include/functions_graph.php:3335 ../../include/functions_graph.php:4848 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:552 -#: ../../include/functions_events.php:3214 +#: ../../include/functions_events.php:3219 msgid "Informational" msgstr "Informativo" #: ../../include/functions.php:1099 ../../include/functions.php:1328 -#: ../../include/functions.php:1379 ../../include/functions_graph.php:3335 -#: ../../include/functions_graph.php:3337 ../../include/functions_graph.php:4854 +#: ../../include/functions.php:1379 ../../include/functions_graph.php:3345 +#: ../../include/functions_graph.php:3347 ../../include/functions_graph.php:4864 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:572 msgid "Minor" msgstr "Menor" #: ../../include/functions.php:1103 ../../include/functions.php:1330 -#: ../../include/functions.php:1383 ../../include/functions_graph.php:3347 -#: ../../include/functions_graph.php:3349 ../../include/functions_graph.php:4858 +#: ../../include/functions.php:1383 ../../include/functions_graph.php:3357 +#: ../../include/functions_graph.php:3359 ../../include/functions_graph.php:4868 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:577 msgid "Major" msgstr "Principal" -#: ../../include/functions.php:1278 ../../include/functions_events.php:3130 +#: ../../include/functions.php:1278 ../../include/functions_events.php:3135 msgid "Monitor Critical" msgstr "Monitor en estado crítico" -#: ../../include/functions.php:1279 ../../include/functions_events.php:3134 +#: ../../include/functions.php:1279 ../../include/functions_events.php:3139 msgid "Monitor Warning" msgstr "Monitor en estado de advertencia" -#: ../../include/functions.php:1280 ../../include/functions_events.php:3138 +#: ../../include/functions.php:1280 ../../include/functions_events.php:3143 msgid "Monitor Normal" msgstr "Monitor en estado normal" @@ -43816,17 +44171,17 @@ msgstr "Monitor en estado normal" msgid "Monitor Unknown" msgstr "Monitor en estado desconocido" -#: ../../include/functions.php:1285 ../../include/functions_events.php:2914 -#: ../../include/functions_events.php:3146 +#: ../../include/functions.php:1285 ../../include/functions_events.php:2919 +#: ../../include/functions_events.php:3151 msgid "Alert recovered" msgstr "Alerta recuperada" -#: ../../include/functions.php:1286 ../../include/functions_events.php:2962 -#: ../../include/functions_events.php:3150 +#: ../../include/functions.php:1286 ../../include/functions_events.php:2967 +#: ../../include/functions_events.php:3155 msgid "Alert ceased" msgstr "Alerta finalizada" -#: ../../include/functions.php:1287 ../../include/functions_events.php:3154 +#: ../../include/functions.php:1287 ../../include/functions_events.php:3159 msgid "Alert manual validation" msgstr "Validación manual de alerta" @@ -43834,12 +44189,12 @@ msgstr "Validación manual de alerta" msgid "Agent created" msgstr "Agente creado" -#: ../../include/functions.php:1290 ../../include/functions_events.php:3158 +#: ../../include/functions.php:1290 ../../include/functions_events.php:3163 msgid "Recon host detected" msgstr "Equipo de red detectado con recon" -#: ../../include/functions.php:1293 ../../include/functions_events.php:2958 -#: ../../include/functions_events.php:3170 +#: ../../include/functions.php:1293 ../../include/functions_events.php:2963 +#: ../../include/functions_events.php:3175 msgid "Configuration change" msgstr "Cambio de configuración" @@ -43849,9 +44204,9 @@ msgstr "ALERTA DISPARADA" #: ../../include/functions.php:1413 ../../include/functions.php:1450 #: ../../include/functions_modules.php:4263 -#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:598 -#: ../../operation/agentes/status_monitor.php:1868 -#: ../../operation/agentes/status_monitor.php:1881 +#: ../../include/class/Tree.class.php:678 ../../include/lib/Module.php:598 +#: ../../operation/agentes/status_monitor.php:1870 +#: ../../operation/agentes/status_monitor.php:1883 msgid "NO DATA" msgstr "SIN DATOS" @@ -43946,7 +44301,7 @@ msgid "2 minutes" msgstr "2 minutos" #: ../../include/functions.php:3420 ../../include/ajax/heatmap.ajax.php:55 -#: ../../include/ajax/module.php:219 ../../operation/heatmap.php:181 +#: ../../include/ajax/module.php:242 ../../operation/heatmap.php:181 #: ../../operation/gis_maps/render_view.php:155 msgid "5 minutes" msgstr "5 minutos" @@ -43955,49 +44310,54 @@ msgstr "5 minutos" msgid "15 minutes" msgstr "15 minutos" -#: ../../include/functions.php:3422 ../../include/ajax/module.php:220 +#: ../../include/functions.php:3422 ../../include/ajax/module.php:243 msgid "30 minutes" msgstr "30 minutos" -#: ../../include/functions.php:3949 +#: ../../include/functions.php:3975 msgid "Summatory series" msgstr "Series sumatorias" -#: ../../include/functions.php:3953 +#: ../../include/functions.php:3979 msgid "Average series" msgstr "Series de media" -#: ../../include/functions.php:3981 ../../include/functions.php:4000 -#: ../../include/functions.php:4014 ../../include/functions.php:4036 -#: ../../include/functions.php:4117 ../../include/functions.php:4194 +#: ../../include/functions.php:4007 ../../include/functions.php:4026 +#: ../../include/functions.php:4040 ../../include/functions.php:4062 +#: ../../include/functions.php:4143 ../../include/functions.php:4220 msgid "Unit " msgstr "Unidad " -#: ../../include/functions.php:4062 ../../include/functions.php:4127 +#: ../../include/functions.php:4102 +#: ../../include/lib/Dashboard/Widgets/top_n.php:280 +msgid "Avg." +msgstr "Media" + +#: ../../include/functions.php:4153 msgid "Min:" msgstr "Mín.:" -#: ../../include/functions.php:4069 ../../include/functions.php:4136 +#: ../../include/functions.php:4162 msgid "Max:" msgstr "Máx.:" -#: ../../include/functions.php:4076 ../../include/functions.php:4145 +#: ../../include/functions.php:4171 msgid "Avg:" msgstr "Media:" -#: ../../include/functions.php:4191 ../../include/functions.php:4199 +#: ../../include/functions.php:4217 ../../include/functions.php:4225 msgid "of module" msgstr "de módulo" -#: ../../include/functions.php:4218 +#: ../../include/functions.php:4244 msgid "Projection" msgstr "Proyección" -#: ../../include/functions.php:6064 +#: ../../include/functions.php:6094 msgid "Testing Pandora FMS email" msgstr "Probando el email de Pandora FMS" -#: ../../include/functions.php:6077 +#: ../../include/functions.php:6107 msgid "" "This is an email test sent from Pandora FMS. If you can read this, your " "configuration works." @@ -44005,7 +44365,7 @@ msgstr "" "Este es un email de prueba enviado desde Pandora FMS. Si lo ha recibido " "significa que la configuración funciona." -#: ../../include/functions.php:6311 +#: ../../include/functions.php:6341 #: ../../include/class/ConsoleSupervisor.php:1645 #: ../../include/class/ConsoleSupervisor.php:1669 #: ../../include/class/ConsoleSupervisor.php:1698 @@ -44014,11 +44374,11 @@ msgstr "" msgid "Not recommended '%s' value in PHP configuration" msgstr "Valor '%s' no recomendado en la configuración de PHP" -#: ../../include/functions.php:6312 +#: ../../include/functions.php:6342 msgid "Recommended value is: -1" msgstr "El valor recomendado es: -1" -#: ../../include/functions.php:6313 +#: ../../include/functions.php:6343 #: ../../include/class/ConsoleSupervisor.php:1704 #: ../../include/class/ConsoleSupervisor.php:1785 msgid "" @@ -44028,7 +44388,7 @@ msgstr "" "Por favor, cámbialo en el archivo de configuración de PHP (php.ini) o contacta " "con un administrador." -#: ../../include/functions.php:6314 ../../general/login_help_dialog.php:96 +#: ../../include/functions.php:6344 ../../general/login_help_dialog.php:96 #: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:41 msgid "Documentation" msgstr "Documentación" @@ -44160,9 +44520,9 @@ msgstr "Error al eliminar la plantilla de alerta. Id_template no existe." msgid "Successful delete of alert template." msgstr "Plantilla de alerta borrada correctamente." -#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12016 -#: ../../include/functions_api.php:12082 ../../include/functions_api.php:12363 -#: ../../include/functions_api.php:12443 +#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12019 +#: ../../include/functions_api.php:12085 ../../include/functions_api.php:12366 +#: ../../include/functions_api.php:12446 #, php-format msgid "%d agents affected" msgstr "%d agentes afectados" @@ -44260,168 +44620,168 @@ msgstr "Módulo SNMP de la política actualizado" msgid "Successful deletion" msgstr "Eliminado correctamente." -#: ../../include/functions_api.php:9624 +#: ../../include/functions_api.php:9625 msgid "User created." msgstr "Usuario creado." -#: ../../include/functions_api.php:9717 +#: ../../include/functions_api.php:9720 msgid "User updated." msgstr "Usuario actualizado." -#: ../../include/functions_api.php:9794 +#: ../../include/functions_api.php:9797 msgid "Enabled user." msgstr "Usuario habilitado" -#: ../../include/functions_api.php:9802 +#: ../../include/functions_api.php:9805 msgid "Disabled user." msgstr "Usuario deshabilitado" -#: ../../include/functions_api.php:10097 +#: ../../include/functions_api.php:10100 #, php-format msgid "Template have been inserted in %d agents." msgstr "Las plantillas se han insertado en %d agentes." -#: ../../include/functions_api.php:10273 +#: ../../include/functions_api.php:10276 msgid "XML file was generated successfully in path: " msgstr "El archivo XML se ha creado correctamente en la ruta: " -#: ../../include/functions_api.php:10413 +#: ../../include/functions_api.php:10416 #, php-format msgid "Module has been created in %d agents." msgstr "El módulo se ha cread en %d agentes." -#: ../../include/functions_api.php:10541 +#: ../../include/functions_api.php:10544 #, php-format msgid "Action has been set for %d agents." msgstr "La acción se ha asignado a %d agentes." -#: ../../include/functions_api.php:11616 +#: ../../include/functions_api.php:11619 msgid "User deleted." msgstr "Usuario borrado." -#: ../../include/functions_api.php:11675 +#: ../../include/functions_api.php:11678 msgid "User profile added." msgstr "Perfil de usuario añadido." -#: ../../include/functions_api.php:11740 +#: ../../include/functions_api.php:11743 msgid "User profile deleted." msgstr "Perfil de usuario eliminado." -#: ../../include/functions_api.php:12023 +#: ../../include/functions_api.php:12026 msgid "Module disabled successfully." msgstr "Módulo deshabilitado correctamente." -#: ../../include/functions_api.php:12025 +#: ../../include/functions_api.php:12028 msgid "The module could not be disabled." msgstr "No se ha podido deshabilitar el módulo." -#: ../../include/functions_api.php:12089 +#: ../../include/functions_api.php:12092 msgid "Module enabled successfully." msgstr "Módulo habilitado correctamente." -#: ../../include/functions_api.php:12091 +#: ../../include/functions_api.php:12094 msgid "The module could not be enabled." msgstr "El módulo no se ha podido habilitar." -#: ../../include/functions_api.php:12139 ../../include/functions_api.php:12192 +#: ../../include/functions_api.php:12142 ../../include/functions_api.php:12195 msgid "The alert could not be disabled." msgstr "La alerta no se ha podido deshabilitar." -#: ../../include/functions_api.php:12239 ../../include/functions_api.php:12292 +#: ../../include/functions_api.php:12242 ../../include/functions_api.php:12295 msgid "The alert could not be enabled." msgstr "La alerta no se ha podido habilitar." -#: ../../include/functions_api.php:13586 +#: ../../include/functions_api.php:13597 msgid "Enabled agent." msgstr "Agente habilitado" -#: ../../include/functions_api.php:13594 +#: ../../include/functions_api.php:13605 msgid "Disabled agent." msgstr "Agente deshabilitado" -#: ../../include/functions_api.php:14573 +#: ../../include/functions_api.php:14584 msgid "Metaconsole and the licenses of all nodes were updated." msgstr "Se han actualizado la Metaconsola y las licencias de todos los nodos." -#: ../../include/functions_api.php:14575 +#: ../../include/functions_api.php:14586 #, php-format msgid "Metaconsole license updated but %d of %d node failed to sync." msgstr "" "Se ha actualizado la licencia de la Metaconsola, pero %d de %d nodo no se ha " "podido sincronizar." -#: ../../include/functions_api.php:14578 +#: ../../include/functions_api.php:14589 msgid "This function is for metaconsole only." msgstr "función exclusiva de la Metaconsola." -#: ../../include/functions_api.php:14968 ../../include/functions_api.php:15039 +#: ../../include/functions_api.php:14979 ../../include/functions_api.php:15050 msgid "Successfully deleted." msgstr "Eliminado correctamente" -#: ../../include/functions_api.php:14998 +#: ../../include/functions_api.php:15009 msgid "The user cannot access the cluster." msgstr "El usuario no puede acceder al cluster." -#: ../../include/functions_api.php:15884 +#: ../../include/functions_api.php:15895 msgid "Event filter successfully created." msgstr "Filtro de evento creado correctamente." -#: ../../include/functions_api.php:16117 +#: ../../include/functions_api.php:16128 msgid "Event filter successfully updated." msgstr "Filtro de evento creado correctamente." -#: ../../include/functions_api.php:16158 +#: ../../include/functions_api.php:16169 msgid "Event filter successfully deleted." msgstr "Filtro de evento borrado correctamente." -#: ../../include/functions_api.php:16474 +#: ../../include/functions_api.php:16485 msgid "Validated traps." msgstr "Traps validados." -#: ../../include/functions_api.php:16501 +#: ../../include/functions_api.php:16512 msgid "Deleted traps." msgstr "Traps eliminados." -#: ../../include/functions_api.php:16694 +#: ../../include/functions_api.php:16705 #, php-format msgid "Successfully updated module/alert count in id agent %d." msgstr "" "Recuento de módulos/alertas en ID de agente %d actualizado correctamente." -#: ../../include/functions_api.php:16696 +#: ../../include/functions_api.php:16707 msgid "Successfully updated module/alert count in all agents" msgstr "" "Recuento de módulos/alertas actualizado correctamente en todos los agentes" -#: ../../include/functions_api.php:17170 +#: ../../include/functions_api.php:17181 #, php-format msgid "Successfully added to delete pending id agent %d to id policy %d." msgstr "" "Se ha añadido correctamente el agente %d a pendiente de eliminación en la " "política %d." -#: ../../include/functions_api.php:17359 +#: ../../include/functions_api.php:17370 msgid "Error enable/disable discovery task. Id_user cannot be left blank." msgstr "" "Error al habilitar/deshabilitar la tarea discovery. Id_user no puede estar " "vacío." -#: ../../include/functions_api.php:17367 +#: ../../include/functions_api.php:17378 msgid "" "Error enable/disable discovery task. Enable/disable value cannot be left blank." msgstr "" "Error al habilitar/deshabilitar la tarea discovery. El valor de habilitar/" "deshabilitar no puede estar vacío." -#: ../../include/functions_api.php:17392 +#: ../../include/functions_api.php:17403 msgid "Error in discovery task enabling/disabling." msgstr "Error al habilitar/deshabilitar la tarea discovery." -#: ../../include/functions_api.php:17400 +#: ../../include/functions_api.php:17411 msgid "Enabled discovery task." msgstr "Tarea discovery habilitada." -#: ../../include/functions_api.php:17408 +#: ../../include/functions_api.php:17419 msgid "Disabled discovery task." msgstr "Tarea discovery deshabilitada." @@ -44555,25 +44915,39 @@ msgstr "El código es válido, pero hubo un error al guardar los datos." msgid "3 minutes" msgstr "3 minutos" -#: ../../include/ajax/heatmap.ajax.php:81 +#: ../../include/ajax/heatmap.ajax.php:100 #: ../../include/lib/Dashboard/Widgets/heatmap.php:253 msgid "Group modules by tag" msgstr "Agrupar módulos por etiqueta" -#: ../../include/ajax/heatmap.ajax.php:82 +#: ../../include/ajax/heatmap.ajax.php:101 #: ../../include/lib/Dashboard/Widgets/heatmap.php:254 msgid "Group modules by module group" msgstr "Agrupar módulos por grupo de módulos" -#: ../../include/ajax/heatmap.ajax.php:83 +#: ../../include/ajax/heatmap.ajax.php:102 #: ../../include/lib/Dashboard/Widgets/heatmap.php:255 msgid "Group modules by agents" msgstr "Agrupar módulos por agentes" -#: ../../include/ajax/heatmap.ajax.php:100 +#: ../../include/ajax/heatmap.ajax.php:123 msgid "Show groups" msgstr "Mostrar grupos" +#: ../../include/ajax/heatmap.ajax.php:356 +msgid "Date of last data" +msgstr "Fecha de los últimos datos" + +#: ../../include/ajax/heatmap.ajax.php:491 +#: ../../operation/agentes/estado_generalagente.php:406 +msgid "Out of bounds" +msgstr "Fuera de límites" + +#: ../../include/ajax/heatmap.ajax.php:494 +#: ../../operation/agentes/estado_generalagente.php:441 +msgid "Next contact" +msgstr "Siguiente contacto" + #: ../../include/ajax/alert_list.ajax.php:289 #: ../../include/ajax/alert_list.ajax.php:314 msgid "Force execution" @@ -44585,13 +44959,17 @@ msgid "F." msgstr "F." #: ../../include/ajax/alert_list.ajax.php:341 -#: ../../operation/agentes/alerts_status.php:372 -#: ../../operation/agentes/alerts_status.php:373 -#: ../../operation/agentes/alerts_status.php:414 -#: ../../operation/agentes/alerts_status.php:415 +#: ../../operation/agentes/alerts_status.php:374 +#: ../../operation/agentes/alerts_status.php:375 +#: ../../operation/agentes/alerts_status.php:416 +#: ../../operation/agentes/alerts_status.php:417 msgid "No alerts found" msgstr "No se encontró ninguna alerta" +#: ../../include/ajax/alert_list.ajax.php:540 +msgid "If a value of 0 is assigned, the Threshold of the action will be used." +msgstr "Si se asigna el valor 0, se utilizará el umbral de la acción." + #: ../../include/ajax/alert_list.ajax.php:633 msgid "Insufficient permissions to validate alerts" msgstr "Permisos insuficientes para validar alertas" @@ -44622,32 +45000,32 @@ msgstr "Error al crear política" msgid "Policy created succesfully" msgstr "Política creada con éxito" -#: ../../include/ajax/module.php:228 ../../include/class/AuditLog.class.php:215 +#: ../../include/ajax/module.php:251 ../../include/class/AuditLog.class.php:215 msgid "3 months" msgstr "3 meses" -#: ../../include/ajax/module.php:231 +#: ../../include/ajax/module.php:254 msgid "2 years" msgstr "2 años" -#: ../../include/ajax/module.php:232 +#: ../../include/ajax/module.php:255 msgid "3 years" msgstr "3 años" -#: ../../include/ajax/module.php:243 ../../operation/agentes/datos_agente.php:194 +#: ../../include/ajax/module.php:266 ../../operation/agentes/datos_agente.php:196 msgid "Choose a time from now" msgstr "Elija un tiempo a partir de ahora" -#: ../../include/ajax/module.php:269 ../../operation/agentes/datos_agente.php:197 +#: ../../include/ajax/module.php:292 ../../operation/agentes/datos_agente.php:199 msgid "Specify time range" msgstr "Especificar rango de tiempo" -#: ../../include/ajax/module.php:327 +#: ../../include/ajax/module.php:350 msgid "Exact phrase" msgstr "Frase exacta" -#: ../../include/ajax/module.php:419 ../../operation/agentes/stat_win.php:485 -#: ../../operation/agentes/interface_traffic_graph_win.php:310 +#: ../../include/ajax/module.php:442 ../../operation/agentes/stat_win.php:501 +#: ../../operation/agentes/interface_traffic_graph_win.php:319 msgid "" "In Pandora FMS, data is stored compressed. The data visualization in database, " "charts or CSV exported data won't match, because is interpreted at runtime. " @@ -44658,15 +45036,11 @@ msgstr "" "coincidirán porque se interpretan en el momento de la ejecución. Lea la " "documentación del capítulo de 'Ingeniería de Pandora FMS'." -#: ../../include/ajax/module.php:586 -msgid "No available data to showaaaa" -msgstr "No hay datos a mostrar disponibles" - -#: ../../include/ajax/module.php:1000 +#: ../../include/ajax/module.php:1023 msgid "T" msgstr "T" -#: ../../include/ajax/module.php:1007 ../../include/functions_reports.php:650 +#: ../../include/ajax/module.php:1030 ../../include/functions_reports.php:650 #: ../../include/functions_reports.php:654 #: ../../include/functions_reports.php:659 #: ../../include/functions_reports.php:665 @@ -44677,41 +45051,41 @@ msgstr "T" #: ../../include/functions_reports.php:693 #: ../../include/functions_reports.php:698 ../../include/functions_groups.php:123 #: ../../include/functions_groups.php:187 ../../operation/search_results.php:120 -#: ../../operation/agentes/ver_agente.php:1578 -#: ../../operation/agentes/ver_agente.php:1881 +#: ../../operation/agentes/ver_agente.php:1574 +#: ../../operation/agentes/ver_agente.php:1877 msgid "Graphs" msgstr "Gráficos" -#: ../../include/ajax/module.php:1155 +#: ../../include/ajax/module.php:1182 msgid "Time elapsed since last status change: " msgstr "Tiempo transcurrido desde el último cambio de estado: " -#: ../../include/ajax/module.php:1281 -#: ../../operation/agentes/estado_generalagente.php:411 +#: ../../include/ajax/module.php:1309 +#: ../../operation/agentes/estado_generalagente.php:382 msgid "Force checks" msgstr "Forzar comprobaciones" -#: ../../include/ajax/module.php:1360 +#: ../../include/ajax/module.php:1388 msgid "Any monitors aren't with this filter." msgstr "No todos los monitores llevan este filtro" -#: ../../include/ajax/module.php:1360 +#: ../../include/ajax/module.php:1388 msgid "This agent doesn't have any active monitors." msgstr "Este agente no tiene ningún monitor activo." -#: ../../include/ajax/module.php:2138 +#: ../../include/ajax/module.php:2167 msgid "Load" msgstr "Cargar" -#: ../../include/ajax/module.php:2235 ../../include/ajax/agent.php:582 +#: ../../include/ajax/module.php:2264 ../../include/ajax/agent.php:582 msgid "Update/delete filter" msgstr "Actualizar/eliminar filtro" -#: ../../include/ajax/module.php:2313 ../../include/ajax/agent.php:672 +#: ../../include/ajax/module.php:2342 ../../include/ajax/agent.php:672 msgid "Save current filter" msgstr "Guardar filtro actual" -#: ../../include/ajax/module.php:2328 ../../include/ajax/agent.php:687 +#: ../../include/ajax/module.php:2357 ../../include/ajax/agent.php:687 #: ../../include/ajax/custom_fields.php:702 msgid "Delete filter" msgstr "Eliminar filtro" @@ -44794,107 +45168,107 @@ msgstr "Error al eliminar el filtro." msgid "Console successfully deleted" msgstr "Consola eliminada correctamente" -#: ../../include/ajax/events.php:98 +#: ../../include/ajax/events.php:99 msgid "Failed to retrieve comments" msgstr "No se han podido obtener los comentarios" -#: ../../include/ajax/events.php:897 +#: ../../include/ajax/events.php:898 msgid "Save/Update filters" msgstr "Guardar/Actualizar filtros" -#: ../../include/ajax/events.php:1287 +#: ../../include/ajax/events.php:1288 msgid "unauthorized" msgstr "no autorizado" -#: ../../include/ajax/events.php:1393 +#: ../../include/ajax/events.php:1394 msgid "Error executing response" msgstr "Error al ejecutar respuesta" -#: ../../include/ajax/events.php:1746 +#: ../../include/ajax/events.php:1747 msgid "Related" msgstr "Relacionado" -#: ../../include/ajax/events.php:1758 +#: ../../include/ajax/events.php:1759 msgid "Agent fields" msgstr "Campos de agente" -#: ../../include/ajax/events.php:1896 +#: ../../include/ajax/events.php:1897 msgid "Error adding comment" msgstr "Error al añadir el comentario" -#: ../../include/ajax/events.php:1903 +#: ../../include/ajax/events.php:1904 msgid "Comment added successfully" msgstr "Comentario añadido correctamente" -#: ../../include/ajax/events.php:1910 +#: ../../include/ajax/events.php:1911 msgid "Error changing event status" msgstr "Error al cambiar el estado del evento" -#: ../../include/ajax/events.php:1917 +#: ../../include/ajax/events.php:1918 msgid "Event status changed successfully" msgstr "Estado del evento cambiado correctamente" -#: ../../include/ajax/events.php:1924 +#: ../../include/ajax/events.php:1925 msgid "Error changing event owner" msgstr "Error al cambiar el propietario del evento" -#: ../../include/ajax/events.php:1931 +#: ../../include/ajax/events.php:1932 msgid "Event owner changed successfully" msgstr "Propietario del evento cambiado correctamente" -#: ../../include/ajax/events.php:1938 +#: ../../include/ajax/events.php:1939 msgid "Error deleting event" msgstr "Error al eliminar evento" -#: ../../include/ajax/events.php:2073 +#: ../../include/ajax/events.php:2074 msgid "Show all Events 24h" msgstr "Mostrar todos los eventos en las últimas 24h" -#: ../../include/ajax/events.php:2170 +#: ../../include/ajax/events.php:2171 msgid "These commands will apply to all selected events" msgstr "Estos comandos se aplicarán en todos los eventos seleccionados" -#: ../../include/ajax/events.php:2232 +#: ../../include/ajax/events.php:2233 msgid "Total number of events in this node reached" msgstr "Se ha alcanzado el número total de eventos en este nodo" -#: ../../include/ajax/events.php:2266 +#: ../../include/ajax/events.php:2267 msgid "Total Events per node" msgstr "Total de eventos por nodo" -#: ../../include/ajax/events.php:2331 +#: ../../include/ajax/events.php:2332 ../../operation/events/sound_events.php:208 msgid "Console configuration" msgstr "Configuración de la consola" -#: ../../include/ajax/events.php:2338 +#: ../../include/ajax/events.php:2339 ../../operation/events/sound_events.php:215 msgid "Set condition" msgstr "Establecer condición" -#: ../../include/ajax/events.php:2345 ../../operation/events/sound_events.php:192 +#: ../../include/ajax/events.php:2346 ../../operation/events/sound_events.php:222 msgid "All new events" msgstr "Todos los eventos nuevos" -#: ../../include/ajax/events.php:2382 +#: ../../include/ajax/events.php:2383 ../../operation/events/sound_events.php:259 msgid "Sound duration" msgstr "Duración del sonido" -#: ../../include/ajax/events.php:2418 +#: ../../include/ajax/events.php:2419 ../../operation/events/sound_events.php:295 msgid "Sound melody" msgstr "Melodía de sonido" -#: ../../include/ajax/events.php:2432 +#: ../../include/ajax/events.php:2433 ../../operation/events/sound_events.php:309 msgid "Test sound" msgstr "Probar sonido" -#: ../../include/ajax/events.php:2456 +#: ../../include/ajax/events.php:2457 ../../operation/events/sound_events.php:333 msgid "Discovered alerts" msgstr "Alertas descubiertas" -#: ../../include/ajax/events.php:2463 +#: ../../include/ajax/events.php:2464 ../../operation/events/sound_events.php:340 msgid "No alerts discovered" msgstr "No hay alertas descubiertas" -#: ../../include/ajax/events.php:2468 +#: ../../include/ajax/events.php:2469 ../../operation/events/sound_events.php:345 msgid "Congrats! there’s nothing to show" msgstr "¡Enhorabuena! No hay nada que mostrar" @@ -44917,28 +45291,28 @@ msgstr "No hay monitores" #: ../../include/functions_agents.php:3030 #: ../../include/functions_agents.php:3091 #: ../../include/functions_agents.php:3158 -#: ../../include/functions_reporting.php:13111 +#: ../../include/functions_reporting.php:13184 msgid "At least one module in CRITICAL status" msgstr "Al menos un módulo está en estado CRÍTICO" #: ../../include/functions_agents.php:3036 #: ../../include/functions_agents.php:3104 #: ../../include/functions_agents.php:3166 -#: ../../include/functions_reporting.php:13118 +#: ../../include/functions_reporting.php:13191 msgid "At least one module in WARNING status" msgstr "Al menos un módulo está en estado de ADVERTENCIA" #: ../../include/functions_agents.php:3042 #: ../../include/functions_agents.php:3117 #: ../../include/functions_agents.php:3174 -#: ../../include/functions_reporting.php:13125 +#: ../../include/functions_reporting.php:13198 msgid "At least one module is in UKNOWN status" msgstr "Al menos un módulo está en estado DESCONOCIDO" #: ../../include/functions_agents.php:3048 #: ../../include/functions_agents.php:3130 #: ../../include/functions_agents.php:3182 -#: ../../include/functions_reporting.php:13132 +#: ../../include/functions_reporting.php:13205 msgid "All Monitors OK" msgstr "Todos los monitores OK" @@ -44950,12 +45324,12 @@ msgstr "Alerta disparada en agente" msgid "Dialog response time" msgstr "Tiempo de respuesta del diálogo" -#: ../../include/functions_inventory.php:115 -#: ../../include/functions_inventory.php:1051 +#: ../../include/functions_inventory.php:116 +#: ../../include/functions_inventory.php:1161 msgid "No changes found" msgstr "No se han encontrado cambios" -#: ../../include/functions_inventory.php:214 +#: ../../include/functions_inventory.php:215 msgid "Get CSV file" msgstr "Obtener archivo CSV" @@ -45069,7 +45443,7 @@ msgstr "" msgid "Could not changes password on remote pandora" msgstr "No se pudo cambiar la contraseña en el Pandora FMS remoto." -#: ../../include/auth/mysql.php:858 +#: ../../include/auth/mysql.php:886 msgid "Your installation of PHP does not support LDAP" msgstr "Su instalación de PHP no es compatible con LDAP." @@ -45089,17 +45463,17 @@ msgstr "Usuario, grupo o perfil no especificados" msgid "User, group or profile status not specified" msgstr "Usuario, grupo o estado de perfil no especificados" -#: ../../include/functions_graph.php:2607 +#: ../../include/functions_graph.php:2617 msgid "Not fired alerts" msgstr "No se han disparado alertas." -#: ../../include/functions_graph.php:3235 ../../include/functions_graph.php:5490 -#: ../../include/functions_ui.php:4233 ../../include/functions_events.php:108 -#: ../../include/functions_events.php:2946 ../../operation/events/events.php:698 +#: ../../include/functions_graph.php:3245 ../../include/functions_graph.php:5500 +#: ../../include/functions_ui.php:4307 ../../include/functions_events.php:108 +#: ../../include/functions_events.php:2951 ../../operation/events/events.php:703 msgid "SYSTEM" msgstr "SISTEMA" -#: ../../include/functions_graph.php:5237 +#: ../../include/functions_graph.php:5247 msgid "Main node" msgstr "Nodo principal" @@ -45120,240 +45494,264 @@ msgstr "Haga clic aquí para ver este módulo" msgid "Module information" msgstr "Información del módulo" -#: ../../include/functions_treeview.php:380 +#: ../../include/functions_treeview.php:329 +msgid "Go to module edition" +msgstr "Ir a la edición de módulos" + +#: ../../include/functions_treeview.php:384 msgid "There was a problem loading alerts" msgstr "Error al cargar las alertas" -#: ../../include/functions_treeview.php:467 +#: ../../include/functions_treeview.php:471 msgid "Go to alerts edition" msgstr "Ir a \"editar alertas\"" -#: ../../include/functions_treeview.php:559 +#: ../../include/functions_treeview.php:563 #: ../../operation/agentes/agent_fields.php:24 #: ../../operation/agentes/custom_fields.php:24 #: ../../operation/agentes/estado_generalagente.php:62 msgid "There was a problem loading agent" msgstr "Error al cargar la configuración del agente" -#: ../../include/functions_treeview.php:611 +#: ../../include/functions_treeview.php:615 msgid "Click here for view this agent" msgstr "Haga clic aquí para ver este agente" -#: ../../include/functions_treeview.php:633 -#: ../../operation/agentes/estado_generalagente.php:588 +#: ../../include/functions_treeview.php:637 +#: ../../operation/agentes/estado_generalagente.php:557 msgid "Other IP addresses" msgstr "Otras direcciones IP" -#: ../../include/functions_treeview.php:676 +#: ../../include/functions_treeview.php:680 msgid "Remote contact" msgstr "Contacto remoto" -#: ../../include/functions_treeview.php:684 +#: ../../include/functions_treeview.php:688 msgid "Next agent contact" msgstr "Siguiente contacto con el agente" -#: ../../include/functions_treeview.php:697 +#: ../../include/functions_treeview.php:701 msgid "Agent information" msgstr "Información del agente" -#: ../../include/functions_treeview.php:744 +#: ../../include/functions_treeview.php:748 msgid "Agent access rate (24h)" msgstr "Accesibilidad del agente (24h)" -#: ../../include/functions_treeview.php:800 +#: ../../include/functions_treeview.php:804 #: ../../operation/agentes/interface_view.functions.php:722 -#: ../../operation/agentes/pandora_networkmap.view.php:1303 -#: ../../operation/agentes/estado_generalagente.php:826 +#: ../../operation/agentes/pandora_networkmap.view.php:1304 +#: ../../operation/agentes/estado_generalagente.php:784 msgid "Interface traffic" msgstr "Interfaz de tráfico" -#: ../../include/functions_treeview.php:823 +#: ../../include/functions_treeview.php:827 msgid "Interface information" msgstr "Interfaz de información" -#: ../../include/functions_treeview.php:863 -#: ../../operation/agentes/estado_generalagente.php:549 +#: ../../include/functions_treeview.php:867 +#: ../../operation/agentes/estado_generalagente.php:524 msgid "Position (Long, Lat)" msgstr "Posición (longitud, latitud)" -#: ../../include/functions_treeview.php:872 -#: ../../operation/agentes/ver_agente.php:1552 -#: ../../operation/agentes/ver_agente.php:1889 -#: ../../operation/agentes/estado_generalagente.php:575 +#: ../../include/functions_treeview.php:876 +#: ../../operation/agentes/ver_agente.php:1548 +#: ../../operation/agentes/ver_agente.php:1885 +#: ../../operation/agentes/estado_generalagente.php:544 msgid "Url address" msgstr "Dirección URL" -#: ../../include/functions_treeview.php:886 -#: ../../operation/agentes/estado_generalagente.php:600 +#: ../../include/functions_treeview.php:890 +#: ../../operation/agentes/estado_generalagente.php:569 msgid "Timezone Offset" msgstr "Zona horaria desactivada" -#: ../../include/functions_treeview.php:917 +#: ../../include/functions_treeview.php:921 msgid "Advanced information" msgstr "Información avanzada" -#: ../../include/functions_menu.php:561 +#: ../../include/functions_treeview.php:940 +msgid "Go to cluster edition" +msgstr "Ir a la edición del clúster" + +#: ../../include/functions_treeview.php:949 +msgid "Go to module creation" +msgstr "Ir a la creación de módulos" + +#: ../../include/functions_treeview.php:958 +msgid "Go to agent edition" +msgstr "Ir a \"editar agentes\"" + +#: ../../include/functions_menu.php:563 msgid "Configure user" msgstr "Configurar usuario" -#: ../../include/functions_menu.php:562 +#: ../../include/functions_menu.php:564 msgid "Configure profile" msgstr "Configurar perfil" -#: ../../include/functions_menu.php:564 +#: ../../include/functions_menu.php:566 msgid "Module templates management" msgstr "Gestión de plantillas de módulos" -#: ../../include/functions_menu.php:565 +#: ../../include/functions_menu.php:567 msgid "Inventory modules management" msgstr "Gestión de módulos de inventario" -#: ../../include/functions_menu.php:572 +#: ../../include/functions_menu.php:574 msgid "Builder visual console" msgstr "Configurador de la consola visual" -#: ../../include/functions_menu.php:574 +#: ../../include/functions_menu.php:576 msgid "View reporting" msgstr "Ver informes" -#: ../../include/functions_menu.php:575 +#: ../../include/functions_menu.php:577 msgid "Graph viewer" msgstr "Visor de gráficos" -#: ../../include/functions_menu.php:577 +#: ../../include/functions_menu.php:579 msgid "Manage custom graphs" msgstr "Gestionar gráficos personalizados" -#: ../../include/functions_menu.php:578 +#: ../../include/functions_menu.php:580 msgid "View graph containers" msgstr "Ver contenedores de gráfico" -#: ../../include/functions_menu.php:579 +#: ../../include/functions_menu.php:581 msgid "Manage graph containers" msgstr "Gestionar contenedores de gráfico" -#: ../../include/functions_menu.php:580 +#: ../../include/functions_menu.php:582 msgid "View graph templates" msgstr "Ver plantillas de gráfico" -#: ../../include/functions_menu.php:581 +#: ../../include/functions_menu.php:583 msgid "Manage graph templates" msgstr "Gestionar plantillas de gráfico" -#: ../../include/functions_menu.php:582 +#: ../../include/functions_menu.php:584 msgid "Graph template items" msgstr "Elementos de la plantilla de gráfico" -#: ../../include/functions_menu.php:583 +#: ../../include/functions_menu.php:585 msgid "Graph template wizard" msgstr "Asistente de plantilla de gráfico" -#: ../../include/functions_menu.php:586 +#: ../../include/functions_menu.php:588 +msgid "New custom reports" +msgstr "Nuevos informes personalizados" + +#: ../../include/functions_menu.php:589 msgid "Edit custom reports" msgstr "Editar informes personalizados" -#: ../../include/functions_menu.php:588 +#: ../../include/functions_menu.php:590 +msgid "Remove custom reports" +msgstr "Eliminar informes personalizados" + +#: ../../include/functions_menu.php:592 msgid "Edit item" msgstr "Editar elemento" -#: ../../include/functions_menu.php:590 +#: ../../include/functions_menu.php:594 msgid "Wizard sla" msgstr "SLA del asistente" -#: ../../include/functions_menu.php:591 +#: ../../include/functions_menu.php:595 msgid "Global custom reports" msgstr "Informes personalizados globales" -#: ../../include/functions_menu.php:592 +#: ../../include/functions_menu.php:596 msgid "Avanced options" msgstr "Opciones avanzadas" -#: ../../include/functions_menu.php:595 +#: ../../include/functions_menu.php:599 msgid "Manage GIS Maps" msgstr "Gestionar mapas GIS" -#: ../../include/functions_menu.php:598 +#: ../../include/functions_menu.php:602 msgid "Manage messages" msgstr "Gestionar mensajes" -#: ../../include/functions_menu.php:600 +#: ../../include/functions_menu.php:604 msgid "Manage module groups" msgstr "Gestionar grupos de módulos" -#: ../../include/functions_menu.php:601 +#: ../../include/functions_menu.php:605 msgid "Manage custom field" msgstr "Gestionar campos personalizados" -#: ../../include/functions_menu.php:603 +#: ../../include/functions_menu.php:607 msgid "Manage alert actions" msgstr "Gestionar acciones de alertas" -#: ../../include/functions_menu.php:604 +#: ../../include/functions_menu.php:608 msgid "Manage commands" msgstr "Gestionar comandos" -#: ../../include/functions_menu.php:606 +#: ../../include/functions_menu.php:610 msgid "Manage export targets" msgstr "Gestionar objetivos de exportación" -#: ../../include/functions_menu.php:608 ../../operation/menu.php:254 +#: ../../include/functions_menu.php:612 ../../operation/menu.php:254 msgid "SNMP trap generator" msgstr "Generador de traps SNMP" -#: ../../include/functions_menu.php:611 +#: ../../include/functions_menu.php:615 msgid "Manage incident" msgstr "Gestionar incidentes" -#: ../../include/functions_menu.php:613 +#: ../../include/functions_menu.php:617 msgid "Manage groups" msgstr "Gestionar grupos" -#: ../../include/functions_menu.php:673 +#: ../../include/functions_menu.php:677 msgid "Administration" msgstr "Administración" -#: ../../include/functions_menu.php:936 ../../include/functions_ui.php:303 +#: ../../include/functions_menu.php:941 ../../include/functions_ui.php:303 msgid "Information" msgstr "Información" -#: ../../include/functions_menu.php:938 ../../include/functions_menu.php:1109 +#: ../../include/functions_menu.php:943 ../../include/functions_menu.php:1114 #: ../../include/class/Diagnostics.class.php:251 msgid "System Info" msgstr "Información de Sistema" -#: ../../include/functions_menu.php:939 +#: ../../include/functions_menu.php:944 msgid "PHP System" msgstr "Sistema PHP" -#: ../../include/functions_menu.php:954 +#: ../../include/functions_menu.php:959 msgid "MR version" msgstr "Versión MR" -#: ../../include/functions_menu.php:962 +#: ../../include/functions_menu.php:967 msgid "Update manager" msgstr "Administrador de actualizaciones" -#: ../../include/functions_menu.php:974 +#: ../../include/functions_menu.php:979 msgid "System report" msgstr "Informe de sistema" -#: ../../include/functions_menu.php:1006 +#: ../../include/functions_menu.php:1011 #: ../../include/class/Diagnostics.class.php:243 msgid "Database health status" msgstr "Estado de la base de datos" -#: ../../include/functions_menu.php:1036 +#: ../../include/functions_menu.php:1041 #: ../../include/class/Diagnostics.class.php:247 msgid "Database status info" msgstr "Información sobre el estado de la base de datos" -#: ../../include/functions_menu.php:1074 +#: ../../include/functions_menu.php:1079 #: ../../include/class/Diagnostics.class.php:260 #, php-format msgid "Tables fragmentation in the %s database" msgstr "Fragmentación de tablas de la base de datos de %s" -#: ../../include/functions_menu.php:1168 +#: ../../include/functions_menu.php:1173 msgid "PHP system" msgstr "Sistema PHP" @@ -45472,6 +45870,7 @@ msgid "Now, pull down the Manage alerts menu and click on Actions. " msgstr "Ahora, abre el menú Administrar alertas y haz clic en Acciones. " #: ../../include/help/clippy/module_unknow.php:35 +#: ../../include/functions_clippy.php:321 msgid "You have unknown modules in this agent." msgstr "Tienes módulos en estado desconocido en este agente." @@ -45805,9 +46204,9 @@ msgid "" "command: \"sudo /etc/init.d/pandora_server restart\". It's possible need " "introduce root pass." msgstr "" -"Puedes activar todos los servidores. Tienes que ir al terminal de Linux y " -"ejecutar el siguiente comando: \"sudo /etc/init.d/pandora_server restart\". Es " -"posible que necesites introducir la contraseña de root." +"Puede activar todos los servidores. Vaya al terminal de Linux y ejecute el " +"siguiente comando: \"sudo /etc/init.d/pandora_server restart\". Es posible que " +"necesite introducir la contraseña raíz." #: ../../include/help/clippy/interval_agent_min.php:35 msgid "Interval Agent." @@ -45869,8 +46268,8 @@ msgid "Please check if the email configuration is correct." msgstr "Por favor, confirma que la configuración de email es correcta." #: ../../include/functions_profile.php:188 -#: ../../operation/users/user_edit.php:972 -#: ../../operation/users/user_edit.php:981 +#: ../../operation/users/user_edit.php:969 +#: ../../operation/users/user_edit.php:978 msgid "Profiles/Groups assigned to this user" msgstr "Perfiles/Grupos asignados a este usuario" @@ -45906,111 +46305,111 @@ msgstr "" "Es posible que esta vista utilice parte de la información a la cual tu usuario " "no tenga acceso." -#: ../../include/functions_ui.php:985 +#: ../../include/functions_ui.php:1017 msgid "Software" msgstr "Software" -#: ../../include/functions_ui.php:1281 +#: ../../include/functions_ui.php:1318 msgid "Force check" msgstr "Forzar comprobación" -#: ../../include/functions_ui.php:1525 +#: ../../include/functions_ui.php:1568 msgid "The alert would fire when the value is over " msgstr "" "La alerta se disparará cuando el valor esté por encima de ." -#: ../../include/functions_ui.php:1530 +#: ../../include/functions_ui.php:1573 msgid "The alert would fire when the value is under " msgstr "" "La alerta se disparará cuando el valor esté por debajo de ." -#: ../../include/functions_ui.php:1545 +#: ../../include/functions_ui.php:1588 msgid "Unknown option." msgstr "Opción desconocida." -#: ../../include/functions_ui.php:1907 ../../include/functions_config.php:2666 +#: ../../include/functions_ui.php:1950 ../../include/functions_config.php:2686 msgid "the Flexible Monitoring System" msgstr "Sistema Flexible de Monitorización" -#: ../../include/functions_ui.php:2286 ../../include/functions_ui.php:2312 +#: ../../include/functions_ui.php:2329 ../../include/functions_ui.php:2355 #, php-format msgid "Total items: %s" msgstr "Número total de elementos: %s" -#: ../../include/functions_ui.php:2341 +#: ../../include/functions_ui.php:2384 msgid "First" msgstr "Primero" -#: ../../include/functions_ui.php:2797 +#: ../../include/functions_ui.php:2840 msgid "Unknown type" msgstr "Tipo desconocido" -#: ../../include/functions_ui.php:3752 +#: ../../include/functions_ui.php:3800 msgid "No matching records found" msgstr "No se encontraron registros coincidentes" -#: ../../include/functions_ui.php:3753 +#: ../../include/functions_ui.php:3801 msgid "No data available in table" msgstr "No hay datos disponibles en la tabla" -#: ../../include/functions_ui.php:3994 ../../include/functions_ui.php:3995 +#: ../../include/functions_ui.php:4066 ../../include/functions_ui.php:4067 msgid "Export current page to CSV" msgstr "Exportar página actual a CSV" -#: ../../include/functions_ui.php:4224 ../../include/functions_events.php:75 -#: ../../include/functions_events.php:101 ../../operation/events/events.php:689 -#: ../../operation/events/events.php:753 +#: ../../include/functions_ui.php:4298 ../../include/functions_events.php:75 +#: ../../include/functions_events.php:101 ../../operation/events/events.php:694 +#: ../../operation/events/events.php:758 msgid "ALERT" msgstr "ALERTA" -#: ../../include/functions_ui.php:4312 ../../include/functions_events.php:167 -#: ../../operation/events/events.php:613 +#: ../../include/functions_ui.php:4386 ../../include/functions_events.php:167 +#: ../../operation/events/events.php:618 msgid "MAINTENANCE" msgstr "MANTENIMIENTO" -#: ../../include/functions_ui.php:4317 ../../include/functions_events.php:170 -#: ../../operation/events/events.php:618 +#: ../../include/functions_ui.php:4391 ../../include/functions_events.php:170 +#: ../../operation/events/events.php:623 msgid "INFORMATIONAL" msgstr "INFORMATIVO" -#: ../../include/functions_ui.php:4337 ../../include/functions_events.php:176 -#: ../../operation/events/events.php:628 +#: ../../include/functions_ui.php:4411 ../../include/functions_events.php:176 +#: ../../operation/events/events.php:633 msgid "MINOR" msgstr "MENOR" -#: ../../include/functions_ui.php:4342 ../../include/functions_events.php:173 -#: ../../operation/events/events.php:623 +#: ../../include/functions_ui.php:4416 ../../include/functions_events.php:173 +#: ../../operation/events/events.php:628 msgid "MAJOR" msgstr "MAYOR" -#: ../../include/functions_ui.php:5168 ../../include/functions_html.php:962 -#: ../../include/functions_html.php:3659 ../../include/functions_html.php:4158 -#: ../../include/functions_reporting.php:12166 -#: ../../include/functions_reporting.php:12319 -#: ../../include/functions_reporting.php:12333 -#: ../../include/functions_reporting.php:14672 -#: ../../include/functions_reporting.php:14747 -#: ../../include/functions_groups.php:2647 -#: ../../include/functions_groups.php:2661 -#: ../../include/functions_groups.php:2711 +#: ../../include/functions_ui.php:5243 ../../include/functions_html.php:967 +#: ../../include/functions_html.php:3675 ../../include/functions_html.php:4174 +#: ../../include/functions_reporting.php:12239 +#: ../../include/functions_reporting.php:12392 +#: ../../include/functions_reporting.php:12406 +#: ../../include/functions_reporting.php:14745 +#: ../../include/functions_reporting.php:14820 +#: ../../include/functions_groups.php:2672 +#: ../../include/functions_groups.php:2686 +#: ../../include/functions_groups.php:2736 msgid "Enterprise version not installed" msgstr "Versión Enterprise no instalada" -#: ../../include/functions_ui.php:5563 +#: ../../include/functions_ui.php:5638 msgid "Type at least two characters to search." msgstr "Escribe al menos dos caracteres para buscar." -#: ../../include/functions_ui.php:6503 +#: ../../include/functions_ui.php:6578 msgid "Unhandled error" msgstr "Error no tratado" -#: ../../include/functions_ui.php:6504 +#: ../../include/functions_ui.php:6579 msgid "An unhandled error occurs" msgstr "Ha ocurrido un error no tratado" -#: ../../include/functions_ui.php:6775 +#: ../../include/functions_ui.php:6850 #, php-format msgid "" "These controls are using the timezone of the system (%s) instead of yours " @@ -46019,43 +46418,43 @@ msgstr "" "Estos controles emplean la zona horaria del sistema (%s) en vez de la suya " "(%s). La diferencia de horas con su zona horaria es %s." -#: ../../include/functions_ui.php:7127 +#: ../../include/functions_ui.php:7199 msgid "Results" msgstr "Resultados" -#: ../../include/functions_ui.php:7173 +#: ../../include/functions_ui.php:7245 msgid "Execute query" msgstr "Ejecutar consulta" -#: ../../include/functions_ui.php:7196 +#: ../../include/functions_ui.php:7266 msgid "Show password" msgstr "Mostrar contraseña" -#: ../../include/functions_ui.php:7296 +#: ../../include/functions_ui.php:7366 msgid "WEB server" msgstr "Servidor web" -#: ../../include/functions_ui.php:7306 +#: ../../include/functions_ui.php:7376 msgid "Wizard Module" msgstr "Módulo de wizard" -#: ../../include/functions_ui.php:7399 +#: ../../include/functions_ui.php:7469 msgid "Select inventory module" msgstr "Seleccionar módulo de inventario" -#: ../../include/functions_ui.php:7455 +#: ../../include/functions_ui.php:7532 msgid "Use custom fields" msgstr "Usar campos personalizados" -#: ../../include/functions_ui.php:7581 +#: ../../include/functions_ui.php:7672 msgid "Field name" msgstr "Nombre del campo" -#: ../../include/functions_ui.php:7598 +#: ../../include/functions_ui.php:7689 msgid "It's a password" msgstr "Es una contraseña" -#: ../../include/functions_ui.php:7606 +#: ../../include/functions_ui.php:7697 msgid "Add field" msgstr "Añadir campo" @@ -46074,21 +46473,21 @@ msgstr "Agente añadido correctamente al diseño" msgid "Modules successfully added to layout" msgstr "Módulos añadidos correctamente al diseño" -#: ../../include/functions_visual_map.php:3108 +#: ../../include/functions_visual_map.php:3111 msgid "Agents successfully added to layout" msgstr "Agentes añadidos correctamente al diseño" -#: ../../include/functions_visual_map.php:3504 +#: ../../include/functions_visual_map.php:3512 msgid "Cannot load the visualmap" msgstr "No se puede cargar el mapa visual" -#: ../../include/functions_visual_map.php:4175 -#: ../../include/rest-api/models/VisualConsole/Item.php:2108 +#: ../../include/functions_visual_map.php:4184 +#: ../../include/rest-api/models/VisualConsole/Item.php:2111 msgid "Bars graph" msgstr "Gráfico de barras" -#: ../../include/functions_visual_map.php:4185 -#: ../../include/rest-api/models/VisualConsole/Item.php:2116 +#: ../../include/functions_visual_map.php:4194 +#: ../../include/rest-api/models/VisualConsole/Item.php:2119 msgid "Percentile bar" msgstr "Barra de porcentaje" @@ -46137,7 +46536,7 @@ msgstr "Estado anormal" msgid "No actions defined" msgstr "No hay acciones definidas" -#: ../../include/functions_alerts.php:2665 +#: ../../include/functions_alerts.php:2666 msgid "Alert and command group does not match" msgstr "El grupo de la alerta y del comando no coinciden" @@ -46267,24 +46666,24 @@ msgid "Current ranges" msgstr "Intervalos actuales" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 -#: ../../include/rest-api/models/VisualConsole/Item.php:1995 +#: ../../include/rest-api/models/VisualConsole/Item.php:1998 msgid "width" msgstr "ancho" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 -#: ../../include/rest-api/models/VisualConsole/Item.php:2005 +#: ../../include/rest-api/models/VisualConsole/Item.php:2008 msgid "height" msgstr "altura" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 -#: ../../include/rest-api/models/VisualConsole/Item.php:2027 +#: ../../include/rest-api/models/VisualConsole/Item.php:2030 msgid "X" msgstr "X" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:273 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:499 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950 -#: ../../include/rest-api/models/VisualConsole/Item.php:2064 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:954 +#: ../../include/rest-api/models/VisualConsole/Item.php:2067 msgid "Show on top" msgstr "Mostrar primero" @@ -46327,11 +46726,15 @@ msgstr "Color de leyenda" msgid "Show legend" msgstr "Mostrar leyenda" +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:715 +msgid "Recursive" +msgstr "Recursivo" + #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:621 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280 -#: ../../include/rest-api/models/VisualConsole/View.php:721 -#: ../../include/rest-api/models/VisualConsole/View.php:800 +#: ../../include/rest-api/models/VisualConsole/View.php:687 +#: ../../include/rest-api/models/VisualConsole/View.php:766 msgid "Failed to connect to node" msgstr "No se ha podido conectar con el nodo" @@ -46354,67 +46757,67 @@ msgstr "Configuración general" msgid "Specific settings" msgstr "Configuración específica" -#: ../../include/rest-api/models/VisualConsole/View.php:221 +#: ../../include/rest-api/models/VisualConsole/View.php:183 msgid "Item type not valid [" msgstr "Tipo de elemento no válido [" -#: ../../include/rest-api/models/VisualConsole/View.php:226 +#: ../../include/rest-api/models/VisualConsole/View.php:188 msgid "Item type has no getFormInputs method [" msgstr "Este tipo de elemento no tiene método getFormInputs [" -#: ../../include/rest-api/models/VisualConsole/View.php:738 +#: ../../include/rest-api/models/VisualConsole/View.php:704 msgid "NetworkLink from" msgstr "NetworkLink de" -#: ../../include/rest-api/models/VisualConsole/View.php:742 -#: ../../include/rest-api/models/VisualConsole/View.php:821 +#: ../../include/rest-api/models/VisualConsole/View.php:708 +#: ../../include/rest-api/models/VisualConsole/View.php:787 #, php-format msgid "Interface %s status" msgstr "Estado de la interfaz %s" -#: ../../include/rest-api/models/VisualConsole/View.php:747 -#: ../../include/rest-api/models/VisualConsole/View.php:826 +#: ../../include/rest-api/models/VisualConsole/View.php:713 +#: ../../include/rest-api/models/VisualConsole/View.php:792 #: ../../operation/agentes/interface_traffic_graph_win.php:78 msgid "In" msgstr "En" -#: ../../include/rest-api/models/VisualConsole/View.php:748 -#: ../../include/rest-api/models/VisualConsole/View.php:827 +#: ../../include/rest-api/models/VisualConsole/View.php:714 +#: ../../include/rest-api/models/VisualConsole/View.php:793 #: ../../operation/agentes/interface_traffic_graph_win.php:79 msgid "Out" msgstr "Fuera" -#: ../../include/rest-api/models/VisualConsole/View.php:817 +#: ../../include/rest-api/models/VisualConsole/View.php:783 msgid "NetworkLink to" msgstr "NetworkLink a" -#: ../../include/rest-api/models/VisualConsole/View.php:869 +#: ../../include/rest-api/models/VisualConsole/View.php:835 #, php-format msgid "Failed to generate charts: %s" msgstr "No se han podido generar las tablas: %s" -#: ../../include/rest-api/models/VisualConsole/Item.php:1965 +#: ../../include/rest-api/models/VisualConsole/Item.php:1968 msgid "Label position" msgstr "Posición de la etiqueta" -#: ../../include/rest-api/models/VisualConsole/Item.php:2052 +#: ../../include/rest-api/models/VisualConsole/Item.php:2055 msgid "Link enabled" msgstr "Enlace habilitado" -#: ../../include/rest-api/models/VisualConsole/Item.php:2094 +#: ../../include/rest-api/models/VisualConsole/Item.php:2097 msgid "Static graph" msgstr "Imagen estática" -#: ../../include/rest-api/models/VisualConsole/Item.php:2112 +#: ../../include/rest-api/models/VisualConsole/Item.php:2115 msgid "Event History Graph" msgstr "Gráfica de histórico de eventos" -#: ../../include/rest-api/models/VisualConsole/Item.php:2120 +#: ../../include/rest-api/models/VisualConsole/Item.php:2123 msgid "Percentile bubble" msgstr "Gráfica bubble de percentil" -#: ../../include/rest-api/models/VisualConsole/Item.php:2590 -#: ../../include/rest-api/models/VisualConsole/Item.php:2591 +#: ../../include/rest-api/models/VisualConsole/Item.php:2593 +#: ../../include/rest-api/models/VisualConsole/Item.php:2594 msgid "Image Vc" msgstr "Imagen Vc" @@ -46456,8 +46859,8 @@ msgstr "Pinche aquí para obtener más información" #: ../../include/functions_reports.php:651 #: ../../include/functions_reports.php:1102 -#: ../../include/functions_reporting.php:10729 -#: ../../include/functions_reporting.php:10889 +#: ../../include/functions_reporting.php:10738 +#: ../../include/functions_reporting.php:10898 msgid "Simple graph" msgstr "Gráfico simple" @@ -46578,12 +46981,12 @@ msgid "Inventory changes" msgstr "Inventario de cambios" #: ../../include/functions_reports.php:918 -#: ../../include/functions_reporting.php:6921 +#: ../../include/functions_reporting.php:6930 msgid "Agent configuration" msgstr "Configuración de agentes" #: ../../include/functions_reports.php:922 -#: ../../include/functions_reporting.php:5230 +#: ../../include/functions_reporting.php:5239 msgid "Group configuration" msgstr "Configuración del grupo" @@ -46613,60 +47016,61 @@ msgstr "Sql" msgid "Graph Sql" msgstr "Gráfico SQL" -#: ../../include/functions_html.php:622 ../../include/functions_html.php:1001 +#: ../../include/functions_html.php:622 ../../include/functions_html.php:1006 msgid "Please select an item from this list." msgstr "Seleccione un elemento de la lista." -#: ../../include/functions_html.php:648 ../../include/functions_html.php:6363 -msgid "Please select..." -msgstr "Seleccione..." - -#: ../../include/functions_html.php:1622 +#: ../../include/functions_html.php:1630 msgid "Type to search agents" msgstr "Escriba para buscar agentes" -#: ../../include/functions_html.php:1636 +#: ../../include/functions_html.php:1644 msgid "Type to search modules" msgstr "Escriba para buscar módulos" -#: ../../include/functions_html.php:1704 +#: ../../include/functions_html.php:1713 msgid "Only common modules" msgstr "Solo módulos comunes" -#: ../../include/functions_html.php:2139 +#: ../../include/functions_html.php:2147 msgid "weeks" msgstr "semanas" -#: ../../include/functions_html.php:2321 +#: ../../include/functions_html.php:2336 msgid "Month day" msgstr "Día del mes" -#: ../../include/functions_html.php:2323 +#: ../../include/functions_html.php:2338 msgid "Week day" msgstr "Día de la semana" -#: ../../include/functions_html.php:4800 +#: ../../include/functions_html.php:4824 msgid "Select a file" -msgstr "Elegir archivo" +msgstr "Seleccionar filtro" -#: ../../include/functions_html.php:5018 ../../include/functions_html.php:5020 +#: ../../include/functions_html.php:5042 ../../include/functions_html.php:5044 msgid "Type at least two characters to search the module." msgstr "Escribe al menos dos caracteres para buscar el módulo." -#: ../../include/functions_html.php:5182 ../../index.php:533 ../../index.php:817 -#: ../../index.php:891 +#: ../../include/functions_html.php:5206 ../../index.php:533 ../../index.php:818 +#: ../../index.php:892 #, php-format msgid "%s cannot verify the origin of the request. Try again, please." msgstr "%s no puede verificar el origen de la petición. Vuelva a intentarlo." -#: ../../include/functions_html.php:6104 +#: ../../include/functions_html.php:6128 msgid "Type at least two characters to search the user." msgstr "Escriba al menos dos caracteres para buscar el usuario." -#: ../../include/functions_html.php:6507 +#: ../../include/functions_html.php:6535 msgid "Primary group cannot be secondary too." msgstr "Un grupo primario no puede ser también secundario." +#: ../../include/functions_html.php:6937 ../../include/functions_html.php:6938 +#: ../../include/functions_html.php:6941 ../../include/functions_html.php:6942 +msgid "Go to top" +msgstr "Subir" + #: ../../include/functions_register.php:105 #, php-format msgid "%s configuration wizard" @@ -46732,7 +47136,7 @@ msgstr "Usar certificado" msgid "Integria inventory" msgstr "Inventario Integria IMS" -#: ../../include/functions_config.php:252 ../../include/functions_config.php:1876 +#: ../../include/functions_config.php:252 ../../include/functions_config.php:1888 msgid "Integria API password" msgstr "Contraseña de la API de Integria IMS" @@ -46780,481 +47184,489 @@ msgid "alias_as_name" msgstr "Alias como nombre" #: ../../include/functions_config.php:374 +msgid "keep_in_process_status_extra_id" +msgstr "keep_in_process_status_extra_id" + +#: ../../include/functions_config.php:378 msgid "Console log enabled" msgstr "Log de consola habilitado" -#: ../../include/functions_config.php:378 +#: ../../include/functions_config.php:382 msgid "Audit log enabled" msgstr "Log de auditoría habilitado" -#: ../../include/functions_config.php:382 +#: ../../include/functions_config.php:386 msgid "Module Custom ID read only" msgstr "Solo lectura del ID personalizado del módulo" -#: ../../include/functions_config.php:446 +#: ../../include/functions_config.php:454 msgid "Replication DB host" msgstr "Host de la BD de replicación" -#: ../../include/functions_config.php:450 +#: ../../include/functions_config.php:458 msgid "Replication DB database" msgstr "Nombre de la BD de replicación" -#: ../../include/functions_config.php:454 +#: ../../include/functions_config.php:462 msgid "Replication DB user" msgstr "Usuario de la BD de replicación" -#: ../../include/functions_config.php:458 +#: ../../include/functions_config.php:466 msgid "Replication DB password" msgstr "Contraseña de la BD de replicación" -#: ../../include/functions_config.php:462 +#: ../../include/functions_config.php:470 msgid "Replication DB port" msgstr "Puerto de la BD de replicación" -#: ../../include/functions_config.php:466 +#: ../../include/functions_config.php:474 msgid "Metaconsole agent cache" msgstr "Caché de agente de la Metaconsola" -#: ../../include/functions_config.php:474 +#: ../../include/functions_config.php:482 msgid "Enable Update Manager" msgstr "Habilitar Update Manager" -#: ../../include/functions_config.php:478 +#: ../../include/functions_config.php:486 msgid "Legacy database HA" msgstr "Base de datos heredada HA" -#: ../../include/functions_config.php:482 +#: ../../include/functions_config.php:490 msgid "Ipam Ocuppied Manager Critical" msgstr "Ipam Ocuppied Manager Crítico" -#: ../../include/functions_config.php:486 +#: ../../include/functions_config.php:494 msgid "Ipam Ocuppied Manager Warning" msgstr "Ipam Ocuppied Manager Advertencia" -#: ../../include/functions_config.php:583 +#: ../../include/functions_config.php:591 msgid "Automatically timezone visual" msgstr "Visualización automática de la zona horaria" -#: ../../include/functions_config.php:655 +#: ../../include/functions_config.php:611 +msgid "Recursive search" +msgstr "Búsqueda recursiva" + +#: ../../include/functions_config.php:667 msgid "Ldap search timeout" msgstr "Tiempo de espera de búsqueda LDAP" -#: ../../include/functions_config.php:671 +#: ../../include/functions_config.php:683 msgid "Secontary start TLS" msgstr "TLS de inicio secundario" -#: ../../include/functions_config.php:787 +#: ../../include/functions_config.php:799 msgid "Saml profile parameters" msgstr "Parámetros de perfil saml" -#: ../../include/functions_config.php:803 +#: ../../include/functions_config.php:815 msgid "2FA all users" msgstr "2FA todos los usuarios" -#: ../../include/functions_config.php:810 +#: ../../include/functions_config.php:822 msgid "Session timeout forced to 90 minutes" msgstr "Límite de tiempo de la sesión forzado a 90 minutos" -#: ../../include/functions_config.php:830 +#: ../../include/functions_config.php:842 msgid "Event purge" msgstr "Purga de eventos" -#: ../../include/functions_config.php:866 +#: ../../include/functions_config.php:878 msgid "Max. days before autodisable deletion" msgstr "Días máximos antes de eliminar los deshabilitados" -#: ../../include/functions_config.php:870 +#: ../../include/functions_config.php:882 msgid "Item limit for realtime reports)" msgstr "Límite de elementos para los informes de tiempo real" -#: ../../include/functions_config.php:906 +#: ../../include/functions_config.php:918 msgid "Big Operatiopn Step to purge old data" msgstr "Gran operación para la purga de datos antiguos" -#: ../../include/functions_config.php:940 +#: ../../include/functions_config.php:952 msgid "Max execution event response" msgstr "Máxima respuesta de ejecución de eventos" -#: ../../include/functions_config.php:948 +#: ../../include/functions_config.php:960 msgid "SNMP walk binary path" msgstr "Ruta del binario SNMP walk" -#: ../../include/functions_config.php:952 +#: ../../include/functions_config.php:964 msgid "SNMP walk binary path (fallback for v1)" msgstr "Ruta del binario SNMP walk (alternativa para la v1)" -#: ../../include/functions_config.php:956 +#: ../../include/functions_config.php:968 msgid "Default WMI Binary" msgstr "Binario WMI por defecto" -#: ../../include/functions_config.php:966 +#: ../../include/functions_config.php:978 msgid "SNMP Interface Agent Wizard" msgstr "Asistente del agente de interfaz SNMP" -#: ../../include/functions_config.php:977 +#: ../../include/functions_config.php:989 msgid "Notification Autoclose time" msgstr "Hora de cierre automático de notificaciones" -#: ../../include/functions_config.php:997 +#: ../../include/functions_config.php:1009 msgid "Graph color #4" msgstr "Color del gráfico #4" -#: ../../include/functions_config.php:1001 +#: ../../include/functions_config.php:1013 msgid "Graph color #5" msgstr "Color del gráfico #5" -#: ../../include/functions_config.php:1005 +#: ../../include/functions_config.php:1017 msgid "Graph color #6" msgstr "Color del gráfico #6" -#: ../../include/functions_config.php:1009 +#: ../../include/functions_config.php:1021 msgid "Graph color #7" msgstr "Color del gráfico #7" -#: ../../include/functions_config.php:1013 +#: ../../include/functions_config.php:1025 msgid "Graph color #8" msgstr "Color del gráfico #8" -#: ../../include/functions_config.php:1017 +#: ../../include/functions_config.php:1029 msgid "Graph color #9" msgstr "Color del gráfico #9" -#: ../../include/functions_config.php:1021 +#: ../../include/functions_config.php:1033 msgid "Graph color #10" msgstr "Color del gráfico #10" -#: ../../include/functions_config.php:1054 +#: ../../include/functions_config.php:1066 msgid "Show QR code header" msgstr "Mostrar código QR en la cabecera" -#: ../../include/functions_config.php:1082 +#: ../../include/functions_config.php:1094 msgid "Custom logo white background" msgstr "Fondo blanco del logo personalizado" -#: ../../include/functions_config.php:1110 +#: ../../include/functions_config.php:1122 msgid "Custom title header" msgstr "Encabezado de título personalizado" -#: ../../include/functions_config.php:1114 +#: ../../include/functions_config.php:1126 msgid "Custom subtitle header" msgstr "Encabezado del subtítulo personalizado" -#: ../../include/functions_config.php:1134 +#: ../../include/functions_config.php:1146 msgid "Login background" msgstr "Imagen de fondo de la pantalla de inicio de sesión" -#: ../../include/functions_config.php:1138 -#: ../../include/functions_config.php:1186 +#: ../../include/functions_config.php:1150 +#: ../../include/functions_config.php:1198 msgid "Custom Docs url" msgstr "URL de documentos personalizados" -#: ../../include/functions_config.php:1142 -#: ../../include/functions_config.php:1190 +#: ../../include/functions_config.php:1154 +#: ../../include/functions_config.php:1202 msgid "Custom support url" msgstr "URL de soporte personalizado" -#: ../../include/functions_config.php:1162 +#: ../../include/functions_config.php:1174 msgid "Custom logo metaconsole (white background)" msgstr "Logo personalizado de la consola (fondo blanco)" -#: ../../include/functions_config.php:1166 +#: ../../include/functions_config.php:1178 msgid "Custom logo login metaconsole" msgstr "Logo personalizado de la conexión a la Metaconsola" -#: ../../include/functions_config.php:1170 +#: ../../include/functions_config.php:1182 msgid "Custom splash login metaconsole" msgstr "Conexión del Splash personalizado de la Metaconsola" -#: ../../include/functions_config.php:1174 +#: ../../include/functions_config.php:1186 msgid "Custom title1 login metaconsole" msgstr "Título1 conexión personalizado de la Metaconsola" -#: ../../include/functions_config.php:1178 +#: ../../include/functions_config.php:1190 msgid "Custom title2 login metaconsole" msgstr "Título2 conexión personalizado de la Metaconsola" -#: ../../include/functions_config.php:1182 +#: ../../include/functions_config.php:1194 msgid "Login background metaconsole" msgstr "Fondo de la conexión a la Metaconsola" -#: ../../include/functions_config.php:1206 +#: ../../include/functions_config.php:1218 msgid "Default line favourite_view for the Visual Console" msgstr "Línea por defecto favourite_view para la consola visual" -#: ../../include/functions_config.php:1210 +#: ../../include/functions_config.php:1222 msgid "Default line menu items for the Visual Console" msgstr "Elementos predeterminados de menú de línea para la consola visual" -#: ../../include/functions_config.php:1222 +#: ../../include/functions_config.php:1238 msgid "Default line menu items for the Services" msgstr "Linea de elementos de menú por defecto para los servicios" -#: ../../include/functions_config.php:1254 +#: ../../include/functions_config.php:1270 msgid "Show units in values report" msgstr "Mostrar unidades en los valores del informe" -#: ../../include/functions_config.php:1262 +#: ../../include/functions_config.php:1278 msgid "Autohidden menu" msgstr "Ocultar menú automáticamente" -#: ../../include/functions_config.php:1266 +#: ../../include/functions_config.php:1282 msgid "Visual animation" msgstr "Animación visual" -#: ../../include/functions_config.php:1282 +#: ../../include/functions_config.php:1298 msgid "Fixed graph" msgstr "Gráfico fijo" -#: ../../include/functions_config.php:1290 +#: ../../include/functions_config.php:1306 msgid "Paginate module" msgstr "Paginar vista de módulos" -#: ../../include/functions_config.php:1294 +#: ../../include/functions_config.php:1310 #: ../../include/class/ExternalTools.class.php:323 msgid "Custom graphviz directory" msgstr "Directorio personalizado graphviz" -#: ../../include/functions_config.php:1302 +#: ../../include/functions_config.php:1318 msgid "Shortened module graph data" msgstr "Gráfico de módulo de datos acortados" -#: ../../include/functions_config.php:1310 +#: ../../include/functions_config.php:1326 msgid "Show empty groups in group view." msgstr "Mostrar grupos vacíos en la vista de grupos." -#: ../../include/functions_config.php:1318 +#: ../../include/functions_config.php:1334 msgid "Default type of module charts." msgstr "Tipo de gráficos de módulos por defecto" -#: ../../include/functions_config.php:1322 +#: ../../include/functions_config.php:1338 msgid "Default Number of elements in Custom Graph." msgstr "Número de elementos por defecto en gráfica personalizada." -#: ../../include/functions_config.php:1326 +#: ../../include/functions_config.php:1342 msgid "Default type of interface charts." msgstr "Tipo predefinido para los gráficos de interfaz" -#: ../../include/functions_config.php:1342 +#: ../../include/functions_config.php:1358 msgid "Display lateral menus with left click" msgstr "Mostrar los menús laterales con el clic izquierdo" -#: ../../include/functions_config.php:1351 +#: ../../include/functions_config.php:1367 msgid "Service item padding size" msgstr "Espacio entre los nodos del mapa de servicios" -#: ../../include/functions_config.php:1356 +#: ../../include/functions_config.php:1372 msgid "Default percentil" msgstr "Percentil por defecto" -#: ../../include/functions_config.php:1360 +#: ../../include/functions_config.php:1376 msgid "Default full scale (TIP)" msgstr "Escala completa por defecto (TIP)" -#: ../../include/functions_config.php:1364 +#: ../../include/functions_config.php:1380 msgid "Default soft graphs" msgstr "Gráficas soft por defecto" -#: ../../include/functions_config.php:1368 +#: ../../include/functions_config.php:1384 msgid "Default zoom graphs" msgstr "Gráficas ampliadas por defecto" -#: ../../include/functions_config.php:1377 +#: ../../include/functions_config.php:1393 msgid "Default height of the chart image" msgstr "Altuta de la imagen de la gráfica por defecto" -#: ../../include/functions_config.php:1399 +#: ../../include/functions_config.php:1415 msgid "Add the custom post process" msgstr "Añadir la personalización al proceso posterior" -#: ../../include/functions_config.php:1407 +#: ../../include/functions_config.php:1423 msgid "Delete the custom post process" msgstr "Borrar la personalización al proceso posterior" -#: ../../include/functions_config.php:1461 +#: ../../include/functions_config.php:1477 msgid "Add custom module unit" msgstr "Añadir unidad de módulo personalizado" -#: ../../include/functions_config.php:1467 +#: ../../include/functions_config.php:1483 msgid "Delete custom module unit" msgstr "Eliminar unidad de módulo personalizado" -#: ../../include/functions_config.php:1524 +#: ../../include/functions_config.php:1540 msgid "Thousand separator" msgstr "Separador de miles" -#: ../../include/functions_config.php:1531 +#: ../../include/functions_config.php:1547 msgid "Name storage path" msgstr "Ruta de almacenamiento de nombres" -#: ../../include/functions_config.php:1574 +#: ../../include/functions_config.php:1586 msgid "Sflow name dir" msgstr "Directorio del nombre de Sflow" -#: ../../include/functions_config.php:1617 +#: ../../include/functions_config.php:1629 msgid "IP ElasticSearch server" msgstr "IP del servidor ElasticSearch" -#: ../../include/functions_config.php:1621 +#: ../../include/functions_config.php:1633 msgid "Port ElasticSearch server" msgstr "Puerto del servidor ElasticSearch" -#: ../../include/functions_config.php:1668 +#: ../../include/functions_config.php:1680 msgid "Enable history trap" msgstr "Activar trap de histórico" -#: ../../include/functions_config.php:1688 +#: ../../include/functions_config.php:1700 msgid "Enable history database advanced" msgstr "Habilitar base de datos de histórico avanzada" -#: ../../include/functions_config.php:1697 +#: ../../include/functions_config.php:1709 msgid "String Days" msgstr "Días de cadena" -#: ../../include/functions_config.php:1713 +#: ../../include/functions_config.php:1725 msgid "Trap Days" msgstr "Días de traps" -#: ../../include/functions_config.php:1721 +#: ../../include/functions_config.php:1733 msgid "Trap history purge" msgstr "Purgado de histórico de traps" -#: ../../include/functions_config.php:1793 +#: ../../include/functions_config.php:1805 msgid "Historical database traps purge" msgstr "Purga de traps de la base de datos de histórico" -#: ../../include/functions_config.php:1816 +#: ../../include/functions_config.php:1828 msgid "eHorus user login" msgstr "Inicio de sesión del usuario a eHorus" -#: ../../include/functions_config.php:1828 +#: ../../include/functions_config.php:1840 msgid "eHorus API hostname" msgstr "Propietario de la API de eHorus" -#: ../../include/functions_config.php:1832 +#: ../../include/functions_config.php:1844 msgid "eHorus API port" msgstr "Puerto de la API de eHorus" -#: ../../include/functions_config.php:1836 +#: ../../include/functions_config.php:1848 msgid "eHorus request timeout" msgstr "Tiempo de respuesta de eHorus" -#: ../../include/functions_config.php:1840 +#: ../../include/functions_config.php:1852 msgid "eHorus id custom field" msgstr "ID del campo personalizado de eHorus" -#: ../../include/functions_config.php:1846 +#: ../../include/functions_config.php:1858 msgid "Integria user login" msgstr "Usuario de Integria" -#: ../../include/functions_config.php:1854 +#: ../../include/functions_config.php:1866 msgid "Integria user" msgstr "Usuario de Integria" -#: ../../include/functions_config.php:1858 +#: ../../include/functions_config.php:1870 msgid "Integria password" msgstr "Contraseña de Integria" -#: ../../include/functions_config.php:1872 +#: ../../include/functions_config.php:1884 msgid "integria API hostname" msgstr "Nombre del host de la API de Integria" -#: ../../include/functions_config.php:1880 +#: ../../include/functions_config.php:1892 msgid "Integria request timeout" msgstr "Límite de tiempo de las peticiones de Integria" -#: ../../include/functions_config.php:1884 +#: ../../include/functions_config.php:1896 msgid "Integria default group" msgstr "Grupo por defecto de Integria" -#: ../../include/functions_config.php:1888 +#: ../../include/functions_config.php:1900 msgid "Integria custom response default group" msgstr "Grupo de respuesta personalizada de Integria por defecto" -#: ../../include/functions_config.php:1892 +#: ../../include/functions_config.php:1904 msgid "Integria default priority" msgstr "Prioridad por defecto de Integria" -#: ../../include/functions_config.php:1896 +#: ../../include/functions_config.php:1908 msgid "Integria custom response default priority" msgstr "Prioridad de respuesta personalizada de Integria por defecto" -#: ../../include/functions_config.php:1900 +#: ../../include/functions_config.php:1912 msgid "Integria default creator" msgstr "Creador por defecto de Integria" -#: ../../include/functions_config.php:1904 +#: ../../include/functions_config.php:1916 msgid "Integria default owner" msgstr "Propietario de Integria por defecto" -#: ../../include/functions_config.php:1908 +#: ../../include/functions_config.php:1920 msgid "Integria custom response default owner" msgstr "Propietario de respuesta personalizada de Integria por defecto" -#: ../../include/functions_config.php:1912 +#: ../../include/functions_config.php:1924 msgid "Integria default ticket type" msgstr "Tipo de ticket de Integria por defecto" -#: ../../include/functions_config.php:1916 +#: ../../include/functions_config.php:1928 msgid "Integria custom response default ticket type" msgstr "Tipo de ticket de respuesta personalizado de Integria por defecto" -#: ../../include/functions_config.php:1920 +#: ../../include/functions_config.php:1932 msgid "Integria default ticket status" msgstr "Estado del ticket de Integria por defecto" -#: ../../include/functions_config.php:1924 +#: ../../include/functions_config.php:1936 msgid "Integria custom response default ticket status" msgstr "Estado del ticket de respuesta personalizada de Integria por defecto" -#: ../../include/functions_config.php:1928 +#: ../../include/functions_config.php:1940 msgid "Integria default ticket title" msgstr "Título del ticket de Integria por defecto" -#: ../../include/functions_config.php:1932 +#: ../../include/functions_config.php:1944 msgid "Integria custom response default ticket title" msgstr "Título del ticket de respuesta personalizada de Integria por defecto" -#: ../../include/functions_config.php:1936 +#: ../../include/functions_config.php:1948 msgid "Integria default ticket content" msgstr "Contenido del ticket de Integria por defecto" -#: ../../include/functions_config.php:1940 +#: ../../include/functions_config.php:1952 msgid "Integria custom response default ticket content" msgstr "Contenido del ticket de respuesta personalizada de Integria por defecto" -#: ../../include/functions_config.php:1946 +#: ../../include/functions_config.php:1958 msgid "Module Library User" msgstr "Usuario de la biblioteca de módulos" -#: ../../include/functions_config.php:1950 +#: ../../include/functions_config.php:1962 msgid "Module Library Password" msgstr "Contraseña de la biblioteca de módulos" -#: ../../include/functions_config.php:1956 +#: ../../include/functions_config.php:1968 msgid "WebSocket bind address" msgstr "Dirección de enlace WebSocket" -#: ../../include/functions_config.php:1960 +#: ../../include/functions_config.php:1972 msgid "WebSocket port" msgstr "Puerto WebSocket" -#: ../../include/functions_config.php:1983 +#: ../../include/functions_config.php:1995 #, php-format msgid "Update failed. The next values could not be updated:
-%s" msgstr "" "Error de actualización. No se pudieron actualizar los siguientes valores:
" "-%s" -#: ../../include/functions_config.php:2662 -#: ../../operation/agentes/networkmap.dinamic.php:220 +#: ../../include/functions_config.php:2682 +#: ../../operation/agentes/networkmap.dinamic.php:228 msgid "Pandora FMS" msgstr "Pandora FMS" -#: ../../include/functions_config.php:2670 +#: ../../include/functions_config.php:2690 msgid "PandoraFMS Metaconsole" msgstr "Metaconsola PandoraFMS" -#: ../../include/functions_config.php:2674 +#: ../../include/functions_config.php:2694 msgid "Centralized operation console" msgstr "Consola de operación centralizada" @@ -47358,7 +47770,7 @@ msgstr "Añadir por %s" msgid "Resolution %s" msgstr "Resolución de %s" -#: ../../include/class/Tree.class.php:790 +#: ../../include/class/Tree.class.php:813 msgid "Module alerts" msgstr "Alertas de módulo" @@ -47515,7 +47927,6 @@ msgid "Sound not exist" msgstr "El sonido no existe" #: ../../include/class/EventSound.class.php:188 -#: ../../operation/events/sound_events.php:261 msgid "Sounds" msgstr "Sonidos" @@ -47524,7 +47935,7 @@ msgid "Add new sound" msgstr "Añadir nuevo sonido" #: ../../include/class/EventSound.class.php:212 -msgid "Accoustic console sound list" +msgid "Acoustic console sound list" msgstr "Lista de sonidos de la consola acústica" #: ../../include/class/EventSound.class.php:253 @@ -47568,7 +47979,7 @@ msgid "Something is wrong" msgstr "Algo ha salido mal" #: ../../include/class/HelpFeedBack.class.php:172 -#: ../../include/class/Diagnostics.class.php:1922 +#: ../../include/class/Diagnostics.class.php:1926 msgid "What happened?" msgstr "¿Qué ha pasado?" @@ -47581,7 +47992,7 @@ msgid "Submit" msgstr "Enviar" #: ../../include/class/HelpFeedBack.class.php:214 -#: ../../include/class/Diagnostics.class.php:1995 ../../general/header.php:364 +#: ../../include/class/Diagnostics.class.php:1999 ../../general/header.php:364 #: ../../general/header.php:366 msgid "Feedback" msgstr "Feedback" @@ -47639,7 +48050,7 @@ msgid "%s Licence Information" msgstr "Información de la licencia %s" #: ../../include/class/Diagnostics.class.php:274 -#: ../../include/class/Diagnostics.class.php:1274 +#: ../../include/class/Diagnostics.class.php:1278 msgid "Status of the attachment folder" msgstr "Estado de la carpeta de adjuntos" @@ -47832,7 +48243,7 @@ msgstr "SO" #: ../../include/class/Diagnostics.class.php:759 #: ../../include/class/Diagnostics.class.php:777 -#: ../../include/class/NetworkMap.class.php:3066 +#: ../../include/class/NetworkMap.class.php:3072 msgid "Ip" msgstr "IP" @@ -47973,39 +48384,39 @@ msgstr "Fragmentación de tablas (valor actual)" msgid "Table fragmentation status" msgstr "Estado de fragmentación de tablas" -#: ../../include/class/Diagnostics.class.php:1048 +#: ../../include/class/Diagnostics.class.php:1052 msgid "Size server logs (current value)" msgstr "Logs del tamaño del servidor (valor actual)" -#: ../../include/class/Diagnostics.class.php:1052 +#: ../../include/class/Diagnostics.class.php:1056 msgid "Status server logs" msgstr "Logs del estado del servidor" -#: ../../include/class/Diagnostics.class.php:1057 +#: ../../include/class/Diagnostics.class.php:1061 msgid "Size error logs (current value)" msgstr "Logs de error de tamaño (valor actual)" -#: ../../include/class/Diagnostics.class.php:1061 +#: ../../include/class/Diagnostics.class.php:1065 msgid "Status error logs" msgstr "Logs de error de estado" -#: ../../include/class/Diagnostics.class.php:1066 +#: ../../include/class/Diagnostics.class.php:1070 msgid "Size console logs (current value)" msgstr "Logs del tamaño de la consola (valor actual)" -#: ../../include/class/Diagnostics.class.php:1070 +#: ../../include/class/Diagnostics.class.php:1074 msgid "Status console logs" msgstr "Logs del estado de la consola" -#: ../../include/class/Diagnostics.class.php:1105 +#: ../../include/class/Diagnostics.class.php:1109 msgid "License capacity is less than 90 percent" msgstr "La capacidad de la licencia es menor del 90 por ciento" -#: ../../include/class/Diagnostics.class.php:1108 +#: ../../include/class/Diagnostics.class.php:1112 msgid "License capacity exceeds 90 percent" msgstr "La capacidad de la licencia excede del 90 por ciento" -#: ../../include/class/Diagnostics.class.php:1116 +#: ../../include/class/Diagnostics.class.php:1120 msgid "" "The average of modules per agent is more than 40. You can have performance " "problems" @@ -48013,48 +48424,48 @@ msgstr "" "La media de módulos por agente es más de 40. Puede sufrir problemas de " "rendimiento" -#: ../../include/class/Diagnostics.class.php:1121 +#: ../../include/class/Diagnostics.class.php:1125 msgid "The average of modules per agent is less than 40" msgstr "La media de módulos por agente es menos de 40" -#: ../../include/class/Diagnostics.class.php:1159 +#: ../../include/class/Diagnostics.class.php:1163 msgid "The system has no load" msgstr "El sistema no tiene carga" -#: ../../include/class/Diagnostics.class.php:1203 +#: ../../include/class/Diagnostics.class.php:1207 msgid "Network Management System" msgstr "Sistema de administración de la red" -#: ../../include/class/Diagnostics.class.php:1204 #: ../../include/class/Diagnostics.class.php:1208 +#: ../../include/class/Diagnostics.class.php:1212 msgid "Off" msgstr "Apagado" -#: ../../include/class/Diagnostics.class.php:1215 +#: ../../include/class/Diagnostics.class.php:1219 msgid "Status of agents capacity" msgstr "Estado de la capacidad de los agentes" -#: ../../include/class/Diagnostics.class.php:1220 +#: ../../include/class/Diagnostics.class.php:1224 msgid "Status of average modules per agent" msgstr "Estado de la media de módulos por agente" -#: ../../include/class/Diagnostics.class.php:1226 +#: ../../include/class/Diagnostics.class.php:1230 msgid "Interval average of the network modules" msgstr "Intervalo de media de los módulos de la red" -#: ../../include/class/Diagnostics.class.php:1256 +#: ../../include/class/Diagnostics.class.php:1260 msgid "The attached folder contains more than 700 files." msgstr "La carpeta adjunta contiene más de 700 archivos." -#: ../../include/class/Diagnostics.class.php:1261 +#: ../../include/class/Diagnostics.class.php:1265 msgid "The attached folder contains less than 700 files." msgstr "La carpeta adjunta contiene menos de 700 archivos." -#: ../../include/class/Diagnostics.class.php:1270 +#: ../../include/class/Diagnostics.class.php:1274 msgid "Total files in the attached folder" msgstr "Total de archivos en la carpeta adjunta" -#: ../../include/class/Diagnostics.class.php:1305 +#: ../../include/class/Diagnostics.class.php:1309 msgid "" "The tagente_datos table contains too much data. A historical database is " "recommended." @@ -48062,31 +48473,31 @@ msgstr "" "La tabla tagente_datos contiene demasiados datos. Se recomienda una base de " "datos histórica." -#: ../../include/class/Diagnostics.class.php:1310 +#: ../../include/class/Diagnostics.class.php:1314 msgid "The tagente_datos table contains an acceptable amount of data." msgstr "La tabla tagente_datos contiene una cantidad de datos aceptable" -#: ../../include/class/Diagnostics.class.php:1319 +#: ../../include/class/Diagnostics.class.php:1323 msgid "Total data in tagente_datos table" msgstr "Total de datos de la tabla tagente_datos" -#: ../../include/class/Diagnostics.class.php:1323 +#: ../../include/class/Diagnostics.class.php:1327 msgid "Tagente_datos table status" msgstr "Estado de la tabla tagente_datos" -#: ../../include/class/Diagnostics.class.php:1359 +#: ../../include/class/Diagnostics.class.php:1363 msgid "Threads" msgstr "Hilos" -#: ../../include/class/Diagnostics.class.php:1369 +#: ../../include/class/Diagnostics.class.php:1373 msgid "Total threads" msgstr "Total de hilos" -#: ../../include/class/Diagnostics.class.php:1376 +#: ../../include/class/Diagnostics.class.php:1380 msgid "Current pandora_server running threads" msgstr "Hilos pandora_server en ejecución actualmente" -#: ../../include/class/Diagnostics.class.php:1380 +#: ../../include/class/Diagnostics.class.php:1384 msgid "" "There's more pandora_server threads than configured, are you running multiple " "servers simultaneusly?." @@ -48094,7 +48505,7 @@ msgstr "" "Hay más hilos pandora_server de los configurados, ¿está ejecutando varios " "servidores a la vez?" -#: ../../include/class/Diagnostics.class.php:1514 +#: ../../include/class/Diagnostics.class.php:1518 msgid "" "Please check your Pandora Server setup and make sure that the database " "maintenance daemon is running." @@ -48102,7 +48513,7 @@ msgstr "" "Compruebe la configuración del servidor de Pandora y asegúrese de que el " "demonio de mantenimiento de la base de datos está en ejecución." -#: ../../include/class/Diagnostics.class.php:1518 +#: ../../include/class/Diagnostics.class.php:1522 msgid "" "It' is very important to keep the database up-to-date to get the best " "performance and results in Pandora" @@ -48110,56 +48521,56 @@ msgstr "" "Es muy importante que la base de datos esté actualizada para conseguir un " "rendimiento y resultados óptimos en Pandora FMS" -#: ../../include/class/Diagnostics.class.php:1780 +#: ../../include/class/Diagnostics.class.php:1784 msgid "You have more than 10 MB of logs" msgstr "Tiene más de 10MB de registros" -#: ../../include/class/Diagnostics.class.php:1783 +#: ../../include/class/Diagnostics.class.php:1787 msgid "You have less than 10 MB of logs" msgstr "Tiene menos de 10MB de logs" -#: ../../include/class/Diagnostics.class.php:1950 +#: ../../include/class/Diagnostics.class.php:1954 msgid "Include installation data" msgstr "Incluir datos de instalación" -#: ../../include/class/Diagnostics.class.php:1987 +#: ../../include/class/Diagnostics.class.php:1991 msgid "Hello Feedback-Men" msgstr "Hola Feedback-Men" -#: ../../include/class/Diagnostics.class.php:1997 +#: ../../include/class/Diagnostics.class.php:2001 msgid "Hello" msgstr "Hola" -#: ../../include/class/Diagnostics.class.php:2001 +#: ../../include/class/Diagnostics.class.php:2005 #, php-format msgid "User %s is reporting an issue in its %s experience" msgstr "El usuario %s está notificando sobre un problema en su experiencia %s" -#: ../../include/class/Diagnostics.class.php:2010 +#: ../../include/class/Diagnostics.class.php:2014 msgid "Find some files attached to this mail" msgstr "Encontrar archivos adjuntos a este correo" -#: ../../include/class/Diagnostics.class.php:2013 +#: ../../include/class/Diagnostics.class.php:2017 msgid "PDF is the diagnostic information retrieved at report time" msgstr "" "El PDF es la información de diagnóstico obtenida en el momento del informe" -#: ../../include/class/Diagnostics.class.php:2016 +#: ../../include/class/Diagnostics.class.php:2020 msgid "CSV contains the statuses of every product file" msgstr "CSV contiene los estados de cada archivo de producto" -#: ../../include/class/Diagnostics.class.php:2021 +#: ../../include/class/Diagnostics.class.php:2025 #, php-format msgid "" "If you think this report must be escalated, feel free to forward this mail to " "\"%s\"" msgstr "Si cree que el informe debe escalarse, reenvíe este correo a \"%s\"" -#: ../../include/class/Diagnostics.class.php:2025 +#: ../../include/class/Diagnostics.class.php:2029 msgid "LEGAL WARNING" msgstr "AVISO LEGAL" -#: ../../include/class/Diagnostics.class.php:2027 +#: ../../include/class/Diagnostics.class.php:2031 msgid "" "The information contained in this transmission is privileged and confidential " "information intended only for the use of the individual or entity named above" @@ -48167,7 +48578,7 @@ msgstr "" "La información aquí incluida es privilegiada y confidencial, destinada al uso " "del individuo o la entidad arriba mencionada" -#: ../../include/class/Diagnostics.class.php:2031 +#: ../../include/class/Diagnostics.class.php:2035 msgid "" "If the reader of this message is not the intended recipient, you are hereby " "notified that any dissemination, distribution or copying of this communication " @@ -48176,11 +48587,11 @@ msgstr "" "Si el lector del mensaje no es el destinatario deseado, le comunicamos que " "está prohibido difundir, distribuir o copiar este comunicado" -#: ../../include/class/Diagnostics.class.php:2035 +#: ../../include/class/Diagnostics.class.php:2039 msgid "If you have received this transmission in error, do not read it" msgstr "Si ha recibido este mensaje por error, no lo lea" -#: ../../include/class/Diagnostics.class.php:2039 +#: ../../include/class/Diagnostics.class.php:2043 msgid "" "Please immediately reply to the sender that you have received this " "communication in error and then delete it" @@ -48188,81 +48599,81 @@ msgstr "" "Comuníquele al remitente que ha recibido esta comunicación por error y acto " "seguido elimínela" -#: ../../include/class/Diagnostics.class.php:2118 +#: ../../include/class/Diagnostics.class.php:2122 msgid "Invalid cron task" msgstr "Tarea cron no válida" -#: ../../include/class/Diagnostics.class.php:2119 +#: ../../include/class/Diagnostics.class.php:2123 msgid "Sending of information has been processed" msgstr "Se ha procesado el envío de información" -#: ../../include/class/Diagnostics.class.php:2154 -#: ../../include/class/Diagnostics.class.php:2164 +#: ../../include/class/Diagnostics.class.php:2158 +#: ../../include/class/Diagnostics.class.php:2168 msgid "Diagnostics Info" msgstr "Información de diagnóstico" -#: ../../include/class/Diagnostics.class.php:2272 -#: ../../include/class/Diagnostics.class.php:2282 +#: ../../include/class/Diagnostics.class.php:2276 +#: ../../include/class/Diagnostics.class.php:2286 msgid "PHP Info" msgstr "Información PHP" -#: ../../include/class/NetworkMap.class.php:2382 +#: ../../include/class/NetworkMap.class.php:2388 msgid "Failed to generate dotmap, please select different layout schema" msgstr "No se ha podido generar dotmap, seleccione un formato diferente" -#: ../../include/class/NetworkMap.class.php:2524 +#: ../../include/class/NetworkMap.class.php:2530 msgid "Failed to retrieve graph data." msgstr "No se ha podido obtener datos de gráfica." -#: ../../include/class/NetworkMap.class.php:2808 +#: ../../include/class/NetworkMap.class.php:2814 msgid "Holding Area" msgstr "Búfer de procesamiento" -#: ../../include/class/NetworkMap.class.php:2935 +#: ../../include/class/NetworkMap.class.php:2941 #, php-format msgid "Edit node %s" msgstr "Modificar el nodo %s" -#: ../../include/class/NetworkMap.class.php:2937 +#: ../../include/class/NetworkMap.class.php:2943 msgid "Show details and options" msgstr "Mostrar detalles y opciones" -#: ../../include/class/NetworkMap.class.php:2938 +#: ../../include/class/NetworkMap.class.php:2944 msgid "Add a interface link" msgstr "Añadir enlace de interfaz" -#: ../../include/class/NetworkMap.class.php:2939 +#: ../../include/class/NetworkMap.class.php:2945 msgid "Set parent interface" msgstr "Establecer padre en la relación de interfaz" -#: ../../include/class/NetworkMap.class.php:2940 +#: ../../include/class/NetworkMap.class.php:2946 msgid "Set as children" msgstr "Establecer como hijo" -#: ../../include/class/NetworkMap.class.php:2941 +#: ../../include/class/NetworkMap.class.php:2947 msgid "Set parent" msgstr "Establecer como padre" -#: ../../include/class/NetworkMap.class.php:2942 -#: ../../include/class/NetworkMap.class.php:2954 +#: ../../include/class/NetworkMap.class.php:2948 +#: ../../include/class/NetworkMap.class.php:2960 msgid "Abort the action of set relationship" msgstr "Cancelar la acción de relacionar por parentesco" -#: ../../include/class/NetworkMap.class.php:2944 -#: ../../include/class/NetworkMap.class.php:3344 +#: ../../include/class/NetworkMap.class.php:2950 +#: ../../include/class/NetworkMap.class.php:3350 msgid "Add node" msgstr "Añadir nodo" -#: ../../include/class/NetworkMap.class.php:2945 +#: ../../include/class/NetworkMap.class.php:2951 msgid "Set center" msgstr "Fijar centro" -#: ../../include/class/NetworkMap.class.php:2947 -#: ../../include/class/NetworkMap.class.php:2950 +#: ../../include/class/NetworkMap.class.php:2953 +#: ../../include/class/NetworkMap.class.php:2956 msgid "Proceed" msgstr "Proceder" -#: ../../include/class/NetworkMap.class.php:2948 +#: ../../include/class/NetworkMap.class.php:2954 msgid "" "Resetting the map will delete all customizations you have done, including " "manual relationships between elements, new items, etc." @@ -48270,144 +48681,144 @@ msgstr "" "Al resetear el mapa se borrarán todas las personalizaciones que hayas hecho, " "incluyendo las relaciones manuales entre elementos, nuevos elementos, etc." -#: ../../include/class/NetworkMap.class.php:2952 +#: ../../include/class/NetworkMap.class.php:2958 msgid "Restart map" msgstr "Resetear el mapa" -#: ../../include/class/NetworkMap.class.php:2953 +#: ../../include/class/NetworkMap.class.php:2959 msgid "Abort the interface relationship" msgstr "Abortar la relación de interfaz" -#: ../../include/class/NetworkMap.class.php:2971 -#: ../../include/class/NetworkMap.class.php:3020 +#: ../../include/class/NetworkMap.class.php:2977 +#: ../../include/class/NetworkMap.class.php:3026 msgid "Edit node" msgstr "Modificar nodo" -#: ../../include/class/NetworkMap.class.php:2981 -#: ../../include/class/NetworkMap.class.php:3036 +#: ../../include/class/NetworkMap.class.php:2987 +#: ../../include/class/NetworkMap.class.php:3042 msgid "Adresses" msgstr "Direcciones" -#: ../../include/class/NetworkMap.class.php:2983 -#: ../../include/class/NetworkMap.class.php:3041 +#: ../../include/class/NetworkMap.class.php:2989 +#: ../../include/class/NetworkMap.class.php:3047 msgid "OS type" msgstr "Tipo de SO" -#: ../../include/class/NetworkMap.class.php:2990 -#: ../../include/class/NetworkMap.class.php:2991 -#: ../../include/class/NetworkMap.class.php:3052 -#: ../../include/class/NetworkMap.class.php:3053 +#: ../../include/class/NetworkMap.class.php:2996 +#: ../../include/class/NetworkMap.class.php:2997 +#: ../../include/class/NetworkMap.class.php:3058 +#: ../../include/class/NetworkMap.class.php:3059 msgid "Node Details" msgstr "Detalles de nodo" -#: ../../include/class/NetworkMap.class.php:3078 -#: ../../include/class/NetworkMap.class.php:3079 +#: ../../include/class/NetworkMap.class.php:3084 +#: ../../include/class/NetworkMap.class.php:3085 msgid "Interface Information (SNMP)" msgstr "Información de interfaces (SNMP)" -#: ../../include/class/NetworkMap.class.php:3092 +#: ../../include/class/NetworkMap.class.php:3098 msgid "Shape" msgstr "Forma" -#: ../../include/class/NetworkMap.class.php:3095 +#: ../../include/class/NetworkMap.class.php:3101 msgid "Circle" msgstr "Círculo" -#: ../../include/class/NetworkMap.class.php:3096 +#: ../../include/class/NetworkMap.class.php:3102 msgid "Square" msgstr "Cuadrado" -#: ../../include/class/NetworkMap.class.php:3097 +#: ../../include/class/NetworkMap.class.php:3103 msgid "Rhombus" msgstr "Rombo" -#: ../../include/class/NetworkMap.class.php:3113 +#: ../../include/class/NetworkMap.class.php:3119 msgid "name node" msgstr "Nombrar nodo" -#: ../../include/class/NetworkMap.class.php:3125 -#: ../../include/class/NetworkMap.class.php:3495 +#: ../../include/class/NetworkMap.class.php:3131 +#: ../../include/class/NetworkMap.class.php:3501 msgid "name fictional node" msgstr "Nombre de nodo ficticio" -#: ../../include/class/NetworkMap.class.php:3133 -#: ../../include/class/NetworkMap.class.php:3503 +#: ../../include/class/NetworkMap.class.php:3139 +#: ../../include/class/NetworkMap.class.php:3509 msgid "Networkmap to link" msgstr "Enlace a mapa de red" -#: ../../include/class/NetworkMap.class.php:3147 +#: ../../include/class/NetworkMap.class.php:3153 msgid "Update fictional node" msgstr "Actualizar nodo ficticio" -#: ../../include/class/NetworkMap.class.php:3175 -#: ../../include/class/NetworkMap.class.php:3176 +#: ../../include/class/NetworkMap.class.php:3181 +#: ../../include/class/NetworkMap.class.php:3182 msgid "Node options" msgstr "Opciones de nodo" -#: ../../include/class/NetworkMap.class.php:3187 -#: ../../include/class/NetworkMap.class.php:3281 +#: ../../include/class/NetworkMap.class.php:3193 +#: ../../include/class/NetworkMap.class.php:3287 msgid "Node source" msgstr "Nodo origen" -#: ../../include/class/NetworkMap.class.php:3188 -#: ../../include/class/NetworkMap.class.php:3282 +#: ../../include/class/NetworkMap.class.php:3194 +#: ../../include/class/NetworkMap.class.php:3288 msgid "Interface source" msgstr "Interfaz origen" -#: ../../include/class/NetworkMap.class.php:3189 -#: ../../include/class/NetworkMap.class.php:3283 +#: ../../include/class/NetworkMap.class.php:3195 +#: ../../include/class/NetworkMap.class.php:3289 msgid "Interface Target" msgstr "Interfaz objetivo" -#: ../../include/class/NetworkMap.class.php:3191 -#: ../../include/class/NetworkMap.class.php:3284 +#: ../../include/class/NetworkMap.class.php:3197 +#: ../../include/class/NetworkMap.class.php:3290 msgid "Node target" msgstr "Nodo objetivo" -#: ../../include/class/NetworkMap.class.php:3192 +#: ../../include/class/NetworkMap.class.php:3198 msgid "E." msgstr "E." -#: ../../include/class/NetworkMap.class.php:3254 +#: ../../include/class/NetworkMap.class.php:3260 msgid "There are not relations" msgstr "No hay relaciones" -#: ../../include/class/NetworkMap.class.php:3327 +#: ../../include/class/NetworkMap.class.php:3333 msgid "Add interface link" msgstr "Añadir enlace de interfaz" -#: ../../include/class/NetworkMap.class.php:3372 -#: ../../include/class/NetworkMap.class.php:3399 -#: ../../include/class/NetworkMap.class.php:3400 -#: ../../include/class/NetworkMap.class.php:3463 -#: ../../include/class/NetworkMap.class.php:3479 -#: ../../include/class/NetworkMap.class.php:3536 +#: ../../include/class/NetworkMap.class.php:3378 +#: ../../include/class/NetworkMap.class.php:3405 +#: ../../include/class/NetworkMap.class.php:3406 +#: ../../include/class/NetworkMap.class.php:3469 +#: ../../include/class/NetworkMap.class.php:3485 +#: ../../include/class/NetworkMap.class.php:3542 msgid "Add agent node" msgstr "Añadir nodo de agente" -#: ../../include/class/NetworkMap.class.php:3478 +#: ../../include/class/NetworkMap.class.php:3484 msgid "Add agent node (filter by group)" msgstr "Añadir nodo de agente (filtro por grupo)" -#: ../../include/class/NetworkMap.class.php:3520 +#: ../../include/class/NetworkMap.class.php:3526 msgid "Add fictional node" msgstr "Añadir nodo ficticio" -#: ../../include/class/NetworkMap.class.php:3535 +#: ../../include/class/NetworkMap.class.php:3541 msgid "Add fictional point" msgstr "Añadir punto ficticio" -#: ../../include/class/NetworkMap.class.php:3620 +#: ../../include/class/NetworkMap.class.php:3626 #: ../../operation/visual_console/legacy_public_view.php:198 -#: ../../operation/visual_console/legacy_view.php:335 +#: ../../operation/visual_console/legacy_view.php:346 msgid "Until refresh" msgstr "Hasta la actualización" -#: ../../include/class/NetworkMap.class.php:3775 +#: ../../include/class/NetworkMap.class.php:3781 msgid "Open Minimap" msgstr "Abrir Minimapa" -#: ../../include/class/NetworkMap.class.php:3781 +#: ../../include/class/NetworkMap.class.php:3787 msgid "Hide Labels" msgstr "Ocultar etiquetas" @@ -48470,11 +48881,11 @@ msgstr "¿Está seguro de que desea borrar el script?" msgid "Delete Script" msgstr "Eliminar guión" -#: ../../include/class/ManageNetScanScripts.class.php:490 +#: ../../include/class/ManageNetScanScripts.class.php:486 msgid "There are no net scan scripts in the system" msgstr "No hay scripts de escaneo de red en el sistema" -#: ../../include/class/ManageNetScanScripts.class.php:560 +#: ../../include/class/ManageNetScanScripts.class.php:556 msgid "Script fullpath" msgstr "Ruta completa del script" @@ -48533,12 +48944,12 @@ msgid "Extra (2)" msgstr "Extra (2)" #: ../../include/class/CredentialStore.class.php:986 -#: ../../include/class/CredentialStore.class.php:1307 +#: ../../include/class/CredentialStore.class.php:1309 msgid "Access key ID" msgstr "ID de la clave de accso" #: ../../include/class/CredentialStore.class.php:987 -#: ../../include/class/CredentialStore.class.php:1308 +#: ../../include/class/CredentialStore.class.php:1310 msgid "Secret access key" msgstr "Clave de acceso secreta" @@ -48548,22 +48959,22 @@ msgid "Account ID" msgstr "ID de la cuenta" #: ../../include/class/CredentialStore.class.php:994 -#: ../../include/class/CredentialStore.class.php:1315 +#: ../../include/class/CredentialStore.class.php:1318 msgid "Application secret" msgstr "Secretos de aplicación" #: ../../include/class/CredentialStore.class.php:995 -#: ../../include/class/CredentialStore.class.php:1316 +#: ../../include/class/CredentialStore.class.php:1319 msgid "Tenant or domain name" msgstr "Propietario o nombre del dominio" #: ../../include/class/CredentialStore.class.php:996 -#: ../../include/class/CredentialStore.class.php:1317 +#: ../../include/class/CredentialStore.class.php:1320 msgid "Subscription id" msgstr "ID de la suscripción" #: ../../include/class/CredentialStore.class.php:1000 -#: ../../include/class/CredentialStore.class.php:1333 +#: ../../include/class/CredentialStore.class.php:1338 msgid "Auth JSON" msgstr "Autenticación JSON" @@ -48584,45 +48995,45 @@ msgid "3" msgstr "3" #: ../../include/class/CredentialStore.class.php:1134 -#: ../../include/class/CredentialStore.class.php:1425 +#: ../../include/class/CredentialStore.class.php:1434 msgid "Authenticated and non-private method" msgstr "Método con autentificación y sin privacidad" #: ../../include/class/CredentialStore.class.php:1135 -#: ../../include/class/CredentialStore.class.php:1427 +#: ../../include/class/CredentialStore.class.php:1436 msgid "Authenticated and private method" msgstr "Método con autentificación y privacidad" #: ../../include/class/CredentialStore.class.php:1136 -#: ../../include/class/CredentialStore.class.php:1429 +#: ../../include/class/CredentialStore.class.php:1438 msgid "Non-authenticated and non-private method" msgstr "Método sin autentificación ni privacidad" #: ../../include/class/CredentialStore.class.php:1144 -#: ../../include/class/CredentialStore.class.php:1442 +#: ../../include/class/CredentialStore.class.php:1451 #: ../../include/class/AgentWizard.class.php:910 msgid "User authentication" msgstr "Autenticación de usuario" #: ../../include/class/CredentialStore.class.php:1179 -#: ../../include/class/CredentialStore.class.php:1476 +#: ../../include/class/CredentialStore.class.php:1485 #: ../../include/class/AgentWizard.class.php:939 msgid "Password authentication" msgstr "Contraseña de autenticación" -#: ../../include/class/CredentialStore.class.php:1314 +#: ../../include/class/CredentialStore.class.php:1317 msgid "Client ID" msgstr "ID de cliente" -#: ../../include/class/CredentialStore.class.php:1323 +#: ../../include/class/CredentialStore.class.php:1327 msgid "Account ID." msgstr "ID de la cuenta" -#: ../../include/class/CredentialStore.class.php:1648 +#: ../../include/class/CredentialStore.class.php:1657 msgid "Register new key into keystore" msgstr "Registrar una clave nueva en el repositorio de claves" -#: ../../include/class/CredentialStore.class.php:1652 +#: ../../include/class/CredentialStore.class.php:1661 msgid "Update key" msgstr "Actualizar clave" @@ -48631,9 +49042,9 @@ msgid "Trap subtype" msgstr "Subtipo trap" #: ../../include/class/SnmpConsole.class.php:291 -#: ../../include/functions_reporting.php:5890 -#: ../../include/functions_reporting.php:5907 -#: ../../include/functions_reporting.php:5924 +#: ../../include/functions_reporting.php:5899 +#: ../../include/functions_reporting.php:5916 +#: ../../include/functions_reporting.php:5933 msgid "Not triggered" msgstr "No disparado" @@ -48643,25 +49054,25 @@ msgstr "Disparado" #: ../../include/class/SnmpConsole.class.php:309 #: ../../include/class/SnmpConsole.class.php:503 -#: ../../include/class/SnmpConsole.class.php:761 +#: ../../include/class/SnmpConsole.class.php:763 #: ../../include/functions_reporting.php:2366 -#: ../../include/functions_reporting.php:4597 -#: ../../include/functions_reporting.php:11390 +#: ../../include/functions_reporting.php:4606 +#: ../../include/functions_reporting.php:11399 msgid "Not validated" msgstr "Sin validar" #: ../../include/class/SnmpConsole.class.php:310 #: ../../include/class/SnmpConsole.class.php:501 -#: ../../include/class/SnmpConsole.class.php:771 +#: ../../include/class/SnmpConsole.class.php:773 #: ../../include/functions_reporting.php:2365 -#: ../../include/functions_reporting.php:4596 -#: ../../include/functions_reporting.php:11389 +#: ../../include/functions_reporting.php:4605 +#: ../../include/functions_reporting.php:11398 #: ../../include/functions_events.php:2547 -#: ../../include/functions_events.php:3269 -#: ../../include/functions_events.php:3544 -#: ../../include/functions_events.php:3553 -#: ../../include/functions_events.php:3560 -#: ../../include/functions_events.php:3567 +#: ../../include/functions_events.php:3274 +#: ../../include/functions_events.php:3549 +#: ../../include/functions_events.php:3558 +#: ../../include/functions_events.php:3565 +#: ../../include/functions_events.php:3572 msgid "Validated" msgstr "Validado" @@ -48669,46 +49080,46 @@ msgstr "Validado" msgid "Group by Enterprise String/IP" msgstr "Agrupado por cadena Enterprise/IP" -#: ../../include/class/SnmpConsole.class.php:783 +#: ../../include/class/SnmpConsole.class.php:785 #: ../../operation/snmpconsole/snmp_statistics.php:199 msgid "View agent details" msgstr "Ver detalles del agente" -#: ../../include/class/SnmpConsole.class.php:902 -#: ../../include/class/SnmpConsole.class.php:903 +#: ../../include/class/SnmpConsole.class.php:904 +#: ../../include/class/SnmpConsole.class.php:905 msgid "Hide details" msgstr "Ocultar detalles" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "Count:" msgstr "Contar:" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "First trap:" msgstr "Primer trap:" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "Last trap:" msgstr "Último trap:" -#: ../../include/class/SnmpConsole.class.php:1403 +#: ../../include/class/SnmpConsole.class.php:1405 msgid "Type:" msgstr "Tipo:" -#: ../../include/class/SnmpConsole.class.php:1410 +#: ../../include/class/SnmpConsole.class.php:1412 msgid "Description:" msgstr "Descripción:" -#: ../../include/class/SnmpConsole.class.php:1417 +#: ../../include/class/SnmpConsole.class.php:1419 msgid "Enterprise String:" msgstr "Cadena Enterprise:" -#: ../../include/class/SnmpConsole.class.php:1426 -#: ../../include/class/SnmpConsole.class.php:1440 +#: ../../include/class/SnmpConsole.class.php:1428 +#: ../../include/class/SnmpConsole.class.php:1442 msgid "Variable bindings:" msgstr "Enlaces variables" -#: ../../include/class/SnmpConsole.class.php:1436 +#: ../../include/class/SnmpConsole.class.php:1438 msgid "See more details" msgstr "Ver más detalles" @@ -48783,51 +49194,51 @@ msgstr "Resultados encontrados" msgid "Press enter to search" msgstr "Búsqueda de texto libre" -#: ../../include/class/TipsWindow.class.php:432 +#: ../../include/class/TipsWindow.class.php:444 msgid "Tip deleted" msgstr "Tip eliminado" -#: ../../include/class/TipsWindow.class.php:482 +#: ../../include/class/TipsWindow.class.php:494 msgid "Search by title" msgstr "Buscar por título" -#: ../../include/class/TipsWindow.class.php:683 +#: ../../include/class/TipsWindow.class.php:703 msgid "Tip created" msgstr "Tip creado" -#: ../../include/class/TipsWindow.class.php:743 -#: ../../include/class/TipsWindow.class.php:911 +#: ../../include/class/TipsWindow.class.php:763 +#: ../../include/class/TipsWindow.class.php:931 msgid "Wrong size, we recommend images of 464x260 px" msgstr "Tamaño incorrecto, se recomiendan imágenes de 464x260 px" -#: ../../include/class/TipsWindow.class.php:751 -#: ../../include/class/TipsWindow.class.php:919 +#: ../../include/class/TipsWindow.class.php:771 +#: ../../include/class/TipsWindow.class.php:939 msgid "Please select a image" msgstr "Por favor, seleccione una imagen" -#: ../../include/class/TipsWindow.class.php:755 -#: ../../include/class/TipsWindow.class.php:923 +#: ../../include/class/TipsWindow.class.php:775 +#: ../../include/class/TipsWindow.class.php:943 msgid "Add image" msgstr "Añadir imagen" -#: ../../include/class/TipsWindow.class.php:758 -#: ../../include/class/TipsWindow.class.php:926 +#: ../../include/class/TipsWindow.class.php:778 +#: ../../include/class/TipsWindow.class.php:946 msgid "Images" msgstr "Imágenes" -#: ../../include/class/TipsWindow.class.php:823 +#: ../../include/class/TipsWindow.class.php:843 msgid "Tip edited" msgstr "Tip editado" -#: ../../include/class/TipsWindow.class.php:1096 +#: ../../include/class/TipsWindow.class.php:1116 msgid "Incorrect file" msgstr "Archivo incorrecto" -#: ../../include/class/TipsWindow.class.php:1100 +#: ../../include/class/TipsWindow.class.php:1120 msgid "Format image invalid" msgstr "Formato de imagen no válido" -#: ../../include/class/TipsWindow.class.php:1104 +#: ../../include/class/TipsWindow.class.php:1124 msgid "Image size too large" msgstr "Tamaño de imagen demasiado grande" @@ -48836,15 +49247,19 @@ msgstr "Tamaño de imagen demasiado grande" msgid "NetScan Custom" msgstr "Personalización NetScan" -#: ../../include/class/CustomNetScan.class.php:623 +#: ../../include/class/CustomNetScan.class.php:527 +msgid "The minimum recomended interval for Recon Task is 5 minutes" +msgstr "El intervalo mínimo recomendado para Recon Task es de 5 minutos." + +#: ../../include/class/CustomNetScan.class.php:622 msgid "Recon script" msgstr "Recon script" -#: ../../include/class/CustomNetScan.class.php:663 +#: ../../include/class/CustomNetScan.class.php:662 msgid "Explanation" msgstr "Explicación" -#: ../../include/class/CustomNetScan.class.php:679 +#: ../../include/class/CustomNetScan.class.php:678 msgid "macro_desc" msgstr "macro_desc" @@ -48918,7 +49333,7 @@ msgid "The modules is already added" msgstr "El módulo ya se ha añadido" #: ../../include/class/ModuleTemplates.class.php:1097 -#: ../../include/class/ModuleTemplates.class.php:1361 +#: ../../include/class/ModuleTemplates.class.php:1365 msgid "Add components" msgstr "Añadir componentes" @@ -48955,11 +49370,11 @@ msgstr "Eliminar este módulo" msgid "Do you want delete this module?" msgstr "¿Desea eliminar este módulo?" -#: ../../include/class/ModuleTemplates.class.php:1454 +#: ../../include/class/ModuleTemplates.class.php:1458 msgid "Do you want delete all templates?" msgstr "¿Desea eliminar todas las plantillas?" -#: ../../include/class/ModuleTemplates.class.php:1457 +#: ../../include/class/ModuleTemplates.class.php:1461 msgid "Do you want delete the selected templates?" msgstr "¿Desea eliminar las plantillas seleccionadas?" @@ -49679,6 +50094,107 @@ msgid "If something is not working as expected, look for this icon and report!" msgstr "" "Si algo no funciona como debería, !busque este icono e informe del problema¡" +#: ../../include/class/AgentDeployWizard.class.php:306 +msgid "Please note that all OS must be 64-bit based architecture" +msgstr "" +"Tenga en cuenta que todos los sistemas operativos deben tener una arquitectura " +"basada en 64-bits" + +#: ../../include/class/AgentDeployWizard.class.php:309 +msgid "Choose your OS" +msgstr "Seleccione su sistema operativo" + +#: ../../include/class/AgentDeployWizard.class.php:321 +#, php-format +msgid "" +"Use your %s Data Server IP address here. It must be possible to establish a " +"connection from the agent to port 41121/tcp of this address." +msgstr "" +"Utilice su dirección IP del servidor de datos %s aquí. La conexión desde el " +"agente al puerto 41121/tcp de esta dirección debe ser posible." + +#: ../../include/class/AgentDeployWizard.class.php:326 +msgid "Server address" +msgstr "Dirección del servidor" + +#: ../../include/class/AgentDeployWizard.class.php:379 +msgid "view the following instructions" +msgstr "Vea las siguientes instrucciones" + +#: ../../include/class/AgentDeployWizard.class.php:385 +msgid "If you need more information regarding agents" +msgstr "Si necesita más información sobre los agentes" + +#: ../../include/class/AgentDeployWizard.class.php:415 +msgid "Generate installer" +msgstr "Generar instalador" + +#: ../../include/class/AgentDeployWizard.class.php:436 +msgid "Linux agent" +msgstr "Agente Linux" + +#: ../../include/class/AgentDeployWizard.class.php:446 +msgid "" +"Run the following command in the shell of your Linux server to perform the " +"installation of the generated agent:" +msgstr "" +"Ejecute el siguiente comando en la Shell de su servidor Linux para llevar a " +"cabo la instalación del agente generado:" + +#: ../../include/class/AgentDeployWizard.class.php:449 +#: ../../include/class/AgentDeployWizard.class.php:491 +msgid "" +"Once installed, you must run the following command to start the software agent " +"service:" +msgstr "" +"Una vez instalado, ejecute el siguiente comando para iniciar el servicio del " +"agente software:" + +#: ../../include/class/AgentDeployWizard.class.php:458 +msgid "dependencies" +msgstr "dependencias" + +#: ../../include/class/AgentDeployWizard.class.php:460 +msgid "" +"For the correct operation of the Linux agent it is necessary that the server " +"has installed the following " +msgstr "" +"Para la correcta operación del agente Linux es necesario que el servidor " +"instale lo siguiente " + +#: ../../include/class/AgentDeployWizard.class.php:478 +msgid "Windows agent" +msgstr "Agente Windows" + +#: ../../include/class/AgentDeployWizard.class.php:488 +msgid "Run the following command in cmd.exe as an administrator:" +msgstr "Ejecute el siguiente comando en cmd.exe como administrador:" + +#: ../../include/class/AgentDeployWizard.class.php:510 +msgid "Mac agent" +msgstr "Agente Mac" + +#: ../../include/class/AgentDeployWizard.class.php:524 +msgid "" +"To complete the installation process, please perform a manual installation and " +"configure the server address to XXX and specify the group as XXX. Thank you " +"for your cooperation." +msgstr "" +"Para completar el proceso de instalación, lleve a cabo la instalación manual y " +"configure la dirección del servidor a XXX y especifique el grupo como XXX." + +#: ../../include/class/AgentDeployWizard.class.php:530 +msgid "Click to Download the agent" +msgstr "Haga click para descargar el agente" + +#: ../../include/class/AgentDeployWizard.class.php:551 +msgid "Change configuration" +msgstr "Cambiar configuración" + +#: ../../include/class/AgentDeployWizard.class.php:728 +msgid "Installer" +msgstr "Instalador" + #: ../../include/class/SatelliteCollection.class.php:306 msgid "Error adding collection" msgstr "Error al añadir colección" @@ -49826,12 +50342,12 @@ msgstr "Información del módulo" msgid "Current value" msgstr "Valor actual" -#: ../../include/class/AgentWizard.class.php:5716 +#: ../../include/class/AgentWizard.class.php:5712 #, php-format msgid "The operation '%s' is not permitted. Review for remote components." msgstr "La operación '%s' no está permitida. Revise los componentes remotos." -#: ../../include/class/AgentWizard.class.php:6182 +#: ../../include/class/AgentWizard.class.php:6178 msgid "Modules about to be created" msgstr "Módulos a punto de ser creados" @@ -50032,210 +50548,210 @@ msgstr "Excluir " msgid "Event Report Module" msgstr "Informe de eventos del módulo" -#: ../../include/functions_reporting.php:3335 +#: ../../include/functions_reporting.php:3344 msgid "Agent/Modules" msgstr "Agentes/módulos" -#: ../../include/functions_reporting.php:3432 +#: ../../include/functions_reporting.php:3441 msgid "Agent/Modules Status" msgstr "Estado del agente/módulos" -#: ../../include/functions_reporting.php:3581 +#: ../../include/functions_reporting.php:3590 msgid "Exception - Everything" msgstr "Excepción - Todo" -#: ../../include/functions_reporting.php:3587 +#: ../../include/functions_reporting.php:3596 #, php-format msgid "Exception - Modules over or equal to %s" msgstr "Excepción - Módulos por encima de o igual a %s" -#: ../../include/functions_reporting.php:3590 +#: ../../include/functions_reporting.php:3599 #, php-format msgid "Modules over or equal to %s" msgstr "Módulos por encima de o igual a %s" -#: ../../include/functions_reporting.php:3595 +#: ../../include/functions_reporting.php:3604 #, php-format msgid "Exception - Modules under or equal to %s" msgstr "Excepción - Módulos por debajo o igual a %s" -#: ../../include/functions_reporting.php:3598 +#: ../../include/functions_reporting.php:3607 #, php-format msgid "Modules under or equal to %s" msgstr "Módulos por debajo de o igual a %s" -#: ../../include/functions_reporting.php:3603 +#: ../../include/functions_reporting.php:3612 #, php-format msgid "Exception - Modules under %s" msgstr "Excepción - Módulos por debajo de %s" -#: ../../include/functions_reporting.php:3606 +#: ../../include/functions_reporting.php:3615 #, php-format msgid "Modules under %s" msgstr "Módulos por debajo de %s" -#: ../../include/functions_reporting.php:3611 +#: ../../include/functions_reporting.php:3620 #, php-format msgid "Exception - Modules over %s" msgstr "Excepción - Módulos por encima de %s" -#: ../../include/functions_reporting.php:3614 +#: ../../include/functions_reporting.php:3623 #, php-format msgid "Modules over %s" msgstr "Módulos por encima de %s" -#: ../../include/functions_reporting.php:3619 +#: ../../include/functions_reporting.php:3628 #, php-format msgid "Exception - Equal to %s" msgstr "Excepción - Igual a %s" -#: ../../include/functions_reporting.php:3622 +#: ../../include/functions_reporting.php:3631 #, php-format msgid "Equal to %s" msgstr "Igual a %s" -#: ../../include/functions_reporting.php:3627 +#: ../../include/functions_reporting.php:3636 #, php-format msgid "Exception - Not equal to %s" msgstr "Excepción - No igual a %s" -#: ../../include/functions_reporting.php:3630 +#: ../../include/functions_reporting.php:3639 #, php-format msgid "Not equal to %s" msgstr "No igual a %s" -#: ../../include/functions_reporting.php:3634 +#: ../../include/functions_reporting.php:3643 msgid "Exception - Modules at normal status" msgstr "Excepción - Módulos en estado normal" -#: ../../include/functions_reporting.php:3635 +#: ../../include/functions_reporting.php:3644 msgid "Modules at normal status" msgstr "Módulos en estado normal" -#: ../../include/functions_reporting.php:3639 +#: ../../include/functions_reporting.php:3648 msgid "Exception - Modules at critical or warning status" msgstr "Excepción - Módulos en estado crítico o de advertencia" -#: ../../include/functions_reporting.php:3640 +#: ../../include/functions_reporting.php:3649 msgid "Modules at critical or warning status" msgstr "Módulos en estado crítico o de advertencia" -#: ../../include/functions_reporting.php:3920 +#: ../../include/functions_reporting.php:3929 msgid "There are no Modules under those conditions." msgstr "No hay módulos bajo esas condiciones" -#: ../../include/functions_reporting.php:3924 +#: ../../include/functions_reporting.php:3933 #, php-format msgid "There are no Modules over or equal to %s." msgstr "No hay módulos por encima de o iguales a %s" -#: ../../include/functions_reporting.php:3928 +#: ../../include/functions_reporting.php:3937 #, php-format msgid "There are no Modules less or equal to %s." msgstr "No hay módulos por debajo de o iguales a %s" -#: ../../include/functions_reporting.php:3932 +#: ../../include/functions_reporting.php:3941 #, php-format msgid "There are no Modules less %s." msgstr "No hay módulos por debajo de %s" -#: ../../include/functions_reporting.php:3936 +#: ../../include/functions_reporting.php:3945 #, php-format msgid "There are no Modules over %s." msgstr "No hay módulos por encima de %s" -#: ../../include/functions_reporting.php:3940 +#: ../../include/functions_reporting.php:3949 #, php-format msgid "There are no Modules equal to %s" msgstr "No hay módulos iguales a %s" -#: ../../include/functions_reporting.php:3944 +#: ../../include/functions_reporting.php:3953 #, php-format msgid "There are no Modules not equal to %s" msgstr "No hay módulos no iguales a %s" -#: ../../include/functions_reporting.php:3948 +#: ../../include/functions_reporting.php:3957 msgid "There are no Modules normal status" msgstr "No hay módulos en estado normal" -#: ../../include/functions_reporting.php:3952 +#: ../../include/functions_reporting.php:3961 msgid "There are no Modules at critial or warning status" msgstr "No hay módulos en estado crítico o de advertencia" -#: ../../include/functions_reporting.php:4380 +#: ../../include/functions_reporting.php:4389 msgid "Event Report Agent" msgstr "Informe de eventos de agentes" -#: ../../include/functions_reporting.php:4799 +#: ../../include/functions_reporting.php:4808 msgid "Database Serialized" msgstr "Base de datos serializada" -#: ../../include/functions_reporting.php:4995 +#: ../../include/functions_reporting.php:5004 msgid "Last Value" msgstr "Último valor" -#: ../../include/functions_reporting.php:5045 -#: ../../include/functions_reporting.php:5088 +#: ../../include/functions_reporting.php:5054 +#: ../../include/functions_reporting.php:5097 msgid "No data to display within the selected interval" msgstr "No hay datos en el intervalo seleccionado" -#: ../../include/functions_reporting.php:5319 +#: ../../include/functions_reporting.php:5328 msgid "Network interfaces report" msgstr "Informe de las interfaces de red" -#: ../../include/functions_reporting.php:5413 +#: ../../include/functions_reporting.php:5422 msgid "Custom render report" msgstr "Informe de representación personalizado" -#: ../../include/functions_reporting.php:5453 -#: ../../include/functions_reporting.php:5479 +#: ../../include/functions_reporting.php:5462 +#: ../../include/functions_reporting.php:5488 msgid "" "This query is insecure, it could apply unwanted modiffications on the schema" msgstr "" "Esta consulta es insegura, podría aplicar modificationes no deseadas en el " "esquema" -#: ../../include/functions_reporting.php:5658 +#: ../../include/functions_reporting.php:5667 msgid "The group has no agents or none of the agents has any network interface" msgstr "El grupo no tiene agentes o los agentes no tienen interfaz de red." -#: ../../include/functions_reporting.php:5683 +#: ../../include/functions_reporting.php:5692 msgid "bytes/s" msgstr "bytes/s" -#: ../../include/functions_reporting.php:6350 +#: ../../include/functions_reporting.php:6359 msgid "SQL Graph Vertical Bars" msgstr "Gráfico de barras verticales SQL" -#: ../../include/functions_reporting.php:6354 +#: ../../include/functions_reporting.php:6363 msgid "SQL Graph Horizontal Bars" msgstr "Gráfico de barras horizontales SQL" -#: ../../include/functions_reporting.php:6358 +#: ../../include/functions_reporting.php:6367 msgid "SQL Graph Pie" msgstr "Gráfico SQL circular" -#: ../../include/functions_reporting.php:6585 +#: ../../include/functions_reporting.php:6594 msgid "Netflow Area" msgstr "Área de Netflow" -#: ../../include/functions_reporting.php:6589 +#: ../../include/functions_reporting.php:6598 msgid "Netflow Summary" msgstr "Resumen de Netflow" -#: ../../include/functions_reporting.php:6593 +#: ../../include/functions_reporting.php:6602 msgid "Netflow Data" msgstr "Datos de Netflow" -#: ../../include/functions_reporting.php:6601 +#: ../../include/functions_reporting.php:6610 msgid "Unknown report" msgstr "Informe desconocido" -#: ../../include/functions_reporting.php:6695 +#: ../../include/functions_reporting.php:6704 msgid "Prediction Date" msgstr "Fecha de predicción" -#: ../../include/functions_reporting.php:7705 +#: ../../include/functions_reporting.php:7714 msgid "" "Illegal query: Due security restrictions, there are some tokens or words you " "cannot use: *, delete, drop, alter, modify, password, pass, insert or update." @@ -50244,226 +50760,226 @@ msgstr "" "palabras que no se puede usar: *, borrar, eliminar, soltar, alterar, " "modificar, contraseña, pass, insertar o actualizar." -#: ../../include/functions_reporting.php:9118 -#: ../../include/functions_reporting.php:9836 +#: ../../include/functions_reporting.php:9127 +#: ../../include/functions_reporting.php:9845 msgid "No Address" msgstr "Sin dirección" -#: ../../include/functions_reporting.php:10135 +#: ../../include/functions_reporting.php:10144 msgid "" "The monitor have no data in this range of dates or monitor type is not numeric" msgstr "" "El monitor no tiene datos en este rango de fecha o el tipo de monitor no es " "numérico." -#: ../../include/functions_reporting.php:10153 +#: ../../include/functions_reporting.php:10162 msgid "The monitor type is not numeric" msgstr "El tipo de monitor no es numérico." -#: ../../include/functions_reporting.php:10579 +#: ../../include/functions_reporting.php:10588 msgid "Maximum" msgstr "Máximo" -#: ../../include/functions_reporting.php:10657 +#: ../../include/functions_reporting.php:10666 msgid "Automatic combined graph" msgstr "Gráfica combinada automática" -#: ../../include/functions_reporting.php:12079 -#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12088 +#: ../../include/functions_reporting.php:12112 +#: ../../include/functions_reporting.php:12151 msgid "Server health" msgstr "Estado del servidor" -#: ../../include/functions_reporting.php:12079 +#: ../../include/functions_reporting.php:12088 #, php-format msgid "%d Downed servers" msgstr "%d servidores caídos" -#: ../../include/functions_reporting.php:12084 -#: ../../include/functions_reporting.php:12107 +#: ../../include/functions_reporting.php:12093 +#: ../../include/functions_reporting.php:12116 +#: ../../include/functions_reporting.php:12157 msgid "Monitor health" msgstr "Estado del monitor" -#: ../../include/functions_reporting.php:12084 +#: ../../include/functions_reporting.php:12093 #, php-format msgid "%d Not Normal monitors" msgstr "%d monitores fuera de la normalidad" -#: ../../include/functions_reporting.php:12084 -#: ../../include/functions_reporting.php:12108 +#: ../../include/functions_reporting.php:12093 +#: ../../include/functions_reporting.php:12117 msgid "of monitors up" msgstr "de monitores funcionando" -#: ../../include/functions_reporting.php:12089 -msgid "Module sanityX" -msgstr "Módulo sanityX" +#: ../../include/functions_reporting.php:12098 +#: ../../include/functions_reporting.php:12120 +#: ../../include/functions_reporting.php:12163 +msgid "Module sanity" +msgstr "Estado de los módulos" -#: ../../include/functions_reporting.php:12089 +#: ../../include/functions_reporting.php:12098 #, php-format msgid "%d Not inited monitors" msgstr "%d monitores sin iniciar" -#: ../../include/functions_reporting.php:12089 -#: ../../include/functions_reporting.php:12112 +#: ../../include/functions_reporting.php:12098 +#: ../../include/functions_reporting.php:12121 msgid "of total modules inited" msgstr "del total de módulos iniciados" -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:13202 -#: ../../include/functions_reporting.php:13212 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:13275 +#: ../../include/functions_reporting.php:13285 #, php-format msgid "%d Fired alerts" msgstr "%d alertas disparadas" -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:12116 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12125 msgid "of defined alerts not fired" msgstr "de alertas definidas no disparadas" -#: ../../include/functions_reporting.php:12111 -msgid "Module sanity" -msgstr "Estado de los módulos" - -#: ../../include/functions_reporting.php:12184 -#: ../../include/functions_groups.php:2733 +#: ../../include/functions_reporting.php:12257 +#: ../../include/functions_groups.php:2758 msgid "Defined and fired alerts" msgstr "Alertas definidas y disparadas" -#: ../../include/functions_reporting.php:12363 +#: ../../include/functions_reporting.php:12436 msgid "Defined users" msgstr "Usuarios definidos" -#: ../../include/functions_reporting.php:13059 +#: ../../include/functions_reporting.php:13132 msgid "Agent without data" msgstr "Agente sin datos" -#: ../../include/functions_reporting.php:13198 +#: ../../include/functions_reporting.php:13271 #, php-format msgid "%d Normal modules" msgstr "%d módulos normales" -#: ../../include/functions_reporting.php:13199 +#: ../../include/functions_reporting.php:13272 #, php-format msgid "%d Critical modules" msgstr "%d módulos críticos" -#: ../../include/functions_reporting.php:13200 +#: ../../include/functions_reporting.php:13273 #, php-format msgid "%d Warning modules" msgstr "%d módulos en estado de advertencia" -#: ../../include/functions_reporting.php:13201 +#: ../../include/functions_reporting.php:13274 #, php-format msgid "%d Unknown modules" msgstr "%d módulos desconocidos" -#: ../../include/functions_reporting.php:13206 +#: ../../include/functions_reporting.php:13279 #, php-format msgid "%d Total agents" msgstr "%d del total de agentes" -#: ../../include/functions_reporting.php:13207 +#: ../../include/functions_reporting.php:13280 #, php-format msgid "%d Normal agents" msgstr "%d agentes normales" -#: ../../include/functions_reporting.php:13208 +#: ../../include/functions_reporting.php:13281 #, php-format msgid "%d Critical agents" msgstr "%d agentes en estado crítico" -#: ../../include/functions_reporting.php:13209 +#: ../../include/functions_reporting.php:13282 #, php-format msgid "%d Warning agents" msgstr "%d agentes en estado de advertencia" -#: ../../include/functions_reporting.php:13210 +#: ../../include/functions_reporting.php:13283 #, php-format msgid "%d Unknown agents" msgstr "%d agentes desconocidos" -#: ../../include/functions_reporting.php:13211 +#: ../../include/functions_reporting.php:13284 #, php-format msgid "%d not init agents" msgstr "%d agentes no iniciados" -#: ../../include/functions_reporting.php:14639 +#: ../../include/functions_reporting.php:14712 msgid "Total running modules" msgstr "Total de módulos en ejecución" -#: ../../include/functions_reporting.php:14642 -#: ../../include/functions_reporting.php:14657 -#: ../../include/functions_reporting.php:14669 -#: ../../include/functions_reporting.php:14687 -#: ../../include/functions_reporting.php:14699 -#: ../../include/functions_reporting.php:14711 -#: ../../include/functions_reporting.php:14723 +#: ../../include/functions_reporting.php:14715 +#: ../../include/functions_reporting.php:14730 +#: ../../include/functions_reporting.php:14742 +#: ../../include/functions_reporting.php:14760 +#: ../../include/functions_reporting.php:14772 +#: ../../include/functions_reporting.php:14784 +#: ../../include/functions_reporting.php:14796 msgid "Ratio" msgstr "Proporción" -#: ../../include/functions_reporting.php:14642 -#: ../../include/functions_reporting.php:14657 -#: ../../include/functions_reporting.php:14669 -#: ../../include/functions_reporting.php:14687 -#: ../../include/functions_reporting.php:14699 -#: ../../include/functions_reporting.php:14711 -#: ../../include/functions_reporting.php:14723 +#: ../../include/functions_reporting.php:14715 +#: ../../include/functions_reporting.php:14730 +#: ../../include/functions_reporting.php:14742 +#: ../../include/functions_reporting.php:14760 +#: ../../include/functions_reporting.php:14772 +#: ../../include/functions_reporting.php:14784 +#: ../../include/functions_reporting.php:14796 msgid "Modules by second" msgstr "Módulos por segundo" -#: ../../include/functions_reporting.php:14654 +#: ../../include/functions_reporting.php:14727 msgid "Local modules" msgstr "Módulos locales" -#: ../../include/functions_reporting.php:14664 +#: ../../include/functions_reporting.php:14737 msgid "Network modules" msgstr "Módulos de red" -#: ../../include/functions_reporting.php:14683 +#: ../../include/functions_reporting.php:14756 msgid "Plugin modules" msgstr "Módulos de plugin" -#: ../../include/functions_reporting.php:14695 +#: ../../include/functions_reporting.php:14768 msgid "Prediction modules" msgstr "Módulos de predicción" -#: ../../include/functions_reporting.php:14707 +#: ../../include/functions_reporting.php:14780 msgid "WMI modules" msgstr "Módulos WMI" -#: ../../include/functions_reporting.php:14719 +#: ../../include/functions_reporting.php:14792 msgid "Web modules" msgstr "Módulos web" -#: ../../include/functions_reporting.php:14757 +#: ../../include/functions_reporting.php:14830 #: ../../include/lib/Dashboard/Widgets/tactical.php:287 msgid "Server performance" msgstr "Rendimiento del servidor" -#: ../../include/functions_reporting.php:14870 +#: ../../include/functions_reporting.php:14943 msgid "Start condition" msgstr "Condición de inicio" -#: ../../include/functions_reporting.php:14870 +#: ../../include/functions_reporting.php:14943 msgid "Stop condition" msgstr "Condición de detención" -#: ../../include/functions_reporting.php:14880 +#: ../../include/functions_reporting.php:14953 msgid "Weekly:" msgstr "Semanalmente:" -#: ../../include/functions_reporting.php:14922 +#: ../../include/functions_reporting.php:14995 msgid "Monthly:" msgstr "Mensual:" -#: ../../include/functions_reporting.php:15473 +#: ../../include/functions_reporting.php:15546 msgid "Module Histogram Graph" msgstr "Gráfico de histograma del módulo" -#: ../../include/functions_reporting.php:15836 +#: ../../include/functions_reporting.php:15913 msgid "Attached to this email there's a PDF file of the" msgstr "En este correo encontrarás en adjunto un archivo del" -#: ../../include/functions_reporting.php:15837 +#: ../../include/functions_reporting.php:15914 msgid "report" msgstr "informe" @@ -50521,84 +51037,84 @@ msgstr "Directorio creado" msgid "Something gone wrong creating directory" msgstr "Algo salió mal al crear un directorio" -#: ../../include/functions_filemanager.php:541 -#: ../../include/functions_filemanager.php:821 +#: ../../include/functions_filemanager.php:553 +#: ../../include/functions_filemanager.php:838 msgid "Create a Directory" msgstr "Crear directorio" -#: ../../include/functions_filemanager.php:545 -#: ../../include/functions_filemanager.php:832 -#: ../../include/functions_filemanager.php:835 +#: ../../include/functions_filemanager.php:559 +#: ../../include/functions_filemanager.php:850 +#: ../../include/functions_filemanager.php:853 msgid "Create File" msgstr "Crear archivo" -#: ../../include/functions_filemanager.php:549 -#: ../../include/functions_filemanager.php:846 -#: ../../include/functions_filemanager.php:849 +#: ../../include/functions_filemanager.php:564 +#: ../../include/functions_filemanager.php:864 +#: ../../include/functions_filemanager.php:867 msgid "Upload Files" msgstr "Subir archivos" -#: ../../include/functions_filemanager.php:583 -#: ../../include/functions_filemanager.php:793 +#: ../../include/functions_filemanager.php:598 +#: ../../include/functions_filemanager.php:808 msgid "Real path" msgstr "Ruta real" -#: ../../include/functions_filemanager.php:618 +#: ../../include/functions_filemanager.php:633 #, php-format msgid "Directory %s doesn't exist!" msgstr "El directorio %s no existe!" -#: ../../include/functions_filemanager.php:663 +#: ../../include/functions_filemanager.php:678 msgid "Parent directory" msgstr "Directorio padre" -#: ../../include/functions_filemanager.php:677 +#: ../../include/functions_filemanager.php:692 msgid "Directory" msgstr "Directorio" -#: ../../include/functions_filemanager.php:685 +#: ../../include/functions_filemanager.php:700 msgid "Compressed file" msgstr "Archivo comprimido" -#: ../../include/functions_filemanager.php:689 -#: ../../include/functions_filemanager.php:696 +#: ../../include/functions_filemanager.php:704 +#: ../../include/functions_filemanager.php:711 msgid "Text file" msgstr "Archivo de texto" -#: ../../include/functions_filemanager.php:729 +#: ../../include/functions_filemanager.php:744 msgid "This file could be executed by any user" msgstr "Cualquier usuario podría ejecutar este archivo" -#: ../../include/functions_filemanager.php:730 +#: ../../include/functions_filemanager.php:745 msgid "Make sure it can't perform dangerous tasks" msgstr "Asegúrate de que no puede desempeñar tareas peligrosas" -#: ../../include/functions_filemanager.php:804 +#: ../../include/functions_filemanager.php:819 msgid "No files or directories to show." msgstr "No hay archivos o directorios a mostrar." -#: ../../include/functions_filemanager.php:818 -#: ../../include/functions_filemanager.php:940 +#: ../../include/functions_filemanager.php:835 +#: ../../include/functions_filemanager.php:961 msgid "Create directory" msgstr "Crear directorio" -#: ../../include/functions_filemanager.php:880 +#: ../../include/functions_filemanager.php:900 msgid "The zip upload in this dir, easy to upload multiple files." msgstr "Subir archivo zip a este directorio, útil para subir múltiples archivos." -#: ../../include/functions_filemanager.php:882 +#: ../../include/functions_filemanager.php:902 msgid "Decompress" msgstr "Descomprimir" -#: ../../include/functions_filemanager.php:954 +#: ../../include/functions_filemanager.php:976 msgid "Create file" msgstr "Crear archivo" -#: ../../include/functions_filemanager.php:968 +#: ../../include/functions_filemanager.php:990 msgid "Upload file/s" msgstr "Subir archivo/s" -#: ../../include/functions_filemanager.php:999 +#: ../../include/functions_filemanager.php:1021 msgid "The directory is read-only" msgstr "Este directorio es solo de lectura" @@ -50611,15 +51127,15 @@ msgstr "Haz clic aquí para abrir una ventana popup con la etiqueta URL" msgid "Copy of %s" msgstr "Copia de %s" -#: ../../include/lib/Dashboard/Manager.php:1007 +#: ../../include/lib/Dashboard/Manager.php:1011 msgid "Error create or update dashboard" msgstr "Error al crear o actualizar el panel de control" -#: ../../include/lib/Dashboard/Manager.php:1479 +#: ../../include/lib/Dashboard/Manager.php:1483 msgid "Icon image dashboard" msgstr "Panel de control de imágenes de iconos" -#: ../../include/lib/Dashboard/Widget.php:468 +#: ../../include/lib/Dashboard/Widget.php:469 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:263 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:347 #: ../../include/lib/Dashboard/Widgets/reports.php:336 @@ -50627,28 +51143,28 @@ msgstr "Panel de control de imágenes de iconos" msgid "Failed to connect to node %d" msgstr "No se ha podido conectar con el nodo %d" -#: ../../include/lib/Dashboard/Widget.php:483 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:621 +#: ../../include/lib/Dashboard/Widget.php:484 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:634 msgid "Please configure this widget before usage" msgstr "Por favor, configura este widget antes de usarlo" -#: ../../include/lib/Dashboard/Widget.php:491 +#: ../../include/lib/Dashboard/Widget.php:492 #: ../../include/lib/Dashboard/Widgets/maps_status.php:390 #: ../../include/lib/Dashboard/Widgets/events_list.php:561 msgid "Widget cannot be loaded" msgstr "No se puede cargar el widget" -#: ../../include/lib/Dashboard/Widget.php:491 +#: ../../include/lib/Dashboard/Widget.php:492 #: ../../include/lib/Dashboard/Widgets/maps_status.php:390 msgid "Please, configure the widget again to recover it" msgstr "Por favor, configúralo de nuevo" #: ../../include/lib/Dashboard/Widgets/groups_status.php:158 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:510 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:533 msgid "General group status" msgstr "Estado general de grupo" -#: ../../include/lib/Dashboard/Widgets/groups_status.php:464 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:477 msgid "Not agents in this group" msgstr "No hay agentes en este grupo" @@ -50678,7 +51194,7 @@ msgid "No modules in selected groups" msgstr "No hay módulos en los grupos seleccionados" #: ../../include/lib/Dashboard/Widgets/heatmap.php:173 -#: ../../include/lib/Dashboard/Widgets/heatmap.php:385 +#: ../../include/lib/Dashboard/Widgets/heatmap.php:386 msgid "Heatmap" msgstr "Mapa de calor" @@ -50715,7 +51231,7 @@ msgstr "Si no, el diseño es vertical" #: ../../include/lib/Dashboard/Widgets/sla_percent.php:471 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:482 #: ../../include/lib/Dashboard/Widgets/events_list.php:528 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:646 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:659 msgid "You don't have access" msgstr "No tienes acceso" @@ -50737,13 +51253,14 @@ msgstr "Color de fuente" #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:280 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:361 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:464 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:443 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:256 msgid "Agent / module" msgstr "Agente/módulo" #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:457 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:552 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:465 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:466 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:699 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:408 msgid "Not found modules" @@ -50776,7 +51293,7 @@ msgid "Maps" msgstr "Mapas" #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:175 -#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:709 +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:711 msgid "Avg|Sum|Max|Min Module Data" msgstr "Datos de módulos Promedio| Suma| Máx.| Mín." @@ -50862,7 +51379,7 @@ msgstr "Gracias por usar %s." #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:174 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:199 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:172 -#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:537 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:545 msgid "Color tabs modules" msgstr "Color de las pestañas de módulos" @@ -50946,21 +51463,21 @@ msgid "Zoom level" msgstr "Nivel de zoom" #: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:376 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:417 msgid "Triggered alerts report" msgstr "Informe de alertas disparadas" -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:349 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:390 msgid "Not alert fired" msgstr "No hay alertas disparadas" -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:358 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:399 #: ../../include/lib/Dashboard/Widgets/events_list.php:521 msgid "You must select some group" msgstr "Seleccione un grupo" #: ../../include/lib/Dashboard/Widgets/events_list.php:175 -#: ../../include/lib/Dashboard/Widgets/events_list.php:715 +#: ../../include/lib/Dashboard/Widgets/events_list.php:722 msgid "List of latest events" msgstr "Lista de últimos eventos" @@ -50970,16 +51487,16 @@ msgstr "Filtros personalizados" #: ../../include/lib/Dashboard/Widgets/events_list.php:383 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:299 -#: ../../include/functions_events.php:3261 -#: ../../include/functions_events.php:3267 -#: ../../include/functions_events.php:3289 +#: ../../include/functions_events.php:3266 +#: ../../include/functions_events.php:3272 +#: ../../include/functions_events.php:3294 msgid "All event" msgstr "Todos los eventos" #: ../../include/lib/Dashboard/Widgets/events_list.php:384 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:300 -#: ../../include/functions_events.php:3263 -#: ../../include/functions_events.php:3297 +#: ../../include/functions_events.php:3268 +#: ../../include/functions_events.php:3302 msgid "Only validated" msgstr "Solo eventos validados" @@ -50992,6 +51509,34 @@ msgstr "Solo pendientes" msgid "Please, event filter has been removed." msgstr "Se ha eliminado el filtro de eventos." +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:420 +msgid "Color chart" +msgstr "Tabla de colores" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:431 +msgid "Show label" +msgstr "Mostrar etiqueta" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:458 +msgid "Label size in px" +msgstr "Tamaño de la etiqueta en píxeles" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:470 +msgid "Color label" +msgstr "Color de la etiqueta" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:481 +msgid "Show Value" +msgstr "Mostrar el valor" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:501 +msgid "Value size in px" +msgstr "Valor del tamaño en píxeles" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:513 +msgid "Color value" +msgstr "Valor del color" + #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:172 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:626 msgid "Event cardboard" @@ -51128,12 +51673,12 @@ msgid "Missing Service id" msgstr "Falta el ID de servicio" #: ../../include/lib/Dashboard/Widgets/agent_module.php:173 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:766 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:779 msgid "Agent/Module View" msgstr "Vista de Agente/Módulo" #: ../../include/lib/Dashboard/Widgets/agent_module.php:250 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:454 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:459 msgid "Filter modules" msgstr "Filtrar módulos" @@ -51187,23 +51732,23 @@ msgstr "crítico" msgid "unknown" msgstr "desconocido" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:354 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:357 msgid "Type tree" msgstr "Tipo de árbol" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:386 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:389 msgid "Open all groups" msgstr "Abrir todos los grupos" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:407 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:411 msgid "Agents status" msgstr "Estado de agente" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:442 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:447 msgid "Modules status" msgstr "Estado de módulos" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:508 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:513 #, php-format msgid "" "The user doesn't have permission to read agents. Please contact with your %s " @@ -51212,38 +51757,38 @@ msgstr "" "El usuario no tiene permisos para leer agentes. Póngase en contacto con su " "administrador de %s." -#: ../../include/lib/Dashboard/Widgets/tree_view.php:654 -#: ../../operation/tree.php:471 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:647 +#: ../../operation/tree.php:473 msgid "Operating systems found" msgstr "Sistemas operativos encontrados" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:658 -#: ../../operation/tree.php:474 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:651 +#: ../../operation/tree.php:476 msgid "Tags found" msgstr "Etiquetas encontradas" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:662 -#: ../../operation/tree.php:477 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:655 +#: ../../operation/tree.php:479 msgid "Module Groups found" msgstr "Grupos de módulos encontrados" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:666 -#: ../../operation/tree.php:480 ../../operation/search_main.php:56 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:659 +#: ../../operation/tree.php:482 ../../operation/search_main.php:56 msgid "Modules found" msgstr "Módulos encontrados" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:671 -#: ../../operation/tree.php:484 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:664 +#: ../../operation/tree.php:486 msgid "Groups found" msgstr "Grupos encontrados" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:732 -#: ../../operation/tree.php:536 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:725 +#: ../../operation/tree.php:538 msgid "Not normal agents" msgstr "Agentes en estado anómalo" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:733 -#: ../../operation/tree.php:537 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:726 +#: ../../operation/tree.php:539 msgid "Not normal modules" msgstr "Módulos en estado anómalo" @@ -51261,10 +51806,6 @@ msgstr "" "mayúsculas y minúsculas. Por ejemplo: .*usage.* coincidirá con: cpu_usage o " "vram usage." -#: ../../include/lib/Dashboard/Widgets/top_n.php:280 -msgid "Avg." -msgstr "Media" - #: ../../include/lib/Dashboard/Widgets/top_n.php:456 msgid "There are no agents/modules found matching filter set" msgstr "" @@ -51329,11 +51870,11 @@ msgstr "Activo-Pasivo" msgid "Cluster already defined, please use another name." msgstr "Este clúster ya ha sido definido, use otro nombre." -#: ../../include/lib/ClusterViewer/ClusterWizard.php:782 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:783 msgid "Cluster name" msgstr "Nombre del clúster" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:783 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:784 msgid "" "An agent with the same name of the cluster will be created, as well a special " "service with the same name" @@ -51341,11 +51882,11 @@ msgstr "" "Se creará un agente con el mismo nombre que el clúster y un servicio especial " "con el mismo nombre." -#: ../../include/lib/ClusterViewer/ClusterWizard.php:797 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:798 msgid "Cluster type" msgstr "Tipo de clúster" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:798 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:799 msgid "" "AA is a cluster where all members are working. In AP cluster only master " "member is working" @@ -51353,48 +51894,48 @@ msgstr "" "AA es un clúster donde funcionan todos los miembros. En un clúster AP solo " "trabaja el miembro maestro." -#: ../../include/lib/ClusterViewer/ClusterWizard.php:806 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:807 msgid "Active - Active" msgstr "Activo - Activo" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:807 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:808 msgid "Active - Pasive" msgstr "Activo - Pasivo" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:827 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:828 msgid "Target cluster agent will be stored under this group" msgstr "El agente del clúster objetivo se guardará bajo este grupo" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:844 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:845 msgid "" "You must select a Prediction Server to perform all cluster status calculations" msgstr "" "Debe seleccionar un Servidor de Predicción para llevar a cabo todos los " "cálculos de estado de clúster" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1041 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1042 msgid "critical if" msgstr "crítico si" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1050 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1073 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1051 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1074 #, php-format msgid "% of balanced modules are down (equal or greater)." msgstr "% de los módulos equilibrados están caídos (igual o mayor)." -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1089 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1090 msgid "Please, set thresholds for all active-passive modules" msgstr "Establezca umbrales para todos los módulos activo-pasivo" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1100 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1101 msgid "Please, set thresholds for all active-active modules" msgstr "Establezca umbrales para todos los módulos activo-activo" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1205 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1206 msgid "Please, check all active-passive modules critical for this cluster" msgstr "Compruebe todos los módulos activo-pasivo críticos para este clúster" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1207 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1208 msgid "" "If a critical balanced module is going to critical status, then cluster will " "be critical." @@ -51402,7 +51943,7 @@ msgstr "" "Si un módulo equilibrado crítico pasa a estado crítico, el clúster entrará en " "estado crítico." -#: ../../include/lib/Core/DBMaintainer.php:174 +#: ../../include/lib/Core/DBMaintainer.php:177 #, php-format msgid "Connection problems: %s" msgstr "Problemas de conexión: %s" @@ -51519,52 +52060,52 @@ msgid "Collapse the tree" msgstr "Plegar el árbol" #: ../../include/functions_snmp_browser.php:1115 -#: ../../include/functions_snmp_browser.php:1170 +#: ../../include/functions_snmp_browser.php:1178 msgid "Search options" msgstr "Opciones de búsqueda" -#: ../../include/functions_snmp_browser.php:1160 +#: ../../include/functions_snmp_browser.php:1168 msgid "SNMP v3 options" msgstr "Opciones SNMP v3" -#: ../../include/functions_snmp_browser.php:1192 +#: ../../include/functions_snmp_browser.php:1200 msgid "Search matches" msgstr "Buscar coincidencias" -#: ../../include/functions_snmp_browser.php:1208 +#: ../../include/functions_snmp_browser.php:1216 msgid "Create agent modules" msgstr "Crear módulos de agentes" -#: ../../include/functions_snmp_browser.php:1217 +#: ../../include/functions_snmp_browser.php:1225 msgid "Create policy modules" msgstr "Crear módulos de políticas" -#: ../../include/functions_snmp_browser.php:1226 +#: ../../include/functions_snmp_browser.php:1234 msgid "Create network components" msgstr "Crear componentes de red" -#: ../../include/functions_snmp_browser.php:1656 +#: ../../include/functions_snmp_browser.php:1665 msgid " available" msgstr " disponible" -#: ../../include/functions_snmp_browser.php:1663 +#: ../../include/functions_snmp_browser.php:1672 msgid " to apply" msgstr " a aplicar" -#: ../../include/functions_snmp_browser.php:1668 -#: ../../operation/snmpconsole/snmp_browser.php:535 +#: ../../include/functions_snmp_browser.php:1677 +#: ../../operation/snmpconsole/snmp_browser.php:540 msgid "Create new policy" msgstr "Crear nueva política" -#: ../../include/functions_snmp_browser.php:1723 +#: ../../include/functions_snmp_browser.php:1732 msgid "Undo" msgstr "Deshacer" -#: ../../include/chart_generator.php:117 ../../operation/agentes/stat_win.php:51 +#: ../../include/chart_generator.php:122 ../../operation/agentes/stat_win.php:51 #: ../../operation/agentes/stat_win.php:176 #: ../../operation/agentes/realtime_win.php:51 #: ../../operation/agentes/interface_traffic_graph_win.php:54 -#: ../../operation/inventory/inventory.php:369 +#: ../../operation/inventory/inventory.php:371 msgid "There was a problem connecting with the node" msgstr "Error al conectar con el nodo" @@ -51603,7 +52144,8 @@ msgid "GIS map layers" msgstr "Mapas GIS adicionales" #: ../../include/functions_groups.php:251 -#: ../../operation/agentes/pandora_networkmap.view.php:2413 +#: ../../operation/agentes/networkmap.dinamic.php:150 +#: ../../operation/agentes/pandora_networkmap.view.php:2414 msgid "Network maps" msgstr "Mapas de red" @@ -51637,158 +52179,152 @@ msgstr "No se ha podido conectar: %s" msgid "Latest events" msgstr "Últimos eventos" -#: ../../include/functions_events.php:2910 +#: ../../include/functions_events.php:2915 msgid "Going to unknown" msgstr "Cambiando a estado desconocido" -#: ../../include/functions_events.php:2918 +#: ../../include/functions_events.php:2923 msgid "Alert manually validated" msgstr "Alerta validada manualmente" -#: ../../include/functions_events.php:2922 +#: ../../include/functions_events.php:2927 msgid "Going from critical to warning" msgstr "Cambiando de crítico a advertencia" -#: ../../include/functions_events.php:2928 +#: ../../include/functions_events.php:2933 msgid "Going up to critical state" msgstr "Entrando en estado crítico" -#: ../../include/functions_events.php:2934 +#: ../../include/functions_events.php:2939 msgid "Going up to normal state" msgstr "Subiendo a estado normal" -#: ../../include/functions_events.php:2938 +#: ../../include/functions_events.php:2943 msgid "Going down from normal to warning" msgstr "Cambiando de normal a advertencia" -#: ../../include/functions_events.php:2950 +#: ../../include/functions_events.php:2955 msgid "Discovery server detected a new host" msgstr "El servidor Discovery ha detectado un host nuevo" -#: ../../include/functions_events.php:2954 +#: ../../include/functions_events.php:2959 msgid "New agent created" msgstr "Agente nuevo creado" -#: ../../include/functions_events.php:2971 +#: ../../include/functions_events.php:2976 msgid "Unknown type:" msgstr "Tipo desconocido:" -#: ../../include/functions_events.php:3262 -#: ../../include/functions_events.php:3293 +#: ../../include/functions_events.php:3267 +#: ../../include/functions_events.php:3298 msgid "Only new" msgstr "Solo nuevos" -#: ../../include/functions_events.php:3264 -#: ../../include/functions_events.php:3301 +#: ../../include/functions_events.php:3269 +#: ../../include/functions_events.php:3306 msgid "Only in process" msgstr "Solo en proceso" -#: ../../include/functions_events.php:3265 -#: ../../include/functions_events.php:3305 +#: ../../include/functions_events.php:3270 +#: ../../include/functions_events.php:3310 msgid "Only not validated" msgstr "Solo no validados" -#: ../../include/functions_events.php:3270 -#: ../../include/functions_events.php:3543 -#: ../../include/functions_events.php:3552 -msgid "In process" -msgstr "En proceso" - -#: ../../include/functions_events.php:3271 +#: ../../include/functions_events.php:3276 msgid "Not Validated" msgstr "No validado" -#: ../../include/functions_events.php:3463 +#: ../../include/functions_events.php:3468 msgid "Change owner" msgstr "Cambiar propietario" -#: ../../include/functions_events.php:3528 +#: ../../include/functions_events.php:3533 msgid "Change status" msgstr "Cambiar estado" -#: ../../include/functions_events.php:3625 -#: ../../include/functions_events.php:5361 +#: ../../include/functions_events.php:3630 +#: ../../include/functions_events.php:5366 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:330 msgid "Add comment" msgstr "Añadir comentario" -#: ../../include/functions_events.php:3648 -#: ../../include/functions_events.php:3652 ../../operation/events/events.php:978 +#: ../../include/functions_events.php:3653 +#: ../../include/functions_events.php:3657 ../../operation/events/events.php:983 msgid "Delete event" msgstr "Eliminar evento" -#: ../../include/functions_events.php:3675 +#: ../../include/functions_events.php:3680 msgid "Custom responses" msgstr "Respuesta personalizada" -#: ../../include/functions_events.php:4281 +#: ../../include/functions_events.php:4286 msgid "Extended information" msgstr "Información extendida" -#: ../../include/functions_events.php:4312 +#: ../../include/functions_events.php:4317 msgid "There was an error connecting to the node" msgstr "Error al conectarse al nodo" -#: ../../include/functions_events.php:4333 +#: ../../include/functions_events.php:4338 msgid "Agent details" msgstr "Detalles del agente" -#: ../../include/functions_events.php:4347 +#: ../../include/functions_events.php:4352 msgid "This agent belongs to metaconsole, is not possible display it" msgstr "Este agente pertenece a la Metaconsola, no es posible mostrarlo" -#: ../../include/functions_events.php:4442 +#: ../../include/functions_events.php:4447 msgid "View custom fields" msgstr "Ver campos personalizados" -#: ../../include/functions_events.php:4465 +#: ../../include/functions_events.php:4470 msgid "Module details" msgstr "Detalles del módulo" -#: ../../include/functions_events.php:4481 +#: ../../include/functions_events.php:4486 msgid "No assigned" msgstr "No asignado" -#: ../../include/functions_events.php:4562 -#: ../../include/functions_events.php:4571 +#: ../../include/functions_events.php:4567 +#: ../../include/functions_events.php:4576 msgid "Go to data overview" msgstr "Ir a la vista general de datos" -#: ../../include/functions_events.php:4688 +#: ../../include/functions_events.php:4693 #, php-format msgid "Invalid custom data: %s" msgstr "Datos personalizados no válidos: %s" -#: ../../include/functions_events.php:4917 +#: ../../include/functions_events.php:4922 msgid "First event" msgstr "Primer evento" -#: ../../include/functions_events.php:4920 +#: ../../include/functions_events.php:4925 msgid "Last event" msgstr "Último evento" -#: ../../include/functions_events.php:5017 +#: ../../include/functions_events.php:5022 msgid "Autovalidated" msgstr "Autovalidado" -#: ../../include/functions_events.php:5093 +#: ../../include/functions_events.php:5098 msgid "ID extra" msgstr "ID extra" -#: ../../include/functions_events.php:5210 +#: ../../include/functions_events.php:5215 msgid "There are no comments" msgstr "No hay comentarios" -#: ../../include/functions_events.php:5274 ../../general/logon_ok.php:214 +#: ../../include/functions_events.php:5279 msgid "by" msgstr "por" -#: ../../include/functions_events.php:5941 +#: ../../include/functions_events.php:5946 #, php-format msgid "Event # %d" msgstr "Evento # %d" -#: ../../include/functions_events.php:5944 +#: ../../include/functions_events.php:5949 msgid "Executing command: " msgstr "Ejecutando comando: %s" @@ -51862,15 +52398,15 @@ msgstr "Error SAML" msgid "User is blocked" msgstr "El usuario está bloqueado" -#: ../../index.php:1003 +#: ../../index.php:1004 msgid "User doesn\\'t exist." msgstr "El usuario no existe." -#: ../../index.php:1025 +#: ../../index.php:1026 msgid "User only can use the API." msgstr "El usuario solo puede usar la API." -#: ../../index.php:1231 +#: ../../index.php:1232 #, php-format msgid "Metaconsole MR (%d) is different than this one (%d)" msgstr "La Metaconsola MR (%d) es diferente a esta (%d)" @@ -51907,35 +52443,35 @@ msgstr "Grupos de módulos" msgid "policies" msgstr "Políticas" -#: ../../operation/tree.php:215 +#: ../../operation/tree.php:216 msgid "Search group" msgstr "Buscar grupo" -#: ../../operation/tree.php:221 ../../operation/tree.php:310 +#: ../../operation/tree.php:222 ../../operation/tree.php:312 msgid "Show not init modules" msgstr "Mostrar módulos no iniciados" -#: ../../operation/tree.php:232 +#: ../../operation/tree.php:233 msgid "Search agent" msgstr "Buscar agente" -#: ../../operation/tree.php:244 +#: ../../operation/tree.php:245 msgid "Show not init agents" msgstr "Mostrar agentes no iniciados" -#: ../../operation/tree.php:254 +#: ../../operation/tree.php:255 msgid "Show full hirearchy" msgstr "Mostrar jerarquía completa" -#: ../../operation/tree.php:288 +#: ../../operation/tree.php:289 msgid "Show only disabled" msgstr "Mostrar solo deshabilitados" -#: ../../operation/tree.php:305 +#: ../../operation/tree.php:307 msgid "Search module" msgstr "Buscar módulo" -#: ../../operation/tree.php:355 +#: ../../operation/tree.php:357 msgid "Tree search" msgstr "Búsqueda de árbol" @@ -52015,34 +52551,29 @@ msgstr "" "Si se marca la casilla, se usará el tamaño de bloque de la configuración " "global." -#: ../../operation/users/user_edit.php:519 -#: ../../operation/users/user_edit.php:528 +#: ../../operation/users/user_edit.php:524 msgid "Theme" msgstr "Tema" -#: ../../operation/users/user_edit.php:529 -msgid "This change will only apply to nodes" -msgstr "Este cambio solo se aplicará a los nodos" - -#: ../../operation/users/user_edit.php:846 +#: ../../operation/users/user_edit.php:843 msgid "eHorus user configuration" msgstr "Configuración de usuario eHorus" -#: ../../operation/users/user_edit.php:851 +#: ../../operation/users/user_edit.php:848 msgid "eHorus user acces enabled" msgstr "Acceso de usuario eHorus habilitado" -#: ../../operation/users/user_edit.php:905 +#: ../../operation/users/user_edit.php:902 msgid "Integria user configuration" msgstr "Configuración de usuario de Integria" -#: ../../operation/users/user_edit.php:948 +#: ../../operation/users/user_edit.php:945 msgid "You can not change your user info under the current authentication scheme" msgstr "" "No puede cambiar la información de usuario con la configuración actual de " "autenticación" -#: ../../operation/users/user_edit.php:1036 +#: ../../operation/users/user_edit.php:1033 msgid "This user doesn't have any assigned profile/group." msgstr "Este usuario no tiene asignado ningún perfil/grupo" @@ -52072,42 +52603,42 @@ msgstr "Puede encontrar más ayuda en wiki Site " +"news." +msgstr "" +"Puede reemplazar este mensaje por uno personalizado en Herramientas de " +"administrador -> Novedades del sitio." + +#: ../../general/logon_ok.php:273 msgid "News board" msgstr "Tablón de noticias" -#: ../../general/logon_ok.php:304 +#: ../../general/logon_ok.php:349 msgid "Latest activity" msgstr "Actividad reciente" @@ -54747,7 +55318,7 @@ msgstr "" msgid "You cannot use this node until system is unified" msgstr "No puede utilizar este nodo hasta que el sistema esté unificado" -#: ../../general/node_deactivated.php:56 +#: ../../general/node_deactivated.php:61 #, php-format msgid "Please navigate to %s to unify system" msgstr "Navegue a %s para unificar el sistema" @@ -54769,7 +55340,7 @@ msgstr "" "\t\t\tTen en cuenta que todos los intentos de acceso a esta página son " "guardados en los logs de seguridad de la base de datos de Pandora FMS" -#: ../../general/main_menu.php:79 ../../general/main_menu.php:86 +#: ../../general/main_menu.php:80 ../../general/main_menu.php:87 msgid "Management" msgstr "Gestión" @@ -54807,14 +55378,14 @@ msgstr "Ir a la página web de %s" msgid "Go to Login" msgstr "Ir a la pantalla de inicio" -#: ../../general/login_page.php:297 ../../general/login_page.php:302 -msgid "Login as admin" -msgstr "Entrar como administrador" - -#: ../../general/login_page.php:355 +#: ../../general/login_page.php:297 ../../general/login_page.php:355 msgid "Let's go" msgstr "Comenzar" +#: ../../general/login_page.php:302 +msgid "Login as admin" +msgstr "Entrar como administrador" + #: ../../general/login_page.php:409 msgid "View details" msgstr "Ver detalles" @@ -55022,6 +55593,62 @@ msgstr "" "El sistema de ayuda de %s se ha solicitado con una petición de ayuda que no " "existe actualmente. No hay contenido de ayuda a mostrar." +#~ msgid "Ultimo contacto remoto" +#~ msgstr "Ultimo contacto remoto" + +#~ msgid "Generated automatically with the information provided for the user" +#~ msgstr "" +#~ "Generado automáticamente con la información proporcionada para el usuario" + +#~ msgid "SMNP" +#~ msgstr "SMNP" + +#~ msgid "SMNP community" +#~ msgstr "Comunidad SMNP" + +#~ msgid "Manage satellite hosts" +#~ msgstr "Administrar hosts satélite" + +#~ msgid "No maps defined" +#~ msgstr "No hay mapas definidos" + +#, fuzzy +#~| msgid "Width" +#~ msgid "Widtzzzzh" +#~ msgstr "Anchura" + +#, fuzzy +#~| msgid "No available data to show" +#~ msgid "No available data to showaaaa" +#~ msgstr "No hay datos disponibles para mostrar" + +#, fuzzy +#~| msgid "Module sanity" +#~ msgid "Module sanityX" +#~ msgstr "Estado de los módulos" + +#~ msgid "This change will only apply to nodes" +#~ msgstr "Este cambio solo se aplicará a los nodos" + +#~ msgid "" +#~ "To see the list of modules paginated, enable this option in the Styles " +#~ "Configuration." +#~ msgstr "" +#~ "Para ver la lista de módulos con paginación, habilita esta opción en la " +#~ "configuración de estilos." + +#~ msgid "There is no GIS data." +#~ msgstr "No hay datos GIS" + +#~ msgid "Events info (24hr.)" +#~ msgstr "Información de eventos (24h)" + +#~ msgid "Time Sound" +#~ msgstr "Programar sonido" + +#~ msgid "Events not found" +#~ msgstr "Eventos no encontrados" + #~ msgid "Calendars" #~ msgstr "Calendarios" @@ -55247,15 +55874,6 @@ msgstr "" #~ msgid "Scheduled jobs" #~ msgstr "Tareas programadas" -#~ msgid "Go to module edition" -#~ msgstr "Ir a la edición de módulos" - -#~ msgid "Go to cluster edition" -#~ msgstr "Ir a la edición del clúster" - -#~ msgid "Go to agent edition" -#~ msgstr "Ir a \"editar agentes\"" - #~ msgid "PANDORA FMS" #~ msgstr "PANDORA FMS" @@ -56633,22 +57251,6 @@ msgstr "" #~ msgid "Transactional Map - Create Phase - " #~ msgstr "Mapa Transaccional - Crear Fase - " -#~ msgid "" -#~ "This extension makes registering server plugins an easier task.\n" -#~ "\t\t\t\t\t\tHere you can upload a server plugin in .pspz zipped format.\n" -#~ "\t\t\t\t\t\tPlease refer to the official documentation on how to obtain and " -#~ "use Server Plugins.\n" -#~ "\t\t\t\t\t\t

You can get more plugins in our Public Resource Library " -#~ msgstr "" -#~ "Esta extensión facilita registrar los plugins de servidor.\n" -#~ "\t\t\t\t\t\tAquí puede subir un plugin de servidor en formato .pspz " -#~ "comprimido.\n" -#~ "\t\t\t\t\t\tConsulte la documentación oficial para saber como obtener y " -#~ "utilizar los plugins de servidor.\n" -#~ "\t\t\t\t\t\t

Tiene más plugins a su disposición en la Public Resource Library " - #~ msgid "" #~ "This node is configured with centralized mode. This page is for read only. " #~ "Go to metaconsole to manage the component groups." @@ -57423,9 +58025,6 @@ msgstr "" #~ msgid "First date" #~ msgstr "Primera fecha" -#~ msgid "Latest data" -#~ msgstr "Últimos datos" - #~ msgid "Purge event data over 90 days" #~ msgstr "Borrar los datos de eventos excepto el último trimestre" @@ -58634,9 +59233,6 @@ msgstr "" #~ msgid "Filter Networkmaps by %s" #~ msgstr "Filtrar mapas de red por %s" -#~ msgid "Welcome to Pandora FMS Web Console" -#~ msgstr "Bienvenido/a a la consola web de Pandora FMS" - #~ msgid "Pandora FMS Overview" #~ msgstr "Vista general de Pandora FMS" @@ -58825,12 +59421,6 @@ msgstr "" #~ msgid "There was an error with the zip file" #~ msgstr "Ha habido un error con el fichero zip" -#~ msgid "Generate file" -#~ msgstr "Generar archivo" - -#~ msgid "At least one option must be selected" -#~ msgstr "Se debe seleccionar al menos una opción" - #~ msgid "File is too large (> 500KB)" #~ msgstr "Archivo demasiado grande (>500KB)" @@ -61387,9 +61977,6 @@ msgstr "" #~ msgid "Event graph by user" #~ msgstr "Gráfico de eventos por usuario" -#~ msgid "Successfully set in process" -#~ msgstr "Establecido en modo \"en proceso\" correctamente" - #~ msgid "Marquee display" #~ msgstr "Mostrar marquesina" diff --git a/pandora_console/include/languages/fr.mo b/pandora_console/include/languages/fr.mo index 32834010190b7745967a2dd9caeb448c27ff403e..c04c8000c23f3a283c74aeb4482c3ccc56ac48e8 100644 GIT binary patch delta 211420 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 delta 202633 zcmXWkcfgL-|G@E^=P@fI+2OJGeC$nTHVrB}5;BrP<3?tsG)O}tl(dW#5gH<*L0^ef zl35z0G<@Ih`<&lDuj`!ay3YBW&l%TUeEa>lH}m++%;Yzhr_W39e}l^<5?5l~vRM+- zYb6q$+hw&nF(7AJA_oq{%kWmri+5ozoQc`-QJjklFgI4tm6phfbuk+@!*W>?iL3B( z%ENM}?k5v>bJ2o|X=q0uU^U!@HSjMiiIpx14Y$XFlzUWik37zwYumnDf#c@L{e~GT0 zv(fzd!a!=E@3%k)&?7nwZ7-QGEtwkeBk{rK(EwJXi|9i%#h=Fe>G{L`LTJF1(K*hH z^}W#dhQ{*P=rlCLPoe{O0ZZf7{K+uVBk{rW=oI9>JS@WE=wj-CcGMT0f_rfQ&cm|! z2iifg0%46*Ko@0AT#n7LB_2fwSmBDaL@{nMxl8L9e@WrL*gB$U7+=)Ke z{L0W_JM_73=;FKuU0io#QJjNj?#1W^bXR;5{TdDI1Uk^ODcOJjabbfwON4{wO7z7h zXv#XGFAhLE91+X+MrWZZeH@*lmyiQA@d292bJz=ulnetIiMBT$v%CK%b5RFpqI0+b zr{FepZFDFVBJP29bYm=!K|7p;PR)EYLocB1yn_zxBXoOy9m{_rGn2S9gZ=N>oren- zTS2s39PPLaIt5i@eP*Sn(h|Q?exO`9*zQS|4|D$p z&gRAuoQAhmNK4$0zu|PevtnA}3H%3LGmlnEOKipbl|zSLpaFb|F1AC+BZ=Bo*uIo+ zsGgRnj~`)s{4bW1?P`Rh@LsgTMK}!0)=W$ECgO+C5go0ambd|rqp7~CPI#{e`dJ-^ z)o}rO0Bu7vb{L(a6X+WI30<7Ohx%mVVtgPiGpynqXiBe$HKQIG}*A0<2MNh2O==SN0c038qzzp6he;D28^U&0x)|DYXbZx+^0K{Rvq(dWCM?evcIx1sM%L*IKi$%PRuj1_Oh z2R6s@4s-xZCgY&1IJyJGzer2S-KE*H+}Gw8m2 z2VJ!XqW@xL${8)g$gW05b{#r`!RXq#3w{3)bP8TW*Vc!afnUe^f6#4Opq1^h|LSpJ zgRRg8yP}J5P^=$=rtaQY|1dg|XVDC-L^HKEx*2``<9PpTG_yaT{rrVaUG~=0yZ_5^ zVd@&84RuDp>(}G0I4<5lgdSACpn(>=Dx|(L`d%h_#5PCIfi~z_-xoc|mZ9%$L8oLd zCSBbJxiDp?(YZ`(6GnI$+TfMwh{~W1WTK0#J=$LHw~1a8>u<(O-T&jcu%W4FWb@IHtw0-mE8c$(ZSc!@{}@)Kd=5Kd z>8>HL+t4Yy2UD3sGq@Zb&?dBi#kZpkPeU7c4DH~>c>f*r z-1r3Dru)$M527PHfsQa+k6tDZUPUZzP)1N%8)ic>h^6bF0yTY(t;_0@E=09T!G)6g}zA#s@B-+a~8VVWd}} z9h8qYL>umeZrlE7I}_2sXQ3S~Ks#K96>tsu-hpsGnfRFtU;G=Lg51}JRFy&(S#5Oj zbVl#r9Pdv=J9rT7U;*0B@>u^SI)L}k_jbqnBeDJ$%;*09hYLHn?7Fbp%cI+_IXaS# z=v?Hxjzv34q5(aGKDRLXdaU1yj{I}<`ESsvJ%zUOYb;;Hq^mPq@30v1q7M{6BQ1@d zjJ2^TcE_u64w|9;*cgwX2T;jA;oC7B@29*5ZNI?{;rUi*V4cx5(EA4VzZD~?aHJEk zAlU=(JP+xrpS9lxOg=DaCv=c~|wZbbtacN6>H zikVb6@<*{6E<(?RUFck%KvS94H$0aQ?YJb`aVFYfJM?pY6PlqR=#-8@pSvs8KMIU>GtiUq0W{Tbpc&kVm2evx@ENq@!UIF* zGSKI%qnT(F>XV7iTsZPR=qeqE?)zKN2&bZ{Ux2QWW$5Z(i*BnA(WyIvcJM3u1LI%x z`7(pzIf9luqk-L+lKppcym1@a;XODRA47LRfx#iLvS=Wc(K)S;?v7^YV!SEdpO1co zUO=Z}Gy3`c6{}*-o5N4Ax>(r#Ka2|(*<>{Gr*SxL#`;)gNSKm==ufFf(T3KbQ+F6E zW1gXDi4oWktKd?!eh*g1zhZsGTS8zxF?kg?rg32kw_{iQ5?f&TVc`!DhM;R;cyv5E z=abPj@jxs;99@9v)Gt9Z_9B|Gwdf*z2ixMFVeJ3bTok-DoMgSR0_EZ8B6}2FOmAUN zJdBRG&hRjY1JOAhj`eUN*234(lz)q6^gL$bl_SF1>5iV914ksoq8UepBTU8{513x{dMR383~i@88c%f$ zUPTw>cJyTY2HRob+rl>LhXy(p-F_3$)GtQQgXQQ!_AwghF|^%_m>O`gQK7@~=(cK% zrmhpZPY0m~#(1=Whoj5U=ifzl$sTkK9Yz=DPiTgUj*h<}qg~P8lD8lMCKC^EF_ntf z(8y|!3H!P;nu+0PN|WfEJ&1O+5M5j=(cSYl8t~`n8aj%m{L-=E{X*#4D1#Z;3sc|! zJGgKJ)6ov*MPH2d>(K*h2YTRqh6Zp3&B(uKh6>&u22cYHydyfb{je0?hQ2ok-8Ii( zF8BW;E@smMU*v^M%)Q*;Vip=+lv+VOmJ z%{+}skKDyvxX4~aU)+R_?7dij0PXM>bdmmtc69k2q2m(K8t7tcflkFuXh);b_U=Uc zc^KW^OYdO+r&edYaSWZyf6+x$czlTXDzxMF=!-W-r=Y2S5l#6PG_ZZqZ_%kcg|3y~ z(E%s!4DDsVll||D#i($R)r>cqpbd3H&-feA185@pLu40r#7pi9&s`fGfR1zo9?F_X z+>Z`u;G~ejyU{6_jpcAok_$()8Vz7S8tD({TKE-R8-Jsbr{5jS9nFUZS_oYmrO^&+ zqr0gSnt`F%6-S}%Y>M^C_qnjcozeZ#qv#a;hHbIrJz*|yMn^CL?RYf0YbK!qKZJHT zAI-#b=o(muKDP-CU=Q+KGO>>f8#;t8vg7Ch^ar|nFS|FqSQ#B*6HFaY=+q60<-5?4 zKaB34m(UL1iuF6tj2uDV|1VX~{wsK2Sj9EbRogO_d!Z-Q&FCVViSGaB(Lmlsx83gO zVRVuHfI|#Ba_1mOVRtQ(2Q-y z=kQ}RkXxsuB?jUobmRxo0sV}oJj>M3P7X9fS0G*RXFXgPKt*)UYNHKyM32%N&_y@} zef|Ngi4UXu`CWAJ?nR&b7VY>18t6Z0dpYh87Kv8ApZ#ygjj1rjZP1kUMN@VUIt5Ro z4QxU?*p1HN|Ip`tMh~t_r-iA>kG@wLD`Fe0f+KM$K8fyzrqdaJH7*{U9#-kw=%U+< z&gIwW$j+dF{*5-2ZAJ*R7P{!VMQ_Dpl<&tDIAUh_J0&ZzDdlgmJeHUh-oGlz#b_!9 zVGaBoU8PxOhsdu)&;B;(fpIfd#@T2_)}U+T13Z<5fAxX}^x=b{-NTqcx!Xg*F=&5} zqU|QL%n3J2qY<}87td65kvxH}_7~91tU>2?4;twA(SPIpA`hn}=22f4AIFdJ3GDYs zX#aPdKsj@6TB3Cp_Wvtfw4&n7qhYbsek`nors!N>i%vy9boJkkW@0in!)4JU=qfM$ zc$mtHXy7%X&C!f?Mb}RMlu5n?@x~lKLBQ4?LX_0T|CV14X@4rCf8+jB9W3mfPb@zg%S+LzS&zQ=3EIxVSbq{-Z2zH)ukf>B4b(tS#^ew#DseFfOXE6pB>T|} z{D2-PXV8XoEeumr7%i7XGgl2Wur<1d2BYoVjb>yfI?yN3DPE2&@?_$5E^O#6bR-|5 ztM@B31BcOu&fsMH8y(R-&xH=>q2G*k=(gR5Rq-6Az5$EE$=U|1Q9lmt=Xo4P|B1C+ zIKmRohX)&=4-Q4Q%j4JtKgJ%IeR0TCZ?uC+=!h4hfxL+hXfLKtNOVp8iw-Quk}$B# zFq`|o1Q%7XEc#&AXm51!3_@QVhc-MBT?;c~`B`*CFQch`H@Y+4-;WOPN34yB7eWAa zFzE}exzKKCYHvat9FLx4v(W?UMfAB3qMxC2`3$+_JDc8lxHN677Y)*C*Z|f}ST6 z&^49Bj`+y3WSH}>sBmOCmxm4tVspxU@hN;3@5TBrrX{-ITI`BhUkdiX?v$U8{)*Kp zw_XvB@-b*;CZHpqi4J&aGTwL-9pMMq2fs!itoL#lVNZ0vgig@|Xv5E;Q}JrN zzYZPoHe{P6K0z1bzUVK}@j(ST2(9VcE1BQB2CS3}O1WTF)pzR)>(6FQ=iXoGjh@^th-dIDWDi_j6ii@yIM z`rbY?z#lLJe?t$p0{NWqn{%Q37S*(XyR)tJ8Kr_=C4WMWAW;EbCF=-?Zb1@PZqd%?ktPTxlqA72J zuGV&FDz8UVJQ3YyGtmwnM*~@gW?(hCNVlVzIEW7PPxQHhYuNv$xXhZ6>e}dtTVf0B zfUbdA=puRyJ&;~S7u`l zP_7zGCa#GU_o5FhM^m~H-Ckd!tMw;zMA_a6BQJ*DuNTXm(f4mbGj=bUiMeRtucAl# zHZ<^T8*PvMUzCdsDr%%E_zI$_xfv_tY_#Du=*V`&@*ikJmu?CNQU)4$i)bG-z;WnQ zJ%B#HEZ$#_<>){01sBfspXiD9AG&X|y&Fbe5UsC{u9dpzT4{}rv_~x8jAm#Y+R?07 zeij|TD)haNV);uC06Sid=z_h70c^dLEdHk{>y zP+t%oaRs#97HFzFqf^&A)(?#)$HfOGqa8kkKKKmU@QPT!DY^^o;A?cGXVEFk^I-_6 zG@8N8Snh;A*B1@^u2?@S$lw3x!j4`+JKhrAjn3ggG_c=deU@#ZgS=?QDxxE7fIfFs zEcZk^?uUMSCdBd+=#l;!=5_zCj}<%6hW4Tze~U)^2iic6kHWX1EE;fCG!re*275;b zqjNk8or3$(cIL+V#pwI%Ft_{vV=g>!_MwaE0y?rH+rwI@gwAyb^y72`+Tb8G&~dRm zJNk62Ux{70zZLB;-;VHJIdq`)Fqy$cD=s`L2cg>{iO%5?bTMu~52yp^SMggkfD>q- z7oxd84&`EKU{%lowM3uqhpBCdzBl7z_P>i~J{2CdE8>kWFrD%d^gua|rt-H~zKCWb z*UnI%AMKzd+Cfe9qtgy6;^=t)Nvu!#C3Jv?ce4Kt;5-$MJom1Us_N)sYK3N|JKDi* z=pwxj{R#F^tY3q6^Z~ZO)9CxvJ_+wN!N!z3V-uW-w)1|H3(xk?(3I>)M|wOya1ISH zZFjH`dcQK-Kz%erZP1Z-MN>Wm4d8xsaXyAVzc7|pqH7|#jtl4N<9Op+^n^QwjyU(8 zkgDQn2bpNYSEB*8s`v=yd=8Xo1zVM zMI#>=%cF4<<*B$4TYeUv`xgx?-{+ydQdp02HFTtd(01-b1DJ-X|NY-{Tp0QL=sySS zL0>qB29WEEkdZ6VOf^AA(gO{26dL$stb)(Q`#aDMe?&i4XVH%H?hWTdWh~(SZ_b4c z^t1xUpd*=v9wd*W4ZVan;yU!X%lE~z9j|x;TG91OGRcFaKX?w-owZCZ?wLe{ug0 zq{7tRfm!i^=o~b~bJ2rm3A*oBqEog8?QnCf--RyTz489QqfRoVk!RNd`0}b>k^hjQT2J||n<{E8yJNo_?=s@jlKzkXxUBXthi!8&w~x1zh|OYDgMpwGAaIs`Nb4PY$R zz=zPU<~v9`$;4hRjQlVf+0SSI7tp!C>|p4y6q?#9=tvsiW^9FKD9fQR$2rl}oj+P0 zZKo01Pbch#H>Aq!zn8gi^{+=e{uJGgN6?XE`6m4CFM%$atE0D|_oty9K95e#T68UZ zfOh$C|B1p}_(Ci2(pE>gPyT~s%si*g{kZHAy7jzV|CI5a~~qHEzz^t~`JEIvKgmrNow!xP$1AjsXlIK`B!keL)Pxj@)RXGHW@D4O(bI=Z! z#PXZyb04Dteue$;7+#0%j;AF)z=ik@4muJ3c&_Bhur_W&&xt|kcAbUnx@6)JE^K%? zx_aM4JJ^b5U{9<+9LuNT{lC$SU zi)OIaFLD1jr^3b84ozWy^u>v2hfkmZzKjO40juL4G;{yP`Hlu4{Uou{NA8(vN&x35ghZifNBh17_*cwgc_h^IX@L9}#HcZ)z=>1R7 zqxV}h)hEz^&Z8N=h_;(7dM`=V>%R&?Z(qmQCfvm};RqwTzp z2KYZTkkjZl3?WS z^ZXT_yAmx|#SCl|%Qv8z92U#t(G1>?w*NGy{{HWZ_`p{5g+16852775z7R5VHCpb4 zHZT~SirZuT{n5wK)W3l4s<+VqKa2Md$NOh6X{yry4hsK}k3p8BOz51r#-=z%g8&B!!#E*D^Z`~c0^-{`?rGFy7;--NV8+Z%>{ zBOZ^gM)&_`c%Og&=T|OlU`&qm)Z%*_{Vn$iHpE}igQH5$5P3~BQ!OzAyQ1g9Xtbj{ z(M-%k-&=_p_y(H#&*J?fse1PRUtBns#d3ug8lWR@il(Y9I`Zq#RXaT1pM_4I5@shy1O=SAqQ*nlpg zJ!l3FVL+n$Exf;o>tYvfNiKZw8nmH7XosWF4kpC% z{jod;T?-3hc`@4HE9m=M(1v$Kzl#2d4)Axh{cQQdbIH71G^655w1FGYNQa`U_Rd&8 z8*O+V+Q1TYo4pe2-;4Eo&;fmgc6bbJ_b)W?Z280cd64##i6UG$f~x4^Xc29PnOXQd z9r6B@%fl+4hX%GBos#v~1b3sWKX-u;KpAw+)IvM%jt0~xIs&u#{lAwBSLgj`${&j^ zjP);}U%j``MYpNYPXNk{%Z7k2bH zI;V%x6rV#=ma}lUUkpug#aM2Ernoa2_(=4jSOHbn#MRh0d2 z#jRABfyrotb1)O1!Up&WK8)Flg|FWeXaif&^WsZ%MBktpO)nlSfCf?q4WL%6?|^3P z`eb}y82Yul6CKIx=$hDyF0x&*ybo>gTXYfrjAkU~l_7H_&=a#h`mySZF2cL9CBB1x zZT~^rPnIeX8mJO&fo9~I=m_+zo{9$c96HBupmYB|8o-fQ|0nv5xTIuwt^#IIZiHs| z26Xk`f($H~7|VqzpM*v{1MP4ry4|**8Q6w)vFaSNt#-k%xg{F8n4#uCc2lgx*Mz9p^U~?=VLNoU# z+Tj)DLO@l~j;}&LHry2*$tZN6PD4lX zVsr=E&?z(n*{X#R6-7I$hOU7&=z9Y&l__-O^RXMQz}A@jiwjfKw0c+^*P<`nfd)1! zmX~2w%IjnKC>roz=*WxK2=Dbm1H1)25vQPY{vz7myJ&x3hx%mVEEkUWlA7UUD~*nz zCi-G0G-ZR(hVMlicoJ>!4Rq0cg5~fOR>pj_!oF{eX7W}v0}r7CS(Lh;3~jxb-{&_P*jLAeQfVBL+Lge%bZ z_hZryE^y&o6{we<7=Vq?)IW{&aTPYew`_J1Z9-^3f2Hw<%G9i7`wXn@18CQd;Ql2zzObk!e1pU>Jf zq&zQLZi}w|p3(8q1?c<9cet?O9q0)6p)a0{_2<#mn$|32rZ^g4ZFFR9(ZIW+f%cCM zN81^XK0h_q&&LePi;;eliTAiL6}zL~p)Z_8N1C&FXs8G}73E{OF1qMip^J4eI?_q# z+E|DN^kQ^1+RrAm-A^&~-~aiR3+MW$R0SQQ`!`FA&~O2?<0@zajnD=<$MQ|+ni!2$ za8|5egAQaHn&AUzyFa2C`x8@t|2J35u)m9-4K+abe|PlrI|kpvH_`2LTdS~3W}$&C zM}H~3i8tXpXeNrZ4pY=5+6K)?7c{WmnELa-kz6=e6EFu(N9T49n#%d;8h9Q}_1jn* z_n?a}%T-|;RzP=CYjpb#$4WRe-hTrf`7X5mLszl?9l?)OIG5+pR26O$R%cl>(%P6> z&1ir<(dTZ6^+VBi#-XcvYIH7|^5@XN-$1wbN3ndUO)|W2mI~)IYuhl#mq*K^yP_eQ zi7seB*P{)MKo6iPXoeP|Q}iYp(5L8ohtaij0-fT2&?zdIY!_145PhL98pufWt9B2% z2A+=fhhzO2bkSbcKFsMAXt@-cp$h28YoP75L^IPp-tUKIFgcV9U%Wj&FcBTW%=o~P zSpQmdBO2((vHTS}vSVmR7vlZg9YTjiqZQE(>!AU*LfT34UnUDF?u|xx8yflD=$y?# zQ@a%HXd}9c_n?6sKs!ExzW*1x8*+3EslN0jT_L0hoK$b zg<0_dOvgEB#vVgQ^c1={m!W~JMg!P{KL36!Z%0@EZgdSCR{Br;$%P%|zdGC~hep^8 z?WhwPP*3zTJrF$~W}@5gMRdFELK{AT6)a?TqNc{x_28R5-GQ zSQ+0(kJ6v8Di-M)0%(JdU=Z5S1oVJeh`zTCtK%=|fJ$}?Bd>>UqKhTg!IxEoD*-X39O_0i|LV@Ak`nHj4H@M|>-~mL{Xy`0?m#=;GUf z_3!|ikz~GW!VBfm5i~^SvOn73STxdE=s#*LLj&6p%cs%j@?9GOuZYfVJ9OI(Kz}pd z8hs(wA3_#+GVvo9?%%V~^y|XvzXIn_Uk0b(8<>H0t`80OLXXy)(A7OOnnVLwfCjKS z`VMBJ{6Q>#jH$o>{{+1d+)HX^P~4mqA9Hr?HIioQ%5PfT^~fZ>tkrj z7o!@LPVmc;n2qVjeT`87Ccgt<)2&bc|UxY5kb!dQl zu{EAS7h#uolW6MSMpM2OUDO|;?f-~Q+4;Wge^Z^WUl>7g^npfbDz8STqzC%h?H?T% zor!k*47!?MM%Tnsjb|umIf+yU-WE ziRE)>pg9JFZCeC0DAz?(er+t@70V0IKsKO(ZAbgrm*m35b2L8iD>|Z!u|Chhuq}(B zbK43t@Fw)Rd(nm-LNoa+dXBsp%kQHD*^Tb|tb@XU8={}#WNR**tEVxnF6?+JnxZGr z7nh)C{Yo_TThUd%ADyy4&;}DXhYV&%Q-3)cP~BL64LYC!u{;6|=&qDW{`o%Mn1@ET zIF?^SJJ^6cme_)3q~(y1;=+&(ZVXe`r9*(F~kJ z7xTqf&N(WSFGueePjX=@%EyXYvD_G)!?tJ#ozN-hj>GU~w4+aA{Q-2X{ERl7WpwZo zY(TjndIWbtx9v#uoJh{*!jvsTN3aT=^Y_p>{uB-Hd$fa}&=DoZgy(aiDJ_P+R}+1& z89HU%(C7Q3yJ1)?--To_nV8IlC(%rF#E-=CJamK$(ZF6tJ9sCScc2{~h@L?^OdlIY zcm?`iZS=j?=&tIH1~dXwzyI&xqBIo`qYb=)rf3WL;vqDpr_g}Tp`X{Rw}*_hMGu_b z==}+3VAIhx^fbCySD~Nn{peKwhH38q?Bhbpa-)mtN;Fkv(UjLgr>HHuOM1lmThQkw zp@GhhK8aZ=FGDl?658$?=*ZtfGqVL#`~Nd8jO-8^@p*IvdF}|2mW?(*1L%Z4HxTW3 z0{W4efi}DW&BRVLv-{D-cOl*{IzCKAmGSI<_hDNqjIbZJ#36V!E=NBmzoH%Gx-(2s zVKgHZV>vT=RkRnnXa}Pi8Wqd;#_}w5kv@4R``-swP~qZR8z0z!&iRg5{sL3G0L{!# zXeP4W6#^=P23RRtAMLnJyx%L92S;y@PD#d#xzR<@*P@%EyU>Wgj{X$Ah-NVVgb+v- zbn!Mu1G*kv^+V7pnT-C7pMwr4xrz%L-WV%(N54WJ`~fRt&WWL12P;v&4*eV_WBo$( zK-r3ZTn?cfWStZ`z6{MsF?6j}MlzU8T*ZYE_CZs7M|@y*cp&it+R%D*1RtPl&ckH zwb8(uqXBh88}5(J`QdR`1b8ybq`aUvSfB1{E<2Pv<^Tk!Gw!{_*Kw4Kc4wD3ZEG?32d z8QmN0a3C7U#8{qz{-%2lP2pCwp3X7 z9O0q~6}e`GRJKJ&+#Air5Oidt& z{}C?i@HD!b|3Vj0-q|6bqG%x1(2>+b@3%uc=#Cyp*P@H_CbYxh=yPMxBY6@!&?nK1 zet|XUKXHx=e^i!xAdIjQx7!uO0&)hi={F;;)du5JD>sgK{GWLoy$qF{#kSYYq2?Q z#>V&`4#q|gr>Fk&J_~UXPo^hUVXg)750~&&%0-?^Pke;iurEIRbb4YMp2ll%>@(?!{@%waSmD`_ zk(V$n3*Q)Q;r>6hFpQ+?bLoi>tt1O`VZ+s8MMHFMx}YiQk8Y#U*aq*yX1Ebc;{~+CD_4j2>PFjP zDe8Np8Jd6w{5ZNsmLmNm6R&b%iZ-Jo+l|isespmj#fq3`O|U-Jpxh6u;vBT$_2`H{ zj(&@_^9LGe+S)MU@@T+~v54RQo?Q6g2z2#NK)(SCqaR>p%BQd<7JM@V&=#vxz5}b_ z5;Vno&=en!UPKpdp>-i6wa_W)jwRgxqq%T3&q4S7%jhn68=Z=sXv2r%{XfuOyXkL* z?UaFLu5K(hM^oPuZTEIGLyttCM>DkwlRofKyzv9t;W>0la=aZDS0SuIxip%}&X`)w z=v+=h*UJ6qR6UL!MDO4j{1k7&R_nuaE6{+~uV?>zGQCd)KL!)$(Q=6m;h+C|po{NW zG@zwuWygXzd{F)Ji>(moQqzz zIlNdN4WKdlU?+6Z^^Nrt(T*O7_ZOobtcmwOjrHH5Q}{c&X8w-%b8Jcd1moZTaN!A7 zJX!(W9<|ZWWOp2nqtIRP752o_Xy7fjhNJg->_xdBcEZ)@F8B{UxJtekey9w_c3GHm ztnB{J`9b*QQwRI=;4^4y|3*8w| zf1?A*zm4A)^q(llg>zg5J79D4BQg_R-4CHDTo-*e-rpA8iSC+D(Z!nnQTTJj%h7<^ zqr0aEdK3>pGk!Ow{`r3f7mnyrw1LIwi?5?|ydE9-r|2R(h(31${e^TM?cm?&rQ1Wm z#nGSTWzln@BAU@!==&YEv;SRO*HNLv&;}=AH=K-S;#0JPebFD#fPO~2GSUPF4>j~N7f_S5AARS`ryP^KMfu6qv&FM27T@YG>}#38hS7K zdG!0}Z_%u~!aoIHj=Y~tbmhVf+=NYWA{x*-bVTo?f$TzmV*L*t@i)=m&~HcfPeMS| zFf~H-`L^gtJEPmMH~Ri4Eav{7%7r6Yh(5RyE8$z{;`;8E;@`F4l%U^u#+W}&Hm z0qt-dnu$&5Kt4eSasX}r2>SdPT;l%Ex`#gq#AWCUB|Z%)t`e<-);Gqo*d7gV1iC$+ zKu5F^4QMmk!2$FD`UwrF;AbI#^5~S+#^fzrwC2KX_cA(yH_*lMR`fG8b*IpiEz9Sj zp+acp%AlF5g|3Zy=<08VPDN+5{p-3E|ZIwj>Yl*hk0S&147wms8`cYv-H=_;RioP&DmhVMh zoQ($f6dJ&bSP@sFBR+tp_C)jo`urt(Lq>~YYTu(7?V04l7lxq?O^i1dqYb`=cDxO1 z;+N?D&%Q5Yq7*vUbVqjb$fIbcf)!( z7;X3|wBx0*{3_bP+nCA>I+8EZ4t|aIv+fTkXg+i;l|kRDiMH1aS^xZdJTCl7b&3yk zLp$z^rfgWOza6Vno{Wy{wOGFa?O;1r#eL{=S-uLHtcg`9cSSQgG1fncssH}pIxo1f zHM$FHQ2t*mXFm`+%#WtB1p0ifXcKf1w?hNzjLvZ%bde2<<@?Z#%|SD@5L3VZU*p2m z>_kWQ7242IGy}h(9sh%Fzr0_EhRUJO)kU{mEA;seXgfWzKlVe{*1Kpw@1q(2>}&Qv zKgAOJsBjJZFWxweHgE(T*_l{>4qH(EE8cH(Fg@`Y<+k_~?neW<{ZM!>iDqg#nu)pS z+%HE1c>PfP{;#3Jjy9ts`4D|^7y23gA3A~)XeNG+ z7#&!rSiU~Vg^OYs8o&&!f)Am);4Pd)ihe=^8}@D3C8N=f?neW96#W(~jrH%KYhXuo zKRWlv(1D#tpHF7}E;Lvao!jc@gRRj9dZGu&z*wG$zBmhgZV@`N*U@uh3);?MG{Cdy zw$A!}s4o<)irh~oT5@4SU8DV?qtKDvhc@si+VHY?e?z?gG1}1~bdFEOa+V_@@Vsci z718IKqy2SG$^O5I3mYDZj(7^%;aqg&OVQti8_^f{qt6{j8$ORdpXY~AUk07y+UNk9 zp^LIR8em^^v5&*l|Nj4OE_`7+IyaA^i|$$Uh1W0xKR}P(qiCvg9}R1wGB%@J3rFB6 zbV?4O9iKwm`!kkv{}={R7*qfIpNd?#9a^FRv_ZE?H*^HO(GiY_Cee@3pn?2`zIPGLY>{K^f45bwV`25zLtkiu)?bZw+zrjpU^Jl7=x&&bO>j1v z(hsAbpzrNNr}hN;+wwp3hfR~?VV7Ndoc-_IPNu?b_$-?84d`O|6wS;x=m@_@M|c_y zVBV8q zEmTL>LRYMc6?1$%nb9$i*w@YTk=Z!KqljfTlA4 z=`e!wXohN|9k$1YI23Jg5!%isbk6spBmEA|z-e@<{zMij`|qdFVSaRbWuO_Ug+5ph z=U_8*@$AGh_yan!96yIlRYOO19S+1v=oB7A+c_D_zo7vp&NwjoFU*B=TosM5Cf33x z=pq}5j$~YPGG0%44w{*x=oI`F@0b52EV4T2d!5k$`k(<1L^C%7Q-A)yj0+=u4O0gV zI@0}UK)*)+MYm0^Uqi>GqxI1Gjvf01wn zy1F}{58j9_#&OsH7oyv0AG*3vVjHaVdwBjfyod61^x(;QHtdQk(2SNu11x`*{qOJd zCRCWB-q8W*S{Q~lFahoG0rdGrvAhvI={`fJ@OyOo{TTfPef|QvI18T(Ypou-J=>gP z|NBB0DqM8eql@Dvbk&YS8@Lb6)H7)0ucI0I5Pfbx`u-7gAji=u{ROYa|6;l0AL0J> z=;ywFk_#Ukf}Tv{&=k!(PMrqM7;{>*3L8@jt`;9+;X!%;5fj=oEBYF2Rbp z4Lz8C#_8_=l7EFi-&=}ycp9Di92Y{Qh0%b@p;OZ^+6_IZhN2@Mk3KgC-8GBR%)W|d z_8oNO`_SjUPu*w#|G`CLD$@TBDQkgMDBp;tdZXh4-Ovj2UdF%@>$0WDvTMmQusI5pNkj;4AsrcTP}el(!7 z@jidwCDlQ3^to#2{SIhmuZiV>{{KI<;x;N=bd%5*9*7Sv$Lf^VpsV&fboJ-Yk}Y+B zv`1Hccl5p9=!ow?GcpIAg6CuXHng9^XhzQ@<3*ON;YI;8HD%FE)I~?!8f~~Q`r@6j zJPXa#Vsvr78}IK&*V0L}!>no9QW?G+4XiX;pRCJ;k+;EiH~H#VT#YzNxWq3BQO8UHW((a4!S zq%c1^MdhM(&?B}bI?{INiP;MsSYI^2A?Os`fvNBROfJm8Ty&K_i8k;;EWZ)U8_|*N zK#%MLXaI-NhJQjk{0ChN*>i-Mo-4d}d9)BZ!eVHq%AoC6M5nL@8eoH5?0*|>A0Oz6zR(Bl zs2}>mFm%qwVg;Orj%+3R{wC~$+p#&8$sN|xK&(!AJlf$4=x@I@==+~1xiB?9pb?%# zJN^}I_;0l1?3aWFi=qKlkJd-mL<@Ap-O;tsJC<)j=YDkb9<<}xXh6wlxUhqj(RZVt zVI}H+Ks&hX($H{8^u_9EL(R}1DBWWH&Cxs1UrN)^#rQND;9B&(jYz-A#P0aOcj#RI zjr}plWnpe_!P1n+qa8nq2K*xWk=cND^cnh9JQmHCCtK?O0clzEe0U3M;OA&&v*fiM z_Wz|^7-1f;soR}TU3(=InjJ~%X4fHdtiQi#0%%3k?>Ze$9 ztWS9~=J)%*oC`a68$F6YKo`lkXh0XS30|5%bkqSI@%3m&w?*$or(zBo_!4yL)}rlv z7|Wld0UyECpa1>Fg)jb#ruOp7!y+q>K3D^-Z-$-|-DCZ&v3>%&h#y3^@1tmd^UzeU zL<3ld4)pz4-g7zo-_?AO3L`!mA2^Rjo>m~Nfh*8mQ3h?G8rpEfSbtTtOT2$Q+V0@! zNHl=)@%~iw{f7&%|6LSMQQ-);#~WWqe?&9zYb+Z1J9rcw*{f)V zK1Mq{iFWi4+Fs!zp}sVlflRdh4rsu=Q)TwwST5{v3Yxkn&=;OZQ~D;FvYqHTaT1-| z^rE4IGH8Hx(F`?11LzU&--s^e+hX}Xw4J#)!TtX-7e-#TSV&ECG}7zPj)$TVPe)Vu z92(&J=*ah@C*esnLs^Q4=SraOwT|A1u9Z8`{_erl-~WA*3+H4RI%k{W1G}&$`@ z)$c(^aukjHKeWO8WkP*uM-!nP{4Riv!o9;*3djuWOGW5L-$a{SM;{)Ht8|R~! zlnpPGiq?&GjP^q_Hx8ZS2holmM_2a>w8IZ#`Kwqyi$0gDoB^=^N^xN->!7Lail%B9 zx~eC|@@#Z1JcF*8W$16k_pld!gf*~u`4GU>XuCtuZ94^Bw9C=J)>wA`Z;v%-d~GO^%hLJU4Do+a#sxB z@j_^XSE4W0j&?xzb$|3=nuTWI#aMm?4PYl$#s8r{YSSu(z;mO47L8V{#Qyh%dhvl) z@kaM(zvxIb^^?%;IW3mwpo{HEw4)_xMpmHhu0uO~51pD%(Scn=GkitmWJpo<%Atd1 z=!@;qRoW|-Z$TR#hc2GUSPJK(9jrsA=7U)N0?p8O=ps#23EQp+_N3StGjL9l3m3<0 zSQ)=S8~PXR@Y1Rwz@q4!R>p4F7|qB7vHpozUWRVR*U?4%UUYBtM|1#xqM1zQsTMjY zjCN2F9Z^Fx6YbCx_l)+%)b2n#niR`(uqNe2vAhQz$aiQvzo6~@gKpQ{)l&iR|No5( z8!C=ISOYV#G5W%dXbNwQ^;6K1FNybGK|9)jHoOBJ*=OkPIe@nF2Ri5JHNt>PU>^5> zbuN6NDf;WRE&2)(&TRQ=Cru2K2#i(QWuEI-;C)!ar1&!-|x9q9@)YH1K)Y4&O!> z=|!~tQkh`@-LMJe8JKir@5PFXXt_zE3o$P)Mt@DOYRLX~F|Cacyo-JV-ir?$j2@1DkA7Z{ zqKm3rqtHe$%Xdl zQT!kp`69Hz6=I@vr@`T zw1kpK!-^zIQmG`Op->@7RO#p$s%a710Xnpo_I9+Ob*a6g-IzGE8r(p&B6tm)gXoFdshWqnH zuR|kO44u*{=oBdz z4E9Fn_+fNvW<{Sy>w7i21wEMdpi{a(Ny3pFLwk5GUicS1h;lU#AuNmbyc*hY9n6Fc z(GfOA-x1BwcSKLLL*vnrPC^&uoLIgajZpF<687XUI#;LAivC0&ys|~OUKCvm)i5<> z=;G{*uIgUs+j0mxkQM0tuc7yEMo0ch^ee3G{{J=>T-!3taZxmc9nb@%4;rCyXh$DJ zJ2(#=!D@7BHlYoE8m}Kl8$O3_*KDmqhs&dpt&Jtz|D8#crQmLKbw7hEaSys1#<$Lz z`lp!Bql>glo3MR`q8)h>-BvHh^8J|lkcoCEU)wOCBItcpF|~FuxBI`h3A`(MUvw^d zG(U?ia0MFL)96%PME8H@cHwhFK`cVP4jPf}Xyitqk(i9WwjaY1xEhnpLE;kiHK-W$UG_ozxj*mh^KM7M)*n$1uj)K(` z7}|?y!&h|-6<5S6w5xS1B=lJycqLq z(RMZ^N!arb(NG?a7k-W9|DbE*$}Zu7BIt-JMVq4Ausd4Mo#>jl8=cZQ=tsEKXvaQ8 zJN7AhP9zVKFqG%fin4SK=0YQI9XirV=m?si4YWfecPIM%5Ohw*qxH-|51@tU)IE(( z<+Er+_9Kx^CXSG>f&b8>GH^Xt%% zzlW&~U|skB5fa0>aP3Xudo$C}17joZ!f&uSzIb!^koha#M84!LSrh$n68aAK7JX-2 z-ks0&SOLpoZ*-APNAG(TOXF9VLHmhJJ+h{LeWn=tz(BMEk6{H|j|1>qtd6a24ZGkT zw85vaB))}y(m8@|v${RQ$Ly{+jQk9A_xy>jp{s6V|NCjSG>K+70NvlK(39^J+JWnP zWljBI!q)ga`Fqikm$*IrG<*iWME)H-fJ1tRUDC8q=vWVYmhvPn;jLA?Z`Q;-+;#{1 zzcCkXxifrOyZ}3r{{?Tydj07!H!i{gxM4un)bIa(G%$RLm2*&NU?}$G{>RW&{X4oS za}Ca#s{eYdL;iNW5uZX|R-X-K|GVh&42fSNp;OQiUCk5Fqx4a9)xQw)TcZ2X22aN8 zX+uMY3S$Q4&Cv6sKYHX&jpZxRDf=)q&>Qm(3;F8k9NmPj>LFMYC!zPP#Y*@I zx>gdyLr03E^)*D-N?&v>%)@E82A$&CBf^v>Cz5cE*I;)%gb!oQky%s!)_V(fA>Zb% z@Zb`3A0I_mbDmLQWH+EA>W!}Usc5KI$Lq(@`*V&C2U9KN({?h^jf9~cg@$r^%s-Ew zV4Gw9>*(+3!F0u#aO4(7pKpRS@K!WZkDw!c5AATav0NP1H7<0pEc$gq^O(N_Jy`BVJ2pF(KZAyT6MFQ1f!2E%jnD?D^4>8&293!5 z|6~7K;q-XnF*E|tpxf^~tcr)wkY70=R9qgNvK!EjbwN8i0^P3D(Ot7N=3hl4v=bfJ z0rdVKC$Rs$kZEG5IB&EV4xqd$+M)UA2sfjvd?%K}U(omd)sw(w^v-=-hpWhBR?c*3`cZ&4+Es_Cim%73dmx9S!+=SPl2b zeEQ^Yy#PAUQZZi#?P#)9ywDR}bi>gpc?jK3bI_2!i#G5T8j<6%JmsYCeOTWUL7kz#(8sZ7)B6|Yeo-d$_cT3EFiY~g7Xg!yvvi}>Axcs3Iy0++?4?_3#D0B*D zqYb=(?uu<_Lr2i<_#67%)ziWNGSCs1kJdx)Z;uY7H#)F^(^wpJNsObwlWz^$!;NT# zd(mC+CAyz;JRCYw3hR(>jE;07+OfIlet#9M=WVp%k7E7^8j-W;RHP-RhaTrgLz021 zBNTnGF*=g2=mU46Q#1xM@Lse7OJn&PXr#8I13HXu*AwWXyK+WYYjw~?n!Js~5E4_- zke@+UagLec8w+L84pl%$)ClcpSImli(8V+W?eJuD${s;Gz9RY-`uqoI=no@nhrj!_Y4{Mxq@a6Z6xeGtv4ULD$SeOnv|V z9TN8ZV|0$cMML*D8jIxhR&jMo_S7KjCs%y7DPK-5xw3Jt+)fa7W$!6Fe&;3+ThD*z3b2^ zco$Q@|NjXID>{aT=o~u7|HXWcN5TVFqa!Pcj`&9O{-$V$I-t9zPs|TS8=QpYa3)s3 z4QL0xe}w(-cKMBhQTR7j!r_mGP%cIrdKrD-b+lveM)#p1KOFO?&`ACr^SK@i5xX8O zuZ(uEDcZ4ikFo!~a2o}V>@M`n<%iI<@H{%Qt!M{6!3;ctR*;w*LY^C)f->m+_0f7e z#_RpishfljU=I5HqGY_V3f-q$V*YzHGUw3<@c-wgdY%nEX!1lWqxZE(E4(E-5N&8Y zx)vTp2e1T<*ediRSaK5yPq=r{5nPBDay}9A`Opf=q6bS8bPju=i){wFOO~S}--0&0 z4{h);df(4z{aNOP1Lzv;T05{cR9+^{_nUZP5sgM;lm-j^HJ(^oG{a>1d4>n8{FlShi{6O?`!8~*d-oVsaK)2H;=yPA9 zbNy4y|BWuPE9Qrh=ZjWA?`szG-Oc;{zbjsN5M3nmF?B$oBV3D)=uNc29WlQjT?9sF zdo4ppuo<26Ph$Qw+VL#UgpTIHn&eBw{H^Gm4@U=ZFM6;&f!3dVg@lXjeRPiZM!!Hu z_zk-1PoeiEmW77W(ei@meHCJPJv4G1u_WG!);j}@&|EY^i;#{a6B|fa!M;$CI2v#G zE9Ubr4~wNT+F%DXB7M*i+!M>^p=;qqG$JpfQ@at3>`rt5pT_)GnEL-ej*)N<|3X8P z{n^mt;%J5C(G#pHT2X7X!#ANL?T>yQm>A2GvHTJA`RCC3SE3(K-a@BvGp7FkzpqIc zn%~e+{e_M!^K;=7&UNS~oI>abGSCi`Mk}fv^EaWpqd(fvX!N!V1DOd#OqY-!$-Tyn#hQ3DU^a$F}UuXxjz7Q67ezapn(B~_l z+qcdO?0*Z|#v5)yM|dYX*F(|BOh!Za5IW*{@%lP+SG*Vf3cdeVT!H7YD=vL8YwCYc z`5nzSSrIz^^k&%X>`sjpd+h|u8q#PKMJ#_4eSSAu-{-OX zJ2b+-qaDn(CVU69B&L4^ne2+<0MMem8uLPNF~eQ&Rdet5?0;`aQeY_Opa;rgbPYTc%iqS-_Cp&wik^^X;`Qun!`xqucBm+N zPEvj5#KQz&q8J&f*x$IyDh>M~fu7wV)BYNN9BnemTWHhwX(2>4?8Mp=Qz!CJw{23j|zvxKvuM5v# zi%wy2^yI98HqZj?z^(E6NOS;G(CwR?PQv{=2OZG@EQK$k5AH=9{yush4PEy2p@9Nu zgXPe7Ks~g>x1ja)i;hAYPNGxzFj7x4F`tAZdLHfZCiDp2hc^5L+S3zgg{RPn{e!OR zwAaISErw26Lo^Z{(EEC$&kc^{iEcyJ!hW=&3us64ZOEGX zgT&>rIr%YY1l~f|!iVTu_zWHCL9}Bh(R1ZuEHCf|k#hf+B4LlJp%G~A1?+(~*gxj) zK^M=%=oBnR?_YyX)w}WfftWvwb|C%D@O{Fo(T?>)pC5ur_vLsJHZ&Vc;B#0FcVk2R z2diVfx57_K@4_+Uzd;-5@^*L$-GQ$1hp`+k!-}{EjpSe08Vhd>uj4@*+5dLn4GPNO zM_3cjVT+m|1st-qEnr1bLi+*o7w;N zxO^;VhVF)5XvKrjkc~y>coG`A*=Xn&q62sZjo=P+ioQng{{!7k>0830tb~ooH$?B7 zk|g0s7NQltgq{PN(TWd6&qlLt4fhpBBT@~$uMO76KJog~Xa`=4*LR?c^B@|5@1n_H zNLbN%w4y8D2^}hd&TVz9icMqrIBZ4!L3Csvq1){oIt5v`g)i6hqLFKe4yXmXNc*Gr zO$_;D;$ad-U`f2N8g2M(EQ=qY51vD(Cj0geHj+a6sS_jLx|A&z9fO#Cd;Tr6Om%W#je~``>8fYZ;p%4CrH)4gIagm}&>sV}t zlhF}x$I5sJ9eIxTL;iYnd$z-5c@pDEWZ<*tT<$<4@Hslif1({Myeo|026P*?L+=}i zj&M4pQcH{qGGqc85?GMDwN51EVIoh(G(!jOF{$=Z>Ote>Rrq_$YMb8gxK4qV+KKI&Mb7hT5Ye=z*@<0cgmlVoh9v zzP&z+o{86U?hOr;L>q354x}gg{3x{k=~xlxq4m6rOl2~0ltcyvmwz0#O?h;LtXT4j3~ityT7DzCtJ=o=ZRqpEFrWK>JPAWI3tcqx z(T3M!WBd@uVa`vprhZ%g0rY^m>a#GiD(EMsCTL_@p&jUq4ybp$J`9c2Xms^YMbp4z5D)TfaYk z{lAq0d-@@Ipd3IS{0r^C<)4S^rO=A2$9zL{JGG1XKIjOCqYX_#SN-&ue+)fY7h-4p z`E$lUltle6!XkVLZTJJUp@ZmD{223>un76=UxtRuM(d-`bw=m9FM2|bM$ePkXvdbL z9ey2MbGwryeBfKOg0pBOG9L&ZOmd+Omca~cg|6noXa^^u6;H#|6rv40k4EmTSpGSB za2-XTJBjY5Z|Ac=RILvC9vJ z?OO;P*bQhsEs+Q%6a7f|;Js)MABp(|XvbDYx1v4XkEs!0W%B3I^P$w&p~0r;b2p<6 z4Mjse4gILM6zk%fnA81#mV_fn915#CA6j8?bQ?877i9;u;k(et+!L?QLMvW~?uvC- z9=D@YcPf@&c{mKT5IWFGSd#V=bx7FL+tG$5qM=)iE}}JPgCE5FL9}Ckpf9H^--O6q zj)piRS`mHzhUiVvyU_Y(VzM-eMI;REyXXkMLMu9sM&^&0&weC4SOD!nDfGS?==snX z9a#%>3Ob?ZOaFL%XuN(GrUrV1{cngCQ{adcBLAD!c3 zXn6-T)VJWxI2zmGZgivtz6;-5s)Kiue-RyMj^y`Y6<>>fKxmB~II}b}AIZ=udiz-D z=yzy7`;Q@FRk0%ZX6T7F8Y|%rG;+VA9lL;T*StT4@~Y^rOV%Rch+Cou$W3S{`=B4e z#-fp!kB0IU^#1ke2)3iE|6_DYj-zWR^YQRp9<&3c(d$jn=Wau$D47^c!nv6cof2=D z7JUL;RLgK4u0lJ|_(Z6vBie!6(8!I8<+HF6`32Y*52E#4e=$ZtRwca~p5WD20qm&7dY|7s*$ zM77XJG>o>0wnszS4ZW{lbQt<}8;4dnIXWX=e=7P68nKtqUGWC`-20gN{@=$WY~U~& ziC@sQa3SWi{2Jyy7aGF+XhlWPiYue{*GD7L3T@z4v}1Rmi)|!6j#JR*@||M;yQqqt z3OAOC){HhmEAEI!=2o=gzOj5T+Q3+}!u!yvdIVj>FQLzGMmx3(z5ihJr&H{IM{w=kgHXoFuxe?=S2bT+h;8?7gK zO-vL)ZzzREq-L}^x~*DS?eGB$S*UAHz*#C~;849fUJ#>UWql+c$zu|$xXawq^4Rk?AIsmQc zKJ*jM)6sS46zoE$?mSv=ng2pNP0)@EN|JDd51|!(A8%j`sgL2MuoUGT(Yd`Ft!NqA z!Hwt~??*fMPxPuxX{m^mK_k=$-3w#@xp0zd!=PgOKrEp(fa6` zxD5^YNVMY*p&fb_%itz7QpeDSFGjD-l9q~eaira3qBRM7I1ugGjCjKuwBpaPCZ5IG zSmv^DUmtYWOhqHI2JOIZG$P-j5xG2T=x_$wq3Y=UEiv`;zrG~0P%sQVaPC4+wEv+I zn1Oa=Ir{e7ith8>=yM0rqx2i}L_CIWuTy9}f1|rAXIgl!5PH25*7E&-BMCz^Iyw#Q z>0-2kSJ4KyqZNIIcJzDnzMo_Hf6-j&X{n!b7eN>480?I5@G?A#9`(mCX(-N-@NB*^ zTUuf=7DOAGk9BYbdf&I`NdHDVoH={w;MM3FDvO?+Ezy_SK(wK8=yMOE1DT0V&Eo87 z;phLa#S2^TW-fe;1F+QPX{q0anT?~!Z^uDcy1`4*U!e3w|>9euy|#njqC=kzZ0 z`N`<>(_?;a^l9||l{f`oNs_Qfm9Gp9)JOA8(NK2Ab~p;1%PnZbUqydFcg<<6g86cV z)!!VgXE?e>CZR|1Be8rH+L7d2v0yXW^AFLUe;GZBF2WP&qWc@|NS54TF%?GVxHx() zR6{%19G&Y<=oIutJ2VPyCyDH)WMU=>7stF%kXRgj0bL}oqM_Z1F1pXqZFwAxP$ExQ zBN`iFH_n`OBj``(iJ?pS2zJpiz{{N0d9|}&PJ?wZ@sGwJL1lmv%-33e0P`(xY z91Zbr=t#5X4Ux)^9$1C22i}BTaSgf+v*aTJw4caE!X96R_OLkGkt*JR4Wg~k4s?kQ zi#~)-$ulv(5q<7+G_ps~Dg6;M@N_hHe)hiwRY{~i7@(o;kB($A+OgTur(^k==vFMt z^^ei1x`=i>SApVhe1A8?iiIRx~a3Ez>HPLH<5$jLY#x`~iJ^XA}#OXo{A1MBg1Vu>tPD z49rqIbg%?gbN@FZ(V7e6@dn(6_3$5b#C1!Am(mzC{~PjPqI}74|Lxd@`~s|rKcE9D zSSm!|*67pNhw|@YzG>++z7@m%n?}M5zhDz=UnV^GC^jR%9~0lbe}%Nft2i2M zsCY#>%-gCP8oAdirzMu-f9P&mUL{0eExPJ|L+h_oHSCVQ*opjZOg>7YV6||7tU^P$ z6D#6B=prgtJuNX6N1!7=hn2BZjd0)1X#PPYpo#TZ4r|m5A3S>FP2|_2pQO@jg(J8` zE%tvg3R+Om0SBWadK2w==Gvj6*4UE#SoHJ3CNx5M>x7Y2MW^akT!c$w{>Hi?)Kkz7 zJ%)u{HtgLF5yTlm~0R#oPk9s_zGP-7ty1*P{S}aHSq`Xov>0SzC3Rf zD!j9C*nVrVG1vEF6D-gqY~LQ}cASc?ooz9H7F}z}N=?%ekC7OPW$_aB#L~^uQvV+K z0raEOA#@S_jdrj^^U&c|Xnqj724-Pj+=NE9aEp*{jgEX3md0JkODmZ;L&8vB(K4Ln z4bYwq#{#$#JwUdhizv}5RD3g5Cwm_{r>~>w?P-*SoEc}4E-Fi5li70=*#F5 z`o(R5P9Z||us-=dnELlWPm^%2UPBk*Va&iw=y_1MbLdDnw4(8tAD5sFtwZPZAUXw^ zyM*UUq3@8EcpZ*G?|THT=Z!Axe=9glfe&8RH7t@c=nc)$2Zy2~ofga2qt6{gN1Ul! z=-~C}B5Q~~e;eB1{pkHGWBDg&#QyBY{`W$jo5F*2&?&eHjl>wVfybk-prPL#um6sA zJnzk+!P@92n_lR1Bhf`X18rv+8j)RS2hSyALBU(X2wI>c9gJ4+WX!KckKS*v3+C<~ zD(Hu;$WKQX~_a_9|B&GB%1jE z+S9{m=&$G--UX#_3i)2>k^Buh$LG-wXS*Xj*9D#9DQKi##2auoI>5{Ng>$9{dVb8t z)ZhR5ibP8a((VigMhA56=AnygJ9+~Ch*n&(e^}Km(U6Wr%jcr^uSYv_0A2n6p^LWk zfKc8Uz3+dRw1UMXtY9me|2BHrz))TqUA3*zipQZ9FOKd&*UB$3pMOwTob}O&_Cpuj zV`%*!N6!vo|J$?tgF{0NqkW?fpbtDB^SfgHBszkeLqbDU(a(mrU=4f>y}mPg60PUT zp`o3s==SS6G#Lse#DYcWgWJ$me+>P=QD9hDOvAAq`Df8coQYmNJVc~HbO1WAIq1>- zX3QVPj^xuvgl&6El0+K{oun74d(9mCYfA~VCG&Uzc z2veW`Ux^nQJ`m<~3QpsOO_)0q-!^|Rg#4zdVfDU+F1G9sg>BaWJ!1cdo(n55Kkh@{ zem|l|^d)paRi=fv?Jd*T|E~VA6nIo_#ZLGaenP`-A5KdwC0}Spn3B!t%js|QD6Tk@ zZ{KlWbNm`x&I%nYJ|}c&4EoM^77cmgk?`(lg_hs(2%+?>-%5cWG!DiK=W!PKu8)T8 zbrcuVz!i^$ZM0%;_{{ek*5qn@secbN1V@qIkFKE>3xaRq81fYs zrlo#|^cfsM{<=lM890P|@*;_$B<@@sD%yv`$TwLMT!S`n{nH^o2M3Y=8wdN`(y-t6 zqHnbt&xFM{1>JrhVk<1REUc}e=%?)$k=>O{d`-e_k!g8&4QHS)lm6(UnS*Z2ZL$0e zUQhnoXT$2Qh3&}SjGlzgqHAd{w!rMqh1K5)&5uFPgSWAv`#;C?;oxY89x#t!Q+y9! z!|X4Fk#54gtbtN5rX`-F{Du{2iLLkvy3HPYDJ}JPLDr&+E#Jz}(c93en-KHskY*G6 z@C6f{R;8tW`t>LFA%D~AFyakZf&4Kv5?8$(&iv-+ejkH<@HsR>Szif@xCUk?-wD0% zR`kT2iAC`=UWIwq(2+bON|4BbwJ;rbYvqi1LvSqvj%P80A7yYp;PiJ=EKWh z4c}ZYg4xIy$1AWxv<~JX-|SWP|79e)QDB8VFemnlj>0R+C((}1!MylP%&(96o#==T zq8<7bZSVs6{AFvyw#$p=OT>Kjwe0^?Pblz#ZfFPk#2ZJT4Npc#_6XX6=VJMrG5-PD zfp5?V{)UeHB3f_e*FwElqWSA%zD$xtD)iB&Xb(G~Bk3I-f<8DdUcV1>lYcbkm&N?6 z=zzAN^?rg5=$m-`7qp|7Vm_IBT_`Aujzr=#iX z!&|QidZN}r-=f`O`NUZMI9}`iUlT9vMnn7^mc~EP5f^zql$S^Ijj#r`L)XlGXvb%w zFQFx9hd)AJK4+ro8$v`2qwSQ%+-}4MBs_pRqH{I^ZD>3?1rMMhn-j~Ip;PoSI@g9@Fq& ztc6)Oh0lofa0dA&upJiJ9A2}-(C41S2KY33q#s6);-XtZ}S?Yp6(oI66rdC`bmjUGsa(Tb~~^|eNiNR|lX*y+TjiH`gXM8kI|_) zhIaf67IpvsM-XcM&JQE1QaMJrqu%U?!U``c*8K0r>g#96fCId+8;upk=h z>d`jnfcm2M&BoNf|6fGH9<7ZR-ihu-dwdA}LgFX1Bm4(|sSxHsPqGZOye4{oV=Rg7 z(2kBq7vKHp)IE;gzZg^B|64)AHLwZo*V8 zTZ%^DCA8u7vHTr$fFGa{IfM@2mp$x%AH3qDux;|A6;wn+TL(Rw+egP@8S;zJDcgbW z^Uu%&=Swt#N6>nHMeDhMb~xwW5W%a^4i!(5s79hDR>47NC>LN4+=e!I-N&K9W@rOl z(N*0SZ^ZHFJ7Qfd{|pWF33PyoePMu?qua9>x)zdUNMt5a6&*nhbVT*g5H>>Rs$I86@Jr0VKe4^<|7$)8pW6qZbMhD##aGeo_bIv< z|3D9pv`<5a3Zfybh=#Ty+TmvC3D^nU#)HrfjYB*B09xM?O#S{e-4Y2e-EqT3G@TXbzido zos+s>hNHJD8oK+@5iCU;SRXwUz3f2P6&29!c@ui#-4pZ6u@Cv(==0^i3io$Gr*aZH zp!>dJ{~NMd6gamF(Z#n6jl{cXg!ZE^ouAPM(+-C6Jh+8?8B86~=#(YC4)x|jr>qcq z@Ki@5+cerSNx}~FL`OUrjmW*|+|EZs{(QXt7Fy9>v_s#->le|6avloz7e~K|RU0iI zhqf~lt#?5*`2q=hv<@BFR!kk0=tvI5@}Fb*d9*{>4u|KiNAD|xHc%T&VDnf$1nt0t z=p)hR!}VlhBMCe30ow2vn1RR93bTI`B6Br5B^A(BTpta2OLU6*pb;F8ZqHdU{{%X) zm(WGI9$hQ@QrFpk=SdjSD~^N*uS2&-akS^P&3KkyiRPRNNHpa7VO5 zcc4e|;COvF-bH=_dIX%06r_J1`Jl}I?EzUbncfQIyObV^pDBit0-6Uz_9{3&!w z{>9YV_&z*$J({nCKHntTC6?duJ^TMbF5FFlbNP2P-w&Zf6)}VI=4eL-pdVtNma&`0P< zj>Y^R=m>NE6e3U*&6h{#x*_hup6Jw-I35Nv5UY@%kR;(MUm1Nfx)bfdessh?q1);o z^r$U*B6Ortv=h4D`=BT2)9B*ch&J>AR>i;3dMlm`-_A=mB4Nm0Mn|>_T_gw45nMnU z%=dHXXmxb;HbzI<0iA+7Ff}#k+L?_G>^XE1zlN@@9KVEtl*019|J#!AogV07y)9MF{vSZX2S=w0 zc=@0qnuCsX8P>s9(Czh8^b}h0ALz(3oeB}T4qY>q(Sg-QBhd&QSO>JdUYPp-e}|K> zM@e*K)6w0q5UqF}dZ2uSM(6-~|2Jp{j-wTxL#OPr)1ko(w8NF6HPI=mheoC|CLQS@ z683l!`oII|jWf^+m&WTG(T3l}8}K8vquI`c=Zm5vE{jI48ancZ(e|;tC;G{1&>8l> z`+7J9jwFfh&zUj*5?bNwXhmD1d(h_&qR;(;Hh3YL^|!DFu0kVI1|3ixbinP==lcA{ z{&$4KC~!4D99@jg)vM?OThRtSMIStZPRY;c>OYS*kmGC!ZBex2bT#qx8} z|Ijsa`CsAwLg>KCpdGD-KG(qOw4Z1jFWijYc!w8o7`g_=ql;`hTEWtIeHA(-8)Er; zvHTPC{zKRn&!UlN@OS7~3-q}jm`v?M5-zIY=#6905KlsHoEcq+9eA zxL7_7n^OKb8i_B_Beig*^i;=dq8)06cBDII;81ii&x$Tdl5jD-g7)Y&^x)Wp9>wpW z+hz|sH3wt)cj$;tpwC@IBbFs|@GA8FqBsxB;zZmU%Wue%o{B`W2?^(-V=U;8j(9ZM z@MN^&ndrf>5FOEGbcFkG0RDhu*)44^OHY&{|4!EQ)SCJUGsypno-|(UEk;O4ti4;w-F;Z=)kRiFW8L-h-La(^Eg7yceC4GdLG(WTTu8y^lt!?&aaR z)@WqAW9r}k_9o$ohoh1BAC|;9=wewPuWv&u+7rtUp&dRE^S`4VPFxY{tAwtly6AIl zk^UrlqEp-pv$+2Uknq7F@rL>FhK1-9Jd1AAwP?>b;N7?xJ-BM*2y3W6I)K4wM3Yz@ z7h!Gu7(G$bbEc<$8X9*1w9wW;s|^KTVs|y>8anWYLAo1&qcTMl~<*wem1=Js`O;4C)x6*r+yuFEVkr^ zAFw@E$d{h_HvB~FPktZv!dm&mTt9)gkUxNpu}XmukUmHd?9i57eXedvhtNuT9&WaUGPyB`D(dSBC7gl$h=umX+%);{c z8kWXy;`OxaLw%*O1dE|fl0*iHk%hvIj}{I$yooh<@M~;_xr?NyJ`3K2hISM zm(c@cH@euqjb zL__=poufPzLJyl_bMp6N7u<#J|LZEIr+ziN7}|kJ=utce``~i)yvR~1yu`9a^PvY? z272IC#H5KjBs^N1M%zZaqI296Gw^@NT1_m#thfl>70b|$tV9>z=IGaGhc9AoOjHgB zRUY*1n!hsp-_=``0$-o?&~4W>Iv8`3Phu9FjaKv+x~-O@i|zw7QWwzs8dM1#Yl1e^ z7A?O8J+gaZX6#=j8Ad*c0vFd^Xh$B#BDfS?#aq#leuakcJM<-V8jaw;=vkk=YI^Du z&vj_NO0)?&CEd{bd!X-xJCh__-D6|Hqv%vTgEqJV9l=^Ol$+5h*nxgL--%Xy1nt-l z=<~m!&tF7GoVi-)a1KnZA+#gOVkBHV7116wMo+xX=(Ze-Mr1*}{%Xv>gLdpoG(z8_ zQ+X-ouc;m)Pz_xx&CvVXpdGv!>0mN(I|+L<5X;~Qv}aGn^5s~Z{7Yy>AE6!k3?2DN zG}NcjwUenvh{V-sy(Q3ym5=2W(W$*5b)EfpD+w#=8y$f5bSN6S@#rGF5ADDsXvOm| z^_33#{93f*8_?ab4UNct^!d~1qP>K6v}8?o7wso*B;g3UV_6)6&gB#694kIM&&Q)3nTw8K zDLUep(FV4o&+U!ZKaJ%_(K-GFz5g8A@$9ujJ%!MBLiyV4e-mve@PWbT2u7g|KY)hx zQFPxgLbu&&bP6`26>mpJ_(k+6dJvsN_j$HD;azYAy3K2&5$jlo{clCxC~!nQ(S`@2 z4~|8*=XkV%$I%WfK`UB~hI9uy6(3oV{zaA^+}YV zpf7skL+D87pf^5^c4T$*HFU&p#{B2euhGbTi#OmgbQfjR4{PB@^tm2rgzm_IVgH+GLc%kDGP(<%L66AQSQGc4Jga*h5*_I%tbwzzGH%0?_#0Nl ztDB{#z6;(Qo05OH8T-E)i9Hk;^8e6C=&HI zjJP=ZKwWg?U9c4PiscWYQ?Ue%#2WP7@Ifs94r`D$GlRgn6+Y`RmaT4o2s8D%z1}@f;(31>HT*-W+zxIy6GZ&|Pr~ozj2MDZKU;&IzoH zNpIXj!nuAQGw>61O3tDqOY0sgxCV_(O|-lfIt90)9U2*(h>mnBdf+^UKDPji;%ama z?Cs9}cOM?1zy~hI8?*KZ`D@TsS^~YVI(neAM;1?F43@^VI1;}?Pr}x>h7NT?^F7gR zcn3PL<@h9SxRw2H&)fG5c1KrrKQwd`(a=4NcI0_mO zLL*!i?Z^#iL>kBP*2#FG3pxco&;zAkykQX9!BJ?0?m_Q+7=78yMH_e$y>BUc-%9jt zx&c`tiMP;(H=_5yi`J9eL&BbYfmU!BecK&JD>{WX^cOk>|Dut(rdMd7RJ1JGPzAJs zN@xSM(fS*s^|nIW>44OqO!OdO&-$Ye439UAM=QD?tzag4-&}NL3(*FbU>Ooiu`3sL z-Hzn1?;E}+bk`lh*Kj%apTmdnsea1-FMMZu>VG_b9v5?=QvdYC)A%9oz##)dgOvw{ zj#R^5l-I>43C&YD-sgs$*;pvHGNqT&ggd@8D zuJqJDy_kwFwzF6cGmQ%0Sg3$?$@fA}%BRp!zJX5Bb~I8u(e3sTx|WW{>&MXTdICKM z{>9Y)|CMia2z5zxZY!btyB>OD2fP>WM5pL`bSi#DJNie=Up6L`=RiA{FXn4tRr2*> z`3SV0Ib+!WzTM_iPzE=n9rzJFLeItW9AoJSb6OLNQQmf3dSVHVz2kPf?y_LWsyBbh|E(u0hX%O%vGvhH4)LrSN+!jh9ahtG^l=(gx`MZjSDPJJ2Kd z9;|?~V*V|(gS)XB{(?rT$fOX-(r9GrV^QptB;iQajy#1{xH9IyL@PLnHh302Iy2uB z%!}>Gmq14}8ja{f=oGF(JG>bkz?Wzw&Y@G6%rrS%$c3% z7toHaLmS?RcJO2L1U!PCl$X$sTyt-@uUxbN@>WeIx{z>H4n-p{CEoBj+MyTGMffJV z8}_0NTtx4`nkn@4T`qoDQrC zQ4O8T-dG;zq8;9Xp8cPpBRz@Eeb)QJ^)l$x)<*|&6FT<;(2hTZsh|HZAmJRYLVI`- zor0YAhX<>oA#8$nup8Qe;b;f$M;lmx&h<+4{vFXTuq^rGSP`#!AbcQcgvlxtj3ZGS zUqCzX4H}}e=m@es7&?@JR@4lgf)VKJcotU0*U*UlfHz>Cso{f5JG8z*XoT)XBerZR z``=GCn<#K(2hb7yhCYz(p)j(-=!hz#<&Dt@+=7O37#iASyuK9e=P}GrI~p*E7(LZ9qHlF}mu%MHkfxycyG`htT&zM>Zb4Z!Y@W z!dSiT|+cX^ak}8&+`t_b1WT2jYcq&_#6`jZEf8!eYA~U1U|!#nl-Nw%ym&Tq_?0I3_?5lAo|=>(bv$9euOsoW6WPbpUd-97(m6R*#C~C9tG~_w&;U{ z(1z|qPsX{}4L?95Qe=L(zdCwfCp5%;(MV1~51ePwj=hK8cNC4-Z)kg0Bo~Am%Anh% zDSGe>LMwa%?ch3e@oh&({2f}sA83VFEe!QkKpSp}c62a$QcgzK!d$c?OVM4Ce3gU^ zZ9ywKjE4MAbid|Y6g~kJKp!lGHe3nqNZVL`JGw1LVpCj+M)DL^!t}*qN^7C#Ne8Uz z{_ju11LZ07ffvyZyn~M53$&q=(M#xvaxV!LmPD`DM=S1x&iO!ewNHrGm!kuC9UZ_< z%T2;V_R{wZ4FF|3Z~(X~?UnNZ#aeXb{_ zwjCPbnV9s(W%0r`G=CT!=_T~R{L4bf%cA)PXa!wjeh|9q??F4X6dmzv@%nbmApZp# z`ajVD#%~MY|0h`B8MPe?vP^@Y&E{MKq!v z&;|#gujPqoyZ1kv3=J=&z>3yjYVn~BeSvo9*I1tExlqy7=prnO&UFLytJ}8d^POXU zAbOM!$IEa68ku|1`{pD`cr-qTH{l)}fW@8SFBdI{}tl~=uJNe<*0(T}!IOjRv4hPFs=$T&vowJ7MOQdzocZ%MMK6fWNC4*!6edy|*iFe{k z9E`a(hBY(+ovP{4|4U~CD5s>fp)kha$@rLe@Hme{^-Fm65Tda(FT`d1N<_U7uXsWV-?JxydAm- zhojr`A>?35tcdx&=;AwrHk|35Q2(`<`uktiNw~T@qjNGGyWx8Df$ZDD6ck1GZ5ec% z-GbGyAG%1NM0e9RbdeoL2b6z%csrIyBi#Wj;%H2L{(pvq?|?1ngFm7-=6yGWxHj6s zThOT(gMOj$0NU_2bk2W?Ua=$WhH_|q-SBz551sqc?*-doYX6TS;aNQ&?Z^gngx{e1 z_ayobxQKS-+MQwb*Tl=o55XKb4m}s{N4Mu@bk2W5kMO_Hb0*LGp}ge#?0?_Obtp*3 zHfYGZpbZZ}8=QcSa2`6x>(L6oK=1n%4gEhcUwl`nuNr#&hG^?(ceG;zcO~No0tyWI z{pd(uK;K&H(1y36i|8m?;cv+5Wjln3rD0#Pl`soFif-E{(EApli+Wis--wZ%FJ3+ov4b!%k=ir$nDa=Wti_5c>QXw4)c$j%WKQ45R>h4pcy=x@9cy zf!vo&j3iNs3zN~;<7#Y!X?sIRJEI|Ahc>VsU96v?-+n)XhIZPg;rcQ(_Iq2eCk49i0j>7{n-(i1viQSBz z1HI7!jEhdiI==tsk!X#3(M5C3=fNWA$V;I|YEAU5*an^Ru4rg)M@KvXjZ6|fQJ0_{ zei4oE#(4cCmLs3-3--T@qB;o|MKAOt)?{=$EkqBDZRqFwAJO}>e;F2Qb+o}YSRMzV zi|`5bzV~AJX>_q(cOdMh8ffIY9$^31Coz%&7u(C|Yx6KV;(}j=8!MydLR)k@_QTS6 zKUTz*=!g!W&u2Lp_ID#R5?!Oc&?y**MKbYix`XV0d-l}VVG+HGhWrEc1pErO<1sXp zD-NZn{!qy#H1w?w#}1)WcR#vTrlSYUBJ@0X1%3WCG@?7vHS}|mL`@QTz6o>N5`CZ( z8j)`3>V6RI`O|2}UWw&zqibP*%pXAqbP;Xvsw1J^QfLG#qvuCUbV`$BNjO(ep(Edh zR=5wHqp#5;_fK?@U3)ZCTm-9U;UihK@4_w_hpv^$NQaV% zmq>WzZbMi1UUUw>MCUf&_u&9)f-cGd*qOPTjU&h(`629{4#&b*HuKRF@JDoDxqeJf zJcD(yB_2d~L$ROY=l{+m9KmdCgxj$(W;q^4+8jLrd*G1F^c=1D_(^_#hgba^ep6~a zI%U7&5-jvf_;KAvY)1YM?1ne|8g|VinELnsFOx9zo6%73K@W^m=xV?0RQRM*9KGHQ zSKs*+k!RTrqjjr+u=wh3NKL1Sg_2>ua+w%w-$usC8%=ZWT-#Ksm zM_Ao$(A9e@8j&&RTk-x_z99M<`u6$|t@vMbJLWnc7FRiR@!pI!I2x_@NwmH-=q}oM zJ{dy$DFx2y@94Xr(4XmvpRqjp;MEtxzOI5++yt}Z?dbi3&;#jiY>!W)Q}qk>#49g` zDIJ3D|0!sso==jvlf>KTfl%bH@H-#Pu`&6%*b4V!Yb^A47~w#)V~^tvxH^{qgpJ7O z{UixYohnJkNG>%DY+*) zKe`_6;68L0okHu&$%@lbc&+dMh9tbPM|6C29{N^XhZ*=8I`VVqi1TF1mWoVybn055 z2hT8Ug!9lf^#yuTCNgJBy`-w4q3?yMpZ^UbVFmZ1+vz!Ud%fWexCQOVK6KlhL8qip zmTakaLLGGbwTj+`)^iuSNFRvhv(YJChJIjq1CxesD+xpTHO|Jf=p0VDEHtg1Y%!?Kuyp{_CPsdp<q6bl;HU%5%hc+|}Z^Nl*1K*>e%#kbHcRf0wGU&{z zppj~d9_6>95gmcu@Byrbhtc~}bBFc|VNdt}WD4)_!7+RR7hRc}{2JXXPio3g>Tlt# zSS)X9^6!exK(GIb4YBuCq2njfkgq_KcN03HWAXYgXwGE0IyL$C1`Fd2?*GLUoZ*}3 z4IiSR`X0^Ve`CF1zK}fS(OjsB&bTca!ETs=1JH9|O02I%zu@de?>mML{A;h%e@cn` zp~1@N$eW`%Fcclwcyw*&q8%?bz6mp^@5ki#hIl<|f$-dQ=zwoRBUA@niuRar zJM^RAn%$0eGzs0G)6pb+7d%)lN+!Y-PSpx|1lXZn2fgnI#9l8>X`M*l{W@`~$22yaBU zX=AL0{qY8T42|roXuCV2U!dFfBG$)5<{QFH8evf`v_V5X0=;n_nsiT~x$+D)#kKMC zpV1@s4>UsmMDt{%^0%V-S9H+pm!i3ghW3gg?IlvmP;gsRLqpaGU8BBO7Vku7v=m*# zt(bw|Vs%U{7Hohf;W)Iz7ttko2aWJiG@{?3OLh_Y`|q6P#lwyHu^}In$M!f9O}4kO zE`Ej$ut14$baqDvItlG)9@_9~^fmo9-h|)9`jt0^rLBkVg4;0p`+tilm?STv5%>^Y zo1f5RDtl9~F?zixw!+8JWITyRqD;wf-vF#ieLPmewXuF2-5pn!3KJ`Z2|H*>!GoqR zI)icOjkC}%Cd<(Q?m}mJ7EP)wrNe%|9-V0m?1UrH_O?bpM$d&GV?AG)@RlrFhW+pB zvNsoe;2|`*o$XihwbhV%f|#*}iQ!#Zd?gU}?MiYE0# zXih9Bmk4Y5Y`kF?nj{CJU!nv16^%?<`7nSY=l~kT`T(?}DQNO7kJn#C+xr-O{#$gr zUP5!HP@+P(PyyZ7?a-0kh9=(x^ypoP4rBvn;0Ne^KcGu^30;D`6+?%$(EHoO`atx) zyP^-F?IxB{aNE3%uJr}<=q*$!oC96ZwYwXg@e*`N-a)@WoI`UXU*%vebRf5&OFIp1 zcLRE&9z*ZXQYFhHFB;05s)kV4LQl9}Xa~2WN&7IG zoU73RZbzT{7QO#(w4bzUMkv8=pHWEe0`!Ky=vs|LLo@}GGe_@x2VKLD(fco;9b~B< zmLxyAwl~FkU9`P+=zRm?^*b^7|9?%RVA3o@-}@WTwcmyr_$4}!Of|yHil8&Dg+{0! zI-{9r4!wj9aCfYqiKf&H1H2X;U|CH5{(qzR!2ooGW6=($p(9@wuWyXLk0#$yw8QVv z`!m-H_3P0{)k53r5FHS&--+Hos}}p;23B%`WJuYH+3`G@y?>#hzp{3C`BX+<*LBf> zwTSjc2Q(_y6VXS}cgt!t88@OiaSCleM;-RRp}W3L7;$s-E!PLVVF+g6eP~iGiPzsi zLwpc##-FefwyYcOy9fO~@hG}f&!9`S6V3i}=v(&cM7^*rYM?V4h^aUN4c*;nPRvAS zxDd^a)o2KJqTA{e8p&Ms!vIR6&ozm5M(-OC>vJ$G^~94D>}VM}<5$qo?naNw&(Vgy zMh9>KJ?XMG2yev_==m`KeK#z^+PEH#&<|+jQX7VIr8t@!w;)l zkn$>4q`n;;(649+vo}gj{X zA_doCJ38WT(1RpPlMvFv(HiK%)CtSuJ?KnUp##{AHhdt~Pob~#-!KF7HVxan3ObSI zScv{pMp5uP-z;<>8_)rK><#!cnxv`C!u5)nLA@2)&>d)2KY~^9bu`J&q656Lc^KG@ z*pPZ{bV(*+!en}kf;VnNBk%$KfZs+xY7u6#rDe#G&(QnNV<*hfDh#|AI^cU_{c&tS z{SEYh`xE_Ul-@cdan06o|M%d6YcmGjF7weFH=$X38f_?dn=pg+=>2oiq+N$D&5r1g zm_a>X+mKt;(IxANF3EIspwG5Vgpq9Kf-^dfx8r$CzLeSpXW(eAZ$Lv`tbNG#meKxb zgA>rBbpbkoRoDm*qtE5*5C&d5dUGNcCZZ24MjzN2>p41xdNuU(yU`gxi*C0!(Oqx| zo!KcgC;mg%xKyXGq)pNDVjyP5`=g1;6x@E((39^ubicoh&SWdPc84)1otBIA}|6M4Ul@FpF?m!>-G}iw>cf}Q5!7hM?PV z92(NO=vqIIskj}D$X@gu_ys)&GItM4Qy^LrjZiJLonBZeLE$b6?(daoB=({MxuQqN z+M?*pI-*JVD4GjddWIaRgbtt;df!O&Jb48j&~Y?ZenJP9tyjp2LYUnDH7WQ(4|L|k z(4#qj|&XP!kP@ebPV*H{4y^bG@O zj%}!qKy&K#zU+Swj?cJYhnf3@4ys^Q>K)MS))meEVbKZbHhK_i;7l~sThW~P5RJ$e zXe9qeBbeSl{5oR+wEe;f3N~Cceoz73KGo2MhoTQIMYrc#G>Kk~pC5_WuNV-PEQG9L=%BWD1QaEX1976it?;1H)QvLI?5zR>PD*VF1<9oav4kcn7w? z*=T4Fq36nP=n@vVHGD5CND?Rbdw3yhcf=b~2ge(+i8rFV;vKAo|6yCKH6#q+ zL3FJbVFvC&m-1|^Uw2!`se0(H7>Xw00!+UDSH>IOLf7gWG}-<@N1A_Vuo8L>v_%Ir z82zHL5>2wp*c{8=9%eii{RXuJZTC4eGMmsP{1o#gDEv*qWXXL;ShG@?Jcw`x*E``@ zJc>VJ>tU%WzhI5wsmb4-D>)(@VB^tkc0ZacE79%u658Ir=qYsR{=$Sa%sDb-ZAo-D z)IdYj4^5)6=vq!g&xhyG0l$Uj#1ZstPa73-r%JR9dfy;)Ti=Ji-dCfM+&_x_Z?c`? zf&=*%-Oq(ahY{9Cm!dN|pfP9z)6jveLHGMsbcUzVhW|zfe$|-JP6_n>TIdqAM+Y`$ zOd^DAHW%FIub^wQ8#C}bG-=YthVS=P(d&cJFBH>bePi?p*5Uf^=u%X=GbCeAbl@}5 z_ST_C_0a?cXL#LRA@p_72n<5kXa-irC(#)lz@_*lj=;pY@Z68+{rT<=kt~JQo1(eU z6K!{3bUNB^Vhsh?b~hU0AJ9nrgLN_A_|S1DbcqIG2HuZGU@6wbedtnToe-WYjfQ*( zy2O*vgYFS@sg_|6_y21Y9AVCTLg)*i+ocBDVM|QMLFm9nq76M5U4Y3G676U$Iz=V&+JZk9Q&gk)twX??1FDoABJZ6P4|Y+JE8--4X?zp z==XssXmZU)lW`^b)oTknz)#UgpT{fQ|5@(~4dp>+d>z_g4Rj4#pbhqppN~V=avr+B zH=+?dghu8#dLVs=K6lOiVaY0^5$S>sd;liwXgCE!crRwhnK&LFj@Pq25E{sf!?|7s z-6c!$X55OMupqmsC*Fac3)`?3{(-h%adK#P`97Ld$I!_99IszBHSCTX(fit?_YJ_=IDRT4GXj~Wg%RdOLtZ3W z8O`G6==ST44sZmzj~_%kdm`GtA+EB^q z;lZ}(8VyI2b3E3>>F9vAplkjSnlqoHS^X#4aPb)-HyWV>?icIh(Fs0=4m9yR1w-;S zI>SS_5Kp7~dD6_(ls=i+uXqRbOAm!#gdQ?G+`j@Vas4&4oik|CU5*x*69!lbZNDvg z1ouS-!tei4a7K@z53WJi_C0haU&QN|W4*xt!i=h-p=}%MgJOLW+R*|uA}g>49zXM7tp2PUES&q3Q= zh7RaebP0E&&;5(!Kfh@_FT5U`qc@JhIye>U;uiF^{5O`tqVvN$p&eGEJ{euA*DwP= zLqmKCcW2@kw-$t#(YKGppQ0ZPM|XQnG~~v6DVR)eqa%JFJt#iI4EzrLCX@D9NY1=y z2bIx?bwl57eX%G`LzC_~^u*i}ub)BhPklVJpZ9U*?^@r$1&_+Q=xehZn)UahGn6V!hBD8k(SBs3)LnI~_gK*Q0BG z08OSpuqvi64jnYWcGU03>bM8JFXhP)fqdu^6~WBd2tC@Hq7!NpKTmX{VCW`bX@fN=`2ro-k2o8zc`78`vuG9{MQ4`(>CkaS^kAul4yY~qd4F`NC!#0gl7T(56^~>r>qDA$csj#1UA8Xv7SIf{{)(3FJU?!LfiQqeePGZ!}OIQl2@Zk zSPuQX-b(hr+o2m5GVoT+iVvbm@=(0K2JLVUnnYir+wULri$~GtLc@2W$vPDs&^mN? zy@3v7CmOMX=m5TYE)j0{n+s-pj#XhG`Op)uI<~<2cr!kTUGZeJ%4*(@)Mua}K7|?h zAG!n?&xe6kM+edzO~S6|1V<()m^5?I(7cGwa5I`L$I$J07CnH9tO?m&3(bwbm^>-b z2+c-M(B)_(cB9W-h}Uzk4bN9ckL*Nm3ce;MV^w?+O`0#!hBChp238u~4YkoV?}CQ% zZgfU75N8j0J>Z5Lf;)T(TE&G@}I1y;E8tu4gG)UQe5|PSj)2L zTDHTQI1tO@Vl+a#um}E(U9kE3@b!BUnuNR1-1sPZ4vkFCSCIbs-)O@P_0SRDjCMEz zU5Y8_wptNCe-jPyzF0qx-j{Vl*uFQRXM9aG>l>pJY=aJ@NAxaCWaq+s3O?`z+VOHU zM4Qle!Xfm*OPGNLH-_uA(U9MY^>A9Ozl#p=ORR|5UX2GC+HP0$=YmnMvi~it=7Kr! zCAP(DUkkr@d>i`Z@&#;!pQFiIWK(FcHJTGc(WRS<&2SBN$Dh$;ZT5Od(xKRt`V=%N z-+!I`Ux&i?T$q9--UvTduR`9X8k^_foHHf7I`ZSs4Mzia3bD| zvvCw=e>>#N-Dt#~PEZ&`;ZrPy^)`p!-5P?)5n?N@e~;c*WlKn|$I)|R2e!e}*cdBp z4Fep5Mq&lJ6yIS5%=Jz<7wX~7)DuG~%%iXky|MGV;fC>O2g}hld>1`%eu7xi4LF*TtH`d^`5X)bXt*@LjPhnnSbDe%`=o zcw|5O--de~2nWLybmUJ*x1j?$6HPrBMqUPeD|SP--3)YXH{&DtJ-WvCeHbFJ61{&9 zX5eKsQbi6WLg?Eb3ZWj2CeKsY1P`J!zUrg!U}JQKgV5da5cb38u@UAt9BhR?{}6g^ z?8Ek$?MQ0MEbNL-{PP5bE`IQF_+rruJ-J>)vpw@CVL%74?nRKL0=jr z(EA#q_jN*(ZV0*?=A-AwdMtoD(TJQtBX$`x@cI*>-Vl?2{%0VCtN7ramOz)FF51ojO#c7BlPEZ&`Iv#v zp)=cwzIM;Y&vSnn?kkQCxE30zw&)Vw8b64roZM--kB57~L(~(3#}>I?TKVdjHMnl8r$-ekj&gpcC1Qw(~uD zGUojz5ni`7ze!E`g9}ff+4=C9;9KYb&tP`U^lfVLAEix2*ZdL8jhitm?u~wkCgsQI zjDN>mnEGA#GFt%Cs9&Fmg;MBRRzb784SHhrLEjB?(GkCbZo{Lop5yyaFOM!sU-bTo zm;;xfU$>t_C-yp;Yp2l&CH|sd$glb#tXV~LWKGc#w?}8tCprpkU`nhnL_@v??RY!7 zG-uG0GWBe@zal!2W|)CJf{By~6nt zPoo3ags%B9bT?%CDGZuKhqm&CFInuBx)$6bn z_D8qjEVRM5usohbzZvEHExcaaph-F%?eLZ8k@)$a=x(U;dq~Qg@jmJ^5)^z{WceeE zunKx(&*%f_K%PU_{s0=fQ)ow-{|wLFh<@G%t71QNrjMZQy^6K)IM%~_e}#IYGle=_ zn2p}}KH9;L=)iLR9lj6L#VXXtVhvo0-hUjuKl8T?!{yCp5&9u{N$m2XGPxVy??!ZAYU?`V4v!Zb6sqCv1k5|4B{$P08_S$M0fS zJcXVIHU13~xD_k9|DU8#lMnWwBhLI^_=AKs(3#9Y_v?BzpqImrUOuWPg?@-u?qq3$YXILy-T5?-8kG4ZY z-ZeS~UGur<0M?=B!Y1@wcrRZ606hmj!sK>C&ykeu;r_hY(-O%G*K@&_Lq#-HjnNMK zpdq{mJ&2yb?6?{Y^-Ji?-bb_h7!JU^If8ehU(pU@OZ+}sIW;YLUQA5o??2h$6fWF? zPoXpW3(eAkX=%xmt0B79eb6H{f$eY!x^zEaA1s)jmQ2=h=*&OC+;|S(#edNw{hceq z5`UJU;0&(M8D>}+r&4c>MqmdTfv?a8Q*xyxzn&LD8}5iMK|gfhL(vm;CYrR%&`9k< zCvY-;o;i1jWa3&14xlI+s%q#1ZO{e>qDeFb9r@#EL+jBcIf6d_HF}Qxi5XbsO0pZf zqDS}L=;u?=`!^%oJdtvcf*qvg2}@A~y`d(W6K&9rZ^7y~0bT2Lv3@4j3+D|3?~Xn< z0&VvJH0d6R*H^^ruVM24|NDS~`~N7qwpU&i_Gx*vp@Gr6(8x?jBl9$x^_$TFeSpp| z^VMNV>Z32E7O~y|eZD8=!cksNP`Hmm7o3hJ(=l`)+4H3(e-0>t?)Q%9T8~3>;{I5F z8Xf3!XsBODm-0O{7d}OE={%Z4x$}p1N@BtfDp7D3w8vx;p|9DQ=nNL1p053CDV1Fy{p5$lYGdH_1W5om;` zp-Z2bO~JKVjc&X5;tijm-*8T#+vmEXVJ79!ecudSnr^XvN32gox9h`blCFvM-B^_R zY4k0ctynS={Q3_C&*s+XE?9tu`0MCTn3?(?Xvcq}Yn@g+%%}jmgyqqQG(?lKD|+9E z=tOjaGtfvZ#;m^o*HbXdUyC1X!TYHnL1*5jM2OI>Xu}CK85g0UU5!p)Bf4al(51+@ zF)UR}bRZ+qflfjP@;~eD|78@M*(+#PZbQF*A4fxWCSFgyDa^1K+E5L2Ag$02dZJ4* z7=3;s8p#J^eJ(oDMd?--{VIE4l_J8DPT!0SvS@fOpGFHJ8=u+k>A1sFsq!qgF2jN7#0|#T`GzCM`szNxM2cS7I3Z2O` zw8MGm%%6$%_3`s<=nVJA&%Z>I@)tB>|3&jw3=t}h_E#QB(nLyg3f|Z$ItX3EacCqK zpaXgtjnob_XU?Dv{ewm>f2B~b5N#3d7abpcIJzn+`)_N!@Ch2apQGuOL;WW7#AlhIDTHd?~tA>*MFU(OvQhdR}C$ z69!(U4*TC58*srH^*}ouk0#+VHi*ibT`zsPLlS< zd#Lwsl$QJ>8^_Q{-q1MYRDELv%t>D0ghTiD`{+n7p%3P45(Ziv z&6%>%rsyu}gRXf3tKn0)4L`&h_(;>R8$LjjzD%>Ul)Chvaw`SjM$4jm&~xB-bRb2V zCx28*>585UbFmz5LT7RsGw^4uk5{$`+p#^?qdp&d<9>7rOSKG3*bx)1Nk0lM!O-}@ z=vaRsIs@(KVKfOBN7tcCv<-c^>_V67K=dp0E%{rl|BEhh-d15(RBpxoca0iy!R+me zHgE@;WcQ&R%t3d_0(41MpdG%7KKC{n`d#QrdKzu_`qtr#M?LgA_TV$3HsnyXh%Pz9i+DjYg-D9WPda_Zbx^`Wc2yz@$>oUL>8k1 zcp(vQI1v35eTjS>>ldTh+J>3uK?hJ2?WjK5L3i~07!W_d7fr$^FnPqs>%XA)=WG|Y zcj6ifjW; zyqEg-m?sn83wop_|Ng-Eo@vSdl&VXwuB|0cPFoeAQ zpz!*ghljau7xu!ZZe{=XqwpJrF4%Q&TJq2RuR=R0G9)eeuU}3>lcvROVeLC(GAGb; zV{mi?-bj5M8mT9v@1WcEYc%VB$9-6EDEr_2{msyjG-uJZ{Rdt9oVSMqBR`sS)iEp9 zL$_mNwBZiucI=Pl%KhjGx(vO47d9s%`_Oi;8WxiEx?$}9sa&YY1!ueg4Nbw}X(@N{ zz*zJI`({LV@ErOs_zTVUD@TS%6vqbCE27(O6t>0{vHlbGr(SGSSc<9Ghx%Iy3cj@p zjAr}M;XGVHeaV=#l*h2~*pNh@peJMHJHtSlp#y7=`LHK?9*jT-_8|INUxejw1KxmN zME^r0n7HAta6ptpL*FUZ`=e_$4SjGGI)I&M$DgA6|1`P;|DyL_IW8<^74&*DtbpC) z^#{@C79vZPNO^^V4If66>Cx#GTiH5WwCOeGQLpyGT1#v9;MPxRb zbZgK^9KsCz4Q(g?q+ogU{^pqc{lCE!9Ka;(fzz=CevW0a_`RXSj%f1T6P<@{w^h-7 zXe56{vpm~<;r`s{^&8R1)DOq(|DZD{ zF*Ss)DY};J(Z~%!lXD*0@GIy{ccSfl8bALPeXZx47CtW%t)HOa+IK=j-6uL9O}h8v z=ZDa>{~Vp+1@x_1_`$T4#aIic;Ya8|dQ1=P4#(Ei$D`ZuT{Obya4;rn%?LLxLEqcY zqd)n)g?4ZhYv2Vm8OzKJ2TBk0=YwhJz#l~ixEqbk7ii?tW`zT+6k4B#jqzC|hY~4Y zQ?TRA55*9n4U|EbrW+d4QRu*?pfg#DHn<->P<}*{GRN#tzY(oBiuHcz^Api_7h>|y z|E#BAL%T2o&!98TF(;g04bTC0L}xq@jm%hdP3PjxxB}fh|Da1+>VIJXRngti8O@c6 zn1N4W0nVS4%@jteuNI_ zWArQDmuO^u#)P5F`EXkDePNYhO`ZOP~C~Xq}HM{+k>w4cj(NsEesROgTCg=px+DTFJ%9_){k?+5blc}iGCh$ z{2IIR`SdLqraj{kZDnP?#cuO8!UuAP&wKF zUGui+3FAA5qYb@=HnazQpMQ?N1Aanx!&Og)`--8tQWI^b4|@Nd==0Oi2tAITtZR^^PNaND z!3dl|8~hg?aqg$W14YruR7V?Z60dhf2RIZB@qOq3=Aiezj1}=+ERVmS1GxU_Fu^LA z-2ZKp1>Q#J04Aa@lZVimzKHJkLuiLTp`p*bBqUiLbO7bi*Ks{G0)wIxqw}My(e}1t z9{2xe6dc)Ew1fZ9CCRrm45%==E6SmfX@VwM_xSnU=**|1?X1D}xCMRgie+IUMX?w4 z7HEW)Ve;qy^%Oif-b9n>eRKxC(Qp-`R+$s|LQr3pIYG3dKtC3-TxhpzDnG}Kw13-@1x z4x~An?YE#a9ff0Y5<1Zz(TH6@bL&zf7BW_a88$~dycM0v)aZQ7Mtvz7ft6@T*P#*G zj&^Vojodfr3730y$bqZT_DZ7zuZd1L(UyWE?uCwc7@Az;(cQ2Ry>S&9;*ID4wxcuN zi|&?FXgk@S54++Tbimc3b)t>Xc3WUk_kWLg;U08Gv(PMG5?zmeA9xRa@F#Qz|3vey z3D<8#Ls}h6VsAA0rlRex!gBaFI>GNSkKg}O*M@8^gw^<<40=OOj7c`5N2K#jYKDODF>nVPeIrIF?5NZ#**}(@;(Je`V+bYd0z|zDT01Y?t(Tr z7u(}9bYK4zuV+~o2Am(=e$~+dcg0FL3XRyZ=tgWneHSKN!|X4GH7$a6bQ2otTG3W$ zgT3PCccHm39c}nAG)JC~*Iz>?vLjyq5S{r6w7+knmtSK4dyriHa`>PGHlaVc>o$;*r!IS70 zhnLU;W-mIk)6rirnSAIHF(1<;bo+sqZe znoJF2eIU9NccTNDj(*{IB-WqCd#SHMx7&@chNUTso(FX>6E;RC+7z>3ceI_v%@n-x z*7(6N>_dGN+TkADjz{r5eDbx>P`^##xiRP$iV2v3Q_=Hb1=`VzXfCWr2e=vSZ#$Ah ziIfj0m=wq24d>9K_IGrISH2!XS_s|8713?k42{eHG#SUldIEiJ9-3Q=(TJ`^lW-q4 z#v|Cl{a@e>el?014M9g%<*l%dYNKn`GuDTp4b4JxV{LRhdf#Vgh<`$l+W*iT$n|!Z zP$_f*P0$?aiOGNecO(U8G{pybif6+hJlqv zJF1Je(-HlAB)ZEcZ)N{G;w4 z=u*CmCgUzN2|q-0;B&N}uir_8kzM4%ja(@BZusG{0ebL^L>qbp8{=a1$UctFq|df6 zkWrXC5z*v(3?1lFbYL6M?B9bv_aU0RrxO(Xrg8xdNzUzIK&8>pwnS$*6dmzw^ucGM z>(K_^MLRl-M&K;^eD?Rk1a3mV50po9p-Q}-Xi353>42{3?eT_*=u95QF1QE{;aT)t z_!Es-)*WH#%HYk^+o2t=LX&kTmc&2N?}RtJA12xc8E7J9C7 zS6iq5 zls72&Md36$^2~cfPF#hhsh7nL*d2YDtVFldM`+IcfJ#uf;4zy>iPej{!2u->LXmV~x z_y2cjE}X|wnB`D-U6(t={x_RDaY6f{$u$hi;S4n78_^Meh1Id(M=O{#y;HEwYv{5suWyp{R~n1SU#PD}n5 zsvXe!zi4*f@JX0)X>Po(@n!H``yehqqb-+(@U6B^MP@p?B*{`-G@DEKlNi$-8ptS><$@hUoy z5Ai1a1x>1JJ`3-N3~WigIXb|(Xf8d9cKi%F^Y!S!U&G|?!0QuS_=JKD{*H$1U+j)K zkB6go5IU3B&^6qQC2$uS`X8|_Uh{dl-W6T*dvGDH!gg5yMEE7#+2}d22@}4h_EB)A zUt$Jcjutr?M%n<&a=jlM6 z&;k4z>uF~~d)FfOB~t28@JMWnwQw4`W}DFy?IOBuvVI#vnloA%jaUzKsqR3(0nI}@ zT#XL!%~;=$PVkFZKZnVm|1*6TB5)PjK)G0Nh9#-@LqjzqUSEqwVh0+D?Jx;--`U&muiXTG5RnZxA!lF1BZEyzK;4^5bcc97l zF*@_J=z#t~52ONTgN4y^rWl%xWijE6EhyMgf3(57;tda?S-cD@;0`o5F2v8T{4sP~ z2JN^J+FqCFaJ1bA;pelNlHb+C< z27RtKnj=He?~bF<5Z{Zo_elKwX*5Y!q666Y6Z_wec5uN4kD;Ob4wD0kH>Um^J}-oR zUK%T6L#%|O8v$1J~u znbk($0nO2YcR~j=7=3OM8j;DE3Fo2_n}@zb9>Xm76q-|sWfVMUwxOXrh|c^tx*NVh z8~g_iar*htz*XqL3!oj}gmzFaUauN$iVnDI{JbAJfFVdSCQ|O8V8eH!N9`o6g7eUW zWji{+ukbEBht2TTU&H=?9vf1BJJv6uNt^pZ*ezAjfwf2b>4xUOEtvfE|KSuo;ijT9 zeiq#(Z=q}S9=h#5MjJSXhWyW1&-Gh~P<}M2ilI4BHP+jp_xC}!`B-!p&BJ;L3NKJ_ zEx$uYb{P%r6~Bjuu0z+V3fe)p=nynQIuId&pJ!3WQv9siDoGWDMjx^n0Mo1j_T6J6te=uB=ypP!4~_cR*%SJ2RJ zLnm+)jl|dJ{ePhmPUQGE%&ZtXfTn0p^gwSM8NCl}cuw>wbX&fFHvA?!fc@xmr=sVv zF7=fE!Y-O{(rP)M18Ht-NS!=-44tK#)d=#uP32lyQt(*Mx=N^;CNkecW= zZi`;O6}|s1G$OO(=g(kKfBt`if+yc+=*e^jO`;#rkygkQtdFi;yI8*+&4meQ!%NVJ zY>d~pq3wQ)4*UXUV4lqBw9IeyVlMZ8JqnJn4SM51bZsBN416wL--&+xK8?;acb3p` zG4#Z%g|)CR+Rj4s;M#}|WIy`cr}6qvm~i{#$QowY1pRv48EtSJmczwpgFDgfcN(2( z=4@f$dC-nZqDj>lz5f>UV44`~kD$-Jj4siZZ0X_e|9{K{*YYQ{q5Rpy04kylbwjgw zEZV^X=u8%)173%A^dY)L-(zXamLom+6HrAoqC3%v{e&J!SEcg*AA1l~OARv{fj&3~ z?f5nHK>7%MM|_Polr=3q`GZPXG$K9G>*LX!S%S9nB08Z@(1HIF>sO?wCx1k{F+ss4 z=!$muFnZ$)=uCEEayy~h^E~3Uy6ddWDXva^ZYx6qV;XyRJPoV?+3+*s}t}uf-=+fMdhV*W9#!sM2@=CnE2dh#4 z5#5$Wb0-JH|NlV23mwq`^pEvPXar`X16YL)Y%?12BUm0UpeJV0E7OzbM{}%8y?3lH z#AHOHJJEK&!sMU-`U2(?28 zJ{Ar2%y@krW>EhKlYjsJ0tG{r|EjPy70>}SK}Xsj9l(U>BWT3dp(o}RG&w&)*Z5cT z{ybNQ&%YJ{FML*n)OF!}%gEui3R9vED6y zJ_L=#L^SmCFu62Xnfewq>(8OvxJ04!&nBp9esWkGVw&ptMS5Kw4qPYtUrTQ@LzN$ zl?#V~H9`m01H&EBbC(g<`SYhwM|ST9jJOlVMoLIyW1K@WtjXy`sikJ6v99Hy5EM`z7wPqg6)=n42* ztpA2}s8=Z)a%Cj$qP`NnZ$!Cpg1&&(6K5%ur%0<6sSJ!pfMu@ly;5ccyd zbS4}HE3`tBHjJ~taZXr9Fu_!_ps%jh<5S&jL3r7)a=XZ1Vi z$UlqqpE0?us)vDHk1k1dwBcUZ0f*zw_!io6z8WFP%Ape)f#$$8G}oR+@7q&@{co0^ z;(}}UFWOi zVNL1}p!aV|Q1EEogC@&Sw1LxT0~vM0$a|w__?_r|^J4ueG|S(>Nw^(77wXpw$$T#w z(P`-Oi!eLBhAvHFGlgCh4r601S3hL)D0Gd-p~*NC-5vAM881R3um%n7+vv%87~Ktj zq0j$|MlNrIFyq4L(o{kYwnR!p3LCgE0zCn5Xc!_=A025M^oZ?@HaGj7}tPqtMQ^Slsu2c?u>&=V*U)gd;H%-iIdH19%fo!DPqiL9zo4 z?QZmh{3c$n(KxhI2R#v6qXW1Z&8b0{{QbWNDJ1tjI+M51?XnA9>o4Q=A8{!4ztJTa z*d*M4CwhMZo%teksh-7FxHi@=U=8Y*&`4Hk%Kmrlnp1Es`=SFGjiqn~8i|+V^{wby zejMvxqVI-3(WALavoPRZ=y@_2P2vQ)gm0oRo$v7^mTJ!aZ$=?Ui}aMQu^rxkm0O0l zUT1WG4`3}^i0+Pq@p{fyp~DjBz$;+}wnTI1b~I9>(QP{!o%zC8U(+fPZhVIe1NmSl znk=PS$0S78s!enRn&l6pYrYYU+=u9lPoa_c2diN5Hepxwz%tYqVOe}H*3Ttk;o7!g zhRv}bH#~qgcmh2c|3c6HtJ;MQDx;C_#J< z_>F=GM!pUq5?#;}>t=N3_hVgLh9=o@tbo6vyP$Z-aHKZGQPc;a&mF=McmX{R26PI! za~m45vB>sJ@E?zcHG2XL=^N-;eT>fVESAJ9ozs*5L|a)j%V(jxHV9v-|JJ&KE<1FDP8xCNR6J<+5bgGOj} zy#6v8k=NC*Dyn$}JZ?PI)+b3+hj@Xy_B&>LY-UElYcX5 zDt4!SMc;4&4n()nY_y}d(T09PleKNX@CD^|yodVB=u(#IAGU8hY)5@4cEeZEBROqA z7)X}{1(Rns8mevhD&`oNp8S`~He*BTbqA%VoWOhW+DvTETSGFA8yp7u7_Q^aIQ!!C@7$+Y$ZjEM)NKgK0x2Yr3Qzmo6Cs-YO zj!IAdg~7S#SEygn*K7XKVd+X^XX-Q186Lx4SaeLt`blW$XJG?;7s;hW%6}9xxKMCx zI5=vf+203!-A;=2<>>Z%7ah=-=+YFpGuRT%jeD>xK9AP*kW0&zEN9LnR zeH52q%L(ZzTj@XL8wx{l*zqf#zuJ6r1a#!>(Ldx?M7ck2Z8W`oKbLgqyH2{)z6E z+V`iYw8nYpw)+%)F82fB9Z?TGH+rG%j74*3!2|4nL;5NgGVmj`ej(nNHxU}Bj2=Mk z(NOn88yX)!Ux>c%H^l32qOaReV?FESFn|(h&eTUIK58;ITt#6a7o71LbO1ZhZFvgw zVWBA@+bf{=H9=3#zUX};&>614ytp~m51>c*x0rz!(C6|^4M%$M1O;bOC)yixP@ja( zbSnB%c@jN}SD^2Lm(UL1M+bNk9oPkQ0=cJ!qr4pYTn+T|#^_hFThLvUSV*BSg?;E* zUgp8jU`KQ<2cv7X7~Phe(cN+!&6(fPq`GE$7+BqC7xXQ9N3737&x=*D{ubWv{y#*) zv$*4o@K&0LhI9sY!Yx<_bI%NKxz^~CbwFo25YsRb>kpw3Ta6BMJsP1sXe7Rf{(#Bf z|NEVSA-!f+dP+yEfWzUlrYg8GL>O zZRdAvk)ZG|1z#r3XNL|4p(o!2bcRbY8G1A~j-y|#PNT`yX-;^*--3Q6yAvJw!|3xX z&@8uYK=ys zH)h~i^gMV3TjINDPNhD~{x^BbJ{&sih}Q4GSvVI>q5|{6&++xp{hL4!ob|DO5o=K| zJ3qW+2BV)pjdpkj{bp2QK{&vMMPFFJ{&ySv$c4UG?2+`80XP}`Lh%)PX6Jb{ocWW{ zqj&=vxi6yMqucQU8o`{8g@_cz{L~ww_jgAl*&mJUT?q$RU_J1Apm941g2&7rnv=trXio{mOjJ{rNLn9ukBD-<00 zPIL`VplA3WXv3*bhLf=}+HnuG<6F@NA3}5J33MX+W4*{z;R{JuT*&ol=!tpl(;@ro zVP^M#e+rIh5W04EW3pj1|LXhSE_U2-{EczJlf9{PC`bYKI} zf!%`+>`Ao!*U^FPO~k@6w1aQ399~AZOX+7rL)Fm`wnqna8@em*j@Rd7P3mi~K7NIE zc*BaYwDoWX^_Ey051{QOQdfqKilRwa9vxvL^oDL|M4(s=z{bl}IMzoNO6 z_FQN$9~$bCXnT#Z2KL4b_y2-;!v=Ki_hD813hgles<1?5(T-Z81MG)>eka=Stmtwy zLT{lH`T%|IbF7FL;`QRIO-}Y-4GM0vR?*IAQuf9S9FHd76X*b!M>nC*?L}vJ1nu}| z^Z@z?eXi*9;oEXqG$%%)OFJD4x&IeXFqvLJvwJVL!Cx=~>#hk0#x3Z~6KIEzM%SSS z)vj3o1?y5zUmJd8Yk}jazkudO#tY#$ulix~&;P$j!K8Z^>)}u6zAf`&m_a>s<}J`r z_d#be4$X!C#rjLJz7rkjcd>pset!MBFu@ww(010b|NSEH6c-HDR*ZgVpym$dkwztvb`v{HXH)uruMBBe&L%6?af`Um@Ia&uD zanoo&w1J7yIcS8IL^q%v?!x536upeTBd*;Tj^x_tjN72kcSB!di96y4^U$nZjLzga z^v2iF8ScRb_$fBWg0F@S`e6q3`(u464yL{ZS7Nc(Lc6=rb`E20JcTR;fBs`rSkvn0 zT6RR&emMFv8IKNVCK{0?noI*cczio812& zQmDm+Khfl<^hWsMu{D}BqMz6-ItFntV0T_kUls!8z#ttFSU|K^s1YF5yLV=Gos46DW=Dp0?;N z8G=S|Dke%(SWclD?nNI=*&Gg(;^>#gc9@I=+R;KZBFoV%e-mBXedrP$N3;BE^kBM( z-d}u6I2r4ryRQEh_P;Y8$_3Yc6gq?1m<&03l)i*E{1H0y<7nuAMH|YqHC!)eNz6_1{dNjg`*C`mngJ=Us(U;M;=>E^KJ%p+-nv6Bk`}^U$ zcpDDGlJA9|oF2iU)Gwd|@3SM=AC1hd=r^s~kqIPHMp3Zi1iGg4&^1~Y-Gqkx9rV8a zXar86OY|L@e7~au&iZ~h4+^0JZGbLai&*a!>jRMg|B5dV6zt$$9E}gf`rl|rId+EK zaTQu`i8kB?O~&5QvGMw>Sf3wVjShS(y4wz*$@v#%rT>(2yTV#lMzgmGI8kz%7N7tdxZAI61FPaOd(T>ld&llPqmb5A+40#6%Isy&-Y&2w#qUXVL z@$=p20MDQu{epJz4|;#v2jTj4=)g*$_t!=v&=e2tCn# zdS|?00s7#p==*yIdg2{JJ35OVTz{dV&9^VqD_|+=ZP5GfLZ6!)eKcNQm7rkgH=;-8 zA@sp-(YINi{UO9P&=5DllGqKM@qO|7a&#aY(cCzQF3opngnmPJN8STrJKlsopD07Y z2Rfo5xg8zpoOr|1`1yP2Og=}G@p~+TzoFajhJ)ex3h2J?j9%}K=G5TmNUTJCJTjp~ z%If&Rn`j8Pqapts9oUcPcFXo*XebvtqXOuCRnhyJqR-zFKOc`q^iebtYtYEPhDPdS zvd;dy7;h+kC^TFVy|Ep7RNjqd@qOqL%!n>Rx7k{B0NdmBZ;@UE}}I=W>4>c1dyc{+ejy zdPWDLOEesf*z}Lt{~m=)xnNR!6hFxFN%#qA)o2z44 z>Z7p%K84lsGpvGnJ`cZi(-iwsUx6lRrW4^iWFf3Wy(QMg#8e7q^;Rs6AEHTe5q+@e z$q<>^=zXowwd;*W?k+S*XQPo=jjs6{nA{a;4jo4ioQr5XH++%I75@DH|G7E~@FjN1a}hLi@Q^_xEBhGySuwDXJ8#aPbLP61`a53t3idnHI(Pwp$r*mTnN4NcR)&=tzDNh13Bp>bCXyY0qjSfBB@f4esd?V${s59Q$wSOoqG6{*PgT0l1}m7&J_LZxIfl;Ty!t56TCXpi0hg6D-T=`Vlmi|PNvV^N>D185-(;l^3m z00umDA#DV8KJFAXLq+Tx)V!?E-MUgfE($Wx z8_L7=P#&MP{zF)Ze#{pxHKn0)UKeWDw1z6CAD{#ehGpSQsMKAD+Lke1y7kGSYA7ev zdEpD=LPumTs2mN3dit$^Qg8+;MOR=6_z3EV&Ge63R~J^M-x4;5>!GSY_?1gZVkn1l zLm65DdSMe7MbH0%Tu9L{I1P@2@-WS77xJ7?52NBxXLuzjkD5RgWoM|W9}gSC)lfAM z_{Pmk22~r`p!R(kC^_w5Z0-O4HZTTizt4vfup7$rb5IA!U8oejHYR%O#tTC);}v0a z*a6C+9@g&1ELW`QJ${l(V}~o@9RKJSzibc`K;#0Z^fz1!c%D)_)9T zXwvttRSpN-#zddNll!2Z{Pkd6y4EDjZcrcj>rhw^+FRPLrhEnE$y z@Tl=JRE{4)FZ>4OvG=3x3MhjrK*{L@b$`f5_P=sCl>zO7%~1RH5mb(n{_Fn#E<02t zdO`^p4^{0;U|P5n%8_eO4!nUfFzzRJkfno4X(%iJ>q9-{CVXQ5*WzLu1B+p_&oMo} z!PPJi?Dd~hyaKAK4?yjflTaR9GTw(&v*$h30rnqM%2IxDO9Q^OVTe6<=FtJNKAn8Y$;R1~q z7b?fop{jqc-M<4>JO4ue-~WjdImjRK{7{P9Kt26tK`Gh}CGafN!e>ws2#gZsPhDE5 z@oG>-+ZxJ|K2WtV4r=~7s8sz5i@-ZDCFhSPMO3$-FjOs6gYx`GC=XXc2|5S8@E_~P zi{=aqfjSqeLn$5zwJWAVJ@vLhDgF!UWPK0iSmfwI?(cu5=0f|k7*wcQKvnlhsJB+L zpafljGUSUfRSaif37DDjc2Gy`B={ZN3YD@*G2M7dD7m3f@@mEmazFq769ah}m;&X& zF(?bKK^5H_sFXwra-mKS3(+qE^|0y=HE%9d4XlSs#WASebQLP1(Su!z3qZ+h7wil2 ze*rRr0iA5Sp(1e!>M{8*)E64DVmZ$fLV1uMDwO4Hyf&1;p2jIKCjCuN2ihK}$UU*~ zn6aIlL_RL0I1`k>Fep#HvwllsR~VV`fl!7Gg(|9)=7EZJYGoTFF0OiqMsHfRAsFd7+iqK~m2YTbW`+1-ap2AQLl!G#? zKFkN3T7L>uif2J;!{=Ggg*-V9bpqal67U>`z;8Al63UricEf}h&6;dH(Ek%zd^RI2kqrK%|ONl*nY6!N<8 zSJ)2v4M^c8hCw}yszX`c5o+CJSRXEgE#Z5pr(}baPH`)!dHtYLF%nAgEVvFXPs#pQ zC~Ks0#WoVkqvcQ@oPs()u0bz+4P{7z)NVXC>_ERF)cq|`j$DLVe;-DI@1SbyU#JKK zrg8IPq+$PSK?)nl3AKGn8LL3;QEP8N3jx zHda8*I}8c@*7~)ea@!Q9fjwbK zI1Ofp7obw{6-rU6EUs9yK^a;UDh1ye+d-W-KIs4bpL4iSh?YR5;vkgZJJ1VbWp(4Z zp!R-T{<=+B1v;Bn}M|3Yos%UdD+g{t+lgzrai|MNXevSURU$ z&>H6A#zL4Co`%`r2dGe{%jFalf_dq;hnhDJO5ky*bK)6PD*l5?WsKZzJPDKonXO;a z$Att}huSu+p*-yi6{6`-A>R*6z`voYJZ&ClSP7^IwTJ!TC^!HHh6H(jf`ecq_!(-v zUS2ov0xV45S1n(VXD}Bdp+Xuhe~>2>=70)qXP6mIfy(J_C_^t89~eJD)lTdJu1NDh zt*-&)KrbjcbD<8fBamYDd2VtckG?<&PFB!`C?}L>WuXMOw($|h`7k%*TcL{YZ>af6 z3c1J>g!(GEC2S9eLq+zv-H%yV2C@GNaG~5ah067Cs3O?}CEzp+h5tb1E~JQyL`A56 zOQ`w%pi(&#%F}gr|DxT00=2867j==z5B;D2HQ+)Xc81FNB&bmDg4(y|p;Gf0Dx|TC zxgyL9HLtbtC*usLZMhL@-F2v4;VJG63xT@d5c+hWjO3yMTnTHz7f_K1E8%uSC#ZSz zpbXdxOT)jQ3`kefd0q_4;2Kb&ZV$EnMnIj2lVNl?6Y7XxRFeI#+;3q(xjO@Owm*jo z?FXm@u}e87f!a=9s9MPdb&{2aTHnOR2N);8+KexQGVBA?yf~pQWw}Cq&eEz3s46=^ zc{Ci#@&z`&8fsr3h5k1fuowONP`Pdt=C<2VsCnO@42x6R9o1Q(&V%;w0PGDVC%>;u zkpCA6l!q#!=`b4H0%g!1sG_P&Kj@DzxXJ);+ZQk*d3X3aHvC1Z7w)D9<}UrKT&Cp@X3>I~R+&kfPtAEc^pX z!7HeV(Y|v>Y-Xq;Yz&pd8Bp_9K}BpoR75U7)y7{?a--F75l#TLeS1S~-(fY_|GJpP zfU0^Ol;wXwRq-3B{TjEXTaX(nmt~;d^VNbiU_;m*u7&Mjf?DqW04R@#LZxIHl%Xr3 z^zN<2{?~-FHt{yhN&gk}!Zfv=0ijU+=1_(WhB9OUlp*V(w(VA^i0y?+;dPh`et}Y$ zqmD~aD3l>hd|W8x-Jt}Ig_<}A%Hj=BkvRkviRV!Bg6q0s9p3PW)0w((lCfm-PwPI8@aQ4AS}j&PsW0csdkR69zlgT zcmkz3X)|{o6oYyX*c0YQ@B+Al{)Oi5Xdlxe$o~_OS0U;=-j+fBp9x(Ib7|l?7p-8* zRxYGIsH&a^YrJ}lZk$p3SIQ(-6ik6?9J zw}b01H^%Ge<_$7l>d5}D#l&nsIFANG2|NMwz%-rQd%PM@MK~C?hdZIRskgH`nyW)S zoPLDm;3b$BChy{QMK!4TouC|^3sr=7y0HHTaq*RbJ#b)GceWSq7Uby?NRh#ojNj-H z~bE>vVlx z4fKRX>0g05YUA~DMOFoBd>EV$4?qcQ{G&_FB&Y~HhUsA0{;p=)K^5mj*b44~%6*Cf zt~h<|xX=l;9hQanV0W1HCwE}Xg9_z7_#J!+_rp>HU9Eh9D!OumoWjnqF#YN97(5Mi zfK4URVep_aV6Z^-wr3!zXChMcEepHE<+jo4f=ooU*-|+M$GXoABaI94^rc?}_R{{}%tdyXX}k+nEvTIN zV0yR)=7y)C_VX7gPm4@&+jJ8gPX8H91G`UjUq?)V>hFQ2;h(S+Of|_JKuw|l`~TK* zA&*YNHZbmFm-9Zb5dAeUKfD7~wTY)VgUUh`VK1m%vKs1Kh&k20>#YqH`l(Rko@qh; z?~1JiRU?O{vHw+6|1zMERhsS|r}JSw`paMl`~>&H95b8&kD%@+p6RN%GweuzFH8Ij@wOjVG#YfFfCjOCHEwhzL!2O!ng>Y>vC2dD#U%E6s~}Zz)q-8Kem3V zd1fHgcpsPmu7yg~0jP7}4U|EN=et^}0QEHd0qVYQunjDO@@N;7z`IZuCtlzln}wma zT@5G!U9CSHO3*SWMZZ85-3O?UCt2to*Lk4U)ieG8d7t6)47P!pQ19Q@K^5I`>wke+ zBxsQfaVShozZ29Om0?ip=0F*^6)IvEpboCci`}*?1eN>VP~+2JIz5no;UbiQ$50Ei zEpbO>6DZFPLhXvXP$yZ%r9uAhc<2oksY6iXZ=nRIUFNoB9jFs^3REPnK)sQ92}{Cn zFbDcQC6~JeKR~^+Sq%%oGf>a%$Sd5z)C{W1yR39YcMa-Xcm|8Zl&hRU4WUvw0jel> z!ol!wsO|XuYNzJ{^nd;Tkqd=5=^A(The73jE7U%{3`@h=p%jdQdMIs%dRRS! z+HRTFxr3%ARFzMGb>K#*cT$noyKNe_p8c;-G+|&0oCg*1oEuzjYrqEd+d|Dd2qoYv zOaY5;bP;L*tI^*Al|s)Z_f*XbHGde?GvY8*L{t6j-Zl6A+2@LFJ_EJ6aS1A?SvI?c zO`wWqE|kJuFu&$O85(1YJ0EgD&8r4gygxuiWEoUSZ$hOs(pFcbMWA*`10NS&F8V=v zFb8IU51|wUZ*$BIwV)Q%Goc66K{6An`1V72_5>;dWw*N&^?{PN80uU(Zv8h<@_b2m zI0FhpZJ&n5e#Ti)hU|c$@ETN6CEw}B%R?{y4p22S7U~>W4;87KP>Xkzhw&Vzx*MNs?sFqGoAP}QAuzYA>{sG{r)<-mGa1_mB*a>~On z`t6|}a%-Ws>nGR&W;;lcqTe%}i<CtdcRq!V zxc>oNX^eW*8QK;qWn-ZX*Z`Zsm#{Rfe$2_40(}bAGcHuMg^s%gU7;-84BNmIzc>zo z^6(+-3A3MY-{Y|eYF?a^?j2EYIFSBwSPG^)<=(iog4zWOVO4nP6#HMrl=fE_>S|CS z9t>68>!3Wj09C#3pbnn&zqxtUpo*>^RHWuYZNuBJ75oYZz?Q!Ud3wN`P(@kewBv}= z?0@a|Jq)aYFQ7b|eJ04W8U~+rq2CU5#FjW0Q`#;$q?tT?mo&FC{wY3Mfgx_FjAp5W7HTRXx((CRmSf?AV1`a}nGT!r}DqLp@YFJ__>x8qR}IwXx{2dpe$i%KZ&E1vYr% zKC*oRm73;H_4$C0uY9=BzPtgty#)vEK!G#=_}P zo}_v2-u2FdwdlWw9bmZ+ZhRB0O+V^K_cdN4sNJ*@riSOCo)P~*j$TjYf7$<`T#V#G zo}Yj^yJLKE+pQ?nk=h=1gd?Di=zpNzerNma4wfNMN9t{;lqC7jeM#2|%Akv|63qO? zReyIV2X=m8|9{{j=2uq~f!|O-4Ge+z7~jjsi7DtW4hZ(Yh1wSw?EkG*m!SkSh!pI9 zg(_kJ5-G`Qc!kNddr zGH@H}#0!WS?B0ODDD<1asIV2(HtGQNFdAd`HyF1l7)g3)2rSi%1PD~bbUNHSw)V*x0~%D}j=w()xy zpMG!X|NDQVxzN{W3!yw)3$EDhBCT*feC9jFMkgYx_* zsC83ea_#@cT-%wCE*#UH!`sjvHx{ZGf}Yr3xyeQ9sP??``nki{RBf`+$7HM(ojWR6Uy^W#_>?wdOg%O+~VUxo*jlNx{FZ7aSv+ZYa9Ov z71|g{9aBNg4}n@=8uE1Z)PV|leb^4RgOYa^&WAVQJJ>&&ljG}_+~s&U)Wj*UE?fkg zz;|#9td%0z|D{-zlqaFa6F? z+ioIM&HM~iBflDNL#6CJjH3M?J(C-V4V65qXr zqBleBj*~Wi8){wj%q~(Xp$y0Z{eSMDc=negE7+_xd=b-P2h2x5AiLXs1)x$^1F9zaL&=|JT$-KzFU6Y~(8J{*RR1QF z0Z*ZF7&C|SGy~LQv=~&#%R`+9UF`lasMO4bio{|lPuD{ka1ttVcc5zOjgJc*B#Cpn z3B{mlpbk_>+dz3Z0_KDpp;B`LYF(UMPEmfSRD?nat`AkD{h^9+G1P%{1j^u>P$~Dl z=0Xe7=l1VMPkH#6{%R;smgjLHUkhc}5vUMewDG$({t4;`4+?PyP!=eI3qwVsEtEq& zpw>@?M8@Y?!iC;c?uYX115}Y^%j-hb9LkXH#=cM~8VDtL98^urf;ta2S$~`HcUX$? zdr)V8hJ5ZJ)*ANK`~P`d=wT5rzdO+?L*=L`lt*2mifTMm&JRH^d;}HR7zNzHlpQM9 zg`wWE)q&c^jbR{c19h&nhml}6$opS?Ym^f-7%Id|q23E_wedfp7W@ZQe4c_X#6eIB zQ$R(e5L7D58Qa5F^v6M^;)RW;EaVZVaVpJXE!>g^K8L7&Cy6V4>#UDeA^w6=nZxAh4LTI6lrT1)2)Bl_#BpCJXtAMMD>j$V0Xs1Laoaf>R1aZWj?6TkA|w1IZz(&g*wnq zx^bW96&E_G5`;MxfwH(c)WSaSCY%jrd7skG^94{x^A4!UoHPCd6_L1QoSd9cMO+pt zLQSA*WeD{D|KAoaRJFfBEqn-7M3Kunh3TLcR)SL41?r(P8a9Vpph6wLoHHy0N?v8_ zw}q-HACzNrp&nkFVJaUNm${IIZ=i}QsJv5<3u?T9u^ZI391V3sF0}EBPzFAQie%gh zPC-Ga-O|X|(>NX$VtfVk|NQ?=E@bgLW4wy4D04!EJPayl?V${u0(JCmgHmt^YL{Gt zD!xas7))8o-ERP8cz3AXG75U(j7sc(S-yh-ZHw#1=P)<@Z%{>(yRtK|I8-PbKowU{ zsFVzcQm_yzwA*a_4=4j)L+z@dDlVd_;ZO7nR`Izvgq&NCB78&kSYwZ?G`@3~R&u)mcer+5HzyYXT)wqs}R6nTmWH`hS zpXUe{n(!1BgwgA|h?Iib*A1W!sD4n}aygWzN1*ocJs1N;iR!u3rK#^6=?%lUKLzT9 zy$EISL#RjxHIM=9zjRzEG*zIsMO&za3!x%%8!AQr!74COLw6FkgsO!}urgc)b^kR~ zQI>3^HyAhobwZwjn*SMU`zB~iWVQb*av{$YRwt+|5tgoc%A0vNNC%7KVBsFw8g>>ajTm zsz&A;ciZ?CC`EUmo}Q1P9QYT?fjBK(KMT~nl2G%?LpfZph0hg37Y3p;FapYeiBO7X zK)oYcY}^i&ieI5Teg^ft{|2QXMoV`;9+Uz3pggY%CAS&W$=L?Vq3%8|6vBy6k=P8S z_y8;kPeCb+-pVP+24!eoC{Kz(DX3y>3ZZYz!rEuyH=riM9)Bd!2=H;1<-nzoBaC zJydN3ba0R7SkPCKfl6Fx;XJ5nUkkN84ni4p)$TunDyk30&(L4}uma;TI=YW;YQll^ zPr_xe{15Ky{wJ^u{hXcL*O=WqvHxRoVs!58LfWsZvv4q!qVZ6wK^eLa z%A@mk|EBdHK{@o+#v^re^I}7#G`aONcVqu6MEMv{k(GzqUhQo{cc}XVtv}f~A8P(; z*arRzWniA}t{96!8PEu7-*lN((ua+!u9yen34)z>} zYhZ2IwT}zkQ7DVg8XrKV;0si-#_#JQl^e>_(ooyEmhpS2;_YMod63lkJR97FXE)UT zJPwtD>#!oc2b;p2{hXq4P#&#@GH55%x-(GQ>mJlO5bHv;w65$q^SS zs&-I<`@tx1l=UY-378Lc;H-cuqODN#4#C6l7dQcq?(cG(cz}zL7wY{*0qfU*THgl7 z(f;pYH-^F-^k>0L@EDXwPho$U@TXwUo&er(z&!LT4{`WnldR@&7pl%siibiioC8%vYoT(w4;F*xp!R+6 z2$%b$P(_yuVvnaJ)csJXbEGOP1#8&-$##G02t1Qz3mMQpT@U@ag`?;ng4$*kM>;`6 zp`Lalp>nzi7KeL`A7Ekn`9}r&|C72iyhr~v%nq-P4)&~qk;Vl3e@pH<9~WyFh&$GW zWDk_3@8EZ^z&Q7j>$+fU8{k9YRHSReL zRh-o(1^d6l`a0CX<;yqO{YSwZID~pSU&`&ls*#E!Si(qT|S*Hd2|2uvH zj6$q0!KaM>Ih})u{x37!|AgM1={`@aJIn3+ov;M+ZoqOd`E37zRCOnv>q1-{DpI|nQnVdrhA*KPCYcxP>42QVur^#e-$n5K0vFMY z3w6HuC<-og(#?T7LZ8F(Fxn!gxH{C)*%Rum(>N$Yj>7!#Aq<5n7rPWTg(}k7P!3#z z8R1u$6J}Tv?EjYUTJT5odzNvb8>yB$!BwDg*A?oG#}$|tzJ(z$^D?KXAyhF=huPo; zsPp0vD0uRf3J<;Y}M0Ir5UFBiACkfLu;+bq=z_fQFe8m|WB!4EJDPJznh zMJPe>R=Vo005j3=3H9c6E^Gm>+5Mucg8kn)(H5!(KCEK@EA%B+yP}%{Ptec2#wmOW zb+#v3>-KYY7)rkoJP!N8(Xiw?cmD)DNB<(+2A8jQ1~%N_6i$LN_%f^tgEsnt{oi)i zV56(nl`twdqHl7aZpDGBi6O>$uqXZPFfz>gvmHE8hL(hSD%OE|mUMtR$oj!(aEx(^ zagL9RwA@$%72>0iV)Z<>2~VL6dIOcaPtXhFZ+0ol2X+5DCK8F`EQ+ASfJ2T7ocDhE`^>ci4-0+dJRpyu6yItkxHc^Gf2dnhG? zk?5y^dU~dZD#9F4#n}*2D?ZOCF7%FOBb0#CFc@BjdQRVkdTaF#DgvHuPGM3g1M)!? zX+@|=w1qnRJ3|@zBlN!yHnztAFfB)|hF0|k`7zOGS4`oP4 z<9O($zY!{@XQ7Jm8PwDA6;vc6?R1d~f{JKjsBM|v`mLZ(o^<6xPpy7Xf;K}{{SGKk z&OwFvDwHShpgarS% z9+U@5p>n>~#*aYFKLu6Am!O^<|5!iKZdY6(P!Vem^S~icyJHK~33?Jr->2Q|e?4?! z>~Ty0r7#tgq5@DyY$#M@8bTFSGpO8mg^I`ksEAC33iV>Bh-`q8vk58!d!TZE0BT#l z^>HBu3HLh1Ibmk{<)8$0hFaJk%7Z~ril;+GXfc!ltD)o^gsPc8pcg)cs*&J*Zhls% z`5{oX=BvnsBG3dXq-~*!XegA&)1fBLfvVmOc7H$g(mxAj;6E@FzJ=Lff&DJmEud1` z7Ag{*p(51}25SG03F9tQ<0!l$YD8q+A z729Yixf7uxGaD*$>!5%CZ{Od#8Fmm>)BZosMOK*LkjqU8sO?t=%8)Klsp$`;U?xlpSHm#) zE0o~i!%lEQsE{Xz@;t3EJ5*!}z=E(S^vRO$cB3zp;-8E&p|;7-Pznx0)xZg;U2qj@ zA3uUJ^oudZ5od5BScvfusBPB)D);lCj{G%8*#8o6k^zPICX}KFPzTNn8xKC}#uGsm zTPj!;riBV|7wCV=LH|<@rf2*ZR7!us%M!|wwLcLu$$w4!BP&+49k?WGYst0$(|-55 zfw4%PKn%ypd|Cza(vyBWxlg-=_Fr)E4HY|=eKrKycjY1NIP)$M&YZ66S&I>;^!r!7 z%H;^{Z(LeVqLU!>2aK5n_j3PtUe|bSrJ6P~b_K!R5fU{65kt{7uDg<-hbC)CI(M-F zqyEI8EEa)LUN@ebao<&}y@$XfkYDZjKW#mVS5fZYGtx>`M{CPI8;o&9sjAa>vw;n) zb_8RdkiR+zEJkEba{XC_W33YRc_w)}S%0?~vROZW(~OW_;1%BbaM2r2-rCp+3gHc* z{1G8zP>|Y-mnJ+lMz+9+LnQe;#$O>FL2Qj}=14r&Eu;Sld2O`^xqkvfE?fFy>Fe)I zgmI_Jnzj*T(X`2}wX=!p?&A6=Lawm+H!yEALc`lfqM^2#`=zvnXq{kP=1!zCV-u0Q zR%c~!Lai%?Jo7()>FmOQ<=luxEtE${I~5HRX5d+IgjYn+S5njpj~`oJuQC2R^Yh?k zCY?yMr5OL3`(;r+jeI zO_r7nM02&JH9m8vTYaS0_g@YmOj+?V3t@SSf<#1P2LjaoLqQ*msEXGkl@e=lF>0R9 zR@z^L|E%3R&$ZemA~zF-r!cMw^TsmXlkq}~9UwAlkC^k553h=2(SO{i&ZOT=XeJC8 zOavZc)DaeB=6b%Dx7&nN?JfPNT=&4k=&a=(nP(i4Ie;PWB2gn4otHTkxz`Qnet~LZ zN!e)bt6gHgFA)Z))gq7OG32FHuf`s*XgCG;j8`r4xP!%fm%S%egh*&!B0QPToRX}q zX*($)5zAuXFU%UXkIeHj?>MjfIJF><{lAo4tTF2fa^n#~)_Zvtu*c&OjXJyva=#f? zpEJv=aDO|gxrvwS$a7naUqS@hFt!I7YWtsZ?p&2p+LvDJBKx*>;mJpA^ zGqsOatqZ)2;laH0gp|dt3H1Q_5!-B(XGLKYgl*%-Pt=jxEM(-Ed`+@~3`6W%W9_b)a@@FTpt3Ev@PG$HP41sTWcp*4%f5upWa zsq+@@FND50bL(U50E-^KAlK9Y*4uX3WeOW|pv1tyZy50op$l1Ck8nSL@hHaYI5W=-mz+$zmf%z^$-=>c zL^KX_6JzvnUTeJM|0M$-0x7x(3$^$kl;&lU+8CB0}xZTQoiSFKqd}fk#hK+QH57oFaS!u(&ZwwkRUZn?yk# z!~07J3$%6TiNFHZ4YWGYa;0?*k;=pMEaor7nB2%pg{%w6YJx+VNa<>yS$Ppp4`Wey zn;xNxtFkc6a(RZlRxmH_V}u%?y!@}0jYvErqKz;jGe%XU@Fp{7EON4-BNfU6(Yu3} zZ>?H{fL?Le1BXo_a(@Z9WS(Bgku2t+7h!dGKIZY&=xkL`3?*3>a|V zKjQw`M{!<8?lPz}0aV;{*%<3^1^9cj%y4#-Agz+g+`2kOcV&r%XY|ES#ma2N}s9qSm(o*>p9cm|# zcNRHO81Lr)`^#?J|8Je}P-0#Ru|#xqG3Qw zi>Agh5tR+d4@2G<Z z!9xjk8iX{$`WWQ1G2;UfxRJa^M#)>Y+ds_P;+A?QF#k8MgORBgjlSAGWF#@8e~N|w z)47o~5D&Sz7-6vxUKGV@fAE?`*kTgO>nNK?ZUZs+ILZNcXZ$YfZy?jRP#$q3yk)V;>c1u` zYWgDqJH1ptucDUwax892J)}e6M2t{tL?rpyLVvr792@pbGMNuCG`vk9m{Ae`{zC2`>be(WXV5d9%G#_6BzK-AWoCpb z%7d*%aBHS>(dYRELl5%WNL}9~9(A}GKn&DoTYXo-xVPNjgu-#W3Nz;-6_l1lslD{_ zfxI0@{sI0ejDb!E#&cbaHC-*<71$eP{l@utYf0yzDGb88a(G;sD1{Nxr!2aUSN|~f zJ@=|ww4O1hwv^;##GvRHcL;%bP!JhIvJ$ysL|?6eMXoDz5>P#5ko%0P%E-OOK0FxB zjR!0$L6~FPo|u9G;}F;oLF*X%nSO_KetG;z5fwqd2dNstt33B#`I8k)$lJFYg(ECmCcu-CPTxCZ0w!|F5FfzAsKAX z+z@2NPQm^y?j=Cjdzii01p|^Xp$rPuMj#*~<5{u4l-1r^jHORh6nXV{sg?8p{3I8LNard_V;ut32B2^rnwp1^RgWg83aR>+NU6m{@q5xT z5(7tic|SniU!`PyGb8!$d!{i^3riDNZS^<)jiQ~DmD*f{5mA4;&EgS^m!hm{m{;X7 ztf=keWGH)v0g)`!T2#`EDMZAgF_+KXeSTs3X9rPGJB83t7Um+v(z~3ze&b?1i)t|^ zH}^VX=xscmpzwOBdHVkn(vNso6TxfE$^_I#I@V98zX`_1$+^g!!L^<)4g7yUhikQQ zR;`O%*K?lS4<-uvh=5ully|1T3dIAt&Vx|{F{%dzcZ3N1f#a=C6;eEulxD^ewRc3PQ6zQ+Yw(|KfCsnD8}(xn zrtd7|>Q}caeu$8zEc}4LPvrM_Iu0HRF$qd{;&D3!XF=8<_Sn(dVWjgjhAv>uZhy%6 zw2Nq8cZKZp#Nb9^tKxJByuj-SUUkAcFJV{ffYRm}+;wGY<01FEdU>CMkxLLh6=AE1 zVk$HADl+TXiRdM2YQvb9jJ0Z+iO>gsTJS%CRd_E3qIv!I{r}X!sDbo*V69qZavrfY zA_C``v!20bRx67!zJ?jGn{^w!ZbdDk`>WYx?_JrKU4@3}A+Jd3) zsOmFBq zS)Wi2vir#`GFe$yp7m-qx!2e2b5D6v8ixF$q^>k$57`l|^!bfiP6pKyB5)_(zT;*Y zyc|kjZ6XV1*%nJ}ijKky2(3+&)RK95sL)sI&bt3v{*}m7 zBywC410u0#GD%Yn zR6PpE;Bi*2H{#F@uGQ)>H;0!KmU-vc&Z%KO94naChX*KZgSW+~gS{-6fph<5|cL1@~FzO|1Ch+P*)WVPx-h8Z4>(9E< z`ut`%FSY6!c-QOoUwX>n?P{(Mqii1nzQFq!R)DJh#=VuiVq4g=VE8!<|H_;}6jw}A zsumwZhT^GOJ0i1$bauk9YqqPpbI%ux5a#1m8{wJF%D+&Umz&uUG@h}|ytd=XLR*-g z?aD7W^IX92zBX2vv3eMFL5ZbRG%v$2>H+f9lH=emWDY^!Rn`vC*MEcTcztY^x~Y80 zg~IOG}iDyRqH+Sma_;Lv>NU8xNOJL$Ohy_K}oz=3YJe3y`BW z06lS88$iU?gn#{akHM3Ku{6b1&+<7NuYa+eYa!n^F#=5E8t@r)+GsN_UY zEejDT=;b{i*I)7c9-N2)MHufNfF6^R6C+0X_$LpRtY+dmLO6~|H!LPpt>%wd&-NcwVMC>3DIYl&5Azy8vr5%hwN#MQn-jG#Fzd zVN4_h9`w4q-HBjnqH%<%Ua;amL8Pcn&!3u){KuAx2mZgG8c{0ORVWg*lq?D%gnJOC zHW7j0%}03E?(!;0l#*cVR_-^#kw8ny&s-0&a4$API$K>Opl}Bh34i`SBjl}F)Cx26 znE{c^^HJ8HX+oqpBSn_W4w}XEJ9zn09V7A}bRbGovoG`z}hE@ z3fv6U5>mu#h}M2y&Dh%a_4WT2ESzH1y_1kt!n*5Tl(GXllh>$3=6e&6l`(#ApeGyN z=fl{t5q8Dx2LQ8$}%S=i`B}Iju#OWYb+|l{$zK2pcwmlH9~C=iQ72$h3n(UNX(kimcnAxPg?54 zcYz7W=Fg#O32z?KaYB)T?kJz1hPP%cT4l9S*^3cGNcC6)g`r$zWPWOlPDN$ElmOay ztjR%mb6{v~D^!g)FgZEByfbFqV15068zIwJ9NspdRP8wenj>f*DF{QU+FvM|k5}L0 z#bAW*K==aYUn2CwNXdP?KgQTA9Ej`XT{Zoa$k_?QOzt}7mq-G+*wqocqJjjMe|F@0AkO~;9_JFkqiPUuz ze!}Ru$Zx|d75DRVZ!-?6twhiN?=wj?fQ^uodGWTAV*YO!_MX=Tl-D6DV=Y=IxW4M8AW3UG6z0L>Q0i+Q z1|R4A*opDS{?UQj@7K> zc?EM4bAJ`Ds~DlSl{M=uwZqK7mhim~#U0%o{(LeYsp4T*462Ec3Rt=U19E%$oEPh7 znSj?s>`zlThPf?>!d1pvQKUC4?+4|Kq%eZQ+Z3!V zVwM+0Kyka?$b$DoA(59|f{<_2NlOgLNhs&qoE7Zr42%y$k=i3tSd`i*heMxOTa)pX zM6)e&3+wmigmAN@O)i3hjoggqHm#aRZ#X8hPRj84{x8D6EDKOKFE1aAwE;Y(eEjOWm~Z30byHg z)@R1z$|!h?;9?kfoqI*`xDcUM>wxFQ5tNYES?10rjX5y3cLYV{>Hmpxwc>pjs7Z+X4${PE1ii_BQXk7#+CqCo933)HF;sv5j%^4dw1 zMxvw+*L8WFWqy5_7DLo(S*?6y>~D-8!rVVio}0m3j7?0$N?>qZeg30XnlMjc;_sYR zDOi}Fg?A8M7lDtwJjqB=O+x;fc_k74C$D_G)OwT0GZ?0JfjMcIv)k+M`v2LBta->8 zPGnkG%s|Ay z#O?vt@45bD^V4yi7B|$glAw8P&X4$gjaPUZXi40wZ=y&@R$^JUhM+hh0>_|mTsmUo z4PW9onX&M;!YIq#+%`oT189lAY}a>$&#QO4JpUp z8BAvp*^D8L?My4n;^hQUEh_@XSsk|~0pV?>au~7&4zjT{ zK9ocvM2T5^kQ)Vv#v&HBLGkyDUq=vY{H=S0W9S9*5}-WP?#-az62nh3c`WNL5c;kd za*hb}WZqgczB+RE;$&MQT>{y&mOl!N>x)D3QXu^~5}umG*%WpFlET}0E_zt4RWy?l zB5f`;)|+`-7&~J}NC^4sOWl>m&0Ki+9dpzYlbdL0KS?<2khfS^)>vPO4?)lk+#l)Y zc>=f&w0LT03o*})$!euAG6O>9n@ibIptjEDU$8KBW4t1U4deKjj{KvRv;9^u|Ju6i z`bvBl6X$RvHxm<}Y_d)2M`bSZ@{Sqdi}0{6!s8N|`WSc=FZL5(wHkQ#pO>wJacZT^ z<6z{e<;2t77*O8&8q18#KXBx{zLT=Qog;%V#7pQ>6Y9N;r)E(il>UN%ze(6Q?)w{y z=gVMH*N^*gc-_bFH0Gt|>}2jg^n>793_Z*%2Co{(8pHZ2IIta=VVYbv68Yz)w!@23 z6I6#PD$Gl5qnEeuEL7`?(BfDh7)a&KTJk6`fo~3%r)~RHlTPJ~C-Z3K_T0JV|`zhFi+Hpem(FfRw; z0Cdbm-%`qOC2R8Q58}2!$vQfv7~}`Q{-?D>*%Bhqh6Vq^;}|!W`^OOe8h(VwEZ~c& z^Fy|>Fb32l$ZD-HAQkfx<3K(u&qK&rMkJf^%B~Oe52LsXEJ+FdfERPqB7lWOFd!3) z%M;R2qHv4XDaK!5klH(5*|;AaL5EPP*3BF!Kq@v7`hv)9!gxH`3`e`+$OO`|*vrSE zl#*`+om?1Dl!0q_aRuQ~m{b6Z)#h5r8)C#ogl01@2B0`HDcZ_-U7|M$I38CN5ctO^weRC!0^ZbsLy|DTQ6XKz~9*fk*MkpNp*g^pJzQ?euC{tU{ z5iy5omB7$q=KWxdSeuqSV{}t$s4bz6*gmkPwT(^2`;mH=!G ztriv9kQ`-)>rIKf!#QNtz6uY^S_linNf7 z112+PDsukDAm1gtn1scvpxRj!Z)dXF1FVlk|21AkX7OT-h{tt!J5Rq1p%&i3F|Hd&*fSz2t_IIwjt>|X@)FEj@nRLca%sBCt@E_R)_WFn12t0_Tb1| zu4AfTb`zFA$;)LXv_senY9c=4pAq_oD&0(f4wK6f(oJ5rj$Z{~CsMT{6jT!O|2M_^ zvl*djWpLyxJE{*(zT{pRYO6m6{7gSN#`yv*CzJ8|hE@Ix7Np0^A28xJM!h03ZBewG zFn7eD@Rk5C>$2{56c;9P`$^YIsGm>nOr)kFZ;ct)562?$s)lm4yv|6U=M+l(4a<^Q z?rp?V5n*`<-5f6;S=zaf2Emt5&;+HIS=)tT+F~B3!r*cZjGt%C2^fm0rV%`8F*5R!;BzcQ~g^E;wo68A>4zKt20 z8)p{SuEGZX%mLv>M<3=tBJ^sD^as&`8BjZqM=`najY&TsWK016X^VGNNYMi3ETRU~ zf>4&3v~0oqhJcnbx& z5q^)cR2a|{gMP+pwc}nMotCOi++T@ewNEG>%lH$N9=Awo{5S@xWyT4$7LholkTs3* zAgVtxTlJKe{oerPhY0OxJbfP_|EVpET0ERZoluySqk2AzZ*d)usPsknk9fVu^8TY0 z^G!3ZKm8a)^a-ilg=6tqKZj_PAZ=>bQ;`22c)gJY z3qWWM!aEXy;cX4x4NS}DFU%Q3F%~2eDY;H)YdhLO)}A?S8P9@4DUng$M^0iQ^dXk* zBiu^~;|U^h7X#EPVpLT6t?=*?f;(CbL?dcBSi6h+0Ysn{ulxx9U?=0B=HWz(gk;sQ zU9yXLJJ45;a|Qoh+m8~p_6({W!lS0{(sKvH)ShEpDk^`W710*FQLB&Oxhh7hkBx+T zjTt(QHQ}ufMlB=7?=XBZul)h&?~XNj%-RA7c#20CvHC8C)FcO0r4VZy)BlK~-Snem z;NYPMi$tiG5;(9LLx&TYFrpO#e`0 zc)1pX(qqI`c+|YEhQM|xo`+GNF(P8Ck5aWN@HdOVeb!IGsozP_N(>xe2Ao%F6#o$j z+{A<@OgN_1)&{Wy&XUg`QIZ5!!Z@{WDF1BN=~&kYL)0P@m4}2rKi5km6lVzx?}2Q! z=tMdQxkHF%Kb-XKz_X@=YZfKO3qG{1INQd?kkiLhcwXi$*ZYE&C2`p1=s^bKzS{S^OG4dlY&W#r+JvOoBZ)xr97u1?C;CS zdW(z@%XI~eR$K1%!xM^}lsNbR*@ZChCOgkpi+h>yCOcNA#G+^ju7c$)vGzX{JVe0( z3_3uOHf6z4BJ+Y*3hsa7rRKBn53$sIK*kqSuKPcF^)Jyy&opECt25nCH_)8F=ORD@sVW_F^Hm20(?81Zj}tu-7W6S?=1$TcwohIpwH zlqbij_b62h#^5GIMQs~tn2PcHi0C z3nq?GWfJ-wES$=sKQN*Jlh=@jT--ZNzZ#+Z8>JJ8Sa;T{ZDUS&i-w{sc)gVQORa!) zZ?8SrbUiZ)`Cnx@?nQXok@L(bRNI4sP6#fKg7Egy@~3_=l!v$CX^9S<8W>m%c?a>X zENN5Qj#D94sFgGD9)Oy7LDb`7$mc}l{}G{DVwQJgaybO|#$x?txG@N-M1;OF9^M)u zBnU-s@vJ+7F5qbgQx?gbNeKtA?g;g$>u37axOa&)#aTNLrE23)_=NSX0$gAJ zrpM#Mq;0VoxDn%Y8H;Frj~@LhWZxAp$0|ab@|up~E(jjWqKsyx1dT>fNmw3%#ZmMJ z+{su}9wvEM^A4p6BZT@q^`h1WnN3g>Xa+p?a$X=e5w-CHGT!O=KN2A`5VDvm`Ck2Ala$3P=G-5BhxVyW%yZ&Es>%PZ& zf34N&?sKYk?b=n{7YLbw9FhFgi{R!Q=WzI&;3YIEi2GS2D&x$D4Ao`V7R}+D1qCkQ zw-aJ*sOAKN_LH@Y$SYP=6UlWQ_8UR+pCq%eK_A%=3iu_z(ES|NqmV3yL3_dGXDYdX zM5je!0DiM?x9j+1hSX4kYqR&6D$;^cUqK&$OSqY^QL z^K_N2ze?*3$yt!E1n6B_wgQYLJO!JG?MPd8G7~L0$D&j!&TlBJnGWSEC0khfZ?|0p zJ|*dQmH#g75E}$|J=73uOoGl-vz)yyI%o^%Wm*6$Gu85o(s}SNh5vE<7LqU%>fQo# zq$Yiani=sCv+O5nC#pC_po>;mkt7=x{0HoZl3)M;k$~Q!`n&q9Uk4-uNyKiee;SfC zq=-piO(Sj(xFxvHg*svecv)#{7TZi&9OmkVY&OyU=4SIG;G-DMYh1SiM69^(e{<%C zRgjJ)nOGwT?WB<24BTpnRHv0M*)K)n_MGkZlOpD`wjIA528TQS?+=^B1hr(L1=Z}) z{%)gZ0N#05|?+F%LMDp1jZ}45E)!#?vLL|tnEwFjo{w#|s zVh0R{Roj+bXGzwnpO*s1Y8)*jd#E!Y>sCpsN#y+K5J_rFr4dY92Jyk zh{2a)O#CUHoIe!s8@2Q)cG!xNX^6r2A95f=MnJyumODpP{1<2W|JBkG2ouTf+eRpjOD!Cc$|^al5R>1%ydTL+HVXx1-~U>)&d#dQWQ+lJ0z7=+>z3#0x8 zY*yhIqmN=!st}ul5@QX3v|k35T_nj9{JKEePvsts?+{d3$@BhG6J=orMl)yyz-mv@ zK$3mKCxl8qgA+&#E3@Y;KmU11)k&=;tUt516Qsfr3~48F>t61h2cJ^JOo61>!>sgQtN`Fkba>=`8c9;f)Txcsy;nLLvYdt(u~7DI zBlAhU--rCCX`c&9Eka4VZAQHS_QJt#$YKp4F8NR5e4qZ@M#}eW_9v(d=UVzAu>4c64QpW!SK1EPHQE&6IH*_PBCZXFU+|k)vt%>LxUN?*OR=7^P#vO4tsqsO!e1;oSRcSHf-L_*HTp$-7ilI z%CldAL4C*J#(e;C?|}Rwf?dHEb5#FL6e3@X-?INMNida0pgx~T2+ImLJ1vX<2%=@k+mqZ6UcR6#VW=12=@PFZxcy3P)q|zUI$w&m_nc9^OQZy zV14wKus9T%E^&X+;M*sW2rEzD8&HJ@l6NNPJ|Mvm8;BZ*0N88mqr+$J573@R^jvH; z>U89K9GGQ@+lb#?2%f}GY#^<{`1zlHDpVrzaOcFu#6R*A984>gknj?{%BF#rNg}q! zey`7RauV)G`Uqq#2TmBhZphj;5>KFI-e5$NBRQC-S^LVGdp7281RDdnvD+_y`o{fM zDu0jTDcEPgr#+S239IoN1H%FM8AM&Jbnt*RADf?7IUM<6r_MXmwz5WwlIuRxiuoDC8=Qt^1!y&?D( zyfqNWjeo5qg-wNoSSI5BkUW%}mQbn{+lrhUVZN6|yRF1gtPa4fAbJF!Iovmc=yT$p zvp$bxV&23qM1i47Sk}&JL9bA5GW%j3slE!y-=Z#NacHkSkJn^fVeO-V+mY`Wj(?N9 zx&5mLqS8{G-O{t}L)Bu@4Aoww-9m!25bLQi9aM#$#LY~CBl#VA!>Dv1U+6#}3rxRr zOov1{7#{}s97j4T6WaiAR#j*VGtma$`(Dh3XJkOOJM|Lk?v+3NX8URKNwSIYB^d9!Y0G_&kr-0F<)ZHImsa z55=rb(wgNIk&oP#JIGWCfLnNO2VgA;4rr3G1f;XxGJ+VIEP4Pzm-fX;4dH+EYv9T&~W2y`XG$?=< z3q<|~C_$(AjqL?u3(!AEifZg2+1v z&IRKs?YK%I2jv&Kud~sRgv$uLjN@M#D8YWL+wCPJHzMB)O|X$_#FlD>m(;f=#1@ml zh57Nqrv=xZB!0*GJZBV6+0Kc74yC`dVV4DoCLsM_nEU9<=pyU>`dDt$7UWQM z8sOWD)?J{OrW|5ce3nAsGv|H~Yl=EzetfXS(cUgx=aj$y>rS$K0QV(XHJA<~ARe~! zaBwC;I|I42(h3Bg!C%bFKtd8bqQ-UZ?}Jf=L@9`k<8kW)-Yk5(pqSk*_}j1ex&X|; z6c+kLpY!2-h6<;UJcfY5+Je$3vXmrtyNA>pATf~ON$iO=(gYnDxJ@MAkHnuKKG3%9 za8IB8AvP*&36#+5KSb0bx0yMleXOB zIscd#i&iNTfQ+)do-;!>(LA*2gz2?Y91LD~`s3asl zA+cB<4zc3gY$m7&Rd*wBvok;Phg3b*|K)s-Ihsg?#kpPpne9%@B&zH-62l#iLMDP3 zv7RdMcB(GTaR)_Ks$ze!mw|58#0nk0ciX_J-Yjst^mKg>z6w>>kX$09noT zFi6-=3R<@)pE*fE65c|H7S(sP1I<>eJT{N zTV{ZABV|6of=Mj)92{qk3#?btHCbPZfP3&ku zgz8<8(TD2O5*!NPTu8ovNjiciBWWkrmZF%IVT~b1Y#Hlz%MFp=*?Igp#2$e&*>>sB z#o+S_CBsk-vpB>f!y9C+$CO8q)DwqABrFTy8WQX#X+@n8iFnAKH_~>a;-uD!${Oq3 zl+~xGHmcp{Nw}eo2^6|fi=9KuYRJEK>93pV0&rHDS3$-;k27Ikm$z#?ehsMn9+lgz zHN+dE*chGu0E%f$;8^6|lSGk0kSGlC8tj(_uL1X`n5z!*%~3QPH}v%_z!LyWCymE8 zAZ1&z8rwDE0X@A^39N{PVXyIsUwHo;@KN4HzZ3&@7q!N zFqF-%iFc#IG=smLVSPIoJ5VD&v1R1{8yP#{{5ycjN4^6Bl*B3lUJnuz2oyW_KdQXr z{ymjV)&j(5xxqJAv{7sr$seOmPn`#gp3@`$Bn#F2Mv8mf?161}s$UO@e~`95gr0I; zUnSoKk#Ddr3E50sH^;{@iCT-eziK4rbZ~)`l{UmtaUTk_+k4hsQSKGRT!mPo{$p84 z!+YMH#f$)tfyhgS@&|#dxbDXDD(1v~T3$A3s9+e!MC8r^p9k5OYt@i@ zpcF(xZ+%i)a*y$EZ1}S)iDuv=HWo$1x&gWzNrzBvZLMGjq+C_L;he`J`#|;^p~5oz z^Ga-f+Lev9>R=whuNW#+19u_GUy(SL>*Xj>Fp&B`;kc3NU*Xi&#wwA3{g0G@yu#-K zgz~Bqveyh!IcZJpK%3_Wtt>C9e9@LYqqWnC8HsNWRQ|?ObC~2uSewA!Yl~qE_UAOw z_DDEf0pO>;!Rk;|I|ivT0Xe8N2!b<^_@=5bfl3pNxj6Jd2 z>|JFB>T+G(kQHWw_LXFy#R{VKGx^K$4az!!e)v#DF;zjFuEBZ=0V7c4Bw%$Qcv>GT z+22IQKFkhcuXr)gE=SQA@} z64Q~rm;&|;u&u8k_7sZ5L2xLNh3B}ds zdMRs`H6-jvf_Da0(&vRJFqOoGHCcby`zpAAzM?&KRRy{Kj_+m&6~o6Hg&NbsH=GND zQ=R?1`1jQKuT-3t8CZ*26*z9lFGpEnw2t01!09xy`fH#33G~$phUj3{LF#%`+gzvl zGvueDR!tJ-;@WO2A=Cn5VzmNo=PBIxgm_mlB6XOP$$#zSCe{B#?;7EEo_>i<d2D^Mks!6zPIg-|LM3~n95lPHmb zs*`g}R0Re5CnSrb$|z!}pZ7YlRHWJ}fZA;z5>`c4u`EdTzgCll6(np0xY&8f|ASf; z!17~#6bVa1R4gClPjftT#n3|^~{Xii)a{2C}}NnDJ*Us5^B%_r`Pwl5>s8OT@DAj7{nqy!)} zRrUsWHO^vhoNeb$T7}#NQ$Y!;ONn0?U@eI~%%hY}2TFV{q1-AR+}Dt7iqA$>@GAuC zKyWhWrjTeTzZ`c(oxf52czU;u%@indoFhR8atcq!2lmCvD?z#TV|||{&%+#SC+4D5 zjMY$FxvosIgA|g@;B$n^#cng0mc=-|;bc z#s4hT4~NhP5*$UHaN_EKQJZ#b)yFi9^|Vy&hN3$lycXPi>}8W5jt1~pd>~1BHqRha z3#!OR72hFLhDsi?_Y=U1tp8%TmXkD>WX7H+ne)>5XF;$q zI4`xxmBdDXo!hl014BSKj>kyiN0L?aSF8Ze$#h^gP-Q24e5h&|Jw3?!E-EQa6&?_8 zWF7L`{-2#sNz1%Zp*jirP^nmJe2x=42{K|eA(xx;05HY+aGV3LI|^T+$n>0j$x#KR zpCiUu&c(=eht_SUkc{xLTRnK@MYs@(|6Bh15rb)k-R7cD95-(Xa7C33%v(-Pni--q zcpVpDuLH@a8oWpF?@GG@Azp!`T{*U@Aa=~@5Xgn1F%(#kUY%j<=&Bb`xiAlxLyy5WT+z+0>NBVF(2R?5M73fOSRGf9onYE4q-hx zIqWtXGFMTcGC4=vf84m7$}RwO6xpT_AhsC?v1cTiOXA+#ldI8 z;CCQouvbXc7)*>eM1Mglxhhy)ajP*$J49jp=c20E9~%LSLpMrFPa?5}IA#gtS;sj5 zB5z^5)8LV22A(E**#77UA^Am(5n6>Q;EM5u*{BJDDJZdp_>)#rL2Efe$AHpR$4 zH~fx#r>G{Hzz_vlhx0GkFQtECn_%4qb)rcW2;eHFew6}8u%4cNAL9w|=Si4NK^M4> zW<5D`VYhdv=0R}9Vva#} zAV(x*-%w#M{KgRT4WgGQG7F?%LgEnDbs;BaS&o#CkUbr8E=JDNY`DU3ARyj=on-GC z1GC3K9j^b^o=|CJCENk^QXugaq;E>4ueo-IL=UhwtFog|#F-rDSgaZX^sD#HFc!80MV8`5Im*}tW+a{nH}2T|Y*)r!?afo9tCE@0MG z+ypm^%|ZSQq5sKox&`QHz>kyYFo_#Tm2gf=9-=$|_Zmj=A=CpwP zhEP!|yokJSRQk6_`kL#-sCb!2Gy(tj#2p6w2Fb3VoY)RT=|KHvC<{U^1LvM#1yX%KeG2}d zOai_$!TLt*2>H(q6la3d15yL$o;b(B*oS_W(W$Ra@?Zd3u|J3;o}80Iq7Ie5;kr1< z%A(R8eZ`LC`fn$|@e#XA(%s;>pj;>7zkw$XoVQWyMG{;NDOV4#5^4zh&vO85o z5KxSMi$$VBQ9#620I-Wg?1T=FT%UyOB?#<9%3^@!rhP5IX^gBh8PsaXd>9qP9&lX7 z@2WlluShJm7GKL0l72_t2wIQ|dDc>41`=feKx`zHEkqr$!}^Fl(sM5WV@cYD7S4i% z0nuLIRY2n8BpD0Ay&MJcDUS-iI)sAdh@uDNpBtS6tOrLn0QM_GaVQLd4mkZlnUyGV z6u@}YYR~;wz{E1KZUWi{HL|1FeiF3;<1et#I+=N;yka8#(Px1XuY$Se* zAoB#Wc6(wljP(De&VV2H$K?I*#zIw$S%5s;nxNavw{M_K-P70b*ac{*IctIjEmcED{D%QBEqKuF}f-0O_k% zEcaqxsd5^A|7#a`HxxjTavWn&Avg(P@x83`B-cmC@etLr$=|50po(HJ5nIIookz+B zkU50pA8>3&HDY;m2rp8_Qm(Bi@Sf}H0JS5=pM+^ha*CrpBjG`Z%Y8GSg39;3=i_itfAsaNDO8(FJMXSr94^$yXxCZ_Igoi zj1JQ(K-+=S6BWkew+gJ|B=|xBU9|{_357&93RuUUnB^ORVl5by`~(k8GO-n5J`GT@ zXSS2Wet=D`lXG4G$>+%L2C0^)&_F*}9zd!$E%=Dk9og%xsuaVgGS?+gMJy(>ZT=E( z2I*Vw1w`yt2JlW)`I^0EfZjx{i_At7DjbHy&kdXBSV&)`kQF3cL}j1xy^4?B-s`~r z;v7QtZT^#k`L9TY&dOW@!r3fE(wYpF*lkp>+fbf{qwKpuB&oea4Y3a>(wjM{2;Odv zIEc50Oh(qO@susb?=3z{AlI5g66>D|W4n!}VzJH;*g;hvk?|2Aa|v=J=>|Y5N{e*B z5}o;@9m%2~SD8d7@G~KQjj0dNp{)anQ%Ii`to|fk3T{aXr+%B|!7+n^hA1JE$7CYc zhXE3+qg7ue_&Q*F@NW&^ekEN__Zt(p6#qfY(=#2uPE=k7>BR;^b~uBWQ9l3ss?4rb z*o*-wLLVO+e6kU^lf+YDyEie+_D3fC+b~pZAzTZPLEJY(EwPmPbTp+}yFG@CSQM(& z0IR=2TOeGA`-Af9hHqfK3m^}bYBcOFKt}8wfQRY-1Nv2g^~HeI(BWAO*melcLWNzr zRuo-)o(b~h_5Zw%k2=%EB0Y9quqOuT36!+(2nEMnE7CXcB0#p)PrA3`Xf$FNj z1Nn(sMuG-V-Eo-q06flsAAAJ z29F=rAEAH}Nz@#L-)`osE-^nLHa2UsL`;Y7R92T>&4A1@h#Uc6mLz2DHRQyKBHsyu zIw5CffNrB!c7ViMvo=>%YL?Bq$ijcfi{y4o#CHL_3otJIsj~s1zDH!SUZh-t7GoHvGWZq&dk7e*>F8S4_Jf_&EXAlr>@xg! z>ud)g#$HuF&`8{NSOc*lBpk<)hk5VD7#;=81UN5blG+o++z6=*_|E1ir7zc)5V{J! zH>8)z-<4c|mDp_(4uknX66MX#6RVw+y*r2~ww$132A}FEGmz_nDth83e`L@pxXk`2 zB{iP)1rS)tG~__V@ep@{;0lPe^+o?$fNw>j21wbTpv({|2gB2}U;^v!ajZfm?Rk1H zvECKHovM^QaXx@6B7JsRB-RkDjKqpHf>e8odj^SzkPwT}c6FD3NIDuBH?o+X(eWX9 zOO9czeW1D!R7g#wV&x6K8~|8s3Ph_=Wj;}WmIRW(k+Ty?>O=A%BYBl1w>UCGt_|m9 z6xzs;Xxd9L!^mUl&&C~Yvg1^b>tO)>p^^yFX9KpsSL1VeH+Mbrib;<%50be`aKRi(Fy> zB+NumDf+YkreevEIsoA293iyGZjDIb!>xuELmv-N^$8`ioZwV|EvN>uTV;Pan%(MPa4sIpt}?*j+1IjEXJ zi*I5d2OV(P-vZu5c*apr3-;r6Z>i=l8Nd_AT5-i20AI04#K@y~mfMgkM4~1LVz+_Z zx6`L>jIKXN6tPGJd7(wQFuU0yaZcCYYA3|E0XP@9-=$*u8+?FJ=mErj0$!LKv-pUc zx$=bJSdC$=3H$7#G7ceti(STN5$7fB8H~wu&flo)6qWzQAyy5aBC0@1ux66<3`Ml2 zTdBbn5gzEP;4=GH6BV#9)Lhht)xU4GM_O{R2sl{CH@q^c&vlqWtF}G$~wt!C7vQUsb!)PFXrh7iBhq5jKsA8 z&(9G7h}al|CyA%GA@kIlDqHGPDtj;46Pt&6=}BJS;2TI1_rj;I%sulQ2JTtbECp~X z4L}B!?kq`i!aAJ}-fakuAW30B#7^R$M-@4XruXq3puVzS64l~KFaf{K^nZl3R_zsJ z4pWraYw}Ds=>Ir>`o!>5A<=py_2mhALI1^k07_~H09y>G*lc1RK_D;pg;f6MgBz7p+5%NpTz1XOWluJoo3BVIFDG-=~qu4Q6i{$_` zIoIs~96+DNmT-K5R8F0Zo~pzT?k}?b8Kv@r|5Aogh*I1mlDE|&TFdWk=7QZ(lBR%N zxD!cWzKH;TNV!u{dWLh6!9CYiR8D{P)A9%|#D5ROUXmmaZ4$ezk7jvD7Dd%qaB4AA zVwb?mz}htko{;{}C3$%qqMdCHmvKnoG1(2FWd!YD-)=d%f230{Yn|w^*d}~0Qpi-| z3PQ{UQtwc&0QYmLbTSiPiK@jKvM1IYf6U?#4$HjAc9klA;nao%y9r1`rB)-+$)PEg zUt)U8K~&6*y#Olq=a^2brgC3PtIt7S*OMeUYuPv#)WIG?>$*d(B^cSX*ml|J{|`3A zwjz6a0Jot)QwXJkc||Im0x`R#2?PYtw-620`H;P_s!D10#10_uT~z6!&$_JjCb0nl zCneO|;A2F7Z)21`yPMgZNN@hv(jj{j_Uh5sYLNK~$>V^G(4otP%zjE{K2?uHkv4$e z1>0`Jxqho8i&JO{if%&-sGmMjmDn<>>S^%(7R<#?L&lkjZG~KeAek2ucB_ueO}USQ zTvw8c&BgZ$_b2dA%Q*!t`Jw8KCVnUc7P9A}14@W>wZ%#P%YqJVC`zmet!@wA3XU}t zl93`Sfpvy_S;6{Ca}ChBG!bG8aXVEw`7ciQp}2qOL_f}_4MDZp7DQ;HLiM9FS+!f1 z!6+gYU@(KKYCqJeNYViuN$mmS(F&5kH8>gM#6EJ~pF|*8n+(<~ig=?U+|=Y9!4NB+ zo!5%|sO=p|I+Cy+i<^@?as3Dwh4Wi|uSifz6qtsxWoY{^LsoeFRTa7Z4vCq>j3zdU zM!FNwCH zo)@6~Y40Yk+YtYdg8G4VoCjzng-u7Xq*f8%C-{ZS6P-AOocEDzJ+Fh(D)|l)c~ZeN zeb4L!{5HpEd`6JCHtgfs_vgF>`90LHIK(HCye4}^l4QNly4X*A8$sZpk$CH1`NYOW z22<>>B=XDsXdk^e4L?9eu3B3SGos_LK!1h>Xv0zj>i=L+Co2tLDvPe$et_QX;vnb}nD4(a3^i;cuB zhZ%YA7`j3Q(2ao7eDte5=UJ_Tt;a~c;ouE(J zzXc?DMm3qK`aEkP*=z|9Ys)<8=_m?_RTZ0(=ngG=A$SlO55CwA@;TsVg;c2gh4FRd z*aB!qNZfHmPAXo5!vP!z!#;o(RR_Rsh1p+1@{v0Eo7f+#B*bSD1Y+b*GZg3P|o6dY)C>Sgdv8AJv`0^?uyCt)6fBx1fK-iIrd%J&?-_MrM6sNz8THD&~tq)4{XML>@6Gdh`j|Z)(N=a9^4PzqG$~Sx=Vu z$Uus-C$c|+*h6|eh4_Ueo<$+$N#;mmv0|!h6p6mDAAs*du1|1O#HUP3egC<$A?AZb zg{WApwI;LO(H??M>rH-$`Jz%vs?NX@Qb!ZYc4-K##5WD+n-E;9Pf1(U`6M%tWMBu$ z7r`s&O-7aFwVpj#JBu1mcrqFTx`J~jZBq{9ZO(megI6|w&5<}0zF#5SAJz8rgxGBy zKBrJ2JL@x54Ocx^f!s_>fXy`ud7r}U1Ylwb1e{W!&m{CC=qy!s#J8M2DP>Ue7(?fYQjJg~1F?I+9ZdhlETIOK5PSqSooT~v6gY%q9i)0fRaJ1l z3us;iyv%yF#84`QWLjDgpsM}EZw7s~+ct_TWZ3U`e6`JP;6JA=f64!<=_?hNKt{2O z^#2b}gxDn3kC0$0&ikmS1BvQz?hDxske#NF+;Sb@+R) zwxhcy%m!F@B`SDrwGCfrK`Q2IFvmTa8wR%v*r50GToubL;|0jK{ zM)=z{_pDfP~;Eo^)|$V{?9|!xm<<;SX(Qc1A)G@Nu~hhr<1%>Vz}UpmOcfM}BlxV+S+aadGQqNW zhbqOg2J)Fe9}U2BFkG*+O+z?eN4`l~@lXg(=Kc-C+DYVAb;4NhrfqbC$Xamj;jO;_to8q(~A#8DC#heSNg zzY!>wf%&)(Yq1-wkI}x#eQA;(Vt>C94gjz|z^SRe7ohiqHQ_=Yq6RN zzDueC+{b!u6o0|xMJ;I&G>mSU2=ZIQC8RQSy(R1idqWwqk_fkyP_YpRG!A}ZU0I*N z{&Z>!Q}Mk?-$5ySN2dw+o=__PQhRT%`)B2^F*9*-7m#u~a|a=@j>K+SbSwljBHVn4 zbwebv`-qxMA1F@Yw-wglYz8|E49DbS(7Z zq68YP%0O;F9&@-Wp$Jr256J?k zR*-}~?DYpL9@0lhG!mR=5I917amadcehBeKDAWgacFH%3N$oi*h$TQIC4KwbKx*g2 zC5J$Lj^7ZRg~~dTq$q${Xy5zLM9ck*KG1Nj^U>}l% zy#a4eLa{&sZ;|)`%5>%|)&MoCD$&1)TY~>Rl=uc2yUD+t%1+E1tz6b$p~yTXCHF5? z1xso+DkF_2n;i(;PW781Fq^^o1@JwCKEb#mXR+M0!ES8=Y*$?kz68#Wyu_5{dKZO^ z09PzORlenAWs+ki$3ZR5woCuhP~~~;@m&C>;+%@XTLz$5aY%L3L{r$?rOaio0;)7* zZ$C-I%0g7EtE%w?62pkM+cmWWmMOdnETAb2==xT>&pO(HAKA_lE1^pkM`VSwq{b?WJtc}`d`R*rez0|NRWjp zuj{}C8B_w;9;ygXMFjLHNn%K5xA}T8OqKWrF?X)7>XRVbnW->81QNh6O0s3BFb#F9 zf%{0Y-th!j_TV^!jZ;*52icur+8Y9KRJsY^?cC2*IbRvP;Z&WGsMCWfPHJHQHUh(u z^+F_VjgMF-FvL=V8>8(g24)HQSB_D9c!;&s-nrsD7Wp!8@5F3eW-kRvt*n275 zff$qZv-nkp^kQb{0_z3|i<7(oI9r&Dy7~e;Ccl%}hmEhu+gdVUzilUneayf*_IeO- z-ifd1cuJnp>kb_Kl+Zh>N^aN!CgZz`y<(8ri~l6%q(8+CWZf5xndA_AMJx70`Y>%N zB!5vLwvmNTu-%QElc*pCfmaC>o36=hclfgZ6LMnRi2Gyku}g(w-8p*)poS*1t@33Y zM7@z->@~`4L8(39Y_ky1hsSR}i`S9XlcYna^sG*~kM{8g>&JM!KGC9%Tz}TbXa+Pw~p*l&AP|+J@xRVyx zEf*kXSU=3beB=5Py)_`z6y_#G%2B=868c^kb^d@eUX_{b@t-fS-{=$Bj{K|GeoP7< zLVf_(nhyT0AwM+rEfxI)b^S&gcc4>|>M>$=QlB-%ZN+bmj1g-t=$DK!+XjXGP`ar( zEh}*+bUI6(o z6w|}t#jR75i=4l~*_50IEUyzE1tj#K^;wzQZ3G|2`4iVIN#ds!IU?`{zzWj&tN=u@ zC*}sxI1-eHpx6)8xJlFOcATU)SzAxcHgbtIH~0vnm>cr{*l4B9+pyV{hoc_}LXmYk zU9}K6U!~G6IGm&Ezd7dUtp3*c9aQ{KeH+rc!&rq!!C!B%U0C z(4@y~I+^reY36``1VANNp2~GK1bRY}Pk?L$^dEp)0bGUTe-QH}em%6SHdwx?gnVxH zylKEG_Ga+-b>e&|@oBPdv^cp~JSZj|6A+J11KAH}x;isOMN}_4)`uihk`j!S6gvyt z8}RvHcjA1OrXE3GN9~alg1CU~Obzpt-w^gH$m5-YkrvA} z80@Eh(3}TwD)+w_Nq_u;0ICOIHoCJ($6x$2j*J|Y2ZV^=T7Shv+pG=aERJdJ7^%JBzs^e`6I79O4`r?pfCpuRG z*fBVZ^CVr})g7)jCzNc>r(W<8o}tKcWL3f~m8sEE#DGLl>bYa(Q(K&&?R zeMs_JF`F8E)x}}EMmvYf~yHXMK&NWKN91ppk!F~LaOa#)6RX#l9t`YZfv zQ~3B8=*2f74L0>15lKKbOswF#ZXd@i=9pEdx1crsq~v$i}tZZc*Vyo|su$^+OU? zh2S>ieW*KGaW;v(qv_#UWd8{G9D^^vN#Ga2*LbX@1ZW6ERF_elJWF%|1c0YxF* z3H*EdP*)ViLO51ZX%z?rYef?90+7S3HNg2O^W6`h6o9oroq7<71*i;jeNPFGCBX}A zOGn7WAnyaFV;_ZtS$mzM(>38!ig$JieHH%6&c`+PH3-X;M6_0Di-u-PnH;-W<)21& z0XPWewMl+h#S(|U%2=*f126(o`#9eQAUAtm@Xei_AK^eGn!S$TOf+Z=LSKVmGp>iA zN=cOHj^JV~SWk`8|MCpf=eo4~zQ#6#&vn=}1h_C2bfW4x1ifYbI8|9mIt%b_O6WM< zKS|rt<5MJ%&O1U1^8F!mpLMZpfG4%(toxzF6L7?4s0x-kFslHY*HqCCu;B_IP9d!A zfKXB1P%o)=HP>q)yg13jwHR_ev<-_G$G7ZXK+WWkTLD&2#aqhQc4xgkzMe{g6wVHl z{QmRp(rIG))3&eVJ3%pF+&2ev9x9g7=R#yDrTfhh<1-s)n7L;fJeQ5$1oSnSD>@~%oi=vj{1ElU zydlyV;GM*ZJqNfXaqa0^Ke{m#(PBAI1Yc|**GpBL_0Bv9@i4zY1!CQC+5+$_X31`G z+`DMyN3^;xY__0lO{s1toyb9l-UD0_oFWQdp1AakM=pIJcm^DHaqXy2{2cb)$$zx) zfb3w-fbF48PLMdt{cr20P~H^N*{+9rEfK)ipd;|jNNhvpyaU%Stc!JKttQ+@0ucn% zQ-t`X9q2|^lWA`84M5nD2<=TBGnDf@$wLFq65pD0-E0WdPx)QtnYaqT1AP@&r|2L+ z(&1bXQW4rU0Uv=-;RULwja3G&HT1+!9`tJ|RI24!-qd?fTF!@ZTNRq38_9jFOMpxR^N>{c0~kNp{ZE#$t=!xo12CjGC)k<{|Yf0p=p5&+p; zr;@&cwOAyq#TMh|j)bd8>cw7PlqkdD19&V%)8pqx^216r4l*7FpCBmoQ|62K9DFQ} zrO5mEz5|Q;ZMIhjZ6W}fm4NIl5E3L<4QNWFwc7?%aYNp-sFxF<^=uSTS-+s3*m$tS zvJy87`I~W6V@{?*q9w#n$&86Zb7bm7U&QuNU1zO8?hhtDCj6x?6Yc^LF~xUCrV7;} zK8^}gBku{FbepH`&xJaWO&}2M#8YDYXV>CzitF=KBX)#Jb^}z1{&j&!UJdkTy&g%@ zCs9WHD7(3> z`O%Id+)v;rkKZy>9H~!+K^rE3XK73#v9g?JLZlKwrMVBqaWhU248Abco>qf>ab$c+ z1qA>TI}P|dW+Xpr=}<|`8HG9%UrO6>9=S8AQjPKN#qgbBZ-o5tC6^>2@jL?N0oorW z%Ghuc{|smSqgEsfTS(Nz;M-5yl7d75oV!D80dbM+x80bPDb*UnzdmM{f*OyrI&@1{DJsu2l=bSX!_O#+^y>2eL~^YPZxBP?(C6fis-_ zy(pNOc(IMDz!?gA1A!K{WrrNJ>JJ!gE47sd$GY3)n+?JcO#^ zP-HN1gGZl>2%l+p3iZ;k%l>lzK1wCBfc}O5r>;mbOS(oQwJ}604@?@l<>O z;Jd0$eoeLwU$F;N{1~8n0G9{j4ZWYnbq3ygdr{7bImwKob6D>~@2lazoolfdC>V|! zn8jf=izNZ*#hnL_;s}FYImsU1oonSk*%!-AWnzD^{)p=xB(V?^LSM!FSRV$dEwmsK z;_F08tTD+OaM*1<)r)mVo{K4mKnHHxbG`)A60kl2NLM6wr0P1f=d8_-hCiYOvM^*@L7cr9}z3P&ZGE$gs@l% zd`nP!KI*JW%t=U1!}m6Ok*tj&b{m*O{VaU(gK`h4-fp8HvmnWAt!0WWJ? zPW&^!g7(pQD6XyfV9;lLAAut_S_{~N8V-i(mE8GCp;W<9aWS#s!A5XYWK2{a_3zxrq3GZ z9nR?^qT)gvszyabMH{g}onwq1Q6X^=p)sc82IsHdruR?mCY$BknmL@GvVq zcmAHztohUVvZqF@92ox?h^m~%2~hy5;|X8#&4=bb&mBfCTyxr-FDR;uHY z$1^f2*60!y7a3x9uH$mk(`?YpWnVV4Z>&od59_ITmw=4a78Dm7)guTMf+8aN8GXWI z!;ILlQ0t&xuIYTb2)nRQBQ7R1+I$-Ca?a5;A~ZTS#`<)SOG#@Ti%WNNuf^q#pZRFE zOHnWL$TF99u4dykF43vYQ+r&>dYNsHxx8{UN1c)Nj~88LxtSYoxU6$A!|uAY^Ky!g zGH*V2DeLAF6dM{55gr?AghjRoZTA6?Q zxPEaoCnj?};9|z7c5Uxw_49L0X_oPGo#SSGYPc3ObNRdObM*`A9TXlB)Hx#52nmV} zGGe2Qn6RimL74dXz9oALZJkpks*jZX?%HX4(a=6Wy#kmbn%+zb|u5=4SR?>-xpb%(&In$vtI* zMh;EuH)zB>_2>~Ne9a6yT|L~*DhFJbWHdkCaLwmvR=ed|(9N9tz;%q1b;x7ay5@k# zu6>=&-_Kmzq%yDnbdAhtwom6)Ew#DnFSpI*&5>Q*X1RIPtlc!R4l`w>+Z+F^VL_2y zL+MpSgb@`<*MfTX)5Ixgeb8-%hq>vL z+jHkep`nSbjR=p4HKMxM=g;UF)HOVkeuU&RLL(FPiwz5pF`|0LhDSvj;gN|!O=J5p zt47tR$S&bsQqiG3qIfdAAGn3OSQkEV zTVwWr>b5<(x$CQ2Wk)m3cemmmW*aB>x~}FcclVKw=3`IyO}^%x^zJ2`tQGv+r@Dv4 z_Q%4kr~TaLoBcDnXZALq=5#-s%{)}Y-POf>UdO$!n>n=vP z+tmGj*_3dUN81RpJ?p*VteZ-BWU=O$=$x^HnbV-CAN@-h2fa8K@Aq#7{^tB@xo zPE|GPNA-(0nlcoj@kafizWfm$>5wp{HzOZSZtJ-zKIzPayY3z-%`@-ZzdM^wpWOq} zn-zUMB7Lk089gSO7C(=wZsrTaBgok?)HEYwURK!L{#r2kHF@1k~?DjS9dV4O)V?HV28R2d1R>iZpweV@5)P;k3 zhXxxmIP#W?mY0sm&kHI#GMv?fg+|2v!L#CG!x>6OFfQ7tD##;6`iN8_To-f1M}rRv(%jF>ncm4sDN zTu^v)s1egMVO4N=mqaN-V~t*MLLidoD6V&CL{d;2NH9MC55+6g2<0J)4oz5L-QCAC ztKa{mm%4(Co)JO8q2|ARJpWYz2FS#Q zM)#JZxU&mZ)R zPv%(PjJV+0)FVY$!q!;C5_J<_xYo@#Jabu_UG+?FroQP}A-UQ6h3A5lX6|2}ZC#Sp zPy9&2Iq}VFJ@?xywK?6C{j2^rgqWM6%8{pN+!#Zcbx2IV&pVx2~>ybiUab}ak zUN^FuQyO{Y^E4l{_B!Njo^9_{E{7R8%xi1~>+SCO5FyncB&Hnm2i_RL_Nbi%8Q zdFzDNJ9lg6ZeCfJRM&|M-Uhh53-EY1A z%5Hv3#|6hl{k9xPtX}$5<+t;7%7@8^X zX&JTXAlsw`#q~8J4^52=i7{)w@n$dvefHiQK=*?Z2Q@mp2QLy{{5&O05F-&IFX56U z3tJm~@y-&^B`Px5_6!k%s77owu3ZvV@s^^?;%}Yx#k*wg9ziiNq4^l+kZ|$mp^q_w zj@D#ho+Zqfem+yY&1@rlF1otb z;-wI3ejV%6)zP}@Z=cNOt#Lj#9nJC+efp&|Q!Mg1>ST3X>a)eYUQl#bd4FtK>T|=K qyUgc`uX%fmPwQM}wHrQlT+Q`&eNuQh*0War;+fj~@zkfg\n" "Language-Team: French \n" "Language: fr\n" @@ -18,17 +18,38 @@ msgstr "" "X-Launchpad-Export-Date: 2021-11-02 10:57+0000\n" "X-Generator: Poedit 3.0\n" -#: ../../views/consoles/list.php:32 +#: ../../views/consoles/list.php:31 #, php-format msgid "%s registered consoles" msgstr "%s consoles enregistrées" -#: ../../views/consoles/list.php:68 +#: ../../views/consoles/list.php:40 +#: ../../enterprise/meta/advanced/servers.build_table.php:42 +#: ../../enterprise/meta/advanced/policymanager.apply.php:200 +#: ../../enterprise/godmode/servers/new_HA_cluster.php:86 +#: ../../enterprise/godmode/servers/HA_cluster.php:97 +#: ../../enterprise/godmode/servers/manage_export.php:69 +#: ../../enterprise/godmode/servers/manage_export_form.php:85 +#: ../../enterprise/godmode/servers/list_satellite.php:37 +#: ../../godmode/menu.php:298 ../../godmode/setup/os.php:225 +#: ../../godmode/reporting/visual_console_builder.wizard.php:353 +#: ../../godmode/servers/modificar_server.php:59 +#: ../../godmode/servers/modificar_server.php:219 +#: ../../godmode/servers/modificar_server.php:238 +#: ../../godmode/servers/modificar_server.php:293 +#: ../../godmode/servers/plugin_registration.php:73 +#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:355 +#: ../../godmode/servers/plugin.php:794 ../../mobile/include/functions_web.php:28 +#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:370 +msgid "Servers" +msgstr "Serveurs" + +#: ../../views/consoles/list.php:69 #: ../../enterprise/include/functions_tasklist.php:177 msgid "Console ID" msgstr "ID de la console" -#: ../../views/consoles/list.php:69 ../../views/calendar/list.php:98 +#: ../../views/consoles/list.php:70 ../../views/calendar/list.php:98 #: ../../views/calendar/special_days_edit.php:137 #: ../../views/calendar/edit.php:112 ../../views/cluster/list.php:70 #: ../../views/cluster/view.php:285 @@ -66,7 +87,7 @@ msgstr "ID de la console" #: ../../enterprise/godmode/policies/policy_collections.php:323 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:143 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:407 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:302 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:182 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:241 @@ -195,21 +216,21 @@ msgstr "ID de la console" #: ../../godmode/modules/manage_network_templates_form.php:234 #: ../../godmode/modules/manage_inventory_modules.php:290 #: ../../godmode/modules/manage_network_components_form_common.php:346 -#: ../../godmode/modules/manage_network_components.php:777 +#: ../../godmode/modules/manage_network_components.php:780 #: ../../godmode/modules/manage_network_components_form_wizard.php:457 #: ../../godmode/modules/manage_inventory_modules_form.php:128 #: ../../godmode/modules/module_list.php:100 #: ../../godmode/modules/manage_network_templates.php:249 -#: ../../godmode/groups/configure_group.php:239 -#: ../../godmode/groups/group_list.php:884 ../../godmode/users/user_list.php:581 +#: ../../godmode/groups/configure_group.php:258 +#: ../../godmode/groups/group_list.php:885 ../../godmode/users/user_list.php:582 #: ../../godmode/agentes/agent_template.php:276 #: ../../godmode/agentes/inventory_manager.php:234 -#: ../../godmode/agentes/modificar_agente.php:699 +#: ../../godmode/agentes/modificar_agente.php:709 #: ../../godmode/agentes/planned_downtime.list.php:734 #: ../../godmode/agentes/planned_downtime.editor.php:914 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:170 #: ../../godmode/agentes/agent_manager.php:569 -#: ../../godmode/agentes/module_manager_editor_common.php:1019 +#: ../../godmode/agentes/module_manager_editor_common.php:1029 #: ../../godmode/agentes/module_manager.php:644 #: ../../godmode/netflow/nf_item_list.php:175 #: ../../godmode/snmpconsole/snmp_alert.php:769 @@ -217,7 +238,7 @@ msgstr "ID de la console" #: ../../godmode/snmpconsole/snmp_filters.php:203 #: ../../godmode/snmpconsole/snmp_filters.php:313 #: ../../godmode/massive/massive_edit_plugins.php:494 -#: ../../godmode/massive/massive_edit_agents.php:774 +#: ../../godmode/massive/massive_edit_agents.php:791 #: ../../godmode/massive/massive_edit_modules.php:758 #: ../../godmode/alerts/configure_alert_command.php:283 #: ../../godmode/alerts/alert_commands.php:752 @@ -229,8 +250,8 @@ msgstr "ID de la console" #: ../../godmode/reporting/graphs.php:363 #: ../../godmode/reporting/reporting_builder.item_editor.php:74 #: ../../godmode/reporting/reporting_builder.item_editor.php:84 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1157 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4002 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1159 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4011 #: ../../godmode/reporting/reporting_builder.main.php:140 #: ../../godmode/reporting/reporting_builder.php:885 #: ../../godmode/reporting/graph_builder.main.php:182 @@ -238,26 +259,26 @@ msgstr "ID de la console" #: ../../godmode/events/event_responses.list.php:67 #: ../../godmode/servers/modificar_server.php:99 #: ../../godmode/servers/plugin.php:449 ../../godmode/servers/plugin.php:567 -#: ../../godmode/tag/tag.php:230 ../../godmode/tag/tag.php:303 -#: ../../godmode/tag/edit_tag.php:196 ../../mobile/operation/tactical.php:352 +#: ../../godmode/tag/tag.php:231 ../../godmode/tag/tag.php:304 +#: ../../godmode/tag/edit_tag.php:200 #: ../../include/functions_reporting_html.php:156 -#: ../../include/functions_reporting_html.php:1608 -#: ../../include/functions_reporting_html.php:1764 -#: ../../include/functions_reporting_html.php:3663 -#: ../../include/functions_reporting_html.php:3711 -#: ../../include/functions_reporting_html.php:5491 -#: ../../include/functions_reporting_html.php:6371 +#: ../../include/functions_reporting_html.php:1617 +#: ../../include/functions_reporting_html.php:1773 +#: ../../include/functions_reporting_html.php:3691 +#: ../../include/functions_reporting_html.php:3739 +#: ../../include/functions_reporting_html.php:5519 +#: ../../include/functions_reporting_html.php:6405 #: ../../include/ajax/events_extended.php:91 -#: ../../include/ajax/heatmap.ajax.php:246 -#: ../../include/ajax/heatmap.ajax.php:285 -#: ../../include/ajax/heatmap.ajax.php:345 ../../include/ajax/module.php:1002 -#: ../../include/ajax/events.php:2668 ../../include/functions_treeview.php:126 -#: ../../include/functions_treeview.php:655 +#: ../../include/ajax/heatmap.ajax.php:288 +#: ../../include/ajax/heatmap.ajax.php:413 +#: ../../include/ajax/heatmap.ajax.php:473 ../../include/ajax/module.php:1025 +#: ../../include/ajax/events.php:2669 ../../include/functions_treeview.php:126 +#: ../../include/functions_treeview.php:659 #: ../../include/class/ConfigPEN.class.php:450 #: ../../include/class/ConfigPEN.class.php:601 #: ../../include/class/ManageNetScanScripts.class.php:404 -#: ../../include/class/ManageNetScanScripts.class.php:566 -#: ../../include/class/ManageNetScanScripts.class.php:615 +#: ../../include/class/ManageNetScanScripts.class.php:562 +#: ../../include/class/ManageNetScanScripts.class.php:611 #: ../../include/class/ModuleTemplates.class.php:849 #: ../../include/class/ModuleTemplates.class.php:1042 #: ../../include/class/ModuleTemplates.class.php:1186 @@ -265,12 +286,12 @@ msgstr "ID de la console" #: ../../include/class/AgentWizard.class.php:1284 #: ../../include/class/AgentWizard.class.php:4187 #: ../../include/functions_container.php:147 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:815 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:816 #: ../../include/lib/Group.php:582 ../../include/functions_snmp_browser.php:570 -#: ../../include/functions_snmp_browser.php:1884 +#: ../../include/functions_snmp_browser.php:1893 #: ../../operation/search_users.php:48 ../../operation/search_agents.php:43 #: ../../operation/search_agents.php:49 ../../operation/agentes/gis_view.php:222 -#: ../../operation/agentes/estado_agente.php:1027 +#: ../../operation/agentes/estado_agente.php:1034 #: ../../operation/agentes/pandora_networkmap.editor.php:368 #: ../../operation/agentes/custom_fields.php:69 #: ../../operation/agentes/pandora_networkmap.view.php:146 @@ -282,8 +303,7 @@ msgstr "ID de la console" #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:277 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:408 #: ../../operation/search_reports.php:43 ../../operation/search_reports.php:59 -#: ../../operation/inventory/inventory.php:1004 -#: ../../operation/inventory/inventory.php:1298 +#: ../../operation/inventory/inventory.php:1250 #: ../../operation/search_graphs.php:31 #: ../../operation/reporting/custom_reporting.php:35 #: ../../operation/reporting/graph_viewer.php:568 @@ -291,8 +311,8 @@ msgstr "ID de la console" msgid "Description" msgstr "Description" -#: ../../views/consoles/list.php:70 -#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../views/consoles/list.php:71 +#: ../../enterprise/meta/advanced/servers.build_table.php:80 #: ../../enterprise/meta/advanced/metasetup.consoles.php:927 #: ../../enterprise/godmode/servers/list_satellite.php:56 #: ../../enterprise/include/functions_reporting_csv.php:725 @@ -302,29 +322,29 @@ msgstr "Description" #: ../../godmode/extensions.php:160 #: ../../godmode/update_manager/update_manager.history.php:40 #: ../../godmode/reporting/reporting_builder.item_editor.php:78 -#: ../../godmode/servers/servers.build_table.php:80 -#: ../../include/functions_reporting_html.php:1628 -#: ../../include/functions_menu.php:953 +#: ../../godmode/servers/servers.build_table.php:82 +#: ../../include/functions_reporting_html.php:1637 +#: ../../include/functions_menu.php:958 #: ../../include/functions_snmp_browser.php:762 -#: ../../general/reporting_console_node.php:69 +#: ../../general/reporting_console_node.php:74 msgid "Version" msgstr "Version" -#: ../../views/consoles/list.php:71 +#: ../../views/consoles/list.php:72 msgid "Last Execution" msgstr "Dernière exécution" -#: ../../views/consoles/list.php:72 +#: ../../views/consoles/list.php:73 msgid "Console type" msgstr "Type de console" -#: ../../views/consoles/list.php:73 ../../godmode/users/configure_user.php:1108 +#: ../../views/consoles/list.php:74 ../../godmode/users/configure_user.php:1172 #: ../../godmode/massive/massive_edit_users.php:469 -#: ../../operation/users/user_edit.php:537 +#: ../../operation/users/user_edit.php:530 msgid "Timezone" msgstr "Fuseau horaire" -#: ../../views/consoles/list.php:74 +#: ../../views/consoles/list.php:75 #: ../../enterprise/meta/advanced/metasetup.setup.php:237 #: ../../enterprise/meta/include/functions_meta.php:171 #: ../../godmode/setup/setup_general.php:480 @@ -332,7 +352,7 @@ msgstr "Fuseau horaire" msgid "Public URL" msgstr "URL publique" -#: ../../views/consoles/list.php:76 ../../views/calendar/list.php:99 +#: ../../views/consoles/list.php:77 ../../views/calendar/list.php:99 #: ../../views/cluster/list.php:75 ../../views/dashboard/header.php:81 #: ../../enterprise/views/ncm/snippets/list.php:71 #: ../../enterprise/views/ncm/agent/details.php:92 @@ -351,20 +371,21 @@ msgstr "URL publique" #: ../../enterprise/include/class/LogSource.class.php:606 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2376 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3013 -#: ../../godmode/menu.php:580 +#: ../../godmode/menu.php:578 #: ../../godmode/reporting/reporting_builder.list_items.php:429 -#: ../../include/ajax/events.php:2308 ../../include/class/ConfigPEN.class.php:603 +#: ../../include/ajax/events.php:2309 ../../include/class/ConfigPEN.class.php:603 #: ../../include/class/EventSound.class.php:308 #: ../../include/class/CredentialStore.class.php:819 #: ../../include/class/ExternalTools.class.php:412 #: ../../include/functions_events.php:310 -#: ../../operation/agentes/pandora_networkmap.view.php:2386 +#: ../../operation/agentes/pandora_networkmap.view.php:2387 +#: ../../operation/events/sound_events.php:185 msgid "Options" msgstr "Options" -#: ../../views/consoles/list.php:113 ../../views/consoles/list.php:123 +#: ../../views/consoles/list.php:114 ../../views/consoles/list.php:124 #: ../../views/dashboard/list.php:107 -#: ../../enterprise/meta/advanced/servers.build_table.php:142 +#: ../../enterprise/meta/advanced/servers.build_table.php:185 #: ../../enterprise/meta/advanced/metasetup.visual.php:454 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:688 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:719 @@ -388,15 +409,16 @@ msgstr "Options" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:805 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:871 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:887 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:200 #: ../../enterprise/godmode/agentes/plugins_manager.php:216 #: ../../enterprise/godmode/agentes/plugins_manager.php:302 #: ../../enterprise/godmode/policies/policy_plugins.php:188 #: ../../enterprise/godmode/policies/policy_alerts.php:590 -#: ../../enterprise/godmode/policies/policy_modules.php:1666 -#: ../../enterprise/godmode/policies/policy_modules.php:1715 -#: ../../enterprise/godmode/policies/policy_queue.php:307 -#: ../../enterprise/godmode/policies/policy_queue.php:715 -#: ../../enterprise/godmode/policies/policy_queue.php:762 +#: ../../enterprise/godmode/policies/policy_modules.php:1711 +#: ../../enterprise/godmode/policies/policy_modules.php:1760 +#: ../../enterprise/godmode/policies/policy_queue.php:309 +#: ../../enterprise/godmode/policies/policy_queue.php:717 +#: ../../enterprise/godmode/policies/policy_queue.php:766 #: ../../enterprise/godmode/policies/policies.php:662 #: ../../enterprise/godmode/policies/policy_external_alerts.php:600 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:316 @@ -404,7 +426,7 @@ msgstr "Options" #: ../../enterprise/godmode/policies/policy_agents.php:1534 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:434 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:239 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:149 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:151 #: ../../enterprise/godmode/setup/setup_acl.php:734 #: ../../enterprise/godmode/reporting/graph_template_list.php:257 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:614 @@ -432,8 +454,8 @@ msgstr "Options" #: ../../enterprise/include/class/AgentRepository.class.php:912 #: ../../enterprise/include/class/Omnishell.class.php:1398 #: ../../enterprise/include/class/Omnishell.class.php:1533 -#: ../../enterprise/include/class/LogSource.class.php:751 -#: ../../enterprise/include/class/LogSource.class.php:873 +#: ../../enterprise/include/class/LogSource.class.php:748 +#: ../../enterprise/include/class/LogSource.class.php:870 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2476 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3159 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3487 @@ -452,26 +474,26 @@ msgstr "Options" #: ../../godmode/modules/manage_nc_groups.php:363 #: ../../godmode/modules/manage_inventory_modules.php:342 #: ../../godmode/modules/manage_inventory_modules.php:385 -#: ../../godmode/modules/manage_network_components.php:857 -#: ../../godmode/modules/manage_network_components.php:906 +#: ../../godmode/modules/manage_network_components.php:860 +#: ../../godmode/modules/manage_network_components.php:909 #: ../../godmode/modules/manage_network_templates.php:289 #: ../../godmode/modules/manage_network_templates.php:302 -#: ../../godmode/groups/group_list.php:971 -#: ../../godmode/groups/group_list.php:972 +#: ../../godmode/groups/group_list.php:983 +#: ../../godmode/groups/group_list.php:984 #: ../../godmode/groups/modu_group_list.php:263 ../../godmode/extensions.php:282 #: ../../godmode/extensions.php:290 ../../godmode/extensions.php:300 #: ../../godmode/extensions.php:308 ../../godmode/users/profile_list.php:457 -#: ../../godmode/users/user_list.php:982 +#: ../../godmode/users/user_list.php:983 #: ../../godmode/agentes/agent_template.php:297 #: ../../godmode/agentes/module_manager_editor.php:802 -#: ../../godmode/agentes/inventory_manager.php:262 +#: ../../godmode/agentes/inventory_manager.php:263 #: ../../godmode/agentes/planned_downtime.list.php:748 #: ../../godmode/agentes/planned_downtime.list.php:904 #: ../../godmode/agentes/planned_downtime.editor.php:1419 #: ../../godmode/agentes/planned_downtime.editor.php:1459 #: ../../godmode/agentes/fields_manager.php:206 -#: ../../godmode/agentes/module_manager_editor_common.php:1538 -#: ../../godmode/agentes/module_manager.php:1000 +#: ../../godmode/agentes/module_manager_editor_common.php:1548 +#: ../../godmode/agentes/module_manager.php:1014 #: ../../godmode/netflow/nf_item_list.php:263 #: ../../godmode/netflow/nf_item_list.php:273 #: ../../godmode/netflow/nf_edit.php:203 ../../godmode/netflow/nf_edit.php:223 @@ -480,16 +502,16 @@ msgstr "Options" #: ../../godmode/snmpconsole/snmp_filters.php:337 #: ../../godmode/alerts/alert_actions.php:356 #: ../../godmode/alerts/alert_actions.php:478 -#: ../../godmode/alerts/alert_list.list.php:1023 -#: ../../godmode/alerts/alert_templates.php:475 ../../godmode/setup/news.php:354 +#: ../../godmode/alerts/alert_list.list.php:1022 +#: ../../godmode/alerts/alert_templates.php:479 ../../godmode/setup/news.php:358 #: ../../godmode/setup/gis.php:71 ../../godmode/setup/links.php:196 #: ../../godmode/setup/snmp_wizard.php:110 -#: ../../godmode/setup/setup_visuals.php:1873 -#: ../../godmode/setup/setup_visuals.php:1965 -#: ../../godmode/setup/setup_visuals.php:2040 -#: ../../godmode/reporting/reporting_builder.list_items.php:633 -#: ../../godmode/reporting/reporting_builder.list_items.php:677 -#: ../../godmode/reporting/reporting_builder.list_items.php:802 +#: ../../godmode/setup/setup_visuals.php:1888 +#: ../../godmode/setup/setup_visuals.php:1980 +#: ../../godmode/setup/setup_visuals.php:2055 +#: ../../godmode/reporting/reporting_builder.list_items.php:634 +#: ../../godmode/reporting/reporting_builder.list_items.php:678 +#: ../../godmode/reporting/reporting_builder.list_items.php:803 #: ../../godmode/reporting/create_container.php:747 #: ../../godmode/reporting/create_container.php:802 #: ../../godmode/reporting/map_builder.php:421 @@ -497,38 +519,38 @@ msgstr "Options" #: ../../godmode/reporting/map_builder.php:555 #: ../../godmode/reporting/graphs.php:419 ../../godmode/reporting/graphs.php:420 #: ../../godmode/reporting/graphs.php:450 ../../godmode/reporting/graphs.php:481 -#: ../../godmode/reporting/graph_builder.graph_editor.php:216 -#: ../../godmode/reporting/graph_builder.graph_editor.php:276 +#: ../../godmode/reporting/graph_builder.graph_editor.php:349 +#: ../../godmode/reporting/graph_builder.graph_editor.php:409 #: ../../godmode/reporting/visual_console_builder.elements.php:828 #: ../../godmode/reporting/reporting_builder.php:1209 #: ../../godmode/reporting/reporting_builder.php:1298 #: ../../godmode/events/event_filter.php:200 #: ../../godmode/events/event_filter.php:242 #: ../../godmode/events/event_responses.list.php:90 -#: ../../godmode/servers/servers.build_table.php:273 -#: ../../godmode/servers/plugin.php:1067 ../../godmode/category/category.php:190 +#: ../../godmode/servers/servers.build_table.php:286 +#: ../../godmode/servers/plugin.php:1059 ../../godmode/category/category.php:190 #: ../../godmode/category/category.php:227 ../../include/functions_cron.php:931 #: ../../include/functions_cron.php:958 #: ../../include/class/ConfigPEN.class.php:264 #: ../../include/class/SatelliteAgent.class.php:1147 -#: ../../include/class/NetworkMap.class.php:2943 +#: ../../include/class/NetworkMap.class.php:2949 #: ../../include/class/ManageNetScanScripts.class.php:405 #: ../../include/class/CredentialStore.class.php:1267 -#: ../../include/class/CredentialStore.class.php:1695 +#: ../../include/class/CredentialStore.class.php:1704 #: ../../include/class/SnmpConsole.class.php:466 #: ../../include/class/SnmpConsole.class.php:518 -#: ../../include/class/SnmpConsole.class.php:868 -#: ../../include/class/SnmpConsole.class.php:880 -#: ../../include/class/TipsWindow.class.php:458 +#: ../../include/class/SnmpConsole.class.php:870 +#: ../../include/class/SnmpConsole.class.php:882 +#: ../../include/class/TipsWindow.class.php:470 #: ../../include/class/ModuleTemplates.class.php:894 #: ../../include/class/ModuleTemplates.class.php:1187 #: ../../include/class/CalendarManager.class.php:737 #: ../../include/functions_container.php:191 #: ../../include/functions_container.php:325 #: ../../include/lib/ClusterViewer/ClusterManager.php:634 -#: ../../operation/visual_console/view.php:863 -#: ../../operation/agentes/pandora_networkmap.php:824 -#: ../../operation/agentes/status_monitor.php:2264 +#: ../../operation/visual_console/view.php:865 +#: ../../operation/agentes/pandora_networkmap.php:825 +#: ../../operation/agentes/status_monitor.php:2266 #: ../../operation/messages/message_list.php:197 #: ../../operation/messages/message_list.php:296 #: ../../operation/messages/message_list.php:332 @@ -540,7 +562,7 @@ msgstr "Options" msgid "Delete" msgstr "Supprimer" -#: ../../views/consoles/list.php:121 +#: ../../views/consoles/list.php:122 msgid "" "Are you sure?

WARNING: you also need to delete config." "php options in your console or delete the whole console." @@ -549,7 +571,7 @@ msgstr "" "supprimer les options de config.php de votre console ou supprimer toute la " "console.
" -#: ../../views/consoles/list.php:127 +#: ../../views/consoles/list.php:128 #: ../../views/calendar/special_days_edit.php:209 #: ../../views/calendar/special_days.php:430 #: ../../views/calendar/special_days.php:530 ../../views/dashboard/header.php:70 @@ -576,23 +598,23 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1824 #: ../../enterprise/include/class/AgentRepository.class.php:903 #: ../../enterprise/include/class/AgentRepository.class.php:1001 -#: ../../enterprise/include/class/LogSource.class.php:824 -#: ../../enterprise/include/class/LogSource.class.php:877 +#: ../../enterprise/include/class/LogSource.class.php:821 +#: ../../enterprise/include/class/LogSource.class.php:874 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3114 #: ../../enterprise/include/class/ManageBackups.class.php:455 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1435 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1459 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:926 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:949 -#: ../../update_manager_client/views/register.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:254 +#: ../../update_manager_client/views/register.php:86 +#: ../../godmode/agentes/status_monitor_custom_fields.php:274 #: ../../godmode/snmpconsole/snmp_alert.php:2226 #: ../../godmode/snmpconsole/snmp_alert.php:2241 #: ../../godmode/massive/massive_operations.php:416 #: ../../godmode/setup/snmp_wizard.php:100 #: ../../godmode/events/custom_events.php:234 -#: ../../include/functions_visual_map_editor.php:878 -#: ../../include/functions_visual_map_editor.php:882 +#: ../../include/functions_visual_map_editor.php:926 +#: ../../include/functions_visual_map_editor.php:930 #: ../../include/functions_register.php:179 #: ../../include/class/ConfigPEN.class.php:675 #: ../../include/class/ConfigPEN.class.php:699 @@ -601,23 +623,24 @@ msgstr "" #: ../../include/class/SatelliteAgent.class.php:1199 #: ../../include/class/SatelliteAgent.class.php:1261 #: ../../include/class/TreeGroupEdition.class.php:165 -#: ../../include/class/NetworkMap.class.php:2951 -#: ../../include/class/CredentialStore.class.php:1647 -#: ../../include/class/CredentialStore.class.php:1699 -#: ../../include/class/ModuleTemplates.class.php:1360 +#: ../../include/class/NetworkMap.class.php:2957 +#: ../../include/class/CredentialStore.class.php:1656 +#: ../../include/class/CredentialStore.class.php:1708 +#: ../../include/class/ModuleTemplates.class.php:1364 #: ../../include/class/WelcomeWindow.class.php:174 #: ../../include/class/SatelliteCollection.class.php:536 #: ../../include/class/SatelliteCollection.class.php:579 -#: ../../include/class/AgentWizard.class.php:6234 +#: ../../include/class/AgentWizard.class.php:6230 #: ../../operation/agentes/pandora_networkmap.editor.php:746 -#: ../../operation/snmpconsole/snmp_browser.php:174 -#: ../../operation/snmpconsole/snmp_browser.php:545 -#: ../../operation/snmpconsole/snmp_browser.php:625 -#: ../../operation/snmpconsole/snmp_browser.php:640 ../../general/header.php:834 +#: ../../operation/snmpconsole/snmp_browser.php:179 +#: ../../operation/snmpconsole/snmp_browser.php:550 +#: ../../operation/snmpconsole/snmp_browser.php:623 +#: ../../operation/snmpconsole/snmp_browser.php:684 +#: ../../operation/snmpconsole/snmp_browser.php:699 ../../general/header.php:834 msgid "Cancel" msgstr "Annuler" -#: ../../views/consoles/list.php:164 +#: ../../views/consoles/list.php:165 #: ../../enterprise/godmode/services/services.elements.php:956 #: ../../enterprise/godmode/services/services.elements.php:967 #: ../../enterprise/godmode/setup/setup.php:595 @@ -627,24 +650,25 @@ msgstr "Annuler" #: ../../enterprise/include/class/DeploymentCenter.class.php:1647 #: ../../enterprise/include/class/AgentRepository.class.php:944 #: ../../enterprise/include/class/Omnishell.class.php:1306 -#: ../../enterprise/include/class/LogSource.class.php:767 +#: ../../enterprise/include/class/LogSource.class.php:764 #: ../../enterprise/include/class/ManageBackups.class.php:482 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1079 #: ../../include/ajax/snmp_browser.ajax.php:260 #: ../../include/functions_ui.php:310 ../../include/class/ConfigPEN.class.php:743 #: ../../include/class/SatelliteAgent.class.php:1046 #: ../../include/class/HelpFeedBack.class.php:360 -#: ../../include/class/Diagnostics.class.php:2115 -#: ../../include/class/CredentialStore.class.php:1590 -#: ../../include/class/ModuleTemplates.class.php:1395 +#: ../../include/class/Diagnostics.class.php:2119 +#: ../../include/class/CredentialStore.class.php:1599 +#: ../../include/class/ModuleTemplates.class.php:1399 +#: ../../include/class/AgentDeployWizard.class.php:604 #: ../../include/class/SatelliteCollection.class.php:616 #: ../../include/class/WebServerModuleDebug.class.php:359 -#: ../../include/class/AgentWizard.class.php:6027 -#: ../../operation/visual_console/view.php:937 +#: ../../include/class/AgentWizard.class.php:6023 +#: ../../operation/visual_console/view.php:939 msgid "Success" msgstr "Succès" -#: ../../views/consoles/list.php:174 ../../views/consoles/list.php:179 +#: ../../views/consoles/list.php:175 ../../views/consoles/list.php:180 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:657 #: ../../enterprise/include/functions_HA_cluster.php:542 #: ../../enterprise/include/functions_HA_cluster.php:547 @@ -654,8 +678,8 @@ msgstr "Succès" #: ../../enterprise/include/class/AgentRepository.class.php:951 #: ../../enterprise/include/class/AgentRepository.class.php:956 #: ../../enterprise/include/class/Omnishell.class.php:1302 -#: ../../enterprise/include/class/LogSource.class.php:774 -#: ../../enterprise/include/class/LogSource.class.php:779 +#: ../../enterprise/include/class/LogSource.class.php:771 +#: ../../enterprise/include/class/LogSource.class.php:776 #: ../../enterprise/include/class/ManageBackups.class.php:493 #: ../../enterprise/include/class/ManageBackups.class.php:498 #: ../../enterprise/include/functions_ux_console.php:483 @@ -669,19 +693,21 @@ msgstr "Succès" #: ../../include/class/SatelliteAgent.class.php:1055 #: ../../include/class/SatelliteAgent.class.php:1060 #: ../../include/class/HelpFeedBack.class.php:355 -#: ../../include/class/Diagnostics.class.php:2114 -#: ../../include/class/CredentialStore.class.php:1597 -#: ../../include/class/CredentialStore.class.php:1602 -#: ../../include/class/ModuleTemplates.class.php:1402 -#: ../../include/class/ModuleTemplates.class.php:1407 +#: ../../include/class/Diagnostics.class.php:2118 +#: ../../include/class/CredentialStore.class.php:1606 +#: ../../include/class/CredentialStore.class.php:1611 +#: ../../include/class/ModuleTemplates.class.php:1406 +#: ../../include/class/ModuleTemplates.class.php:1411 +#: ../../include/class/AgentDeployWizard.class.php:611 +#: ../../include/class/AgentDeployWizard.class.php:616 #: ../../include/class/SatelliteCollection.class.php:626 #: ../../include/class/SatelliteCollection.class.php:631 #: ../../include/class/WebServerModuleDebug.class.php:366 #: ../../include/class/WebServerModuleDebug.class.php:371 -#: ../../include/class/AgentWizard.class.php:6034 -#: ../../include/class/AgentWizard.class.php:6039 -#: ../../operation/visual_console/view.php:944 -#: ../../operation/visual_console/view.php:949 +#: ../../include/class/AgentWizard.class.php:6030 +#: ../../include/class/AgentWizard.class.php:6035 +#: ../../operation/visual_console/view.php:946 +#: ../../operation/visual_console/view.php:951 msgid "Failed" msgstr "Échoué" @@ -707,21 +733,21 @@ msgstr "Échoué" #: ../../enterprise/include/functions_policies.php:3734 #: ../../enterprise/operation/agentes/tag_view.php:702 #: ../../enterprise/operation/services/massive/services.create.php:897 -#: ../../godmode/groups/configure_group.php:224 -#: ../../godmode/groups/group_list.php:880 ../../godmode/groups/tactical.php:181 +#: ../../godmode/groups/configure_group.php:243 +#: ../../godmode/groups/group_list.php:881 ../../godmode/groups/tactical.php:181 #: ../../godmode/agentes/configurar_agente.php:441 #: ../../godmode/agentes/configurar_agente.php:745 -#: ../../godmode/agentes/modificar_agente.php:829 -#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:265 +#: ../../godmode/agentes/modificar_agente.php:841 +#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:263 #: ../../godmode/massive/massive_copy_modules.php:216 #: ../../godmode/alerts/configure_alert_command.php:58 #: ../../godmode/alerts/alert_actions.php:70 #: ../../godmode/alerts/alert_commands.php:581 -#: ../../godmode/alerts/alert_templates.php:126 -#: ../../godmode/alerts/alert_templates.php:135 -#: ../../godmode/alerts/alert_templates.php:188 -#: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/alerts/alert_templates.php:129 +#: ../../godmode/alerts/alert_templates.php:138 +#: ../../godmode/alerts/alert_templates.php:192 +#: ../../godmode/alerts/alert_templates.php:215 +#: ../../godmode/alerts/alert_templates.php:236 #: ../../godmode/alerts/configure_alert_action.php:72 #: ../../godmode/alerts/configure_alert_action.php:92 #: ../../godmode/alerts/configure_alert_template.php:95 @@ -730,20 +756,20 @@ msgstr "Échoué" #: ../../godmode/alerts/alert_view.php:74 ../../godmode/alerts/alert_list.php:504 #: ../../godmode/alerts/alert_list.php:523 #: ../../mobile/include/functions_web.php:26 ../../mobile/operation/agents.php:98 -#: ../../mobile/operation/agents.php:407 ../../mobile/operation/home.php:74 -#: ../../mobile/operation/agent.php:355 ../../mobile/operation/alerts.php:194 -#: ../../include/functions_reporting_html.php:2594 -#: ../../include/functions_reporting_html.php:5671 -#: ../../include/functions_treeview.php:392 +#: ../../mobile/operation/agents.php:408 ../../mobile/operation/home.php:74 +#: ../../mobile/operation/agent.php:358 ../../mobile/operation/alerts.php:194 +#: ../../include/functions_reporting_html.php:2615 +#: ../../include/functions_reporting_html.php:5699 +#: ../../include/functions_treeview.php:396 #: ../../include/functions_reports.php:855 #: ../../include/functions_reports.php:859 #: ../../include/functions_reports.php:865 #: ../../include/functions_reports.php:871 #: ../../include/class/AgentsAlerts.class.php:567 #: ../../operation/search_agents.php:57 ../../operation/search_results.php:107 -#: ../../operation/agentes/estado_agente.php:1052 +#: ../../operation/agentes/estado_agente.php:1060 #: ../../operation/agentes/ver_agente.php:1436 -#: ../../operation/agentes/ver_agente.php:1848 +#: ../../operation/agentes/ver_agente.php:1844 msgid "Alerts" msgstr "Alertes" @@ -766,7 +792,7 @@ msgstr "Jours Spéciaux" #: ../../enterprise/godmode/policies/policy_alerts.php:68 #: ../../enterprise/godmode/policies/configure_policy.php:85 #: ../../enterprise/godmode/policies/policy_modules.php:481 -#: ../../enterprise/godmode/policies/policy_queue.php:211 +#: ../../enterprise/godmode/policies/policy_queue.php:213 #: ../../enterprise/godmode/policies/policies.php:268 #: ../../enterprise/godmode/policies/policy_linking.php:120 #: ../../enterprise/godmode/policies/policy_external_alerts.php:322 @@ -786,10 +812,10 @@ msgstr "Jours Spéciaux" #: ../../extensions/resource_registration.php:1105 #: ../../godmode/modules/manage_nc_groups.php:315 #: ../../godmode/modules/manage_inventory_modules.php:67 -#: ../../godmode/modules/manage_network_components.php:314 +#: ../../godmode/modules/manage_network_components.php:315 #: ../../godmode/groups/group_list.php:393 #: ../../godmode/groups/modu_group_list.php:95 -#: ../../godmode/users/profile_list.php:117 ../../godmode/users/user_list.php:537 +#: ../../godmode/users/profile_list.php:117 ../../godmode/users/user_list.php:538 #: ../../godmode/agentes/modificar_agente.php:118 #: ../../godmode/massive/massive_operations.php:433 #: ../../godmode/massive/massive_edit_users.php:47 @@ -798,7 +824,7 @@ msgstr "Jours Spéciaux" #: ../../godmode/alerts/configure_alert_command.php:194 #: ../../godmode/alerts/alert_actions.php:218 #: ../../godmode/alerts/alert_commands.php:730 -#: ../../godmode/alerts/alert_templates.php:266 +#: ../../godmode/alerts/alert_templates.php:270 #: ../../godmode/alerts/configure_alert_action.php:125 #: ../../godmode/alerts/configure_alert_template.php:429 #: ../../godmode/setup/os.list.php:49 @@ -817,7 +843,7 @@ msgstr "Métaconsole" #: ../../enterprise/godmode/policies/policy_alerts.php:70 #: ../../enterprise/godmode/policies/configure_policy.php:87 #: ../../enterprise/godmode/policies/policy_modules.php:483 -#: ../../enterprise/godmode/policies/policy_queue.php:213 +#: ../../enterprise/godmode/policies/policy_queue.php:215 #: ../../enterprise/godmode/policies/policies.php:270 #: ../../enterprise/godmode/policies/policy_linking.php:122 #: ../../enterprise/godmode/policies/policy_external_alerts.php:324 @@ -835,10 +861,10 @@ msgstr "Métaconsole" #: ../../extensions/resource_registration.php:1107 #: ../../godmode/modules/manage_nc_groups.php:317 #: ../../godmode/modules/manage_inventory_modules.php:69 -#: ../../godmode/modules/manage_network_components.php:316 +#: ../../godmode/modules/manage_network_components.php:317 #: ../../godmode/groups/group_list.php:395 #: ../../godmode/groups/modu_group_list.php:97 -#: ../../godmode/users/profile_list.php:119 ../../godmode/users/user_list.php:539 +#: ../../godmode/users/profile_list.php:119 ../../godmode/users/user_list.php:540 #: ../../godmode/agentes/modificar_agente.php:120 #: ../../godmode/massive/massive_operations.php:435 #: ../../godmode/massive/massive_edit_users.php:49 @@ -847,7 +873,7 @@ msgstr "Métaconsole" #: ../../godmode/alerts/configure_alert_command.php:196 #: ../../godmode/alerts/alert_actions.php:220 #: ../../godmode/alerts/alert_commands.php:732 -#: ../../godmode/alerts/alert_templates.php:268 +#: ../../godmode/alerts/alert_templates.php:272 #: ../../godmode/alerts/configure_alert_action.php:127 #: ../../godmode/alerts/configure_alert_template.php:431 #: ../../godmode/setup/os.list.php:51 ../../godmode/tag/tag.php:188 @@ -872,7 +898,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_excel.php:207 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:778 #: ../../extensions/api_checker.php:286 ../../godmode/modules/module_list.php:97 -#: ../../godmode/groups/group_list.php:874 +#: ../../godmode/groups/group_list.php:875 #: ../../godmode/groups/modu_group_list.php:260 #: ../../godmode/agentes/fields_manager.php:152 #: ../../godmode/agentes/agent_manager.php:364 @@ -899,7 +925,7 @@ msgstr "Identifiant" #: ../../enterprise/views/ncm/vendors/edit.php:67 #: ../../enterprise/views/ipam/sites/list.php:46 #: ../../enterprise/views/ipam/sites/edit.php:40 -#: ../../enterprise/meta/advanced/servers.build_table.php:61 +#: ../../enterprise/meta/advanced/servers.build_table.php:77 #: ../../enterprise/meta/advanced/collections.data.php:350 #: ../../enterprise/meta/include/functions_autoprovision.php:495 #: ../../enterprise/meta/include/functions_autoprovision.php:603 @@ -922,7 +948,7 @@ msgstr "Identifiant" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:580 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 #: ../../enterprise/godmode/policies/configure_policy.php:112 -#: ../../enterprise/godmode/policies/policy_modules.php:1544 +#: ../../enterprise/godmode/policies/policy_modules.php:1589 #: ../../enterprise/godmode/policies/policies.php:437 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:270 #: ../../enterprise/godmode/policies/policy_collections.php:240 @@ -985,25 +1011,25 @@ msgstr "Identifiant" #: ../../godmode/modules/manage_inventory_modules_form.php:115 #: ../../godmode/modules/module_list.php:99 #: ../../godmode/modules/manage_network_templates.php:248 -#: ../../godmode/groups/configure_group.php:132 -#: ../../godmode/groups/group_list.php:876 +#: ../../godmode/groups/configure_group.php:142 +#: ../../godmode/groups/group_list.php:877 #: ../../godmode/groups/configure_modu_group.php:82 #: ../../godmode/groups/modu_group_list.php:261 -#: ../../godmode/users/user_list.php:574 +#: ../../godmode/users/user_list.php:575 #: ../../godmode/agentes/inventory_manager.php:233 #: ../../godmode/agentes/planned_downtime.editor.php:882 #: ../../godmode/agentes/planned_downtime.editor.php:1356 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:128 #: ../../godmode/agentes/configure_field.php:115 #: ../../godmode/agentes/module_manager_editor_common.php:252 -#: ../../godmode/agentes/module_manager_editor_common.php:1430 +#: ../../godmode/agentes/module_manager_editor_common.php:1440 #: ../../godmode/agentes/module_manager.php:605 #: ../../godmode/netflow/nf_edit.php:166 -#: ../../godmode/netflow/nf_edit_form.php:199 +#: ../../godmode/netflow/nf_edit_form.php:242 #: ../../godmode/alerts/configure_alert_command.php:220 #: ../../godmode/alerts/alert_actions.php:351 #: ../../godmode/alerts/alert_commands.php:749 -#: ../../godmode/alerts/alert_templates.php:409 +#: ../../godmode/alerts/alert_templates.php:413 #: ../../godmode/alerts/configure_alert_action.php:183 #: ../../godmode/alerts/configure_alert_template.php:1080 #: ../../godmode/setup/os.builder.php:72 ../../godmode/setup/os.builder.php:73 @@ -1012,44 +1038,49 @@ msgstr "Identifiant" #: ../../godmode/reporting/visual_console_builder.data.php:151 #: ../../godmode/reporting/create_container.php:247 #: ../../godmode/reporting/reporting_builder.item_editor.php:83 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1085 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1087 #: ../../godmode/reporting/reporting_builder.main.php:91 #: ../../godmode/reporting/reporting_builder.main.php:95 #: ../../godmode/reporting/graph_builder.main.php:128 #: ../../godmode/events/event_filter.php:144 #: ../../godmode/events/event_responses.editor.php:97 #: ../../godmode/events/event_responses.list.php:66 -#: ../../godmode/servers/servers.build_table.php:77 +#: ../../godmode/servers/servers.build_table.php:79 #: ../../godmode/servers/modificar_server.php:91 -#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:992 -#: ../../godmode/tag/tag.php:230 ../../godmode/tag/edit_tag.php:190 +#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:984 +#: ../../godmode/tag/tag.php:231 ../../godmode/tag/edit_tag.php:194 #: ../../godmode/category/edit_category.php:189 +#: ../../mobile/operation/module_data.php:264 +#: ../../mobile/operation/server_status.php:283 +#: ../../mobile/operation/server_status.php:321 +#: ../../mobile/operation/server_status.php:351 +#: ../../mobile/operation/server_status.php:447 #: ../../include/functions_reporting_html.php:1058 #: ../../include/functions_reporting_html.php:1066 -#: ../../include/functions_reporting_html.php:1760 -#: ../../include/functions_reporting_html.php:2643 -#: ../../include/functions_reporting_html.php:2993 -#: ../../include/functions_reporting_html.php:3709 -#: ../../include/functions_reporting_html.php:6370 +#: ../../include/functions_reporting_html.php:1769 +#: ../../include/functions_reporting_html.php:2662 +#: ../../include/functions_reporting_html.php:3021 +#: ../../include/functions_reporting_html.php:3737 +#: ../../include/functions_reporting_html.php:6404 #: ../../include/functions_treeview.php:69 #: ../../include/class/EventSound.class.php:306 -#: ../../include/class/NetworkMap.class.php:3063 -#: ../../include/class/NetworkMap.class.php:3109 -#: ../../include/class/NetworkMap.class.php:3121 -#: ../../include/class/NetworkMap.class.php:3491 +#: ../../include/class/NetworkMap.class.php:3069 +#: ../../include/class/NetworkMap.class.php:3115 +#: ../../include/class/NetworkMap.class.php:3127 +#: ../../include/class/NetworkMap.class.php:3497 #: ../../include/class/ManageNetScanScripts.class.php:403 -#: ../../include/class/ManageNetScanScripts.class.php:553 +#: ../../include/class/ManageNetScanScripts.class.php:549 #: ../../include/class/ModuleTemplates.class.php:848 #: ../../include/class/ModuleTemplates.class.php:1030 #: ../../include/class/CalendarManager.class.php:1026 #: ../../include/class/SatelliteCollection.class.php:132 -#: ../../include/functions_filemanager.php:644 -#: ../../include/functions_snmp_browser.php:1851 -#: ../../include/functions_events.php:4339 -#: ../../include/functions_events.php:4472 ../../operation/search_users.php:44 +#: ../../include/functions_filemanager.php:659 +#: ../../include/functions_snmp_browser.php:1860 +#: ../../include/functions_events.php:4344 +#: ../../include/functions_events.php:4477 ../../operation/search_users.php:44 #: ../../operation/search_helps.php:31 #: ../../operation/agentes/pandora_networkmap.editor.php:332 -#: ../../operation/agentes/pandora_networkmap.php:716 +#: ../../operation/agentes/pandora_networkmap.php:717 #: ../../operation/agentes/pandora_networkmap.view.php:137 #: ../../operation/gis_maps/gis_map.php:115 #: ../../operation/incidents/configure_integriaims_incident.php:232 @@ -1117,7 +1148,7 @@ msgstr "Nom" #: ../../enterprise/include/class/Omnishell.class.php:861 #: ../../enterprise/include/class/DB2.app.php:477 #: ../../enterprise/include/class/Aws.S3.php:441 -#: ../../enterprise/include/class/SAP.app.php:635 +#: ../../enterprise/include/class/SAP.app.php:636 #: ../../enterprise/include/class/Aws.cloud.php:566 #: ../../enterprise/include/class/Aws.cloud.php:1252 #: ../../enterprise/include/class/MySQL.app.php:482 @@ -1133,31 +1164,31 @@ msgstr "Nom" #: ../../enterprise/operation/agentes/tag_view.php:698 #: ../../enterprise/operation/agentes/ver_agente.php:70 #: ../../enterprise/operation/agentes/ver_agente.php:91 -#: ../../enterprise/operation/log/log_viewer.php:616 +#: ../../enterprise/operation/log/log_viewer.php:614 #: ../../enterprise/operation/services/services.service.php:112 #: ../../enterprise/operation/services/massive/services.create.php:678 #: ../../enterprise/operation/services/services.list.php:268 #: ../../enterprise/operation/services/services.list.php:540 #: ../../enterprise/operation/services/services.table_services.php:218 #: ../../enterprise/tools/ipam/ipam_editor.php:335 -#: ../../extensions/agents_modules.php:419 +#: ../../extensions/agents_modules.php:427 #: ../../godmode/modules/manage_network_templates_form.php:235 #: ../../godmode/modules/manage_network_templates_form.php:303 #: ../../godmode/modules/manage_network_templates_form.php:339 #: ../../godmode/modules/manage_network_components_form_common.php:131 -#: ../../godmode/modules/manage_network_components.php:659 -#: ../../godmode/modules/manage_network_components.php:778 -#: ../../godmode/users/user_list.php:469 +#: ../../godmode/modules/manage_network_components.php:662 +#: ../../godmode/modules/manage_network_components.php:781 +#: ../../godmode/users/user_list.php:470 #: ../../godmode/agentes/configurar_agente.php:518 #: ../../godmode/agentes/modificar_agente.php:314 -#: ../../godmode/agentes/modificar_agente.php:697 +#: ../../godmode/agentes/modificar_agente.php:707 #: ../../godmode/agentes/planned_downtime.list.php:735 #: ../../godmode/agentes/planned_downtime.editor.php:895 #: ../../godmode/agentes/planned_downtime.editor.php:1357 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141 #: ../../godmode/agentes/agent_incidents.php:91 #: ../../godmode/netflow/nf_edit.php:167 -#: ../../godmode/netflow/nf_edit_form.php:211 +#: ../../godmode/netflow/nf_edit_form.php:256 #: ../../godmode/snmpconsole/snmp_alert.php:837 #: ../../godmode/gis_maps/configure_gis_map.php:509 #: ../../godmode/gis_maps/configure_gis_map.php:646 @@ -1167,7 +1198,7 @@ msgstr "Nom" #: ../../godmode/massive/massive_delete_action_alerts.php:210 #: ../../godmode/massive/massive_add_alerts.php:211 #: ../../godmode/massive/massive_enable_disable_alerts.php:170 -#: ../../godmode/massive/massive_edit_agents.php:694 +#: ../../godmode/massive/massive_edit_agents.php:711 #: ../../godmode/massive/massive_delete_profiles.php:153 #: ../../godmode/massive/massive_delete_alerts.php:290 #: ../../godmode/massive/massive_add_action_alerts.php:198 @@ -1177,10 +1208,10 @@ msgstr "Nom" #: ../../godmode/alerts/alert_actions.php:353 #: ../../godmode/alerts/alert_list.list.php:220 #: ../../godmode/alerts/alert_commands.php:751 -#: ../../godmode/alerts/alert_templates.php:410 +#: ../../godmode/alerts/alert_templates.php:414 #: ../../godmode/alerts/configure_alert_action.php:220 #: ../../godmode/alerts/configure_alert_template.php:1116 -#: ../../godmode/setup/news.php:212 ../../godmode/setup/gis.php:70 +#: ../../godmode/setup/news.php:216 ../../godmode/setup/gis.php:70 #: ../../godmode/setup/gis_step_2.php:237 #: ../../godmode/setup/setup_integria.php:426 #: ../../godmode/setup/setup_integria.php:560 @@ -1195,10 +1226,10 @@ msgstr "Nom" #: ../../godmode/reporting/visual_console_favorite.php:182 #: ../../godmode/reporting/reporting_builder.item_editor.php:72 #: ../../godmode/reporting/reporting_builder.item_editor.php:87 -#: ../../godmode/reporting/reporting_builder.item_editor.php:213 -#: ../../godmode/reporting/reporting_builder.item_editor.php:892 +#: ../../godmode/reporting/reporting_builder.item_editor.php:214 +#: ../../godmode/reporting/reporting_builder.item_editor.php:893 #: ../../godmode/reporting/reporting_builder.item_editor.php:1641 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3494 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3503 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.elements.php:343 #: ../../godmode/reporting/reporting_builder.main.php:119 @@ -1208,43 +1239,45 @@ msgstr "Nom" #: ../../godmode/reporting/graph_builder.main.php:176 #: ../../godmode/events/event_filter.php:145 #: ../../godmode/events/event_responses.editor.php:120 -#: ../../godmode/events/event_edit_filter.php:334 +#: ../../godmode/events/event_edit_filter.php:336 #: ../../godmode/events/event_responses.list.php:68 #: ../../godmode/events/custom_events.php:98 -#: ../../godmode/wizards/HostDevices.class.php:933 -#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:157 -#: ../../mobile/operation/agents.php:234 ../../mobile/operation/agents.php:235 -#: ../../mobile/operation/agents.php:405 ../../mobile/operation/modules.php:171 +#: ../../godmode/wizards/HostDevices.class.php:935 +#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:158 +#: ../../mobile/operation/agents.php:235 ../../mobile/operation/agents.php:236 +#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:171 #: ../../mobile/operation/modules.php:176 ../../mobile/operation/modules.php:266 #: ../../mobile/operation/modules.php:267 ../../mobile/operation/alerts.php:113 #: ../../mobile/operation/alerts.php:118 ../../mobile/operation/alerts.php:231 #: ../../mobile/operation/alerts.php:232 #: ../../mobile/operation/visualmaps.php:113 #: ../../mobile/operation/visualmaps.php:118 -#: ../../mobile/operation/events.php:666 ../../mobile/operation/events.php:671 -#: ../../mobile/operation/events.php:832 ../../mobile/operation/events.php:954 -#: ../../mobile/operation/events.php:955 +#: ../../mobile/operation/events.php:695 ../../mobile/operation/events.php:700 +#: ../../mobile/operation/events.php:861 ../../mobile/operation/events.php:998 +#: ../../mobile/operation/events.php:999 +#: ../../mobile/operation/server_status.php:162 +#: ../../mobile/operation/server_status.php:167 #: ../../include/functions_visual_map_editor.php:70 -#: ../../include/functions_visual_map_editor.php:594 -#: ../../include/functions_visual_map_editor.php:1395 -#: ../../include/functions_reporting_html.php:1604 -#: ../../include/functions_reporting_html.php:2355 -#: ../../include/functions_reporting_html.php:3660 -#: ../../include/functions_reporting_html.php:6458 -#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:113 -#: ../../include/ajax/heatmap.ajax.php:358 +#: ../../include/functions_visual_map_editor.php:588 +#: ../../include/functions_visual_map_editor.php:1453 +#: ../../include/functions_reporting_html.php:1613 +#: ../../include/functions_reporting_html.php:2376 +#: ../../include/functions_reporting_html.php:3688 +#: ../../include/functions_reporting_html.php:6492 +#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:142 +#: ../../include/ajax/heatmap.ajax.php:523 #: ../../include/ajax/custom_fields.php:630 #: ../../include/ajax/custom_fields.php:679 -#: ../../include/functions_graph.php:4937 ../../include/functions_gis.php:228 +#: ../../include/functions_graph.php:4947 ../../include/functions_gis.php:228 #: ../../include/functions_profile.php:204 -#: ../../include/functions_visual_map.php:4215 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:551 -#: ../../include/rest-api/models/VisualConsole/Item.php:2140 -#: ../../include/functions_html.php:1561 +#: ../../include/functions_visual_map.php:4224 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:697 +#: ../../include/rest-api/models/VisualConsole/Item.php:2143 +#: ../../include/functions_html.php:1566 #: ../../include/functions_massive_operations.php:124 -#: ../../include/class/NetworkMap.class.php:2985 -#: ../../include/class/NetworkMap.class.php:3046 -#: ../../include/class/NetworkMap.class.php:3412 +#: ../../include/class/NetworkMap.class.php:2991 +#: ../../include/class/NetworkMap.class.php:3052 +#: ../../include/class/NetworkMap.class.php:3418 #: ../../include/class/AgentsAlerts.class.php:774 #: ../../include/class/CredentialStore.class.php:814 #: ../../include/class/CredentialStore.class.php:846 @@ -1252,37 +1285,37 @@ msgstr "Nom" #: ../../include/class/CustomNetScan.class.php:506 #: ../../include/class/ModuleTemplates.class.php:728 #: ../../include/class/CalendarManager.class.php:1027 +#: ../../include/class/AgentDeployWizard.class.php:342 #: ../../include/functions_container.php:149 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:237 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:826 -#: ../../include/lib/Group.php:566 ../../include/functions_snmp_browser.php:1863 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:241 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:827 +#: ../../include/lib/Group.php:566 ../../include/functions_snmp_browser.php:1872 #: ../../include/functions_events.php:203 ../../include/functions_events.php:256 -#: ../../include/functions_events.php:5051 ../../operation/heatmap.php:122 +#: ../../include/functions_events.php:5056 ../../operation/heatmap.php:122 #: ../../operation/heatmap.php:124 ../../operation/search_agents.php:46 -#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:999 -#: ../../operation/visual_console/view.php:371 +#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:996 +#: ../../operation/visual_console/view.php:373 #: ../../operation/agentes/estado_agente.php:291 -#: ../../operation/agentes/estado_agente.php:1039 +#: ../../operation/agentes/estado_agente.php:1047 #: ../../operation/agentes/pandora_networkmap.editor.php:344 #: ../../operation/agentes/pandora_networkmap.editor.php:428 #: ../../operation/agentes/interface_view.functions.php:37 #: ../../operation/agentes/exportdata.php:328 -#: ../../operation/agentes/status_monitor.php:816 -#: ../../operation/agentes/group_view.php:240 +#: ../../operation/agentes/status_monitor.php:815 +#: ../../operation/agentes/group_view.php:243 #: ../../operation/agentes/pandora_networkmap.view.php:140 #: ../../operation/agentes/pandora_networkmap.view.php:176 #: ../../operation/agentes/ver_agente.php:1036 -#: ../../operation/agentes/estado_generalagente.php:492 +#: ../../operation/agentes/estado_generalagente.php:463 #: ../../operation/agentes/alerts_status.functions.php:73 #: ../../operation/gis_maps/gis_map.php:116 ../../operation/gis_maps/ajax.php:332 #: ../../operation/gis_maps/ajax.php:438 #: ../../operation/incidents/configure_integriaims_incident.php:269 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:340 #: ../../operation/incidents/list_integriaims_incidents.php:347 -#: ../../operation/inventory/inventory.php:510 -#: ../../operation/inventory/inventory.php:1002 -#: ../../operation/inventory/inventory.php:1296 -#: ../../operation/events/events.php:1687 ../../operation/search_maps.php:29 +#: ../../operation/inventory/inventory.php:512 +#: ../../operation/inventory/inventory.php:1248 +#: ../../operation/events/events.php:1741 ../../operation/search_maps.php:29 #: ../../general/ui/agents_list.php:76 msgid "Group" msgstr "Groupe" @@ -1297,7 +1330,7 @@ msgstr "Groupe" #: ../../enterprise/views/ipam/sites/list.php:73 #: ../../enterprise/meta/advanced/metasetup.consoles.php:965 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:744 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3295 #: ../../enterprise/include/class/LogSource.class.php:634 @@ -1308,16 +1341,16 @@ msgstr "Groupe" #: ../../godmode/update_manager/update_manager.history.php:67 #: ../../godmode/agentes/modificar_agente.php:381 #: ../../godmode/snmpconsole/snmp_alert.php:1742 -#: ../../godmode/events/event_edit_filter.php:409 -#: ../../mobile/operation/agents.php:253 ../../mobile/operation/modules.php:318 -#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:992 -#: ../../include/ajax/module.php:312 ../../include/class/ConfigPEN.class.php:630 +#: ../../godmode/events/event_edit_filter.php:411 +#: ../../mobile/operation/agents.php:254 ../../mobile/operation/modules.php:318 +#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:1036 +#: ../../include/ajax/module.php:335 ../../include/class/ConfigPEN.class.php:630 #: ../../include/class/EventSound.class.php:337 #: ../../include/class/CredentialStore.class.php:858 #: ../../include/class/SnmpConsole.class.php:374 #: ../../include/class/AuditLog.class.php:197 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:241 -#: ../../operation/events/events.php:1820 +#: ../../operation/events/events.php:1874 msgid "Free search" msgstr "Recherche libre" @@ -1369,8 +1402,8 @@ msgstr "Recherche libre" #: ../../enterprise/godmode/agentes/collections.php:593 #: ../../enterprise/godmode/policies/configure_policy.php:169 #: ../../enterprise/godmode/policies/policy_modules.php:433 -#: ../../enterprise/godmode/policies/policy_modules.php:1746 -#: ../../enterprise/godmode/policies/policy_modules.php:1871 +#: ../../enterprise/godmode/policies/policy_modules.php:1791 +#: ../../enterprise/godmode/policies/policy_modules.php:1916 #: ../../enterprise/godmode/policies/policies.php:728 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:42 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:165 @@ -1395,50 +1428,50 @@ msgstr "Recherche libre" #: ../../godmode/modules/manage_network_templates_form.php:180 #: ../../godmode/modules/manage_nc_groups.php:344 #: ../../godmode/modules/manage_inventory_modules.php:374 -#: ../../godmode/modules/manage_network_components_form.php:379 -#: ../../godmode/modules/manage_network_components.php:896 +#: ../../godmode/modules/manage_network_components_form.php:382 +#: ../../godmode/modules/manage_network_components.php:899 #: ../../godmode/modules/manage_inventory_modules_form.php:249 #: ../../godmode/modules/manage_network_templates.php:311 -#: ../../godmode/groups/configure_group.php:277 +#: ../../godmode/groups/configure_group.php:296 #: ../../godmode/groups/configure_modu_group.php:102 -#: ../../godmode/users/configure_user.php:1665 +#: ../../godmode/users/configure_user.php:1717 #: ../../godmode/agentes/module_manager_editor.php:817 #: ../../godmode/agentes/planned_downtime.list.php:680 #: ../../godmode/agentes/planned_downtime.list.php:989 -#: ../../godmode/agentes/agent_manager.php:1081 +#: ../../godmode/agentes/agent_manager.php:1087 #: ../../godmode/agentes/configure_field.php:203 -#: ../../godmode/agentes/module_manager.php:1119 -#: ../../godmode/netflow/nf_edit_form.php:338 +#: ../../godmode/agentes/module_manager.php:1134 +#: ../../godmode/netflow/nf_edit_form.php:454 #: ../../godmode/snmpconsole/snmp_alert.php:1711 #: ../../godmode/snmpconsole/snmp_alert.php:2177 #: ../../godmode/snmpconsole/snmp_filters.php:275 #: ../../godmode/snmpconsole/snmp_filters.php:366 #: ../../godmode/alerts/configure_alert_command.php:395 #: ../../godmode/alerts/alert_actions.php:502 -#: ../../godmode/alerts/alert_list.list.php:1096 +#: ../../godmode/alerts/alert_list.list.php:1095 #: ../../godmode/alerts/alert_commands.php:839 -#: ../../godmode/alerts/alert_templates.php:514 +#: ../../godmode/alerts/alert_templates.php:518 #: ../../godmode/alerts/configure_alert_action.php:446 -#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:321 +#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:325 #: ../../godmode/setup/gis.php:100 ../../godmode/setup/os.php:95 #: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:165 #: ../../godmode/reporting/create_container.php:383 #: ../../godmode/reporting/map_builder.php:586 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2330 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2339 #: ../../godmode/reporting/reporting_builder.main.php:45 #: ../../godmode/reporting/graph_builder.main.php:298 #: ../../godmode/events/event_responses.editor.php:328 -#: ../../godmode/events/event_edit_filter.php:957 -#: ../../godmode/servers/plugin.php:713 ../../godmode/tag/edit_tag.php:258 +#: ../../godmode/events/event_edit_filter.php:959 +#: ../../godmode/servers/plugin.php:705 ../../godmode/tag/edit_tag.php:262 #: ../../godmode/category/edit_category.php:201 -#: ../../include/functions_visual_map_editor.php:882 +#: ../../include/functions_visual_map_editor.php:930 #: ../../include/class/EventSound.class.php:199 #: ../../include/class/EventSound.class.php:282 -#: ../../include/class/ManageNetScanScripts.class.php:769 +#: ../../include/class/ManageNetScanScripts.class.php:765 #: ../../include/class/ModuleTemplates.class.php:933 #: ../../include/class/ModuleTemplates.class.php:987 -#: ../../include/functions_filemanager.php:859 -#: ../../include/functions_filemanager.php:920 +#: ../../include/functions_filemanager.php:878 +#: ../../include/functions_filemanager.php:940 #: ../../operation/gis_maps/gis_map.php:220 #: ../../operation/incidents/configure_integriaims_incident.php:406 #: ../../operation/incidents/list_integriaims_incidents.php:654 @@ -1464,27 +1497,27 @@ msgstr "Configurer jour spécial" #: ../../enterprise/include/functions_reporting.php:2234 #: ../../enterprise/include/functions_reporting.php:2252 #: ../../extensions/insert_data.php:196 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2200 -#: ../../mobile/operation/tactical.php:350 -#: ../../include/functions_reporting_html.php:2018 -#: ../../include/functions_reporting_html.php:2835 -#: ../../include/functions_reporting_html.php:2844 -#: ../../include/functions_reporting_html.php:2849 -#: ../../include/functions_reporting_html.php:2858 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2209 +#: ../../mobile/operation/tactical.php:351 +#: ../../include/functions_reporting_html.php:2034 #: ../../include/functions_reporting_html.php:2863 -#: ../../include/functions_reporting_html.php:2870 -#: ../../include/functions_reporting_html.php:2920 -#: ../../include/functions_reporting_html.php:2994 -#: ../../include/functions_reporting_html.php:6014 -#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1065 +#: ../../include/functions_reporting_html.php:2872 +#: ../../include/functions_reporting_html.php:2877 +#: ../../include/functions_reporting_html.php:2886 +#: ../../include/functions_reporting_html.php:2891 +#: ../../include/functions_reporting_html.php:2898 +#: ../../include/functions_reporting_html.php:2948 +#: ../../include/functions_reporting_html.php:3022 +#: ../../include/functions_reporting_html.php:6048 +#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1175 #: ../../include/class/AuditLog.class.php:112 -#: ../../include/functions_reporting.php:4728 -#: ../../include/functions_reporting.php:4769 +#: ../../include/functions_reporting.php:4737 +#: ../../include/functions_reporting.php:4778 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:624 -#: ../../operation/agentes/agent_inventory.php:127 +#: ../../operation/agentes/agent_inventory.php:135 #: ../../operation/incidents/list_integriaims_incidents.php:441 -#: ../../operation/inventory/inventory.php:681 -#: ../../operation/reporting/graph_viewer.php:321 ../../general/logon_ok.php:257 +#: ../../operation/inventory/inventory.php:682 +#: ../../operation/reporting/graph_viewer.php:321 ../../general/logon_ok.php:302 msgid "Date" msgstr "Date" @@ -1500,7 +1533,7 @@ msgstr "Date" #: ../../enterprise/include/functions_reporting.php:4403 #: ../../godmode/alerts/alert_templates.php:62 #: ../../godmode/reporting/reporting_builder.item_editor.php:1530 -#: ../../include/functions_html.php:2300 +#: ../../include/functions_html.php:2315 msgid "Monday" msgstr "Lundi" @@ -1516,7 +1549,7 @@ msgstr "Lundi" #: ../../enterprise/include/functions_reporting.php:4404 #: ../../godmode/alerts/alert_templates.php:63 #: ../../godmode/reporting/reporting_builder.item_editor.php:1538 -#: ../../include/functions_html.php:2301 +#: ../../include/functions_html.php:2316 msgid "Tuesday" msgstr "Mardi" @@ -1532,7 +1565,7 @@ msgstr "Mardi" #: ../../enterprise/include/functions_reporting.php:4405 #: ../../godmode/alerts/alert_templates.php:64 #: ../../godmode/reporting/reporting_builder.item_editor.php:1546 -#: ../../include/functions_html.php:2302 +#: ../../include/functions_html.php:2317 msgid "Wednesday" msgstr "Mercredi" @@ -1548,7 +1581,7 @@ msgstr "Mercredi" #: ../../enterprise/include/functions_reporting.php:4406 #: ../../godmode/alerts/alert_templates.php:65 #: ../../godmode/reporting/reporting_builder.item_editor.php:1554 -#: ../../include/functions_html.php:2303 +#: ../../include/functions_html.php:2318 msgid "Thursday" msgstr "Jeudi" @@ -1564,7 +1597,7 @@ msgstr "Jeudi" #: ../../enterprise/include/functions_reporting.php:4407 #: ../../godmode/alerts/alert_templates.php:66 #: ../../godmode/reporting/reporting_builder.item_editor.php:1562 -#: ../../include/functions_html.php:2304 +#: ../../include/functions_html.php:2319 msgid "Friday" msgstr "Vendredi" @@ -1580,7 +1613,7 @@ msgstr "Vendredi" #: ../../enterprise/include/functions_reporting.php:4408 #: ../../godmode/alerts/alert_templates.php:67 #: ../../godmode/reporting/reporting_builder.item_editor.php:1570 -#: ../../include/functions_html.php:2305 +#: ../../include/functions_html.php:2320 msgid "Saturday" msgstr "Samedi" @@ -1596,7 +1629,7 @@ msgstr "Samedi" #: ../../enterprise/include/functions_reporting.php:4409 #: ../../godmode/alerts/alert_templates.php:68 #: ../../godmode/reporting/reporting_builder.item_editor.php:1578 -#: ../../include/functions_html.php:2299 +#: ../../include/functions_html.php:2314 msgid "Sunday" msgstr "Dimanche" @@ -1668,7 +1701,7 @@ msgstr "Même jour de la semaine" #: ../../enterprise/godmode/policies/policy_collections.php:352 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:153 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:429 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:345 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:350 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:355 @@ -1703,7 +1736,7 @@ msgstr "Même jour de la semaine" #: ../../enterprise/include/class/DatabaseHA.class.php:892 #: ../../enterprise/include/class/AgentRepository.class.php:1004 #: ../../enterprise/include/class/Omnishell.class.php:829 -#: ../../enterprise/include/class/LogSource.class.php:828 +#: ../../enterprise/include/class/LogSource.class.php:825 #: ../../enterprise/include/class/SAPView.class.php:325 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2314 #: ../../enterprise/operation/agentes/policy_view.php:209 @@ -1718,24 +1751,24 @@ msgstr "Même jour de la semaine" #: ../../godmode/modules/manage_nc_groups_form.php:95 #: ../../godmode/modules/manage_network_templates_form.php:178 #: ../../godmode/modules/manage_inventory_modules.php:338 -#: ../../godmode/modules/manage_network_components_form.php:373 +#: ../../godmode/modules/manage_network_components_form.php:376 #: ../../godmode/modules/manage_inventory_modules_form.php:245 -#: ../../godmode/groups/configure_group.php:268 +#: ../../godmode/groups/configure_group.php:287 #: ../../godmode/groups/configure_modu_group.php:99 #: ../../godmode/update_manager/update_manager.setup.php:406 #: ../../godmode/users/configure_profile.php:418 -#: ../../godmode/users/configure_user.php:1669 -#: ../../godmode/agentes/status_monitor_custom_fields.php:211 +#: ../../godmode/users/configure_user.php:1721 +#: ../../godmode/agentes/status_monitor_custom_fields.php:231 #: ../../godmode/agentes/module_manager_editor.php:795 #: ../../godmode/agentes/inventory_manager.php:184 -#: ../../godmode/agentes/inventory_manager.php:266 +#: ../../godmode/agentes/inventory_manager.php:267 #: ../../godmode/agentes/agent_conf_gis.php:161 #: ../../godmode/agentes/planned_downtime.list.php:891 #: ../../godmode/agentes/planned_downtime.list.php:936 #: ../../godmode/agentes/planned_downtime.editor.php:1305 -#: ../../godmode/agentes/agent_manager.php:1056 +#: ../../godmode/agentes/agent_manager.php:1062 #: ../../godmode/agentes/configure_field.php:199 -#: ../../godmode/netflow/nf_edit_form.php:334 +#: ../../godmode/netflow/nf_edit_form.php:450 #: ../../godmode/snmpconsole/snmp_alert.php:1700 #: ../../godmode/snmpconsole/snmp_alert.php:2002 #: ../../godmode/snmpconsole/snmp_filters.php:264 @@ -1743,18 +1776,18 @@ msgstr "Même jour de la semaine" #: ../../godmode/snmpconsole/snmp_filters.php:337 #: ../../godmode/alerts/configure_alert_command.php:386 #: ../../godmode/alerts/alert_list.list.php:227 -#: ../../godmode/alerts/alert_list.list.php:1041 +#: ../../godmode/alerts/alert_list.list.php:1040 #: ../../godmode/alerts/configure_alert_action.php:424 -#: ../../godmode/setup/news.php:329 ../../godmode/setup/setup_ehorus.php:216 +#: ../../godmode/setup/news.php:333 ../../godmode/setup/setup_ehorus.php:216 #: ../../godmode/setup/setup_sflow.php:95 -#: ../../godmode/setup/setup_websocket_engine.php:93 +#: ../../godmode/setup/setup_websocket_engine.php:117 #: ../../godmode/setup/os.php:73 ../../godmode/setup/os.php:142 #: ../../godmode/setup/setup_auth.php:515 #: ../../godmode/setup/setup_integria.php:728 ../../godmode/setup/links.php:168 #: ../../godmode/setup/snmp_wizard.php:100 -#: ../../godmode/setup/setup_netflow.php:95 -#: ../../godmode/setup/setup_visuals.php:2130 -#: ../../godmode/setup/setup_general.php:841 +#: ../../godmode/setup/setup_netflow.php:91 +#: ../../godmode/setup/setup_visuals.php:2145 +#: ../../godmode/setup/setup_general.php:867 #: ../../godmode/setup/performance.php:880 #: ../../godmode/reporting/visual_console_builder.data.php:313 #: ../../godmode/reporting/create_container.php:365 @@ -1762,24 +1795,24 @@ msgstr "Même jour de la semaine" #: ../../godmode/reporting/reporting_builder.main.php:56 #: ../../godmode/reporting/graph_builder.main.php:298 #: ../../godmode/events/event_responses.editor.php:332 -#: ../../godmode/events/event_edit_filter.php:954 +#: ../../godmode/events/event_edit_filter.php:956 #: ../../godmode/events/custom_events.php:192 #: ../../godmode/servers/modificar_server.php:134 -#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:721 -#: ../../godmode/tag/edit_tag.php:247 +#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:713 +#: ../../godmode/tag/edit_tag.php:251 #: ../../godmode/category/edit_category.php:196 -#: ../../include/functions_visual_map_editor.php:878 +#: ../../include/functions_visual_map_editor.php:926 #: ../../include/ajax/alert_list.ajax.php:564 #: ../../include/class/ConfigPEN.class.php:703 #: ../../include/class/ConfigPEN.class.php:704 -#: ../../include/class/ManageNetScanScripts.class.php:773 -#: ../../include/class/CredentialStore.class.php:1651 +#: ../../include/class/ManageNetScanScripts.class.php:769 +#: ../../include/class/CredentialStore.class.php:1660 #: ../../include/class/ModuleTemplates.class.php:992 #: ../../include/class/ExternalTools.class.php:420 -#: ../../include/functions_events.php:3512 -#: ../../include/functions_events.php:3594 -#: ../../operation/users/user_edit.php:951 -#: ../../operation/agentes/datos_agente.php:218 +#: ../../include/functions_events.php:3517 +#: ../../include/functions_events.php:3599 +#: ../../operation/users/user_edit.php:948 +#: ../../operation/agentes/datos_agente.php:220 #: ../../operation/incidents/configure_integriaims_incident.php:415 #: ../../operation/reporting/reporting_viewer.php:284 msgid "Update" @@ -1791,7 +1824,7 @@ msgstr "Mise à jour" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4420 #: ../../godmode/agentes/planned_downtime.list.php:819 #: ../../godmode/alerts/configure_alert_template.php:1600 -#: ../../include/class/AgentWizard.class.php:6186 +#: ../../include/class/AgentWizard.class.php:6182 msgid "Loading, this operation might take several minutes..." msgstr "Chargement, cette opération peut prendre plusieurs minutes..." @@ -1817,7 +1850,7 @@ msgstr "Cochez cette case si vous voulez écraser les jours qui existent déjà. #: ../../enterprise/tools/ipam/ipam_vlan_config.php:535 #: ../../extensions/extension_uploader.php:134 #: ../../extensions/resource_registration.php:1145 -#: ../../godmode/servers/plugin_registration.php:123 +#: ../../godmode/servers/plugin_registration.php:119 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:234 msgid "Upload" msgstr "Téléverser" @@ -1841,25 +1874,26 @@ msgstr "Afficher plage : " #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:123 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129 #: ../../enterprise/operation/agentes/policy_view.php:333 -#: ../../godmode/users/configure_user.php:1102 +#: ../../godmode/users/configure_user.php:58 +#: ../../godmode/users/configure_user.php:1166 #: ../../godmode/users/user_management.php:37 -#: ../../godmode/users/user_management.php:564 -#: ../../godmode/agentes/module_manager_editor_common.php:681 +#: ../../godmode/users/user_management.php:570 +#: ../../godmode/agentes/module_manager_editor_common.php:686 #: ../../godmode/massive/massive_edit_users.php:242 #: ../../godmode/massive/massive_edit_users.php:273 -#: ../../godmode/massive/massive_edit_agents.php:1034 +#: ../../godmode/massive/massive_edit_agents.php:1051 #: ../../godmode/alerts/alert_list.list.php:702 #: ../../godmode/alerts/alert_view.php:58 ../../godmode/setup/gis_step_2.php:599 #: ../../godmode/setup/gis_step_2.php:685 -#: ../../godmode/setup/setup_visuals.php:402 -#: ../../godmode/setup/setup_visuals.php:433 -#: ../../godmode/setup/setup_visuals.php:573 -#: ../../godmode/setup/setup_visuals.php:689 -#: ../../godmode/setup/setup_visuals.php:729 -#: ../../godmode/setup/setup_visuals.php:1543 -#: ../../godmode/events/event_edit_filter.php:463 -#: ../../include/functions_ui.php:1404 -#: ../../include/class/AgentsAlerts.class.php:947 +#: ../../godmode/setup/setup_visuals.php:406 +#: ../../godmode/setup/setup_visuals.php:437 +#: ../../godmode/setup/setup_visuals.php:577 +#: ../../godmode/setup/setup_visuals.php:693 +#: ../../godmode/setup/setup_visuals.php:733 +#: ../../godmode/setup/setup_visuals.php:1558 +#: ../../godmode/events/event_edit_filter.php:465 +#: ../../include/auth/mysql.php:806 ../../include/functions_ui.php:1447 +#: ../../include/class/AgentsAlerts.class.php:948 #: ../../include/class/SnmpConsole.class.php:299 #: ../../operation/users/user_edit.php:429 #: ../../operation/users/user_edit.php:432 @@ -1874,7 +1908,7 @@ msgstr "Par défaut" #: ../../godmode/agentes/planned_downtime.editor.php:1059 #: ../../include/functions.php:1157 #: ../../include/class/CalendarManager.class.php:1035 -#: ../../include/functions_reporting.php:14913 +#: ../../include/functions_reporting.php:14986 msgid "Sun" msgstr "Dimanche" @@ -1883,7 +1917,7 @@ msgstr "Dimanche" #: ../../godmode/agentes/planned_downtime.editor.php:1053 #: ../../include/functions.php:1133 #: ../../include/class/CalendarManager.class.php:1029 -#: ../../include/functions_reporting.php:14883 +#: ../../include/functions_reporting.php:14956 msgid "Mon" msgstr "Lundi" @@ -1892,7 +1926,7 @@ msgstr "Lundi" #: ../../godmode/agentes/planned_downtime.editor.php:1054 #: ../../include/functions.php:1137 #: ../../include/class/CalendarManager.class.php:1030 -#: ../../include/functions_reporting.php:14888 +#: ../../include/functions_reporting.php:14961 msgid "Tue" msgstr "Mardi" @@ -1901,7 +1935,7 @@ msgstr "Mardi" #: ../../godmode/agentes/planned_downtime.editor.php:1055 #: ../../include/functions.php:1141 #: ../../include/class/CalendarManager.class.php:1031 -#: ../../include/functions_reporting.php:14893 +#: ../../include/functions_reporting.php:14966 msgid "Wed" msgstr "Mercredi" @@ -1910,7 +1944,7 @@ msgstr "Mercredi" #: ../../godmode/agentes/planned_downtime.editor.php:1056 #: ../../include/functions.php:1145 #: ../../include/class/CalendarManager.class.php:1032 -#: ../../include/functions_reporting.php:14898 +#: ../../include/functions_reporting.php:14971 msgid "Thu" msgstr "Jeudi" @@ -1919,7 +1953,7 @@ msgstr "Jeudi" #: ../../godmode/agentes/planned_downtime.editor.php:1057 #: ../../include/functions.php:1149 #: ../../include/class/CalendarManager.class.php:1033 -#: ../../include/functions_reporting.php:14903 +#: ../../include/functions_reporting.php:14976 msgid "Fri" msgstr "Vendredi" @@ -1928,7 +1962,7 @@ msgstr "Vendredi" #: ../../godmode/agentes/planned_downtime.editor.php:1058 #: ../../include/functions.php:1153 #: ../../include/class/CalendarManager.class.php:1034 -#: ../../include/functions_reporting.php:14908 +#: ../../include/functions_reporting.php:14981 msgid "Sat" msgstr "Samedi" @@ -2045,7 +2079,7 @@ msgstr "Afficher les modèles" #: ../../enterprise/godmode/agentes/collections.data.php:300 #: ../../enterprise/godmode/agentes/collections.data.php:429 #: ../../enterprise/godmode/agentes/collections.editor.php:255 -#: ../../enterprise/godmode/policies/policy_modules.php:1944 +#: ../../enterprise/godmode/policies/policy_modules.php:1989 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:205 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:580 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:383 @@ -2066,34 +2100,34 @@ msgstr "Afficher les modèles" #: ../../enterprise/tools/ipam/ipam_ajax.php:122 #: ../../enterprise/tools/ipam/ipam_ajax.php:530 #: ../../extensions/files_repo/files_repo_list.php:139 -#: ../../godmode/groups/group_list.php:951 -#: ../../godmode/groups/group_list.php:952 +#: ../../godmode/groups/group_list.php:963 +#: ../../godmode/groups/group_list.php:964 #: ../../godmode/users/profile_list.php:444 #: ../../godmode/agentes/agent_template.php:306 -#: ../../godmode/agentes/modificar_agente.php:810 +#: ../../godmode/agentes/modificar_agente.php:822 #: ../../godmode/agentes/planned_downtime.list.php:747 #: ../../godmode/agentes/planned_downtime.editor.php:1416 #: ../../godmode/agentes/fields_manager.php:191 #: ../../godmode/agentes/configure_field.php:83 #: ../../godmode/setup/snmp_wizard.php:110 -#: ../../godmode/reporting/reporting_builder.list_items.php:626 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2338 +#: ../../godmode/reporting/reporting_builder.list_items.php:627 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2347 #: ../../godmode/reporting/reporting_builder.php:1164 #: ../../godmode/events/event_responses.list.php:105 -#: ../../godmode/servers/servers.build_table.php:237 -#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1050 +#: ../../godmode/servers/servers.build_table.php:250 +#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1042 #: ../../godmode/category/category.php:182 #: ../../godmode/category/category.php:211 ../../include/functions_cron.php:918 #: ../../include/functions_cron.php:944 -#: ../../include/class/NetworkMap.class.php:3192 +#: ../../include/class/NetworkMap.class.php:3198 #: ../../include/class/CredentialStore.class.php:1263 -#: ../../include/class/TipsWindow.class.php:457 +#: ../../include/class/TipsWindow.class.php:469 #: ../../include/class/CalendarManager.class.php:703 #: ../../include/lib/ClusterViewer/ClusterManager.php:618 -#: ../../operation/visual_console/view.php:465 -#: ../../operation/agentes/estado_agente.php:1262 -#: ../../operation/agentes/pandora_networkmap.php:815 -#: ../../operation/agentes/status_monitor.php:2248 +#: ../../operation/visual_console/view.php:467 +#: ../../operation/agentes/estado_agente.php:1271 +#: ../../operation/agentes/pandora_networkmap.php:816 +#: ../../operation/agentes/status_monitor.php:2250 #: ../../operation/gis_maps/gis_map.php:203 #: ../../operation/incidents/list_integriaims_incidents.php:621 #: ../../operation/search_reports.php:68 @@ -2110,12 +2144,12 @@ msgstr "Modifier" #: ../../enterprise/godmode/modules/local_components.php:743 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:78 #: ../../enterprise/godmode/policies/policy_alerts.php:565 -#: ../../enterprise/godmode/policies/policy_modules.php:1626 -#: ../../enterprise/godmode/policies/policy_modules.php:1642 -#: ../../enterprise/godmode/policies/policy_modules.php:1703 -#: ../../enterprise/godmode/policies/policy_queue.php:810 -#: ../../enterprise/godmode/policies/policy_queue.php:852 -#: ../../enterprise/godmode/policies/policy_queue.php:875 +#: ../../enterprise/godmode/policies/policy_modules.php:1671 +#: ../../enterprise/godmode/policies/policy_modules.php:1687 +#: ../../enterprise/godmode/policies/policy_modules.php:1748 +#: ../../enterprise/godmode/policies/policy_queue.php:814 +#: ../../enterprise/godmode/policies/policy_queue.php:856 +#: ../../enterprise/godmode/policies/policy_queue.php:879 #: ../../enterprise/godmode/policies/policies.php:633 #: ../../enterprise/godmode/policies/policies.php:652 #: ../../enterprise/godmode/policies/policies.php:687 @@ -2152,7 +2186,7 @@ msgstr "Modifier" #: ../../enterprise/include/class/Omnishell.class.php:702 #: ../../enterprise/include/class/Omnishell.class.php:1390 #: ../../enterprise/include/class/Omnishell.class.php:1525 -#: ../../enterprise/include/class/LogSource.class.php:871 +#: ../../enterprise/include/class/LogSource.class.php:868 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3151 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3471 #: ../../enterprise/include/class/ManageBackups.class.php:452 @@ -2166,27 +2200,29 @@ msgstr "Modifier" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:844 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:975 #: ../../update_manager_client/views/offline.php:72 -#: ../../update_manager_client/views/online.php:123 -#: ../../update_manager_client/views/online.php:164 +#: ../../update_manager_client/views/online.php:125 +#: ../../update_manager_client/views/online.php:166 #: ../../extensions/files_repo/files_repo_list.php:149 #: ../../godmode/modules/manage_nc_groups.php:300 #: ../../godmode/modules/manage_inventory_modules.php:341 -#: ../../godmode/modules/manage_network_components.php:852 +#: ../../godmode/modules/manage_network_components.php:855 #: ../../godmode/modules/manage_network_templates.php:274 #: ../../godmode/modules/manage_network_templates.php:289 -#: ../../godmode/groups/group_list.php:960 +#: ../../godmode/groups/group_list.php:972 #: ../../godmode/groups/modu_group_list.php:284 #: ../../godmode/groups/modu_group_list.php:287 ../../godmode/extensions.php:283 #: ../../godmode/extensions.php:301 ../../godmode/users/profile_list.php:452 -#: ../../godmode/users/configure_user.php:1935 -#: ../../godmode/users/configure_user.php:2171 +#: ../../godmode/users/user_list.php:984 +#: ../../godmode/users/configure_user.php:1987 +#: ../../godmode/users/configure_user.php:2223 #: ../../godmode/agentes/agent_template.php:298 -#: ../../godmode/agentes/inventory_manager.php:261 -#: ../../godmode/agentes/modificar_agente.php:941 +#: ../../godmode/agentes/inventory_manager.php:262 +#: ../../godmode/agentes/modificar_agente.php:953 #: ../../godmode/agentes/planned_downtime.editor.php:1453 #: ../../godmode/agentes/fields_manager.php:210 -#: ../../godmode/agentes/module_manager.php:1014 -#: ../../godmode/agentes/module_manager.php:1235 +#: ../../godmode/agentes/module_manager.php:1012 +#: ../../godmode/agentes/module_manager.php:1028 +#: ../../godmode/agentes/module_manager.php:1256 #: ../../godmode/netflow/nf_item_list.php:262 #: ../../godmode/netflow/nf_edit.php:202 #: ../../godmode/snmpconsole/snmp_alert.php:1945 @@ -2198,10 +2234,10 @@ msgstr "Modifier" #: ../../godmode/massive/massive_edit_plugins.php:576 #: ../../godmode/massive/massive_enable_disable_alerts.php:227 #: ../../godmode/alerts/alert_actions.php:449 -#: ../../godmode/alerts/alert_list.list.php:1256 +#: ../../godmode/alerts/alert_list.list.php:1255 #: ../../godmode/alerts/alert_commands.php:812 #: ../../godmode/alerts/alert_commands.php:815 -#: ../../godmode/alerts/alert_templates.php:465 ../../godmode/setup/news.php:393 +#: ../../godmode/alerts/alert_templates.php:469 ../../godmode/setup/news.php:392 #: ../../godmode/setup/links.php:210 #: ../../godmode/reporting/create_container.php:801 #: ../../godmode/reporting/map_builder.php:544 @@ -2217,7 +2253,7 @@ msgstr "Modifier" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1019 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1032 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 -#: ../../godmode/servers/plugin.php:1062 ../../godmode/tag/tag.php:420 +#: ../../godmode/servers/plugin.php:1054 ../../godmode/tag/tag.php:421 #: ../../godmode/category/category.php:186 #: ../../godmode/category/category.php:222 #: ../../include/functions_profile.php:319 @@ -2226,25 +2262,26 @@ msgstr "Modifier" #: ../../include/class/SatelliteAgent.class.php:1193 #: ../../include/class/SatelliteAgent.class.php:1255 #: ../../include/class/TreeGroupEdition.class.php:166 -#: ../../include/class/CredentialStore.class.php:1693 +#: ../../include/class/CredentialStore.class.php:1702 #: ../../include/class/SnmpConsole.class.php:472 -#: ../../include/class/SnmpConsole.class.php:1266 -#: ../../include/class/SnmpConsole.class.php:1293 -#: ../../include/class/TipsWindow.class.php:618 +#: ../../include/class/SnmpConsole.class.php:1268 +#: ../../include/class/SnmpConsole.class.php:1295 +#: ../../include/class/TipsWindow.class.php:640 #: ../../include/class/ModuleTemplates.class.php:874 #: ../../include/class/ModuleTemplates.class.php:889 #: ../../include/class/WelcomeWindow.class.php:171 #: ../../include/class/SatelliteCollection.class.php:531 #: ../../include/class/SatelliteCollection.class.php:574 -#: ../../include/functions_filemanager.php:754 +#: ../../include/functions_filemanager.php:769 #: ../../include/functions_container.php:190 #: ../../include/functions_container.php:324 #: ../../include/lib/Dashboard/Widgets/events_list.php:655 -#: ../../include/functions_events.php:3655 -#: ../../operation/users/user_edit.php:1345 +#: ../../include/functions_events.php:3660 +#: ../../operation/users/user_edit.php:1342 #: ../../operation/agentes/pandora_networkmap.editor.php:743 #: ../../operation/messages/message_list.php:300 -#: ../../operation/snmpconsole/snmp_browser.php:637 +#: ../../operation/snmpconsole/snmp_browser.php:620 +#: ../../operation/snmpconsole/snmp_browser.php:696 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:213 #: ../../operation/incidents/list_integriaims_incidents.php:625 msgid "Are you sure?" @@ -2257,12 +2294,12 @@ msgstr "Êtes-vous sûr(e) ?" #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4418 #: ../../godmode/alerts/configure_alert_template.php:1598 -#: ../../godmode/events/event_edit_filter.php:681 -#: ../../godmode/events/event_edit_filter.php:746 -#: ../../include/functions_ui.php:7521 ../../include/functions_ui.php:7569 +#: ../../godmode/events/event_edit_filter.php:683 +#: ../../godmode/events/event_edit_filter.php:748 +#: ../../include/functions_ui.php:7605 ../../include/functions_ui.php:7661 #: ../../include/rest-api/index.php:363 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:546 -#: ../../operation/events/events.php:1284 ../../operation/events/events.php:1356 +#: ../../operation/events/events.php:1311 ../../operation/events/events.php:1401 msgid "Remove" msgstr "Supprimer" @@ -2291,11 +2328,12 @@ msgstr "Vue de grappe" #: ../../enterprise/include/class/SAPView.class.php:155 #: ../../enterprise/include/class/SAPView.class.php:199 #: ../../enterprise/operation/agentes/tag_view.php:50 -#: ../../enterprise/operation/log/log_viewer.php:494 +#: ../../enterprise/operation/log/log_viewer.php:492 #: ../../enterprise/tools/ipam/ipam_editor.php:303 -#: ../../extensions/agents_modules.php:552 ../../extensions/module_groups.php:260 +#: ../../extensions/agents_modules.php:560 ../../extensions/module_groups.php:260 #: ../../extensions/realtime_graphs.php:67 ../../godmode/groups/tactical.php:71 -#: ../../godmode/groups/tactical.php:126 +#: ../../godmode/groups/tactical.php:125 +#: ../../godmode/agentes/status_monitor_custom_fields.php:44 #: ../../godmode/snmpconsole/snmp_trap_generator.php:47 #: ../../godmode/snmpconsole/snmp_filters.php:55 #: ../../include/class/AgentsAlerts.class.php:751 @@ -2303,17 +2341,17 @@ msgstr "Vue de grappe" #: ../../operation/tree.php:185 ../../operation/agentes/alerts_status.php:198 #: ../../operation/agentes/estado_agente.php:246 #: ../../operation/agentes/interface_view.php:72 -#: ../../operation/agentes/status_monitor.php:336 +#: ../../operation/agentes/status_monitor.php:335 #: ../../operation/agentes/group_view.php:98 #: ../../operation/agentes/tactical.php:81 #: ../../operation/network/network_usage_map.php:48 -#: ../../operation/netflow/nf_live_view.php:139 +#: ../../operation/netflow/nf_live_view.php:144 #: ../../operation/netflow/netflow_explorer.php:55 #: ../../operation/snmpconsole/snmp_statistics.php:100 -#: ../../operation/snmpconsole/snmp_browser.php:86 +#: ../../operation/snmpconsole/snmp_browser.php:88 #: ../../operation/snmpconsole/snmp_mib_uploader.php:56 #: ../../operation/menu.php:159 ../../operation/menu.php:276 -#: ../../operation/inventory/inventory.php:310 +#: ../../operation/inventory/inventory.php:312 #: ../../general/first_task/cluster_builder.php:38 msgid "Monitoring" msgstr "Surveillance" @@ -2326,13 +2364,13 @@ msgid "Clusters" msgstr "Grappes" #: ../../views/cluster/list.php:72 -#: ../../enterprise/meta/advanced/servers.build_table.php:63 +#: ../../enterprise/meta/advanced/servers.build_table.php:79 #: ../../enterprise/meta/advanced/metasetup.relations.php:335 #: ../../enterprise/meta/advanced/metasetup.relations.php:413 #: ../../enterprise/meta/advanced/metasetup.relations.php:548 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 #: ../../enterprise/godmode/modules/configure_local_component.php:214 -#: ../../enterprise/godmode/policies/policy_modules.php:1545 +#: ../../enterprise/godmode/policies/policy_modules.php:1590 #: ../../enterprise/godmode/services/services.elements.php:113 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:72 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:93 @@ -2349,46 +2387,46 @@ msgstr "Grappes" #: ../../enterprise/operation/agentes/ver_agente.php:50 #: ../../godmode/modules/manage_network_templates_form.php:232 #: ../../godmode/modules/manage_network_components_form_common.php:64 -#: ../../godmode/modules/manage_network_components.php:776 +#: ../../godmode/modules/manage_network_components.php:779 #: ../../godmode/update_manager/update_manager.history.php:41 #: ../../godmode/agentes/agent_template.php:275 -#: ../../godmode/agentes/modificar_agente.php:696 +#: ../../godmode/agentes/modificar_agente.php:706 #: ../../godmode/agentes/planned_downtime.list.php:736 #: ../../godmode/agentes/planned_downtime.editor.php:926 #: ../../godmode/agentes/module_manager_editor_common.php:293 -#: ../../godmode/agentes/module_manager_editor_common.php:1536 +#: ../../godmode/agentes/module_manager_editor_common.php:1546 #: ../../godmode/agentes/module_manager.php:630 #: ../../godmode/alerts/alert_templates.php:35 -#: ../../godmode/alerts/alert_templates.php:307 -#: ../../godmode/alerts/alert_templates.php:412 ../../godmode/setup/news.php:350 +#: ../../godmode/alerts/alert_templates.php:311 +#: ../../godmode/alerts/alert_templates.php:416 ../../godmode/setup/news.php:354 #: ../../godmode/setup/gis_step_2.php:256 #: ../../godmode/setup/setup_integria.php:479 #: ../../godmode/setup/setup_integria.php:613 #: ../../godmode/reporting/reporting_builder.list_items.php:245 #: ../../godmode/reporting/reporting_builder.list_items.php:374 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1055 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1057 #: ../../godmode/reporting/visual_console_builder.wizard.php:131 #: ../../godmode/reporting/visual_console_builder.wizard.php:315 #: ../../godmode/events/event_responses.editor.php:234 -#: ../../godmode/servers/servers.build_table.php:79 +#: ../../godmode/servers/servers.build_table.php:81 #: ../../godmode/servers/modificar_server.php:105 -#: ../../godmode/servers/plugin.php:993 ../../mobile/operation/visualmaps.php:125 +#: ../../godmode/servers/plugin.php:985 ../../mobile/operation/visualmaps.php:125 #: ../../mobile/operation/visualmaps.php:126 -#: ../../mobile/operation/events.php:658 ../../mobile/operation/events.php:659 -#: ../../mobile/operation/events.php:812 ../../mobile/operation/events.php:972 -#: ../../mobile/operation/events.php:973 -#: ../../include/functions_visual_map_editor.php:700 -#: ../../include/functions_visual_map_editor.php:718 -#: ../../include/functions_visual_map_editor.php:846 +#: ../../mobile/operation/events.php:687 ../../mobile/operation/events.php:688 +#: ../../mobile/operation/events.php:841 ../../mobile/operation/events.php:1016 +#: ../../mobile/operation/events.php:1017 +#: ../../include/functions_visual_map_editor.php:750 +#: ../../include/functions_visual_map_editor.php:768 +#: ../../include/functions_visual_map_editor.php:894 #: ../../include/functions_reporting_html.php:1056 #: ../../include/functions_reporting_html.php:1065 #: ../../include/functions_reporting_html.php:1306 #: ../../include/functions_reporting_html.php:1314 -#: ../../include/functions_reporting_html.php:2638 -#: ../../include/functions_reporting_html.php:5490 -#: ../../include/ajax/heatmap.ajax.php:77 +#: ../../include/functions_reporting_html.php:2657 +#: ../../include/functions_reporting_html.php:5518 +#: ../../include/ajax/heatmap.ajax.php:96 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 -#: ../../include/functions_reports.php:1086 ../../include/functions_html.php:5952 +#: ../../include/functions_reports.php:1086 ../../include/functions_html.php:5976 #: ../../include/class/ModuleTemplates.class.php:1185 #: ../../include/class/CalendarManager.class.php:1028 #: ../../include/class/CalendarManager.class.php:1062 @@ -2401,27 +2439,27 @@ msgstr "Grappes" #: ../../include/lib/Dashboard/Widgets/clock.php:221 #: ../../include/functions_snmp_browser.php:564 #: ../../include/functions_events.php:2525 -#: ../../include/functions_events.php:4958 -#: ../../operation/agentes/estado_agente.php:1043 +#: ../../include/functions_events.php:4963 +#: ../../operation/agentes/estado_agente.php:1051 #: ../../operation/agentes/ver_agente.php:1171 -#: ../../operation/netflow/nf_live_view.php:495 +#: ../../operation/netflow/nf_live_view.php:568 #: ../../operation/incidents/configure_integriaims_incident.php:251 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:342 -#: ../../operation/search_modules.php:34 +#: ../../operation/search_modules.php:37 #: ../../operation/reporting/graph_viewer.php:363 msgid "Type" msgstr "Type" #: ../../views/cluster/list.php:73 -#: ../../include/functions_reporting_html.php:5925 +#: ../../include/functions_reporting_html.php:5953 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:325 -#: ../../operation/agentes/pandora_networkmap.php:717 +#: ../../operation/agentes/pandora_networkmap.php:718 msgid "Nodes" msgstr "Nœuds" #: ../../views/cluster/list.php:74 #: ../../enterprise/views/ncm/devices/list.php:120 -#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../enterprise/meta/advanced/servers.build_table.php:78 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:584 #: ../../enterprise/meta/advanced/policymanager.queue.php:225 #: ../../enterprise/meta/monitoring/custom_fields_view.php:719 @@ -2432,8 +2470,8 @@ msgstr "Nœuds" #: ../../enterprise/godmode/agentes/collection_manager.php:164 #: ../../enterprise/godmode/agentes/collection_manager.php:264 #: ../../enterprise/godmode/policies/policy_alerts.php:368 -#: ../../enterprise/godmode/policies/policy_modules.php:1546 -#: ../../enterprise/godmode/policies/policy_queue.php:335 +#: ../../enterprise/godmode/policies/policy_modules.php:1591 +#: ../../enterprise/godmode/policies/policy_queue.php:337 #: ../../enterprise/godmode/policies/policies.php:436 #: ../../enterprise/godmode/policies/policy_collections.php:243 #: ../../enterprise/godmode/policies/policy_collections.php:324 @@ -2469,15 +2507,15 @@ msgstr "Nœuds" #: ../../enterprise/operation/services/services.table_services.php:183 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:490 #: ../../godmode/groups/tactical.php:180 -#: ../../godmode/agentes/status_monitor_custom_fields.php:97 -#: ../../godmode/agentes/status_monitor_custom_fields.php:146 +#: ../../godmode/agentes/status_monitor_custom_fields.php:117 +#: ../../godmode/agentes/status_monitor_custom_fields.php:166 #: ../../godmode/agentes/agent_incidents.php:88 #: ../../godmode/agentes/module_manager.php:645 #: ../../godmode/massive/massive_copy_modules.php:121 #: ../../godmode/massive/massive_copy_modules.php:281 #: ../../godmode/massive/massive_delete_modules.php:415 #: ../../godmode/massive/massive_edit_users.php:501 -#: ../../godmode/massive/massive_edit_agents.php:926 +#: ../../godmode/massive/massive_edit_agents.php:943 #: ../../godmode/alerts/alert_list.list.php:174 #: ../../godmode/alerts/alert_list.list.php:569 #: ../../godmode/alerts/alert_view.php:120 @@ -2486,63 +2524,72 @@ msgstr "Nœuds" #: ../../godmode/reporting/reporting_builder.item_editor.php:77 #: ../../godmode/events/custom_events.php:99 #: ../../godmode/wizards/DiscoveryTaskList.class.php:605 -#: ../../godmode/servers/servers.build_table.php:78 -#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:144 -#: ../../mobile/operation/agents.php:243 ../../mobile/operation/agents.php:244 -#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:163 +#: ../../godmode/servers/servers.build_table.php:80 +#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:145 +#: ../../mobile/operation/agents.php:244 ../../mobile/operation/agents.php:245 +#: ../../mobile/operation/agents.php:407 ../../mobile/operation/modules.php:163 #: ../../mobile/operation/modules.php:164 ../../mobile/operation/modules.php:275 -#: ../../mobile/operation/modules.php:276 ../../mobile/operation/modules.php:603 -#: ../../mobile/operation/modules.php:609 ../../mobile/operation/modules.php:615 -#: ../../mobile/operation/modules.php:621 ../../mobile/operation/modules.php:632 -#: ../../mobile/operation/modules.php:640 ../../mobile/operation/modules.php:648 -#: ../../mobile/operation/modules.php:720 ../../mobile/operation/modules.php:732 -#: ../../mobile/operation/modules.php:850 ../../mobile/operation/alerts.php:105 +#: ../../mobile/operation/modules.php:276 ../../mobile/operation/modules.php:614 +#: ../../mobile/operation/modules.php:620 ../../mobile/operation/modules.php:626 +#: ../../mobile/operation/modules.php:632 ../../mobile/operation/modules.php:643 +#: ../../mobile/operation/modules.php:651 ../../mobile/operation/modules.php:659 +#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:742 +#: ../../mobile/operation/modules.php:751 ../../mobile/operation/modules.php:763 +#: ../../mobile/operation/modules.php:909 ../../mobile/operation/alerts.php:105 #: ../../mobile/operation/alerts.php:106 ../../mobile/operation/alerts.php:247 -#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:350 -#: ../../mobile/operation/events.php:649 ../../mobile/operation/events.php:650 -#: ../../mobile/operation/events.php:824 ../../mobile/operation/events.php:963 -#: ../../mobile/operation/events.php:964 +#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:334 +#: ../../mobile/operation/module_data.php:262 +#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679 +#: ../../mobile/operation/events.php:853 ../../mobile/operation/events.php:1007 +#: ../../mobile/operation/events.php:1008 +#: ../../mobile/operation/server_status.php:154 +#: ../../mobile/operation/server_status.php:155 +#: ../../mobile/operation/server_status.php:281 +#: ../../mobile/operation/server_status.php:319 +#: ../../mobile/operation/server_status.php:349 +#: ../../mobile/operation/server_status.php:445 #: ../../include/functions_reporting_html.php:553 #: ../../include/functions_reporting_html.php:1055 #: ../../include/functions_reporting_html.php:1064 #: ../../include/functions_reporting_html.php:1305 #: ../../include/functions_reporting_html.php:1313 -#: ../../include/functions_reporting_html.php:1624 -#: ../../include/functions_reporting_html.php:2356 -#: ../../include/functions_reporting_html.php:2637 -#: ../../include/functions_reporting_html.php:2996 -#: ../../include/functions_reporting_html.php:3664 -#: ../../include/functions_reporting_html.php:3714 -#: ../../include/functions_reporting_html.php:5303 +#: ../../include/functions_reporting_html.php:1633 +#: ../../include/functions_reporting_html.php:2377 +#: ../../include/functions_reporting_html.php:2656 +#: ../../include/functions_reporting_html.php:3024 +#: ../../include/functions_reporting_html.php:3692 +#: ../../include/functions_reporting_html.php:3742 +#: ../../include/functions_reporting_html.php:5331 +#: ../../include/ajax/heatmap.ajax.php:391 #: ../../include/ajax/alert_list.ajax.php:296 -#: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:1003 +#: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:1026 #: ../../include/ajax/custom_fields.php:416 ../../include/functions_snmp.php:369 #: ../../include/functions_massive_operations.php:152 -#: ../../include/class/NetworkMap.class.php:3064 -#: ../../include/class/AgentsAlerts.class.php:913 +#: ../../include/class/NetworkMap.class.php:3070 +#: ../../include/class/AgentsAlerts.class.php:914 #: ../../include/class/SnmpConsole.class.php:273 #: ../../include/class/SnmpConsole.class.php:382 #: ../../include/class/SnmpConsole.class.php:500 #: ../../include/class/ExternalTools.class.php:877 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:322 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:264 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:547 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:562 #: ../../include/lib/Group.php:562 ../../include/functions_snmp_browser.php:594 #: ../../include/functions_events.php:204 ../../include/functions_events.php:259 #: ../../include/functions_events.php:2543 -#: ../../include/functions_events.php:5004 ../../operation/search_agents.php:56 +#: ../../include/functions_events.php:5009 ../../operation/search_agents.php:56 #: ../../operation/agentes/estado_agente.php:324 -#: ../../operation/agentes/estado_agente.php:1049 +#: ../../operation/agentes/estado_agente.php:1057 #: ../../operation/agentes/interface_view.functions.php:516 -#: ../../operation/agentes/status_monitor.php:1566 +#: ../../operation/agentes/status_monitor.php:1568 #: ../../operation/agentes/alerts_status.functions.php:108 #: ../../operation/messages/message_list.php:188 #: ../../operation/incidents/integriaims_export_csv.php:83 #: ../../operation/incidents/configure_integriaims_incident.php:305 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:338 #: ../../operation/incidents/list_integriaims_incidents.php:334 -#: ../../operation/search_modules.php:36 ../../operation/search_policies.php:38 +#: ../../operation/search_modules.php:39 ../../operation/search_policies.php:38 msgid "Status" msgstr "État" @@ -2566,10 +2613,10 @@ msgstr "État" #: ../../enterprise/include/ajax/log_viewer.ajax.php:352 #: ../../enterprise/include/class/Omnishell.class.php:1016 #: ../../enterprise/include/class/Omnishell.class.php:1095 -#: ../../include/ajax/module.php:2251 ../../include/ajax/agent.php:598 -#: ../../include/ajax/events.php:804 ../../include/functions_html.php:1276 -#: ../../include/functions_html.php:1427 -#: ../../include/functions_snmp_browser.php:1617 +#: ../../include/ajax/module.php:2280 ../../include/ajax/agent.php:598 +#: ../../include/ajax/events.php:805 ../../include/functions_html.php:1281 +#: ../../include/functions_html.php:1432 +#: ../../include/functions_snmp_browser.php:1626 msgid "Filter group" msgstr "Filtrer le groupe" @@ -2615,27 +2662,27 @@ msgstr "Éditer ce grappe" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2055 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3323 #: ../../enterprise/include/lib/NetworkManager.php:190 -#: ../../godmode/groups/group_list.php:942 -#: ../../godmode/agentes/modificar_agente.php:779 +#: ../../godmode/groups/group_list.php:954 +#: ../../godmode/agentes/modificar_agente.php:791 #: ../../godmode/agentes/module_manager_editor_common.php:253 -#: ../../godmode/agentes/module_manager_editor_common.php:696 -#: ../../godmode/agentes/module_manager_editor_common.php:1311 -#: ../../godmode/agentes/module_manager.php:974 -#: ../../godmode/agentes/module_manager.php:987 -#: ../../godmode/massive/massive_edit_agents.php:938 -#: ../../godmode/massive/massive_edit_agents.php:1138 +#: ../../godmode/agentes/module_manager_editor_common.php:702 +#: ../../godmode/agentes/module_manager_editor_common.php:1321 +#: ../../godmode/agentes/module_manager.php:988 +#: ../../godmode/agentes/module_manager.php:1001 +#: ../../godmode/massive/massive_edit_agents.php:955 +#: ../../godmode/massive/massive_edit_agents.php:1154 #: ../../godmode/massive/massive_edit_modules.php:780 #: ../../godmode/alerts/alert_list.list.php:172 #: ../../godmode/alerts/configure_alert_template.php:918 -#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:167 +#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:173 #: ../../mobile/operation/alerts.php:68 -#: ../../include/functions_visual_map_editor.php:824 -#: ../../include/functions_reporting_html.php:3676 +#: ../../include/functions_visual_map_editor.php:872 +#: ../../include/functions_reporting_html.php:3704 #: ../../include/functions_agents.php:1472 #: ../../include/functions_treeview.php:66 -#: ../../include/functions_treeview.php:602 +#: ../../include/functions_treeview.php:606 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 -#: ../../include/functions_reporting.php:6992 +#: ../../include/functions_reporting.php:7001 #: ../../operation/search_agents.php:93 #: ../../operation/agentes/estado_generalagente.php:92 #: ../../operation/agentes/alerts_status.functions.php:101 @@ -2646,24 +2693,24 @@ msgstr "Désactivé" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 #: ../../enterprise/godmode/services/services.service.php:773 #: ../../enterprise/operation/services/massive/services.create.php:839 -#: ../../godmode/agentes/modificar_agente.php:788 +#: ../../godmode/agentes/modificar_agente.php:800 #: ../../godmode/agentes/planned_downtime.list.php:778 #: ../../godmode/agentes/planned_downtime.editor.php:929 -#: ../../godmode/agentes/agent_manager.php:826 -#: ../../godmode/agentes/module_manager_editor_common.php:1394 +#: ../../godmode/agentes/agent_manager.php:834 +#: ../../godmode/agentes/module_manager_editor_common.php:1404 #: ../../godmode/agentes/module_manager.php:765 -#: ../../godmode/massive/massive_edit_agents.php:1108 +#: ../../godmode/massive/massive_edit_agents.php:1125 #: ../../godmode/massive/massive_edit_modules.php:1119 -#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1114 -#: ../../include/class/Tree.class.php:936 ../../operation/search_agents.php:100 -#: ../../operation/agentes/estado_agente.php:1145 +#: ../../mobile/operation/agent.php:180 ../../include/ajax/module.php:1137 +#: ../../include/class/Tree.class.php:964 ../../operation/search_agents.php:100 +#: ../../operation/agentes/estado_agente.php:1153 #: ../../operation/agentes/estado_generalagente.php:94 msgid "Quiet" msgstr "Mode silencieux" #: ../../views/cluster/view.php:177 ../../views/cluster/view.php:185 #: ../../operation/search_agents.php:111 -#: ../../operation/agentes/estado_agente.php:1153 +#: ../../operation/agentes/estado_agente.php:1161 msgid "Agent in scheduled downtime" msgstr "Agent dans temps d'arrêt programmé" @@ -2688,25 +2735,24 @@ msgstr "Forcer calcule d'état du grappe" #: ../../enterprise/tools/ipam/ipam_network.php:426 #: ../../godmode/modules/manage_inventory_modules.php:291 #: ../../godmode/modules/manage_inventory_modules_form.php:140 -#: ../../godmode/agentes/modificar_agente.php:694 +#: ../../godmode/agentes/modificar_agente.php:704 #: ../../godmode/agentes/planned_downtime.editor.php:1358 #: ../../godmode/agentes/agent_manager.php:523 -#: ../../godmode/massive/massive_edit_agents.php:733 +#: ../../godmode/massive/massive_edit_agents.php:750 #: ../../godmode/reporting/reporting_builder.item_editor.php:71 -#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404 -#: ../../include/functions_reporting_html.php:1600 -#: ../../include/functions_reporting_html.php:3661 -#: ../../include/ajax/heatmap.ajax.php:339 +#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:405 +#: ../../include/functions_reporting_html.php:1609 +#: ../../include/functions_reporting_html.php:3689 +#: ../../include/ajax/heatmap.ajax.php:467 #: ../../include/class/Diagnostics.class.php:769 #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:345 -#: ../../include/functions_events.php:4377 ../../operation/search_agents.php:44 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:348 +#: ../../include/functions_events.php:4382 ../../operation/search_agents.php:44 #: ../../operation/search_agents.php:50 ../../operation/tree.php:79 -#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1031 +#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1038 #: ../../operation/agentes/estado_generalagente.php:216 #: ../../operation/gis_maps/ajax.php:297 -#: ../../operation/inventory/inventory.php:1005 -#: ../../operation/inventory/inventory.php:1299 +#: ../../operation/inventory/inventory.php:1251 msgid "OS" msgstr "Système d'exploitation" @@ -2716,12 +2762,12 @@ msgid "IP address" msgstr "Adresse IP" #: ../../views/cluster/view.php:277 ../../views/cluster/view.php:292 -#: ../../enterprise/meta/advanced/servers.build_table.php:101 -#: ../../enterprise/meta/advanced/servers.build_table.php:102 -#: ../../enterprise/meta/advanced/servers.build_table.php:108 +#: ../../enterprise/meta/advanced/servers.build_table.php:125 +#: ../../enterprise/meta/advanced/servers.build_table.php:126 +#: ../../enterprise/meta/advanced/servers.build_table.php:132 #: ../../enterprise/meta/advanced/metasetup.visual.php:964 #: ../../enterprise/include/functions_visual_map.php:320 -#: ../../enterprise/include/functions_servicemap.php:471 +#: ../../enterprise/include/functions_servicemap.php:483 #: ../../enterprise/include/functions_aws.php:509 #: ../../enterprise/include/functions_aws.php:510 #: ../../enterprise/include/functions_reporting.php:6178 @@ -2734,92 +2780,92 @@ msgstr "Adresse IP" #: ../../enterprise/tools/ipam/ipam_network.php:543 #: ../../enterprise/tools/ipam/ipam_ajax.php:369 #: ../../enterprise/tools/ipam/ipam_ajax.php:390 -#: ../../godmode/modules/manage_network_components.php:802 -#: ../../godmode/modules/manage_network_components.php:803 +#: ../../godmode/modules/manage_network_components.php:805 +#: ../../godmode/modules/manage_network_components.php:806 #: ../../godmode/extensions.php:207 ../../godmode/extensions.php:222 #: ../../godmode/agentes/planned_downtime.list.php:942 #: ../../godmode/alerts/alert_view.php:141 -#: ../../godmode/servers/servers.build_table.php:151 -#: ../../godmode/servers/servers.build_table.php:152 -#: ../../godmode/servers/servers.build_table.php:158 -#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200 -#: ../../mobile/operation/events.php:307 ../../mobile/operation/events.php:319 -#: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443 -#: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509 -#: ../../include/functions_servers.php:1275 +#: ../../godmode/servers/servers.build_table.php:153 +#: ../../godmode/servers/servers.build_table.php:154 +#: ../../godmode/servers/servers.build_table.php:160 +#: ../../mobile/operation/agent.php:198 ../../mobile/operation/agent.php:203 +#: ../../mobile/operation/events.php:303 ../../mobile/operation/events.php:315 +#: ../../mobile/operation/events.php:327 ../../mobile/operation/events.php:435 +#: ../../mobile/operation/events.php:485 ../../mobile/operation/events.php:501 +#: ../../include/functions_servers.php:1298 #: ../../include/functions_reporting_html.php:659 #: ../../include/functions_reporting_html.php:662 -#: ../../include/functions_reporting_html.php:5564 -#: ../../include/functions_reporting_html.php:5617 +#: ../../include/functions_reporting_html.php:5592 +#: ../../include/functions_reporting_html.php:5645 #: ../../include/functions.php:1180 ../../include/functions.php:1186 -#: ../../include/functions.php:1190 ../../include/ajax/module.php:1156 +#: ../../include/functions.php:1190 ../../include/ajax/module.php:1183 #: ../../include/functions_treeview.php:153 #: ../../include/functions_treeview.php:311 -#: ../../include/functions_treeview.php:410 -#: ../../include/functions_treeview.php:639 ../../include/functions_ui.php:2874 -#: ../../include/functions_ui.php:2882 ../../include/functions_db.php:241 -#: ../../include/class/SnmpConsole.class.php:794 -#: ../../include/class/SnmpConsole.class.php:812 -#: ../../include/functions_events.php:3684 -#: ../../include/functions_events.php:3818 -#: ../../include/functions_events.php:3838 -#: ../../include/functions_events.php:3847 -#: ../../include/functions_events.php:3856 -#: ../../include/functions_events.php:3857 -#: ../../include/functions_events.php:3869 -#: ../../include/functions_events.php:3929 -#: ../../include/functions_events.php:3962 -#: ../../include/functions_events.php:4028 -#: ../../include/functions_events.php:4045 -#: ../../include/functions_events.php:4052 -#: ../../include/functions_events.php:4118 -#: ../../include/functions_events.php:4210 -#: ../../include/functions_events.php:4334 -#: ../../include/functions_events.php:4373 -#: ../../include/functions_events.php:4413 -#: ../../include/functions_events.php:4436 -#: ../../include/functions_events.php:4466 -#: ../../include/functions_events.php:4549 -#: ../../include/functions_events.php:4630 -#: ../../include/functions_events.php:4640 -#: ../../include/functions_events.php:4857 -#: ../../include/functions_events.php:4938 -#: ../../include/functions_events.php:5043 -#: ../../include/functions_events.php:5072 -#: ../../include/functions_events.php:5087 -#: ../../include/functions_events.php:5097 -#: ../../include/functions_events.php:5107 -#: ../../include/functions_events.php:5590 -#: ../../include/functions_events.php:5604 +#: ../../include/functions_treeview.php:414 +#: ../../include/functions_treeview.php:643 ../../include/functions_ui.php:2917 +#: ../../include/functions_ui.php:2925 ../../include/functions_db.php:241 +#: ../../include/class/SnmpConsole.class.php:796 +#: ../../include/class/SnmpConsole.class.php:814 +#: ../../include/functions_events.php:3689 +#: ../../include/functions_events.php:3823 +#: ../../include/functions_events.php:3843 +#: ../../include/functions_events.php:3852 +#: ../../include/functions_events.php:3861 +#: ../../include/functions_events.php:3862 +#: ../../include/functions_events.php:3874 +#: ../../include/functions_events.php:3934 +#: ../../include/functions_events.php:3967 +#: ../../include/functions_events.php:4033 +#: ../../include/functions_events.php:4050 +#: ../../include/functions_events.php:4057 +#: ../../include/functions_events.php:4123 +#: ../../include/functions_events.php:4215 +#: ../../include/functions_events.php:4339 +#: ../../include/functions_events.php:4378 +#: ../../include/functions_events.php:4418 +#: ../../include/functions_events.php:4441 +#: ../../include/functions_events.php:4471 +#: ../../include/functions_events.php:4554 +#: ../../include/functions_events.php:4635 +#: ../../include/functions_events.php:4645 +#: ../../include/functions_events.php:4862 +#: ../../include/functions_events.php:4943 +#: ../../include/functions_events.php:5048 +#: ../../include/functions_events.php:5077 +#: ../../include/functions_events.php:5092 +#: ../../include/functions_events.php:5102 +#: ../../include/functions_events.php:5112 +#: ../../include/functions_events.php:5595 #: ../../include/functions_events.php:5609 -#: ../../include/functions_events.php:5612 -#: ../../include/functions_events.php:5620 -#: ../../include/functions_events.php:5629 -#: ../../include/functions_events.php:5641 -#: ../../include/functions_events.php:5694 -#: ../../include/functions_events.php:5721 -#: ../../include/functions_events.php:5746 -#: ../../include/functions_events.php:5790 -#: ../../operation/agentes/estado_agente.php:1222 +#: ../../include/functions_events.php:5614 +#: ../../include/functions_events.php:5617 +#: ../../include/functions_events.php:5625 +#: ../../include/functions_events.php:5634 +#: ../../include/functions_events.php:5646 +#: ../../include/functions_events.php:5699 +#: ../../include/functions_events.php:5726 +#: ../../include/functions_events.php:5751 +#: ../../include/functions_events.php:5795 +#: ../../operation/agentes/estado_agente.php:1231 #: ../../operation/agentes/interface_view.functions.php:742 #: ../../operation/agentes/interface_view.functions.php:743 #: ../../operation/agentes/interface_view.functions.php:744 #: ../../operation/agentes/interface_view.functions.php:745 #: ../../operation/agentes/interface_view.functions.php:746 -#: ../../operation/agentes/status_monitor.php:1945 +#: ../../operation/agentes/status_monitor.php:1947 #: ../../operation/agentes/estado_generalagente.php:234 #: ../../operation/agentes/estado_generalagente.php:251 #: ../../operation/agentes/estado_generalagente.php:254 -#: ../../operation/agentes/estado_generalagente.php:440 -#: ../../operation/agentes/estado_generalagente.php:454 -#: ../../operation/agentes/estado_generalagente.php:513 -#: ../../operation/inventory/inventory.php:153 -#: ../../operation/inventory/inventory.php:173 -#: ../../operation/inventory/inventory.php:200 +#: ../../operation/agentes/estado_generalagente.php:411 +#: ../../operation/agentes/estado_generalagente.php:425 +#: ../../operation/agentes/estado_generalagente.php:484 +#: ../../operation/inventory/inventory.php:155 +#: ../../operation/inventory/inventory.php:175 +#: ../../operation/inventory/inventory.php:202 msgid "N/A" msgstr "S.O." -#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:839 +#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:843 #: ../../operation/agentes/estado_generalagente.php:250 #: ../../operation/gis_maps/ajax.php:341 msgid "Agent Version" @@ -2830,12 +2876,12 @@ msgid "Cluster agent" msgstr "Agent de grappe" #: ../../views/cluster/view.php:364 -#: ../../operation/agentes/estado_generalagente.php:1012 +#: ../../operation/agentes/estado_generalagente.php:919 msgid "Events (Last 24h)" msgstr "Événements (Dernières 24h)" -#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:453 -#: ../../operation/agentes/interface_traffic_graph_win.php:278 +#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:469 +#: ../../operation/agentes/interface_traffic_graph_win.php:294 msgid "Reload" msgstr "Recharger" @@ -2853,24 +2899,24 @@ msgstr "Nouveau widget" #: ../../views/dashboard/header.php:43 #: ../../extensions/disabled/matrix_events.php:35 -#: ../../extensions/agents_modules.php:380 -#: ../../extensions/agents_modules.php:387 -#: ../../extensions/agents_modules.php:390 -#: ../../operation/visual_console/view.php:231 -#: ../../operation/visual_console/legacy_view.php:201 +#: ../../extensions/agents_modules.php:388 +#: ../../extensions/agents_modules.php:395 +#: ../../extensions/agents_modules.php:398 +#: ../../operation/visual_console/view.php:233 +#: ../../operation/visual_console/legacy_view.php:200 #: ../../operation/gis_maps/render_view.php:137 #: ../../operation/reporting/reporting_viewer.php:185 #: ../../operation/reporting/graph_viewer.php:234 msgid "Full screen mode" msgstr "Mode plein écran" -#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:603 -#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:500 -#: ../../operation/visual_console/legacy_view.php:249 +#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:611 +#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:502 +#: ../../operation/visual_console/legacy_view.php:260 #: ../../operation/gis_maps/render_view.php:139 #: ../../operation/reporting/reporting_viewer.php:194 #: ../../operation/reporting/graph_viewer.php:243 -#: ../../operation/events/events.php:1410 +#: ../../operation/events/events.php:1464 msgid "Back to normal mode" msgstr "Retour au mode normal" @@ -2898,11 +2944,11 @@ msgstr "Mettre à jour le tableau de bord" #: ../../enterprise/operation/services/services.list.php:590 #: ../../godmode/snmpconsole/snmp_alert.php:2227 #: ../../godmode/snmpconsole/snmp_alert.php:2242 -#: ../../godmode/massive/massive_edit_agents.php:1043 -#: ../../godmode/reporting/graph_builder.graph_editor.php:241 -#: ../../godmode/reporting/graph_builder.graph_editor.php:262 -#: ../../include/functions_config.php:1333 -#: ../../include/functions_config.php:3537 +#: ../../godmode/massive/massive_edit_agents.php:1060 +#: ../../godmode/reporting/graph_builder.graph_editor.php:374 +#: ../../godmode/reporting/graph_builder.graph_editor.php:395 +#: ../../include/functions_config.php:1349 +#: ../../include/functions_config.php:3561 #: ../../include/class/SatelliteAgent.class.php:1269 #: ../../operation/gis_maps/render_view.php:167 msgid "Ok" @@ -2927,23 +2973,23 @@ msgstr "Afficher lien au panneau de configuration" #: ../../views/dashboard/header.php:163 #: ../../enterprise/views/ncm/devices/list.php:172 #: ../../enterprise/meta/advanced/policymanager.queue.php:238 -#: ../../enterprise/godmode/policies/policy_queue.php:849 +#: ../../enterprise/godmode/policies/policy_queue.php:853 #: ../../enterprise/godmode/servers/HA_cluster.php:437 #: ../../enterprise/include/class/Omnishell.class.php:559 #: ../../enterprise/include/class/Omnishell.class.php:1712 #: ../../enterprise/include/functions_ipam.php:1400 -#: ../../extensions/agents_modules.php:615 +#: ../../extensions/agents_modules.php:623 #: ../../godmode/wizards/DiscoveryTaskList.class.php:196 -#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1285 -#: ../../include/functions_ui.php:1284 ../../include/functions_ui.php:7720 -#: ../../include/class/NetworkMap.class.php:2946 ../../operation/heatmap.php:175 -#: ../../operation/visual_console/view.php:513 +#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1313 +#: ../../include/functions_ui.php:1321 ../../include/functions_ui.php:7815 +#: ../../include/class/NetworkMap.class.php:2952 ../../operation/heatmap.php:175 +#: ../../operation/visual_console/view.php:515 #: ../../operation/visual_console/legacy_public_view.php:141 -#: ../../operation/visual_console/legacy_view.php:263 +#: ../../operation/visual_console/legacy_view.php:274 #: ../../operation/visual_console/public_view.php:129 #: ../../operation/agentes/pandora_networkmap.editor.php:553 #: ../../operation/gis_maps/render_view.php:161 -#: ../../operation/events/events.php:1422 ../../general/login_page.php:97 +#: ../../operation/events/events.php:1476 ../../general/login_page.php:97 #: ../../general/login_page.php:408 msgid "Refresh" msgstr "Rafraîchir" @@ -2955,9 +3001,10 @@ msgstr "Ajouter cellule" #: ../../views/dashboard/header.php:298 #: ../../enterprise/extensions/vmware/vmware_view.php:1377 #: ../../enterprise/extensions/vmware/vmware_view.php:1414 +#: ../../godmode/users/configure_user.php:66 #: ../../godmode/users/user_management.php:45 #: ../../godmode/massive/massive_edit_users.php:280 -#: ../../mobile/include/functions_web.php:22 +#: ../../mobile/include/functions_web.php:22 ../../include/auth/mysql.php:814 #: ../../include/class/OrderInterpreter.class.php:219 #: ../../operation/users/user_edit.php:475 ../../operation/menu.php:478 msgid "Dashboard" @@ -2968,9 +3015,9 @@ msgid "Hello! These are the tips of the day." msgstr "Bonjour! Ce sont les astuces du jour." #: ../../views/dashboard/tipsWindow.php:44 -#: ../../godmode/users/user_management.php:378 +#: ../../godmode/users/user_management.php:384 msgid "Show usage tips at startup" -msgstr "Afficher les conseils d’utilisation au démarrage" +msgstr "Afficher les astuces d’utilisation au démarrage" #: ../../views/dashboard/tipsWindow.php:81 msgid "See more info" @@ -3008,11 +3055,11 @@ msgstr "Panneaux de configuration" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:132 #: ../../extensions/files_repo.php:206 #: ../../godmode/modules/manage_nc_groups.php:176 -#: ../../godmode/modules/manage_network_components.php:562 +#: ../../godmode/modules/manage_network_components.php:565 #: ../../godmode/users/profile_list.php:142 ../../godmode/users/user_list.php:357 #: ../../godmode/users/user_list.php:411 -#: ../../godmode/users/configure_user.php:101 -#: ../../godmode/users/configure_user.php:121 +#: ../../godmode/users/configure_user.php:871 +#: ../../godmode/users/configure_user.php:891 #: ../../godmode/agentes/planned_downtime.list.php:290 #: ../../godmode/netflow/nf_item_list.php:120 #: ../../godmode/netflow/nf_item_list.php:148 @@ -3024,7 +3071,7 @@ msgstr "Panneaux de configuration" #: ../../godmode/massive/massive_delete_alerts.php:201 #: ../../godmode/alerts/alert_actions.php:208 #: ../../godmode/alerts/alert_commands.php:698 -#: ../../godmode/alerts/alert_templates.php:257 +#: ../../godmode/alerts/alert_templates.php:261 #: ../../godmode/alerts/alert_list.php:239 #: ../../godmode/alerts/alert_list.php:346 ../../godmode/setup/news.php:137 #: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:89 @@ -3048,7 +3095,7 @@ msgstr "Supprimé correctement" #: ../../enterprise/godmode/modules/local_components.php:432 #: ../../enterprise/godmode/policies/policy_alerts.php:267 #: ../../enterprise/godmode/policies/policy_alerts.php:315 -#: ../../enterprise/godmode/policies/policy_modules.php:1329 +#: ../../enterprise/godmode/policies/policy_modules.php:1374 #: ../../enterprise/godmode/policies/policy_external_alerts.php:159 #: ../../enterprise/godmode/policies/policy_external_alerts.php:186 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:174 @@ -3065,18 +3112,18 @@ msgstr "Supprimé correctement" #: ../../enterprise/tools/ipam/ipam_action.php:100 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 #: ../../extensions/files_repo.php:206 -#: ../../godmode/modules/manage_network_components.php:563 -#: ../../godmode/users/configure_user.php:102 +#: ../../godmode/modules/manage_network_components.php:566 +#: ../../godmode/users/configure_user.php:872 #: ../../godmode/massive/massive_delete_action_alerts.php:171 #: ../../godmode/massive/massive_delete_alerts.php:202 #: ../../godmode/alerts/alert_actions.php:209 #: ../../godmode/alerts/alert_commands.php:699 -#: ../../godmode/alerts/alert_templates.php:258 +#: ../../godmode/alerts/alert_templates.php:262 #: ../../godmode/alerts/alert_list.php:240 #: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:138 #: ../../godmode/setup/gis.php:59 #: ../../godmode/reporting/reporting_builder.php:632 -#: ../../operation/agentes/pandora_networkmap.php:563 +#: ../../operation/agentes/pandora_networkmap.php:564 #: ../../operation/messages/message_list.php:110 #: ../../operation/gis_maps/gis_map.php:100 #: ../../operation/incidents/list_integriaims_incidents.php:306 @@ -3105,15 +3152,15 @@ msgstr "Favori" #: ../../views/dashboard/list.php:103 ../../operation/heatmap.php:90 #: ../../operation/agentes/networkmap.dinamic.php:115 -#: ../../operation/agentes/pandora_networkmap.view.php:2364 +#: ../../operation/agentes/pandora_networkmap.view.php:2365 #: ../../operation/snmpconsole/snmp_statistics.php:54 #: ../../operation/snmpconsole/snmp_browser.php:68 -#: ../../operation/events/events.php:1460 +#: ../../operation/events/events.php:1514 msgid "Full screen" msgstr "Plein écran" #: ../../views/dashboard/list.php:106 -#: ../../enterprise/godmode/policies/policy_modules.php:1796 +#: ../../enterprise/godmode/policies/policy_modules.php:1841 #: ../../enterprise/godmode/policies/policies.php:643 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:229 #: ../../godmode/agentes/planned_downtime.list.php:746 @@ -3121,8 +3168,8 @@ msgstr "Plein écran" #: ../../godmode/agentes/planned_downtime.list.php:925 #: ../../godmode/alerts/alert_actions.php:355 #: ../../godmode/reporting/map_builder.php:420 -#: ../../include/functions_filemanager.php:985 -#: ../../operation/agentes/pandora_networkmap.php:806 +#: ../../include/functions_filemanager.php:1007 +#: ../../operation/agentes/pandora_networkmap.php:807 msgid "Copy" msgstr "Copier" @@ -3148,8 +3195,8 @@ msgid "Please select widget" msgstr "Sélectionnez un widget" #: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76 -#: ../../include/class/SnmpConsole.class.php:1550 -#: ../../operation/events/events.php:3160 +#: ../../include/class/SnmpConsole.class.php:1552 +#: ../../operation/events/events.php:3219 msgid "Until next" msgstr "Jusqu'au suivant" @@ -3170,7 +3217,7 @@ msgstr "Favori" msgid "Configure widget" msgstr "Configurer le widget" -#: ../../views/dashboard/cell.php:68 +#: ../../views/dashboard/cell.php:69 msgid "Delete widget" msgstr "Supprimer le widget" @@ -3187,13 +3234,13 @@ msgstr "Changer chaque" #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 -#: ../../include/functions.php:3943 ../../include/functions_ui.php:2381 +#: ../../include/functions.php:3969 ../../include/functions_ui.php:2424 msgid "Previous" msgstr "Précédent" #: ../../views/dashboard/slides.php:218 #: ../../enterprise/meta/general/main_menu.php:287 ../../operation/menu.php:572 -#: ../../operation/events/events.php:1518 +#: ../../operation/events/events.php:1572 msgid "Stop" msgstr "Arrêter" @@ -3221,9 +3268,9 @@ msgstr "Pause" #: ../../godmode/alerts/configure_alert_template.php:1227 #: ../../godmode/alerts/configure_alert_template.php:1239 #: ../../godmode/wizards/HostDevices.class.php:779 -#: ../../include/functions_ui.php:2462 -#: ../../include/class/CustomNetScan.class.php:556 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1238 +#: ../../include/functions_ui.php:2505 +#: ../../include/class/CustomNetScan.class.php:555 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1239 msgid "Next" msgstr "Suivant" @@ -3263,7 +3310,7 @@ msgstr "" #: ../../enterprise/views/ncm/models/edit.php:37 #: ../../enterprise/views/ncm/vendors/list.php:32 #: ../../enterprise/views/ncm/vendors/edit.php:35 -#: ../../include/functions.php:1294 ../../include/functions_events.php:3178 +#: ../../include/functions.php:1294 ../../include/functions_events.php:3183 msgid "Network configuration manager" msgstr "Gestionnaire de configuration réseau" @@ -3336,7 +3383,7 @@ msgid "Device model" msgstr "Modèle d'appareil" #: ../../enterprise/views/ncm/agent/manage.php:102 -#: ../../godmode/agentes/module_manager_editor_network.php:502 +#: ../../godmode/agentes/module_manager_editor_network.php:507 msgid "Connection method" msgstr "Méthode de connexion" @@ -3358,11 +3405,11 @@ msgstr "Connecter utilisant telnet" #: ../../enterprise/include/class/Aws.S3.php:580 #: ../../enterprise/include/class/Aws.cloud.php:544 #: ../../extensions/quick_shell.php:183 -#: ../../godmode/modules/manage_network_components_form_network.php:53 -#: ../../godmode/agentes/module_manager_editor_network.php:83 +#: ../../godmode/modules/manage_network_components_form_network.php:83 +#: ../../godmode/agentes/module_manager_editor_network.php:84 #: ../../godmode/massive/massive_edit_modules.php:1160 #: ../../godmode/servers/modificar_server.php:117 -#: ../../include/functions_config.php:1651 +#: ../../include/functions_config.php:1663 #: ../../include/class/AgentWizard.class.php:648 #: ../../include/functions_snmp_browser.php:724 msgid "Port" @@ -3413,7 +3460,7 @@ msgstr "État NCM" #: ../../extensions/insert_data.php:256 ../../godmode/setup/gis_step_2.php:542 #: ../../godmode/setup/snmp_wizard.php:100 #: ../../godmode/reporting/visual_console_builder.data.php:310 -#: ../../include/ajax/module.php:2211 ../../operation/agentes/graphs.php:377 +#: ../../include/ajax/module.php:2240 ../../operation/agentes/graphs.php:377 msgid "Save" msgstr "Sauvegarder" @@ -3441,10 +3488,10 @@ msgstr "Type de script" #: ../../enterprise/views/ncm/agent/details.php:90 #: ../../enterprise/include/class/CommandCenter.class.php:470 #: ../../extensions/api_checker.php:363 ../../extensions/api_checker.php:371 -#: ../../include/functions_reporting_html.php:4310 -#: ../../include/functions_reporting_html.php:4457 -#: ../../include/functions_reporting_html.php:4800 -#: ../../include/functions_reporting_html.php:4811 +#: ../../include/functions_reporting_html.php:4338 +#: ../../include/functions_reporting_html.php:4485 +#: ../../include/functions_reporting_html.php:4828 +#: ../../include/functions_reporting_html.php:4839 #: ../../include/functions_db.php:1959 msgid "Result" msgstr "Résultat" @@ -3507,9 +3554,9 @@ msgstr "Exécuter skipper" #: ../../enterprise/meta/include/functions_wizard_meta.php:1632 #: ../../enterprise/meta/include/functions_wizard_meta.php:1757 #: ../../enterprise/meta/include/functions_wizard_meta.php:1832 -#: ../../godmode/setup/setup_visuals.php:1549 -#: ../../include/class/TipsWindow.class.php:777 -#: ../../include/class/TipsWindow.class.php:944 +#: ../../godmode/setup/setup_visuals.php:1564 +#: ../../include/class/TipsWindow.class.php:797 +#: ../../include/class/TipsWindow.class.php:964 msgid "Preview" msgstr "Aperçu" @@ -3538,7 +3585,7 @@ msgstr "Aperçu" #: ../../enterprise/operation/services/services.list.php:208 #: ../../enterprise/operation/services/services.list.php:609 #: ../../enterprise/operation/services/services.table_services.php:144 -#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1104 +#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1116 #: ../../godmode/massive/massive_copy_modules.php:118 #: ../../godmode/massive/massive_copy_modules.php:278 #: ../../godmode/massive/massive_delete_modules.php:421 @@ -3546,42 +3593,42 @@ msgstr "Aperçu" #: ../../godmode/massive/massive_edit_modules.php:388 #: ../../godmode/massive/massive_edit_modules.php:474 #: ../../godmode/alerts/alert_list.builder.php:326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3833 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3842 #: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72 -#: ../../include/graphs/functions_flot.php:310 -#: ../../include/functions_reporting_html.php:2563 -#: ../../include/functions_reporting_html.php:2576 -#: ../../include/functions_reporting_html.php:3563 -#: ../../include/functions_reporting_html.php:3966 -#: ../../include/functions.php:1281 ../../include/functions.php:4181 -#: ../../include/ajax/module.php:1057 ../../include/ajax/module.php:1946 +#: ../../include/graphs/functions_flot.php:311 +#: ../../include/functions_reporting_html.php:2584 +#: ../../include/functions_reporting_html.php:2597 +#: ../../include/functions_reporting_html.php:3591 +#: ../../include/functions_reporting_html.php:3994 +#: ../../include/functions.php:1281 ../../include/functions.php:4207 +#: ../../include/ajax/module.php:1080 ../../include/ajax/module.php:1974 #: ../../include/functions_ui.php:606 ../../include/functions_ui.php:607 #: ../../include/functions_visual_map.php:2457 #: ../../include/functions_visual_map.php:2485 #: ../../include/functions_visual_map.php:2503 #: ../../include/functions_visual_map.php:2521 #: ../../include/functions_alerts.php:702 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:439 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:585 #: ../../include/functions_reports.php:569 ../../include/functions_maps.php:54 #: ../../include/functions_massive_operations.php:149 #: ../../include/functions_netflow.php:1884 -#: ../../include/functions_reporting.php:6772 -#: ../../include/functions_filemanager.php:708 +#: ../../include/functions_reporting.php:6781 +#: ../../include/functions_filemanager.php:723 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:256 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:401 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:435 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:719 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:404 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:439 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:712 #: ../../include/lib/ClusterViewer/ClusterManager.php:582 -#: ../../include/functions_events.php:3126 ../../operation/tree.php:211 -#: ../../operation/tree.php:301 ../../operation/tree.php:523 +#: ../../include/functions_events.php:3131 ../../operation/tree.php:211 +#: ../../operation/tree.php:302 ../../operation/tree.php:525 #: ../../operation/agentes/estado_agente.php:276 -#: ../../operation/agentes/status_monitor.php:567 -#: ../../operation/agentes/group_view.php:242 -#: ../../operation/agentes/group_view.php:247 -#: ../../operation/agentes/estado_monitores.php:521 -#: ../../operation/agentes/pandora_networkmap.view.php:1804 -#: ../../operation/agentes/tactical.php:200 ../../operation/events/events.php:815 -#: ../../general/logon_ok.php:151 +#: ../../operation/agentes/status_monitor.php:566 +#: ../../operation/agentes/group_view.php:245 +#: ../../operation/agentes/group_view.php:250 +#: ../../operation/agentes/estado_monitores.php:518 +#: ../../operation/agentes/pandora_networkmap.view.php:1805 +#: ../../operation/agentes/tactical.php:200 ../../operation/events/events.php:820 +#: ../../general/logon_ok.php:160 msgid "Unknown" msgstr "Inconnu" @@ -3666,31 +3713,32 @@ msgstr "Différences" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1208 #: ../../enterprise/tools/ipam/ipam_ajax.php:535 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:807 -#: ../../godmode/groups/group_list.php:887 ../../godmode/users/user_list.php:583 +#: ../../godmode/groups/group_list.php:888 ../../godmode/users/user_list.php:584 #: ../../godmode/agentes/inventory_manager.php:237 -#: ../../godmode/agentes/modificar_agente.php:700 +#: ../../godmode/agentes/modificar_agente.php:710 #: ../../godmode/agentes/planned_downtime.editor.php:1369 -#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:279 +#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:277 #: ../../godmode/alerts/alert_list.list.php:136 #: ../../godmode/alerts/alert_list.list.php:571 #: ../../godmode/alerts/alert_commands.php:753 #: ../../godmode/alerts/alert_view.php:307 #: ../../godmode/alerts/alert_list.builder.php:112 +#: ../../godmode/setup/os.list.php:69 #: ../../godmode/reporting/reporting_builder.item_editor.php:2092 -#: ../../godmode/events/event_responses.list.php:69 ../../godmode/tag/tag.php:309 +#: ../../godmode/events/event_responses.list.php:69 ../../godmode/tag/tag.php:310 #: ../../godmode/category/category.php:161 -#: ../../include/functions_reporting_html.php:3450 -#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1008 -#: ../../include/functions_treeview.php:400 +#: ../../include/functions_reporting_html.php:3478 +#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1031 +#: ../../include/functions_treeview.php:404 #: ../../include/class/SatelliteAgent.class.php:148 #: ../../include/class/AgentsAlerts.class.php:254 #: ../../include/class/AgentsAlerts.class.php:332 #: ../../include/class/SnmpConsole.class.php:281 #: ../../include/class/SatelliteCollection.class.php:135 -#: ../../include/functions_reporting.php:3233 -#: ../../include/functions_filemanager.php:647 -#: ../../operation/agentes/pandora_networkmap.php:721 -#: ../../operation/agentes/status_monitor.php:1605 +#: ../../include/functions_reporting.php:3242 +#: ../../include/functions_filemanager.php:662 +#: ../../operation/agentes/pandora_networkmap.php:722 +#: ../../operation/agentes/status_monitor.php:1607 msgid "Actions" msgstr "Actions" @@ -3744,9 +3792,9 @@ msgstr "Différence entre : sauvegarde - sélectionné" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1390 #: ../../enterprise/include/class/AgentRepository.class.php:692 #: ../../godmode/modules/manage_inventory_modules.php:54 -#: ../../godmode/modules/manage_network_components.php:298 +#: ../../godmode/modules/manage_network_components.php:299 #: ../../godmode/modules/manage_inventory_modules_form.php:45 -#: ../../godmode/agentes/planned_downtime.list.php:738 ../../godmode/menu.php:255 +#: ../../godmode/agentes/planned_downtime.list.php:738 ../../godmode/menu.php:254 #: ../../godmode/massive/massive_operations.php:332 #: ../../godmode/massive/massive_operations.php:354 #: ../../godmode/events/events.php:138 ../../include/functions_reports.php:917 @@ -3754,6 +3802,7 @@ msgstr "Différence entre : sauvegarde - sélectionné" #: ../../include/class/ConfigPEN.class.php:329 #: ../../include/class/ModuleTemplates.class.php:195 #: ../../include/class/ModuleTemplates.class.php:213 +#: ../../include/class/AgentDeployWizard.class.php:727 msgid "Configuration" msgstr "Configuration" @@ -3822,11 +3871,11 @@ msgid "Customize script execution" msgstr "Personnaliser l’exécution des scripts" #: ../../enterprise/views/ncm/agent/details.php:690 -#: ../../include/ajax/events.php:2199 +#: ../../include/ajax/events.php:2200 #: ../../include/class/ExternalTools.class.php:646 #: ../../include/functions_snmp_browser.php:974 -#: ../../include/functions_snmp_browser.php:1134 -#: ../../include/functions_events.php:3710 +#: ../../include/functions_snmp_browser.php:1142 +#: ../../include/functions_events.php:3715 msgid "Execute" msgstr "Exécuter" @@ -3841,13 +3890,13 @@ msgstr "Exécuter" #: ../../enterprise/godmode/reporting/visual_console_template.php:123 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2137 #: ../../enterprise/include/functions_reporting.php:146 -#: ../../enterprise/include/functions_reporting.php:8001 -#: ../../enterprise/include/functions_reporting.php:8029 -#: ../../enterprise/include/functions_reporting.php:8100 -#: ../../godmode/modules/manage_network_components.php:302 -#: ../../godmode/menu.php:172 ../../godmode/menu.php:275 +#: ../../enterprise/include/functions_reporting.php:8010 +#: ../../enterprise/include/functions_reporting.php:8038 +#: ../../enterprise/include/functions_reporting.php:8109 +#: ../../godmode/modules/manage_network_components.php:303 +#: ../../godmode/menu.php:172 ../../godmode/menu.php:273 #: ../../godmode/reporting/reporting_builder.item_editor.php:2027 -#: ../../include/functions_menu.php:585 +#: ../../include/functions_menu.php:587 #: ../../include/class/ConfigPEN.class.php:334 #: ../../include/class/ModuleTemplates.class.php:196 #: ../../include/class/ModuleTemplates.class.php:214 @@ -4009,7 +4058,7 @@ msgstr "Configurez les agents pour l'utilisation de modèles NCM" #: ../../enterprise/tools/ipam/ipam_excel.php:139 #: ../../enterprise/tools/ipam/ipam_ajax.php:362 #: ../../enterprise/tools/ipam/ipam_calculator.php:69 -#: ../../godmode/setup/setup_general.php:878 +#: ../../godmode/setup/setup_general.php:904 #: ../../operation/agentes/ver_agente.php:1199 msgid "Address" msgstr "Adresse" @@ -4033,14 +4082,14 @@ msgstr "Dernière tâche en file d’attente" #: ../../enterprise/operation/services/services.service.php:124 #: ../../enterprise/operation/services/services.list.php:548 #: ../../enterprise/tools/ipam/ipam_list.php:738 -#: ../../extensions/agents_modules.php:317 +#: ../../extensions/agents_modules.php:325 #: ../../operation/agentes/group_view.php:80 #: ../../operation/agentes/tactical.php:63 msgid "Last update" msgstr "Dernière mise à jour" #: ../../enterprise/views/ncm/devices/list.php:123 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:157 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:154 #: ../../enterprise/godmode/policies/policy_alerts.php:368 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:243 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:488 @@ -4048,7 +4097,7 @@ msgstr "Dernière mise à jour" #: ../../godmode/massive/massive_copy_modules.php:185 #: ../../godmode/alerts/alert_list.list.php:572 #: ../../godmode/wizards/DiscoveryTaskList.class.php:617 -#: ../../godmode/servers/plugin.php:996 +#: ../../godmode/servers/plugin.php:988 #: ../../operation/agentes/alerts_status.php:234 #: ../../operation/agentes/alerts_status.php:235 msgid "Operations" @@ -4100,7 +4149,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:1587 #: ../../enterprise/meta/include/functions_wizard_meta.php:1707 #: ../../enterprise/meta/include/functions_wizard_meta.php:1727 -#: ../../enterprise/meta/index.php:947 ../../enterprise/meta/index.php:1016 +#: ../../enterprise/meta/index.php:948 ../../enterprise/meta/index.php:1017 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:328 #: ../../enterprise/godmode/agentes/manage_config_remote.php:344 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120 @@ -4126,51 +4175,51 @@ msgstr "" #: ../../update_manager_client/views/offline.php:80 #: ../../extensions/dbmanager.php:124 #: ../../godmode/modules/manage_network_components_form_wizard.php:384 -#: ../../godmode/groups/group_list.php:1099 -#: ../../godmode/users/configure_user.php:1013 -#: ../../godmode/users/configure_user.php:1974 +#: ../../godmode/groups/group_list.php:1111 +#: ../../godmode/users/configure_user.php:1061 +#: ../../godmode/users/configure_user.php:2026 #: ../../godmode/massive/massive_copy_modules.php:116 #: ../../godmode/massive/massive_copy_modules.php:276 #: ../../godmode/massive/massive_delete_modules.php:419 #: ../../godmode/massive/massive_delete_modules.php:440 -#: ../../godmode/massive/massive_edit_agents.php:1061 +#: ../../godmode/massive/massive_edit_agents.php:1078 #: ../../godmode/massive/massive_edit_modules.php:386 #: ../../godmode/massive/massive_edit_modules.php:472 #: ../../godmode/setup/setup_sflow.php:84 -#: ../../godmode/setup/setup_netflow.php:84 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3831 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3840 #: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70 -#: ../../include/functions_reporting_html.php:2575 +#: ../../include/functions_reporting_html.php:2596 #: ../../include/functions.php:1091 ../../include/functions.php:1329 #: ../../include/functions.php:1332 ../../include/functions.php:1371 -#: ../../include/ajax/module.php:1942 ../../include/functions_graph.php:3341 -#: ../../include/functions_graph.php:3343 ../../include/functions_graph.php:4846 -#: ../../include/functions_ui.php:314 ../../include/functions_ui.php:2869 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:425 +#: ../../include/ajax/module.php:1970 ../../include/functions_graph.php:3351 +#: ../../include/functions_graph.php:3353 ../../include/functions_graph.php:4856 +#: ../../include/functions_ui.php:314 ../../include/functions_ui.php:2912 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:571 #: ../../include/functions_massive_operations.php:147 #: ../../include/class/SatelliteAgent.class.php:1337 #: ../../include/class/SatelliteAgent.class.php:1362 -#: ../../include/class/Diagnostics.class.php:1837 +#: ../../include/class/Diagnostics.class.php:1841 #: ../../include/class/AgentWizard.class.php:1401 #: ../../include/class/AgentWizard.class.php:4147 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:316 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:255 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:562 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:399 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:433 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:714 -#: ../../include/functions_events.php:3222 ../../index.php:1243 -#: ../../operation/tree.php:209 ../../operation/tree.php:299 -#: ../../operation/tree.php:518 ../../operation/users/user_edit.php:305 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:402 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:437 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:707 +#: ../../include/functions_events.php:3227 ../../index.php:1244 +#: ../../operation/tree.php:209 ../../operation/tree.php:300 +#: ../../operation/tree.php:520 ../../operation/users/user_edit.php:305 #: ../../operation/agentes/estado_agente.php:274 -#: ../../operation/agentes/status_monitor.php:565 -#: ../../operation/agentes/group_view.php:245 -#: ../../operation/agentes/group_view.php:250 -#: ../../operation/agentes/estado_monitores.php:520 +#: ../../operation/agentes/status_monitor.php:564 +#: ../../operation/agentes/group_view.php:248 +#: ../../operation/agentes/group_view.php:253 +#: ../../operation/agentes/estado_monitores.php:517 #: ../../operation/agentes/tactical.php:198 -#: ../../operation/netflow/nf_live_view.php:339 -#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:149 +#: ../../operation/netflow/nf_live_view.php:348 +#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:158 msgid "Warning" msgstr "Attention" @@ -4189,15 +4238,15 @@ msgstr "icône" #: ../../enterprise/views/ipam/sites/list.php:48 #: ../../enterprise/views/ipam/sites/edit.php:54 #: ../../godmode/modules/manage_nc_groups_form.php:73 -#: ../../godmode/groups/configure_group.php:206 -#: ../../godmode/groups/group_list.php:882 -#: ../../godmode/agentes/agent_manager.php:645 -#: ../../godmode/massive/massive_edit_agents.php:655 +#: ../../godmode/groups/configure_group.php:225 +#: ../../godmode/groups/group_list.php:883 +#: ../../godmode/agentes/agent_manager.php:649 +#: ../../godmode/massive/massive_edit_agents.php:672 #: ../../godmode/reporting/visual_console_builder.elements.php:124 -#: ../../include/functions_visual_map_editor.php:954 -#: ../../include/rest-api/models/VisualConsole/Item.php:2176 +#: ../../include/functions_visual_map_editor.php:1002 +#: ../../include/rest-api/models/VisualConsole/Item.php:2179 #: ../../operation/agentes/ver_agente.php:1236 -#: ../../operation/agentes/estado_generalagente.php:511 +#: ../../operation/agentes/estado_generalagente.php:482 msgid "Parent" msgstr "Parent" @@ -4223,9 +4272,9 @@ msgstr "Parent" #: ../../enterprise/godmode/modules/configure_local_component.php:727 #: ../../enterprise/godmode/modules/configure_local_component.php:733 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1074 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:501 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:632 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:728 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:499 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:630 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:726 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:152 #: ../../enterprise/godmode/policies/policy_external_alerts.php:637 #: ../../enterprise/godmode/policies/policy_agents.php:391 @@ -4246,12 +4295,12 @@ msgstr "Parent" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:250 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:270 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:121 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:162 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:123 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:144 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:164 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 @@ -4344,8 +4393,8 @@ msgstr "Parent" #: ../../enterprise/include/class/Omnishell.class.php:1062 #: ../../enterprise/include/class/Omnishell.class.php:1063 #: ../../enterprise/include/class/SAP.app.php:604 -#: ../../enterprise/include/class/SAP.app.php:818 #: ../../enterprise/include/class/SAP.app.php:819 +#: ../../enterprise/include/class/SAP.app.php:820 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:922 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:949 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1059 @@ -4356,7 +4405,7 @@ msgstr "Parent" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2590 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3594 #: ../../enterprise/operation/agentes/ver_agente.php:56 -#: ../../enterprise/operation/log/log_viewer.php:881 +#: ../../enterprise/operation/log/log_viewer.php:879 #: ../../enterprise/tools/ipam/ipam_network.php:622 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:565 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:748 @@ -4369,40 +4418,40 @@ msgstr "Parent" #: ../../godmode/modules/manage_nc_groups_form.php:80 #: ../../godmode/modules/manage_network_components_form_plugin.php:41 #: ../../godmode/modules/manage_network_components_form_common.php:354 -#: ../../godmode/modules/manage_network_components_form_network.php:248 -#: ../../godmode/modules/manage_network_components_form.php:669 -#: ../../godmode/modules/manage_network_components_form.php:675 -#: ../../godmode/modules/manage_network_components_form.php:684 -#: ../../godmode/modules/manage_network_components_form.php:690 -#: ../../godmode/groups/configure_group.php:170 -#: ../../godmode/groups/configure_group.php:192 -#: ../../godmode/users/configure_user.php:1270 -#: ../../godmode/users/configure_user.php:1286 -#: ../../godmode/users/configure_user.php:1437 -#: ../../godmode/users/configure_user.php:1449 -#: ../../godmode/users/configure_user.php:1573 -#: ../../godmode/users/configure_user.php:1588 -#: ../../godmode/users/configure_user.php:1750 -#: ../../godmode/users/configure_user.php:1758 -#: ../../godmode/users/configure_user.php:1767 -#: ../../godmode/users/configure_user.php:1774 -#: ../../godmode/users/user_management.php:577 -#: ../../godmode/users/user_management.php:600 -#: ../../godmode/agentes/status_monitor_custom_fields.php:230 -#: ../../godmode/agentes/status_monitor_custom_fields.php:278 +#: ../../godmode/modules/manage_network_components_form_network.php:266 +#: ../../godmode/modules/manage_network_components_form.php:672 +#: ../../godmode/modules/manage_network_components_form.php:678 +#: ../../godmode/modules/manage_network_components_form.php:687 +#: ../../godmode/modules/manage_network_components_form.php:693 +#: ../../godmode/groups/configure_group.php:189 +#: ../../godmode/groups/configure_group.php:211 +#: ../../godmode/users/configure_user.php:1334 +#: ../../godmode/users/configure_user.php:1350 +#: ../../godmode/users/configure_user.php:1486 +#: ../../godmode/users/configure_user.php:1502 +#: ../../godmode/users/configure_user.php:1627 +#: ../../godmode/users/configure_user.php:1642 +#: ../../godmode/users/configure_user.php:1802 +#: ../../godmode/users/configure_user.php:1810 +#: ../../godmode/users/configure_user.php:1819 +#: ../../godmode/users/configure_user.php:1826 +#: ../../godmode/users/user_management.php:583 +#: ../../godmode/users/user_management.php:610 +#: ../../godmode/agentes/status_monitor_custom_fields.php:250 +#: ../../godmode/agentes/status_monitor_custom_fields.php:298 #: ../../godmode/agentes/module_manager_editor_plugin.php:55 -#: ../../godmode/agentes/module_manager_editor_network.php:181 -#: ../../godmode/agentes/module_manager_editor_network.php:514 +#: ../../godmode/agentes/module_manager_editor_network.php:182 +#: ../../godmode/agentes/module_manager_editor_network.php:519 #: ../../godmode/agentes/agent_manager.php:558 -#: ../../godmode/agentes/agent_manager.php:750 -#: ../../godmode/agentes/agent_manager.php:1008 -#: ../../godmode/agentes/module_manager_editor_common.php:766 -#: ../../godmode/agentes/module_manager_editor_common.php:1125 -#: ../../godmode/agentes/module_manager_editor_common.php:1360 -#: ../../godmode/agentes/module_manager_editor_common.php:1654 -#: ../../godmode/agentes/module_manager_editor_common.php:1661 -#: ../../godmode/agentes/module_manager_editor_common.php:1672 -#: ../../godmode/agentes/module_manager_editor_common.php:1680 +#: ../../godmode/agentes/agent_manager.php:754 +#: ../../godmode/agentes/agent_manager.php:1014 +#: ../../godmode/agentes/module_manager_editor_common.php:776 +#: ../../godmode/agentes/module_manager_editor_common.php:1135 +#: ../../godmode/agentes/module_manager_editor_common.php:1370 +#: ../../godmode/agentes/module_manager_editor_common.php:1664 +#: ../../godmode/agentes/module_manager_editor_common.php:1671 +#: ../../godmode/agentes/module_manager_editor_common.php:1682 +#: ../../godmode/agentes/module_manager_editor_common.php:1690 #: ../../godmode/snmpconsole/snmp_alert.php:40 #: ../../godmode/snmpconsole/snmp_alert.php:1781 #: ../../godmode/massive/massive_copy_modules.php:374 @@ -4419,13 +4468,13 @@ msgstr "Parent" #: ../../godmode/massive/massive_delete_modules.php:835 #: ../../godmode/massive/massive_edit_users.php:338 #: ../../godmode/massive/massive_edit_users.php:399 -#: ../../godmode/massive/massive_edit_users.php:609 -#: ../../godmode/massive/massive_edit_users.php:617 -#: ../../godmode/massive/massive_edit_users.php:628 -#: ../../godmode/massive/massive_edit_users.php:636 +#: ../../godmode/massive/massive_edit_users.php:610 +#: ../../godmode/massive/massive_edit_users.php:618 +#: ../../godmode/massive/massive_edit_users.php:629 +#: ../../godmode/massive/massive_edit_users.php:637 #: ../../godmode/massive/massive_add_alerts.php:304 #: ../../godmode/massive/massive_edit_plugins.php:338 -#: ../../godmode/massive/massive_edit_agents.php:754 +#: ../../godmode/massive/massive_edit_agents.php:771 #: ../../godmode/massive/massive_delete_alerts.php:366 #: ../../godmode/massive/massive_add_action_alerts.php:342 #: ../../godmode/massive/massive_edit_modules.php:458 @@ -4452,23 +4501,23 @@ msgstr "Parent" #: ../../godmode/alerts/configure_alert_template.php:730 #: ../../godmode/alerts/configure_alert_template.php:824 #: ../../godmode/setup/os.builder.php:51 -#: ../../godmode/setup/setup_visuals.php:611 -#: ../../godmode/setup/setup_visuals.php:651 -#: ../../godmode/setup/setup_visuals.php:1084 -#: ../../godmode/setup/setup_general.php:1051 -#: ../../godmode/setup/setup_general.php:1068 +#: ../../godmode/setup/setup_visuals.php:615 +#: ../../godmode/setup/setup_visuals.php:655 +#: ../../godmode/setup/setup_visuals.php:1088 #: ../../godmode/setup/setup_general.php:1077 #: ../../godmode/setup/setup_general.php:1094 +#: ../../godmode/setup/setup_general.php:1103 +#: ../../godmode/setup/setup_general.php:1120 #: ../../godmode/reporting/create_container.php:572 -#: ../../godmode/reporting/graph_builder.graph_editor.php:373 -#: ../../godmode/reporting/reporting_builder.item_editor.php:209 -#: ../../godmode/reporting/reporting_builder.item_editor.php:991 +#: ../../godmode/reporting/graph_builder.graph_editor.php:296 +#: ../../godmode/reporting/reporting_builder.item_editor.php:210 +#: ../../godmode/reporting/reporting_builder.item_editor.php:993 #: ../../godmode/reporting/reporting_builder.item_editor.php:2175 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2248 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2269 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2301 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3232 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3393 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2257 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2278 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2310 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3241 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3402 #: ../../godmode/reporting/visual_console_builder.elements.php:525 #: ../../godmode/reporting/visual_console_builder.elements.php:676 #: ../../godmode/reporting/visual_console_builder.elements.php:686 @@ -4482,25 +4531,25 @@ msgstr "Parent" #: ../../godmode/reporting/visual_console_builder.wizard.php:783 #: ../../godmode/reporting/visual_console_builder.wizard.php:793 #: ../../godmode/reporting/visual_console_builder.wizard.php:825 -#: ../../godmode/events/event_edit_filter.php:977 +#: ../../godmode/events/event_edit_filter.php:979 #: ../../godmode/events/custom_events.php:210 #: ../../godmode/events/custom_events.php:258 -#: ../../godmode/wizards/HostDevices.class.php:1119 -#: ../../mobile/operation/events.php:930 -#: ../../include/functions_visual_map_editor.php:404 -#: ../../include/functions_visual_map_editor.php:406 -#: ../../include/functions_visual_map_editor.php:622 -#: ../../include/functions_visual_map_editor.php:955 -#: ../../include/functions_visual_map_editor.php:1008 -#: ../../include/functions_visual_map_editor.php:1070 +#: ../../godmode/wizards/HostDevices.class.php:1115 +#: ../../mobile/operation/events.php:974 +#: ../../include/functions_visual_map_editor.php:398 +#: ../../include/functions_visual_map_editor.php:400 +#: ../../include/functions_visual_map_editor.php:616 +#: ../../include/functions_visual_map_editor.php:1003 +#: ../../include/functions_visual_map_editor.php:1056 +#: ../../include/functions_visual_map_editor.php:1122 #: ../../include/functions.php:1129 ../../include/functions_cron.php:680 #: ../../include/functions_networkmap.php:1524 #: ../../include/ajax/audit_log.php:156 #: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../include/ajax/module.php:2155 ../../include/ajax/module.php:2614 +#: ../../include/ajax/module.php:2184 ../../include/ajax/module.php:2643 #: ../../include/ajax/agent.php:500 ../../include/ajax/agent.php:838 #: ../../include/ajax/agent.php:921 ../../include/ajax/agent.php:987 -#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:589 +#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:590 #: ../../include/functions_integriaims.php:135 #: ../../include/functions_profile.php:349 #: ../../include/functions_profile.php:367 @@ -4510,24 +4559,24 @@ msgstr "Parent" #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:622 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:634 -#: ../../include/rest-api/models/VisualConsole/Item.php:2088 -#: ../../include/rest-api/models/VisualConsole/Item.php:2207 -#: ../../include/rest-api/models/VisualConsole/Item.php:2325 -#: ../../include/rest-api/models/VisualConsole/Item.php:2447 +#: ../../include/rest-api/models/VisualConsole/Item.php:2091 +#: ../../include/rest-api/models/VisualConsole/Item.php:2210 +#: ../../include/rest-api/models/VisualConsole/Item.php:2328 +#: ../../include/rest-api/models/VisualConsole/Item.php:2450 #: ../../include/functions_html.php:397 ../../include/functions_html.php:848 -#: ../../include/functions_html.php:1271 ../../include/functions_html.php:1323 -#: ../../include/functions_html.php:1370 ../../include/functions_html.php:1371 -#: ../../include/functions_html.php:1422 ../../include/functions_html.php:1472 -#: ../../include/functions_html.php:6508 -#: ../../include/class/NetworkMap.class.php:2934 -#: ../../include/class/NetworkMap.class.php:3203 -#: ../../include/class/NetworkMap.class.php:3226 -#: ../../include/class/NetworkMap.class.php:3299 -#: ../../include/class/NetworkMap.class.php:3309 -#: ../../include/class/NetworkMap.class.php:3420 -#: ../../include/class/NetworkMap.class.php:3441 +#: ../../include/functions_html.php:1276 ../../include/functions_html.php:1328 +#: ../../include/functions_html.php:1375 ../../include/functions_html.php:1376 +#: ../../include/functions_html.php:1427 ../../include/functions_html.php:1477 +#: ../../include/functions_html.php:6536 +#: ../../include/class/NetworkMap.class.php:2940 +#: ../../include/class/NetworkMap.class.php:3209 +#: ../../include/class/NetworkMap.class.php:3232 +#: ../../include/class/NetworkMap.class.php:3305 +#: ../../include/class/NetworkMap.class.php:3315 +#: ../../include/class/NetworkMap.class.php:3426 +#: ../../include/class/NetworkMap.class.php:3447 #: ../../include/class/SnmpConsole.class.php:314 -#: ../../include/class/SnmpConsole.class.php:1375 +#: ../../include/class/SnmpConsole.class.php:1377 #: ../../include/class/AgentWizard.class.php:729 #: ../../include/class/AgentWizard.class.php:785 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:369 @@ -4539,6 +4588,8 @@ msgstr "Parent" #: ../../include/lib/Dashboard/Widgets/network_map.php:365 #: ../../include/lib/Dashboard/Widgets/events_list.php:312 #: ../../include/lib/Dashboard/Widgets/events_list.php:470 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:401 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:413 #: ../../include/lib/Dashboard/Widgets/module_icon.php:388 #: ../../include/lib/Dashboard/Widgets/module_value.php:363 #: ../../include/lib/Dashboard/Widgets/module_table_value.php:336 @@ -4554,29 +4605,28 @@ msgstr "Parent" #: ../../include/lib/Dashboard/Widgets/single_graph.php:352 #: ../../include/lib/Dashboard/Widgets/reports.php:552 #: ../../include/lib/Dashboard/Widgets/top_n.php:241 -#: ../../include/functions_events.php:3501 -#: ../../operation/users/user_edit.php:520 -#: ../../operation/users/user_edit.php:532 -#: ../../operation/users/user_edit.php:581 -#: ../../operation/users/user_edit.php:616 -#: ../../operation/users/user_edit.php:631 -#: ../../operation/users/user_edit.php:1081 -#: ../../operation/users/user_edit.php:1088 -#: ../../operation/users/user_edit.php:1097 -#: ../../operation/users/user_edit.php:1104 +#: ../../include/functions_events.php:3506 +#: ../../operation/users/user_edit.php:525 +#: ../../operation/users/user_edit.php:578 +#: ../../operation/users/user_edit.php:613 +#: ../../operation/users/user_edit.php:628 +#: ../../operation/users/user_edit.php:1078 +#: ../../operation/users/user_edit.php:1085 +#: ../../operation/users/user_edit.php:1094 +#: ../../operation/users/user_edit.php:1101 #: ../../operation/agentes/pandora_networkmap.editor.php:488 #: ../../operation/agentes/pandora_networkmap.view.php:227 #: ../../operation/agentes/ver_agente.php:1182 #: ../../operation/agentes/ver_agente.php:1238 #: ../../operation/agentes/ver_agente.php:1253 -#: ../../operation/snmpconsole/snmp_browser.php:383 -#: ../../operation/snmpconsole/snmp_browser.php:398 -#: ../../operation/snmpconsole/snmp_browser.php:408 -#: ../../operation/snmpconsole/snmp_browser.php:527 +#: ../../operation/snmpconsole/snmp_browser.php:388 +#: ../../operation/snmpconsole/snmp_browser.php:403 +#: ../../operation/snmpconsole/snmp_browser.php:413 +#: ../../operation/snmpconsole/snmp_browser.php:532 #: ../../operation/gis_maps/render_view.php:164 #: ../../operation/incidents/list_integriaims_incidents.php:601 #: ../../operation/incidents/list_integriaims_incidents.php:605 -#: ../../operation/events/events.php:2647 +#: ../../operation/events/events.php:2701 msgid "None" msgstr "Aucun" @@ -4584,12 +4634,21 @@ msgstr "Aucun" msgid "Create visualmap" msgstr "Créer une carte visuelle" -#: ../../enterprise/meta/advanced/servers.build_table.php:34 +#: ../../enterprise/meta/advanced/servers.build_table.php:33 +#: ../../godmode/servers/modificar_server.php:63 +#: ../../godmode/servers/modificar_server.php:223 +#: ../../godmode/servers/modificar_server.php:242 +#: ../../godmode/servers/modificar_server.php:284 +#, php-format +msgid "%s servers" +msgstr "Serveurs %s" + +#: ../../enterprise/meta/advanced/servers.build_table.php:50 #: ../../godmode/servers/servers.build_table.php:52 msgid "There are no servers configured into the database" msgstr "Aucun serveur configuré dans la base de données" -#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../enterprise/meta/advanced/servers.build_table.php:81 #: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:63 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:379 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:647 @@ -4600,7 +4659,7 @@ msgstr "Aucun serveur configuré dans la base de données" #: ../../enterprise/meta/include/functions_wizard_meta.php:406 #: ../../enterprise/meta/include/functions_wizard_meta.php:1821 #: ../../enterprise/meta/agentsearch.php:138 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:132 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135 #: ../../enterprise/godmode/policies/policy_modules.php:459 #: ../../enterprise/godmode/policies/policy_modules.php:472 #: ../../enterprise/godmode/policies/policies.php:581 @@ -4616,10 +4675,10 @@ msgstr "Aucun serveur configuré dans la base de données" #: ../../enterprise/operation/services/massive/services.create.php:986 #: ../../enterprise/operation/services/massive/service.create.elements.php:380 #: ../../enterprise/operation/services/services.service_map.php:153 -#: ../../extensions/agents_modules.php:841 +#: ../../extensions/agents_modules.php:865 #: ../../godmode/agentes/configurar_agente.php:423 #: ../../godmode/agentes/configurar_agente.php:735 -#: ../../godmode/agentes/modificar_agente.php:820 +#: ../../godmode/agentes/modificar_agente.php:832 #: ../../godmode/agentes/planned_downtime.list.php:85 #: ../../godmode/agentes/planned_downtime.list.php:116 #: ../../godmode/agentes/planned_downtime.editor.php:1360 @@ -4632,12 +4691,12 @@ msgstr "Aucun serveur configuré dans la base de données" #: ../../godmode/reporting/reporting_builder.item_editor.php:1946 #: ../../godmode/reporting/reporting_builder.item_editor.php:2167 #: ../../godmode/reporting/visual_console_builder.wizard.php:447 -#: ../../godmode/servers/servers.build_table.php:81 -#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:409 +#: ../../godmode/servers/servers.build_table.php:83 +#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:410 #: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88 -#: ../../mobile/operation/agent.php:327 -#: ../../include/functions_reporting_html.php:2094 -#: ../../include/functions_reporting_html.php:5662 +#: ../../mobile/operation/agent.php:330 +#: ../../include/functions_reporting_html.php:2115 +#: ../../include/functions_reporting_html.php:5690 #: ../../include/functions_reports.php:745 #: ../../include/functions_reports.php:749 #: ../../include/functions_reports.php:753 @@ -4646,53 +4705,53 @@ msgstr "Aucun serveur configuré dans la base de données" #: ../../include/functions_reports.php:765 #: ../../include/functions_reports.php:769 #: ../../include/functions_reports.php:773 -#: ../../include/functions_reports.php:777 ../../include/functions_html.php:1745 -#: ../../include/functions_html.php:5982 +#: ../../include/functions_reports.php:777 ../../include/functions_html.php:1755 +#: ../../include/functions_html.php:6006 #: ../../include/class/AgentsAlerts.class.php:253 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:414 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:420 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:432 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:344 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:424 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:430 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:445 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:347 #: ../../operation/search_agents.php:55 ../../operation/tree.php:115 #: ../../operation/search_results.php:159 -#: ../../operation/agentes/estado_agente.php:1046 +#: ../../operation/agentes/estado_agente.php:1054 #: ../../operation/agentes/graphs.php:203 #: ../../operation/agentes/exportdata.php:354 #: ../../operation/agentes/group_view.php:185 -#: ../../operation/agentes/group_view.php:235 +#: ../../operation/agentes/group_view.php:238 msgid "Modules" msgstr "Modules" -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:82 +#: ../../enterprise/meta/advanced/servers.build_table.php:82 +#: ../../godmode/servers/servers.build_table.php:84 msgid "Lag" msgstr "Retard" -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:82 +#: ../../enterprise/meta/advanced/servers.build_table.php:82 +#: ../../godmode/servers/servers.build_table.php:84 msgid "Avg. Delay(sec)/Modules delayed" msgstr "Retard moyen(sec)/Modules retardés" -#: ../../enterprise/meta/advanced/servers.build_table.php:67 -#: ../../godmode/servers/servers.build_table.php:83 +#: ../../enterprise/meta/advanced/servers.build_table.php:83 +#: ../../godmode/servers/servers.build_table.php:85 msgid "T/Q" msgstr "T/Q" -#: ../../enterprise/meta/advanced/servers.build_table.php:67 -#: ../../godmode/servers/servers.build_table.php:83 +#: ../../enterprise/meta/advanced/servers.build_table.php:83 +#: ../../godmode/servers/servers.build_table.php:85 msgid "Threads / Queued modules currently" msgstr "Threads/Modules en attente" -#: ../../enterprise/meta/advanced/servers.build_table.php:69 +#: ../../enterprise/meta/advanced/servers.build_table.php:85 #: ../../enterprise/include/class/DatabaseHA.class.php:800 #: ../../enterprise/tools/ipam/ipam_ajax.php:497 #: ../../godmode/agentes/agent_incidents.php:92 -#: ../../godmode/servers/servers.build_table.php:85 +#: ../../godmode/servers/servers.build_table.php:87 #: ../../operation/incidents/integriaims_export_csv.php:86 msgid "Updated" msgstr "Mis à jour" -#: ../../enterprise/meta/advanced/servers.build_table.php:73 +#: ../../enterprise/meta/advanced/servers.build_table.php:89 #: ../../enterprise/meta/include/functions_autoprovision.php:701 #: ../../enterprise/godmode/modules/local_components.php:648 #: ../../enterprise/godmode/policies/policy_alerts.php:368 @@ -4701,46 +4760,53 @@ msgstr "Mis à jour" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 #: ../../godmode/users/profile_list.php:359 #: ../../godmode/alerts/alert_list.list.php:572 -#: ../../godmode/alerts/alert_templates.php:413 +#: ../../godmode/alerts/alert_templates.php:417 #: ../../godmode/reporting/reporting_builder.list_items.php:429 #: ../../godmode/reporting/graphs.php:375 #: ../../godmode/reporting/reporting_builder.php:931 #: ../../godmode/reporting/reporting_builder.php:1151 -#: ../../godmode/servers/servers.build_table.php:89 -#: ../../godmode/servers/plugin.php:996 ../../include/functions_container.php:157 +#: ../../godmode/servers/servers.build_table.php:91 +#: ../../include/functions_container.php:157 #: ../../operation/gis_maps/gis_map.php:122 msgid "Op." msgstr "Op." -#: ../../enterprise/meta/advanced/servers.build_table.php:92 -#: ../../godmode/servers/servers.build_table.php:138 +#: ../../enterprise/meta/advanced/servers.build_table.php:116 +#: ../../godmode/servers/servers.build_table.php:140 msgid "This is a master server" msgstr "Ceci est un serveur principal" -#: ../../enterprise/meta/advanced/servers.build_table.php:107 -#: ../../enterprise/meta/advanced/servers.build_table.php:113 -#: ../../godmode/servers/servers.build_table.php:157 -#: ../../godmode/servers/servers.build_table.php:163 +#: ../../enterprise/meta/advanced/servers.build_table.php:131 +#: ../../enterprise/meta/advanced/servers.build_table.php:137 +#: ../../godmode/servers/servers.build_table.php:159 +#: ../../godmode/servers/servers.build_table.php:165 msgid "of" msgstr "de" -#: ../../enterprise/meta/advanced/servers.build_table.php:143 -#: ../../godmode/servers/servers.build_table.php:274 +#: ../../enterprise/meta/advanced/servers.build_table.php:170 +#: ../../godmode/servers/servers.build_table.php:262 +msgid "Manage server conf" +msgstr "Gérer la configuration du serveur" + +#: ../../enterprise/meta/advanced/servers.build_table.php:186 +#: ../../godmode/servers/servers.build_table.php:287 msgid "Modules run by this server will stop working. Do you want to continue?" msgstr "" "Les modules sur ce serveur cesseront de fonctionner. Voulez-vous continuer ?" -#: ../../enterprise/meta/advanced/servers.build_table.php:170 -#: ../../godmode/servers/servers.build_table.php:301 +#: ../../enterprise/meta/advanced/servers.build_table.php:213 +#: ../../godmode/servers/servers.build_table.php:314 msgid "Tactical server information" msgstr "Information tactique du serveur" -#: ../../enterprise/meta/advanced/servers.build_table.php:180 +#: ../../enterprise/meta/advanced/servers.build_table.php:223 +#: ../../godmode/servers/servers.build_table.php:327 #: ../../include/help/clippy/server_queued_modules.php:35 msgid "Excesive Queued." msgstr "File d'attente de modules excessive" -#: ../../enterprise/meta/advanced/servers.build_table.php:181 +#: ../../enterprise/meta/advanced/servers.build_table.php:224 +#: ../../godmode/servers/servers.build_table.php:328 msgid "" "You have too many items in the processing queue. This can happen if your " "server is overloaded and/or improperly configured. This could be something " @@ -4753,7 +4819,7 @@ msgstr "" "associé à un retard de supervision, avec des modules qui deviennent inconnus, " "essayez d’augmenter le nombre de threads." -#: ../../enterprise/meta/advanced/servers.build_table.php:182 +#: ../../enterprise/meta/advanced/servers.build_table.php:225 #: ../../enterprise/meta/advanced/cron_main.php:408 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:956 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1163 @@ -4761,39 +4827,41 @@ msgstr "" #: ../../enterprise/godmode/wizards/consoletask_js.php:47 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4106 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4416 -#: ../../enterprise/operation/log/log_viewer.php:1201 -#: ../../enterprise/operation/log/log_viewer.php:1216 +#: ../../enterprise/operation/log/log_viewer.php:1199 +#: ../../enterprise/operation/log/log_viewer.php:1214 #: ../../enterprise/operation/services/services.treeview_services.php:416 #: ../../extensions/insert_data.php:285 -#: ../../godmode/agentes/planned_downtime.editor.php:2017 +#: ../../godmode/agentes/planned_downtime.editor.php:2013 #: ../../godmode/alerts/configure_alert_template.php:1512 #: ../../godmode/alerts/configure_alert_template.php:1596 -#: ../../godmode/setup/news.php:437 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5168 +#: ../../godmode/setup/news.php:436 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5177 #: ../../godmode/wizards/HostDevices.class.php:797 -#: ../../mobile/include/ui.class.php:691 ../../mobile/include/ui.class.php:749 -#: ../../include/functions_menu.php:941 +#: ../../godmode/servers/servers.build_table.php:329 +#: ../../mobile/include/ui.class.php:717 ../../mobile/include/ui.class.php:775 +#: ../../include/functions_menu.php:946 ../../include/functions_clippy.php:323 #: ../../include/class/WelcomeWindow.class.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:743 -#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:631 -#: ../../operation/agentes/stat_win.php:591 -#: ../../operation/agentes/interface_traffic_graph_win.php:442 -#: ../../operation/agentes/datos_agente.php:318 -#: ../../operation/agentes/estado_monitores.php:470 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:736 +#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:633 +#: ../../operation/agentes/stat_win.php:607 +#: ../../operation/agentes/interface_traffic_graph_win.php:451 +#: ../../operation/agentes/datos_agente.php:320 +#: ../../operation/agentes/estado_monitores.php:467 #: ../../operation/network/network_report.php:463 #: ../../operation/network/network_usage_map.php:300 -#: ../../operation/netflow/nf_live_view.php:871 +#: ../../operation/netflow/nf_live_view.php:982 +#: ../../operation/search_modules.php:359 #: ../../operation/reporting/reporting_viewer.php:366 #: ../../operation/reporting/reporting_viewer.php:385 #: ../../operation/reporting/graph_viewer.php:472 -#: ../../operation/events/events.php:3229 +#: ../../operation/events/events.php:3288 msgid "Close" msgstr "Fermer" #: ../../enterprise/meta/advanced/massive_operations.php:55 #: ../../enterprise/meta/monitoring/wizard/wizard.php:71 #: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:64 -#: ../../general/node_deactivated.php:59 +#: ../../general/node_deactivated.php:64 msgid "command center" msgstr "centre de commande" @@ -4808,7 +4876,7 @@ msgstr "" "Veuillez aller vers %s" #: ../../enterprise/meta/advanced/component_management.php:35 -#: ../../include/functions_menu.php:614 +#: ../../include/functions_menu.php:618 msgid "Tags management" msgstr "Gestion des étiquettes" @@ -4825,7 +4893,7 @@ msgstr "Gestion du système d'exploitation" #: ../../godmode/groups/configure_modu_group.php:43 #: ../../godmode/groups/modu_group_list.php:83 ../../godmode/menu.php:116 #: ../../godmode/reporting/reporting_builder.item_editor.php:86 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:343 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:346 #: ../../operation/tree.php:103 msgid "Module groups" msgstr "Groupes de modules" @@ -4869,56 +4937,56 @@ msgid "Successfully update" msgstr "Mis à jour correctement" #: ../../enterprise/meta/advanced/metasetup.visual.php:100 -#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:137 +#: ../../godmode/menu.php:364 ../../godmode/setup/setup.php:137 #: ../../godmode/setup/setup.php:285 msgid "Visual styles" msgstr "Styles visuels" #: ../../enterprise/meta/advanced/metasetup.visual.php:106 #: ../../enterprise/meta/include/functions_meta.php:1364 -#: ../../godmode/setup/setup_visuals.php:1757 -#: ../../include/functions_config.php:973 +#: ../../godmode/setup/setup_visuals.php:1772 +#: ../../include/functions_config.php:985 msgid "Date format string" msgstr "Format de la date" #: ../../enterprise/meta/advanced/metasetup.visual.php:108 #: ../../enterprise/tools/ipam/ipam_editor.php:147 -#: ../../godmode/setup/setup_visuals.php:1766 +#: ../../godmode/setup/setup_visuals.php:1781 msgid "Example" msgstr "Exemple" #: ../../enterprise/meta/advanced/metasetup.visual.php:138 -#: ../../godmode/setup/setup_visuals.php:1801 +#: ../../godmode/setup/setup_visuals.php:1816 msgid "Timestamp, time comparison, or compact mode" msgstr "Horodatage, comparaison d’heure ou mode compact" #: ../../enterprise/meta/advanced/metasetup.visual.php:140 -#: ../../godmode/setup/setup_visuals.php:1611 +#: ../../godmode/setup/setup_visuals.php:1626 msgid "Comparation in rollover" msgstr "Date en comparaison" #: ../../enterprise/meta/advanced/metasetup.visual.php:147 -#: ../../godmode/setup/setup_visuals.php:1618 +#: ../../godmode/setup/setup_visuals.php:1633 msgid "Timestamp in rollover" msgstr "Horodatage littéral" #: ../../enterprise/meta/advanced/metasetup.visual.php:154 -#: ../../godmode/setup/setup_visuals.php:1625 +#: ../../godmode/setup/setup_visuals.php:1640 msgid "Compact mode" msgstr "Mode compact" #: ../../enterprise/meta/advanced/metasetup.visual.php:164 -#: ../../include/functions_config.php:985 +#: ../../include/functions_config.php:997 msgid "Graph color #1" msgstr "Couleur du graphique #1" #: ../../enterprise/meta/advanced/metasetup.visual.php:175 -#: ../../include/functions_config.php:989 +#: ../../include/functions_config.php:1001 msgid "Graph color #2" msgstr "Couleur du graphique #2" #: ../../enterprise/meta/advanced/metasetup.visual.php:186 -#: ../../include/functions_config.php:993 +#: ../../include/functions_config.php:1005 msgid "Graph color #3" msgstr "Couleur du graphique #3" @@ -4932,10 +5000,10 @@ msgstr "La précision doit être un nombre entier entre 0 et 5" #: ../../enterprise/meta/advanced/metasetup.visual.php:215 #: ../../enterprise/meta/include/functions_meta.php:1414 -#: ../../godmode/setup/setup_visuals.php:1256 +#: ../../godmode/setup/setup_visuals.php:1260 #: ../../godmode/reporting/visual_console_builder.elements.php:233 #: ../../godmode/reporting/visual_console_builder.wizard.php:288 -#: ../../include/functions_visual_map_editor.php:684 +#: ../../include/functions_visual_map_editor.php:734 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458 msgid "Percentile" msgstr "Centile" @@ -4946,46 +5014,46 @@ msgstr "Afficher le centile 95 dans les graphiques" #: ../../enterprise/meta/advanced/metasetup.visual.php:231 #: ../../enterprise/meta/include/functions_meta.php:1499 -#: ../../godmode/setup/setup_visuals.php:1160 -#: ../../include/functions_config.php:1025 +#: ../../godmode/setup/setup_visuals.php:1164 +#: ../../include/functions_config.php:1037 msgid "Value to interface graphics" msgstr "Valeur pour l'interface graphique" #: ../../enterprise/meta/advanced/metasetup.visual.php:247 #: ../../enterprise/meta/include/functions_meta.php:1512 -#: ../../godmode/users/configure_user.php:1380 -#: ../../godmode/users/user_management.php:583 +#: ../../godmode/users/configure_user.php:1429 +#: ../../godmode/users/user_management.php:589 #: ../../godmode/massive/massive_edit_users.php:263 -#: ../../godmode/setup/setup_visuals.php:92 -#: ../../godmode/events/event_edit_filter.php:457 -#: ../../include/functions_config.php:1042 +#: ../../godmode/setup/setup_visuals.php:96 +#: ../../godmode/events/event_edit_filter.php:459 +#: ../../include/functions_config.php:1054 #: ../../operation/users/user_edit.php:420 msgid "Block size for pagination" msgstr "Longueur de bloc pour la mise en page" #: ../../enterprise/meta/advanced/metasetup.visual.php:263 #: ../../enterprise/meta/include/functions_meta.php:1428 -#: ../../godmode/setup/setup_visuals.php:1185 +#: ../../godmode/setup/setup_visuals.php:1189 msgid "Number of elements in Custom Graph" msgstr "Nombre d'éléments dans le Graphique personnalisé" #: ../../enterprise/meta/advanced/metasetup.visual.php:278 #: ../../enterprise/meta/include/functions_meta.php:1522 -#: ../../godmode/setup/setup_visuals.php:1199 -#: ../../include/functions_config.php:1046 +#: ../../godmode/setup/setup_visuals.php:1203 +#: ../../include/functions_config.php:1058 msgid "Use round corners" msgstr "Utiliser des coins arrondis" #: ../../enterprise/meta/advanced/metasetup.visual.php:288 #: ../../enterprise/meta/include/functions_meta.php:1533 -#: ../../godmode/setup/setup_visuals.php:1210 -#: ../../include/functions_config.php:1050 +#: ../../godmode/setup/setup_visuals.php:1214 +#: ../../include/functions_config.php:1062 msgid "Chart fit to content" msgstr "Table adapté au contenu" #: ../../enterprise/meta/advanced/metasetup.visual.php:298 #: ../../enterprise/meta/include/functions_meta.php:1544 -#: ../../include/functions_config.php:1278 +#: ../../include/functions_config.php:1294 msgid "Disable help" msgstr "Désactiver l'aide" @@ -5012,10 +5080,10 @@ msgstr "Désactiver l'aide" #: ../../enterprise/godmode/modules/local_components.php:555 #: ../../enterprise/godmode/modules/local_components.php:588 #: ../../enterprise/godmode/agentes/collections.data.php:485 -#: ../../enterprise/godmode/policies/policy_queue.php:292 -#: ../../enterprise/godmode/policies/policy_queue.php:304 -#: ../../enterprise/godmode/policies/policy_queue.php:329 -#: ../../enterprise/godmode/policies/policy_queue.php:732 +#: ../../enterprise/godmode/policies/policy_queue.php:294 +#: ../../enterprise/godmode/policies/policy_queue.php:306 +#: ../../enterprise/godmode/policies/policy_queue.php:331 +#: ../../enterprise/godmode/policies/policy_queue.php:734 #: ../../enterprise/godmode/policies/policy_external_alerts.php:383 #: ../../enterprise/godmode/policies/policy_agents.php:453 #: ../../enterprise/godmode/policies/policy_agents.php:588 @@ -5052,15 +5120,15 @@ msgstr "Désactiver l'aide" #: ../../enterprise/operation/agentes/tag_view.php:316 #: ../../enterprise/operation/agentes/tag_view.php:328 #: ../../enterprise/operation/agentes/tag_view.php:430 -#: ../../enterprise/operation/log/log_viewer.php:755 -#: ../../enterprise/operation/log/log_viewer.php:776 -#: ../../enterprise/operation/log/log_viewer.php:830 +#: ../../enterprise/operation/log/log_viewer.php:753 +#: ../../enterprise/operation/log/log_viewer.php:774 +#: ../../enterprise/operation/log/log_viewer.php:828 #: ../../enterprise/operation/snmpconsole/snmp_view.php:33 #: ../../extensions/resource_registration.php:1137 -#: ../../extensions/agents_modules.php:454 +#: ../../extensions/agents_modules.php:462 #: ../../extensions/files_repo/files_repo_form.php:44 #: ../../godmode/modules/manage_network_templates_form.php:303 -#: ../../godmode/modules/manage_network_components.php:665 +#: ../../godmode/modules/manage_network_components.php:668 #: ../../godmode/massive/massive_copy_modules.php:127 #: ../../godmode/massive/massive_copy_modules.php:287 #: ../../godmode/massive/massive_delete_modules.php:327 @@ -5075,11 +5143,11 @@ msgstr "Désactiver l'aide" #: ../../godmode/alerts/alert_list.list.php:152 #: ../../godmode/alerts/alert_list.list.php:169 #: ../../godmode/alerts/alert_list.list.php:201 -#: ../../godmode/alerts/alert_templates.php:313 +#: ../../godmode/alerts/alert_templates.php:317 #: ../../godmode/alerts/alert_list.php:553 #: ../../godmode/alerts/alert_list.php:574 #: ../../godmode/alerts/alert_list.php:588 ../../godmode/setup/gis_step_2.php:238 -#: ../../godmode/setup/setup_visuals.php:1085 +#: ../../godmode/setup/setup_visuals.php:1089 #: ../../godmode/reporting/reporting_builder.list_items.php:217 #: ../../godmode/reporting/reporting_builder.list_items.php:234 #: ../../godmode/reporting/reporting_builder.list_items.php:251 @@ -5087,28 +5155,28 @@ msgstr "Désactiver l'aide" #: ../../godmode/reporting/reporting_builder.item_editor.php:1710 #: ../../godmode/reporting/reporting_builder.item_editor.php:1728 #: ../../godmode/reporting/reporting_builder.item_editor.php:2153 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3007 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3034 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3685 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3766 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3788 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3846 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3016 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3043 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3694 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3775 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3797 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3855 #: ../../godmode/reporting/visual_console_builder.wizard.php:359 -#: ../../godmode/events/event_edit_filter.php:358 -#: ../../godmode/events/event_edit_filter.php:378 -#: ../../godmode/events/event_edit_filter.php:762 +#: ../../godmode/events/event_edit_filter.php:360 +#: ../../godmode/events/event_edit_filter.php:380 +#: ../../godmode/events/event_edit_filter.php:764 #: ../../mobile/operation/agents.php:56 ../../mobile/operation/modules.php:68 #: ../../mobile/operation/modules.php:289 ../../mobile/operation/modules.php:304 #: ../../mobile/operation/alerts.php:65 ../../mobile/operation/alerts.php:72 -#: ../../mobile/operation/events.php:974 ../../mobile/operation/events.php:984 -#: ../../mobile/operation/events.php:1460 ../../mobile/operation/events.php:1489 +#: ../../mobile/operation/events.php:1018 ../../mobile/operation/events.php:1028 +#: ../../mobile/operation/events.php:1585 ../../mobile/operation/events.php:1614 #: ../../include/functions.php:1127 ../../include/functions.php:1387 -#: ../../include/ajax/events.php:521 ../../include/functions_groupview.php:96 +#: ../../include/ajax/events.php:522 ../../include/functions_groupview.php:96 #: ../../include/functions_modules.php:3604 #: ../../include/functions_modules.php:3606 ../../include/functions_users.php:428 #: ../../include/functions_users.php:686 #: ../../include/functions_notifications.php:105 -#: ../../include/functions_html.php:947 ../../include/functions_html.php:1606 +#: ../../include/functions_html.php:952 ../../include/functions_html.php:1614 #: ../../include/functions_massive_operations.php:158 #: ../../include/functions_massive_operations.php:172 #: ../../include/class/EventSound.class.php:347 @@ -5118,23 +5186,23 @@ msgstr "Désactiver l'aide" #: ../../include/class/SnmpConsole.class.php:308 #: ../../include/class/AuditLog.class.php:232 #: ../../include/class/AuditLog.class.php:242 -#: ../../include/class/TipsWindow.class.php:719 -#: ../../include/class/TipsWindow.class.php:886 -#: ../../include/functions_reporting.php:3343 -#: ../../include/functions_reporting.php:3440 +#: ../../include/class/TipsWindow.class.php:739 +#: ../../include/class/TipsWindow.class.php:906 +#: ../../include/functions_reporting.php:3352 +#: ../../include/functions_reporting.php:3449 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:422 #: ../../include/lib/Dashboard/Widgets/events_list.php:412 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:397 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:431 -#: ../../include/functions_groups.php:646 ../../include/functions_groups.php:1959 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:400 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:435 +#: ../../include/functions_groups.php:671 ../../include/functions_groups.php:1984 #: ../../operation/heatmap.php:122 ../../operation/tree.php:205 -#: ../../operation/tree.php:296 ../../operation/agentes/estado_agente.php:330 -#: ../../operation/agentes/status_monitor.php:599 -#: ../../operation/agentes/status_monitor.php:680 -#: ../../operation/agentes/status_monitor.php:977 -#: ../../operation/agentes/estado_monitores.php:515 -#: ../../operation/agentes/estado_monitores.php:536 -#: ../../operation/agentes/agent_inventory.php:122 +#: ../../operation/tree.php:297 ../../operation/agentes/estado_agente.php:330 +#: ../../operation/agentes/status_monitor.php:598 +#: ../../operation/agentes/status_monitor.php:679 +#: ../../operation/agentes/status_monitor.php:979 +#: ../../operation/agentes/estado_monitores.php:512 +#: ../../operation/agentes/estado_monitores.php:533 +#: ../../operation/agentes/agent_inventory.php:124 #: ../../operation/agentes/alerts_status.functions.php:98 #: ../../operation/agentes/alerts_status.functions.php:134 #: ../../operation/agentes/alerts_status.functions.php:165 @@ -5145,24 +5213,24 @@ msgstr "Désactiver l'aide" #: ../../operation/incidents/list_integriaims_incidents.php:407 #: ../../operation/inventory/inventory.php:78 #: ../../operation/inventory/inventory.php:79 -#: ../../operation/inventory/inventory.php:319 -#: ../../operation/inventory/inventory.php:320 -#: ../../operation/inventory/inventory.php:496 -#: ../../operation/inventory/inventory.php:529 -#: ../../operation/inventory/inventory.php:564 -#: ../../operation/events/events.php:840 ../../operation/events/events.php:1745 -#: ../../operation/events/events.php:1839 ../../operation/events/events.php:2039 +#: ../../operation/inventory/inventory.php:321 +#: ../../operation/inventory/inventory.php:322 +#: ../../operation/inventory/inventory.php:498 +#: ../../operation/inventory/inventory.php:531 +#: ../../operation/inventory/inventory.php:566 +#: ../../operation/events/events.php:845 ../../operation/events/events.php:1799 +#: ../../operation/events/events.php:1893 ../../operation/events/events.php:2093 #: ../../general/subselect_data_module.php:62 msgid "All" msgstr "Tout" #: ../../enterprise/meta/advanced/metasetup.visual.php:310 -#: ../../godmode/setup/setup_visuals.php:1086 +#: ../../godmode/setup/setup_visuals.php:1090 msgid "On Boolean graphs" msgstr "Sur les graphiques booléens" #: ../../enterprise/meta/advanced/metasetup.visual.php:313 -#: ../../godmode/setup/setup_visuals.php:1268 +#: ../../godmode/setup/setup_visuals.php:1272 msgid "Graph TIP view" msgstr "Vue Graphique TIP" @@ -5171,17 +5239,17 @@ msgid "This option may cause performance issues" msgstr "Cette option peut entraîner des problèmes de performances" #: ../../enterprise/meta/advanced/metasetup.visual.php:328 -#: ../../godmode/setup/setup_visuals.php:1089 +#: ../../godmode/setup/setup_visuals.php:1093 msgid "Show only average by default" msgstr "Afficher uniquement la moyenne par défaut" #: ../../enterprise/meta/advanced/metasetup.visual.php:329 -#: ../../godmode/setup/setup_visuals.php:1090 +#: ../../godmode/setup/setup_visuals.php:1094 msgid "Show MAX/AVG/MIN by default" msgstr "Afficher MAX/MOY/MIN par défaut" #: ../../enterprise/meta/advanced/metasetup.visual.php:332 -#: ../../godmode/setup/setup_visuals.php:1284 +#: ../../godmode/setup/setup_visuals.php:1288 msgid "Graph mode" msgstr "Mode du graphique" @@ -5190,16 +5258,16 @@ msgid "Zoom graphs:" msgstr "Graphiques de zoom :" #: ../../enterprise/meta/advanced/metasetup.visual.php:369 -#: ../../godmode/setup/setup_visuals.php:1220 +#: ../../godmode/setup/setup_visuals.php:1224 msgid "Type of module charts" msgstr "Type de graphiques de module" #: ../../enterprise/meta/advanced/metasetup.visual.php:371 #: ../../enterprise/godmode/reporting/graph_template_editor.php:260 -#: ../../godmode/setup/setup_visuals.php:1227 +#: ../../godmode/setup/setup_visuals.php:1231 #: ../../godmode/reporting/create_container.php:430 #: ../../godmode/reporting/graph_builder.main.php:208 -#: ../../include/functions_visual_map_editor.php:558 +#: ../../include/functions_visual_map_editor.php:552 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:642 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:352 #: ../../operation/agentes/graphs.php:251 ../../operation/agentes/graphs.php:258 @@ -5210,16 +5278,16 @@ msgstr "Zone" #: ../../enterprise/meta/advanced/metasetup.visual.php:378 #: ../../enterprise/godmode/reporting/graph_template_editor.php:262 -#: ../../godmode/setup/setup_visuals.php:1239 +#: ../../godmode/setup/setup_visuals.php:1243 #: ../../godmode/reporting/create_container.php:431 #: ../../godmode/reporting/visual_console_builder.elements.php:365 #: ../../godmode/reporting/graph_builder.main.php:210 #: ../../include/functions_visual_map_editor.php:72 -#: ../../include/functions_visual_map_editor.php:557 -#: ../../include/functions_visual_map_editor.php:1397 +#: ../../include/functions_visual_map_editor.php:551 +#: ../../include/functions_visual_map_editor.php:1455 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:641 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:354 -#: ../../operation/visual_console/view.php:381 +#: ../../operation/visual_console/view.php:383 #: ../../operation/agentes/graphs.php:253 ../../operation/agentes/graphs.php:259 #: ../../operation/agentes/graphs.php:451 ../../operation/agentes/graphs.php:465 #: ../../operation/reporting/graph_viewer.php:356 @@ -5238,33 +5306,33 @@ msgstr "Nombre d'éléments récupérés pour chaque instance dans certaines vue #: ../../enterprise/meta/advanced/metasetup.visual.php:401 #: ../../enterprise/meta/advanced/metasetup.visual.php:919 #: ../../enterprise/meta/advanced/metasetup.visual.php:920 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:467 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:480 #: ../../enterprise/include/ajax/log_viewer.ajax.php:282 #: ../../godmode/snmpconsole/snmp_alert.php:1608 -#: ../../godmode/setup/setup_visuals.php:1319 -#: ../../godmode/setup/setup_visuals.php:1320 -#: ../../godmode/setup/setup_visuals.php:1898 -#: ../../include/functions_visual_map_editor.php:1221 -#: ../../include/functions_visual_map_editor.php:1222 +#: ../../godmode/setup/setup_visuals.php:1323 +#: ../../godmode/setup/setup_visuals.php:1324 +#: ../../godmode/setup/setup_visuals.php:1913 +#: ../../include/functions_visual_map_editor.php:1279 +#: ../../include/functions_visual_map_editor.php:1280 #: ../../include/functions.php:509 ../../include/functions.php:640 -#: ../../include/ajax/events.php:2352 ../../include/ajax/events.php:2353 -#: ../../include/ajax/events.php:2354 ../../include/ajax/events.php:2355 -#: ../../include/ajax/events.php:2359 ../../include/ajax/events.php:2360 -#: ../../include/ajax/events.php:2361 ../../include/ajax/events.php:2362 -#: ../../include/ajax/events.php:2363 ../../include/ajax/events.php:2364 -#: ../../include/functions_html.php:2135 -#: ../../operation/events/sound_events.php:199 -#: ../../operation/events/sound_events.php:200 -#: ../../operation/events/sound_events.php:201 -#: ../../operation/events/sound_events.php:202 -#: ../../operation/events/sound_events.php:206 -#: ../../operation/events/sound_events.php:207 -#: ../../operation/events/sound_events.php:208 -#: ../../operation/events/sound_events.php:209 -#: ../../operation/events/sound_events.php:210 -#: ../../operation/events/sound_events.php:211 +#: ../../include/ajax/events.php:2353 ../../include/ajax/events.php:2354 +#: ../../include/ajax/events.php:2355 ../../include/ajax/events.php:2356 +#: ../../include/ajax/events.php:2360 ../../include/ajax/events.php:2361 +#: ../../include/ajax/events.php:2362 ../../include/ajax/events.php:2363 +#: ../../include/ajax/events.php:2364 ../../include/ajax/events.php:2365 +#: ../../include/functions_html.php:2143 +#: ../../operation/events/sound_events.php:229 +#: ../../operation/events/sound_events.php:230 +#: ../../operation/events/sound_events.php:231 +#: ../../operation/events/sound_events.php:232 +#: ../../operation/events/sound_events.php:236 +#: ../../operation/events/sound_events.php:237 +#: ../../operation/events/sound_events.php:238 +#: ../../operation/events/sound_events.php:239 +#: ../../operation/events/sound_events.php:240 +#: ../../operation/events/sound_events.php:241 msgid "seconds" msgstr "secondes" @@ -5274,45 +5342,45 @@ msgstr "secondes" #: ../../enterprise/meta/advanced/metasetup.visual.php:923 #: ../../enterprise/meta/advanced/metasetup.visual.php:924 #: ../../enterprise/include/ajax/log_viewer.ajax.php:284 -#: ../../godmode/setup/setup_visuals.php:1321 -#: ../../godmode/setup/setup_visuals.php:1322 -#: ../../godmode/setup/setup_visuals.php:1323 -#: ../../godmode/setup/setup_visuals.php:1324 -#: ../../godmode/setup/setup_visuals.php:1899 -#: ../../include/functions_visual_map_editor.php:1223 -#: ../../include/functions_visual_map_editor.php:1224 -#: ../../include/functions_visual_map_editor.php:1225 -#: ../../include/functions_visual_map_editor.php:1226 +#: ../../godmode/setup/setup_visuals.php:1325 +#: ../../godmode/setup/setup_visuals.php:1326 +#: ../../godmode/setup/setup_visuals.php:1327 +#: ../../godmode/setup/setup_visuals.php:1328 +#: ../../godmode/setup/setup_visuals.php:1914 +#: ../../include/functions_visual_map_editor.php:1281 +#: ../../include/functions_visual_map_editor.php:1282 +#: ../../include/functions_visual_map_editor.php:1283 +#: ../../include/functions_visual_map_editor.php:1284 #: ../../include/functions.php:513 ../../include/functions.php:644 -#: ../../include/functions_html.php:2136 +#: ../../include/functions_html.php:2144 msgid "minutes" msgstr "minutes" #: ../../enterprise/meta/advanced/metasetup.visual.php:403 #: ../../enterprise/include/ajax/log_viewer.ajax.php:286 -#: ../../godmode/setup/setup_visuals.php:1900 ../../include/functions.php:514 +#: ../../godmode/setup/setup_visuals.php:1915 ../../include/functions.php:514 #: ../../include/functions.php:645 ../../include/functions_snmp.php:402 -#: ../../include/functions_html.php:2137 +#: ../../include/functions_html.php:2145 msgid "hours" msgstr "heures" #: ../../enterprise/meta/advanced/metasetup.visual.php:404 #: ../../enterprise/include/ajax/log_viewer.ajax.php:288 #: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92 -#: ../../godmode/setup/setup_visuals.php:1901 ../../include/functions.php:510 -#: ../../include/functions.php:641 ../../include/functions_html.php:2138 +#: ../../godmode/setup/setup_visuals.php:1916 ../../include/functions.php:510 +#: ../../include/functions.php:641 ../../include/functions_html.php:2146 msgid "days" msgstr "jours" #: ../../enterprise/meta/advanced/metasetup.visual.php:405 -#: ../../godmode/setup/setup_visuals.php:1902 ../../include/functions.php:511 -#: ../../include/functions.php:642 ../../include/functions_html.php:2140 +#: ../../godmode/setup/setup_visuals.php:1917 ../../include/functions.php:511 +#: ../../include/functions.php:642 ../../include/functions_html.php:2148 msgid "months" msgstr "mois" #: ../../enterprise/meta/advanced/metasetup.visual.php:406 -#: ../../godmode/setup/setup_visuals.php:1903 ../../include/functions.php:512 -#: ../../include/functions.php:643 ../../include/functions_html.php:2141 +#: ../../godmode/setup/setup_visuals.php:1918 ../../include/functions.php:512 +#: ../../include/functions.php:643 ../../include/functions_html.php:2149 msgid "years" msgstr "années" @@ -5371,66 +5439,66 @@ msgstr "Ajouter une nouvelle valeur personnalisée aux intervalles" #: ../../godmode/agentes/planned_downtime.editor.php:1493 #: ../../godmode/snmpconsole/snmp_alert.php:2135 #: ../../godmode/gis_maps/configure_gis_map.php:642 -#: ../../godmode/alerts/alert_list.list.php:893 ../../godmode/setup/news.php:402 -#: ../../godmode/setup/links.php:226 ../../godmode/setup/setup_visuals.php:1833 -#: ../../godmode/setup/setup_visuals.php:1923 -#: ../../godmode/setup/setup_visuals.php:2005 -#: ../../godmode/reporting/graph_builder.graph_editor.php:397 +#: ../../godmode/alerts/alert_list.list.php:893 ../../godmode/setup/news.php:401 +#: ../../godmode/setup/links.php:226 ../../godmode/setup/setup_visuals.php:1848 +#: ../../godmode/setup/setup_visuals.php:1938 +#: ../../godmode/setup/setup_visuals.php:2020 +#: ../../godmode/reporting/graph_builder.graph_editor.php:324 #: ../../godmode/reporting/visual_console_builder.wizard.php:575 -#: ../../godmode/events/event_edit_filter.php:647 -#: ../../godmode/events/event_edit_filter.php:712 +#: ../../godmode/events/event_edit_filter.php:649 +#: ../../godmode/events/event_edit_filter.php:714 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:483 #: ../../include/functions_notifications.php:970 #: ../../include/class/SatelliteAgent.class.php:1147 -#: ../../include/class/ManageNetScanScripts.class.php:475 -#: ../../include/functions_snmp_browser.php:1713 +#: ../../include/class/ManageNetScanScripts.class.php:473 +#: ../../include/functions_snmp_browser.php:1722 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:287 -#: ../../operation/events/events.php:1267 ../../operation/events/events.php:1341 +#: ../../operation/events/events.php:1294 ../../operation/events/events.php:1386 msgid "Add" msgstr "Ajouter" #: ../../enterprise/meta/advanced/metasetup.visual.php:443 #: ../../enterprise/meta/include/functions_meta.php:1853 -#: ../../include/functions_config.php:1449 +#: ../../include/functions_config.php:1465 msgid "Delete interval" msgstr "Supprimer intervalle" #: ../../enterprise/meta/advanced/metasetup.visual.php:475 #: ../../enterprise/meta/include/functions_meta.php:1644 -#: ../../godmode/setup/setup_visuals.php:1736 +#: ../../godmode/setup/setup_visuals.php:1751 msgid "Show only the group name" msgstr "Afficher seulement le nom du groupe" #: ../../enterprise/meta/advanced/metasetup.visual.php:475 -#: ../../include/functions_config.php:1306 +#: ../../include/functions_config.php:1322 msgid "Show the group name instead the group icon." msgstr "Afficher le nom du groupe au lieu de l'icône du groupe" #: ../../enterprise/meta/advanced/metasetup.visual.php:485 #: ../../enterprise/meta/include/functions_meta.php:1945 -#: ../../godmode/setup/setup_visuals.php:129 -#: ../../include/functions_config.php:1330 +#: ../../godmode/setup/setup_visuals.php:133 +#: ../../include/functions_config.php:1346 msgid "Display data of proc modules in other format" msgstr "Affichage des données des modules proc sous un format différent" #: ../../enterprise/meta/advanced/metasetup.visual.php:495 #: ../../enterprise/meta/include/functions_meta.php:1955 -#: ../../godmode/setup/setup_visuals.php:140 -#: ../../include/functions_config.php:1334 +#: ../../godmode/setup/setup_visuals.php:144 +#: ../../include/functions_config.php:1350 msgid "Display text proc modules have state is ok" msgstr "Texte à afficher lorsque l'état du module proc est OK" #: ../../enterprise/meta/advanced/metasetup.visual.php:507 #: ../../enterprise/meta/include/functions_meta.php:1965 -#: ../../godmode/setup/setup_visuals.php:144 -#: ../../include/functions_config.php:1338 +#: ../../godmode/setup/setup_visuals.php:148 +#: ../../include/functions_config.php:1354 msgid "Display text when proc modules have state critical" msgstr "Texte à afficher lorsque l'état du module proc est critique" #: ../../enterprise/meta/advanced/metasetup.visual.php:528 #: ../../enterprise/meta/include/functions_meta.php:1684 -#: ../../godmode/setup/setup_visuals.php:393 -#: ../../include/functions_config.php:1070 +#: ../../godmode/setup/setup_visuals.php:397 +#: ../../include/functions_config.php:1082 msgid "Custom favicon" msgstr "Favicon personnalisé" @@ -5443,7 +5511,7 @@ msgstr "" "fichier doit être au format .ico d’une taille de 16x16." #: ../../enterprise/meta/advanced/metasetup.visual.php:563 -#: ../../godmode/setup/setup_visuals.php:424 +#: ../../godmode/setup/setup_visuals.php:428 msgid "Custom background logo" msgstr "Logo d'arrière-plan personnalisé" @@ -5463,108 +5531,107 @@ msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:70 #: ../../godmode/agentes/configurar_agente.php:386 #: ../../godmode/agentes/modificar_agente.php:83 -#: ../../godmode/agentes/modificar_agente.php:837 ../../godmode/menu.php:596 -#: ../../godmode/setup/setup_visuals.php:375 -#: ../../godmode/setup/setup_visuals.php:442 -#: ../../godmode/setup/setup_visuals.php:465 -#: ../../godmode/setup/setup_visuals.php:490 -#: ../../godmode/setup/setup_visuals.php:516 -#: ../../godmode/setup/setup_visuals.php:541 -#: ../../godmode/setup/setup_visuals.php:582 -#: ../../godmode/setup/setup_visuals.php:620 -#: ../../godmode/setup/setup_visuals.php:660 -#: ../../godmode/setup/setup_visuals.php:698 -#: ../../godmode/setup/setup_visuals.php:738 -#: ../../godmode/setup/setup_visuals.php:924 -#: ../../godmode/reporting/visual_console_builder.php:841 +#: ../../godmode/agentes/modificar_agente.php:849 ../../godmode/menu.php:594 +#: ../../godmode/setup/setup_visuals.php:379 +#: ../../godmode/setup/setup_visuals.php:446 +#: ../../godmode/setup/setup_visuals.php:469 +#: ../../godmode/setup/setup_visuals.php:494 +#: ../../godmode/setup/setup_visuals.php:520 +#: ../../godmode/setup/setup_visuals.php:545 +#: ../../godmode/setup/setup_visuals.php:586 +#: ../../godmode/setup/setup_visuals.php:624 +#: ../../godmode/setup/setup_visuals.php:664 +#: ../../godmode/setup/setup_visuals.php:702 +#: ../../godmode/setup/setup_visuals.php:742 +#: ../../godmode/setup/setup_visuals.php:928 +#: ../../godmode/reporting/visual_console_builder.php:849 #: ../../godmode/module_library/module_library_view.php:59 -#: ../../include/functions_ui.php:1299 ../../include/functions_ui.php:1312 #: ../../include/lib/ClusterViewer/ClusterManager.php:601 -#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:212 +#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:214 #: ../../operation/visual_console/legacy_view.php:189 #: ../../operation/agentes/status_monitor.php:77 -#: ../../operation/agentes/status_monitor.php:306 +#: ../../operation/agentes/status_monitor.php:305 msgid "View" msgstr "Vue" #: ../../enterprise/meta/advanced/metasetup.visual.php:602 -#: ../../godmode/setup/setup_visuals.php:460 +#: ../../godmode/setup/setup_visuals.php:464 msgid "Custom logo (menu)" msgstr "Logo personnalisé (menu)" #: ../../enterprise/meta/advanced/metasetup.visual.php:633 -#: ../../godmode/setup/setup_visuals.php:485 +#: ../../godmode/setup/setup_visuals.php:489 msgid "Custom logo collapsed (menu)" msgstr "Le logo personnalisé s'est effondré (menu)" #: ../../enterprise/meta/advanced/metasetup.visual.php:663 -#: ../../godmode/setup/setup_visuals.php:511 +#: ../../godmode/setup/setup_visuals.php:515 msgid "Custom logo (header white background)" msgstr "Logo personnalisé (fond blanc d’en-tête)" #: ../../enterprise/meta/advanced/metasetup.visual.php:694 -#: ../../godmode/setup/setup_visuals.php:536 +#: ../../godmode/setup/setup_visuals.php:540 msgid "Custom logo (login)" msgstr "Logo personnalisé (connexion)" #: ../../enterprise/meta/advanced/metasetup.visual.php:724 -#: ../../godmode/setup/setup_visuals.php:564 +#: ../../godmode/setup/setup_visuals.php:568 msgid "Custom Splash (login)" msgstr "Splash personnalisé (connexion)" #: ../../enterprise/meta/advanced/metasetup.visual.php:754 #: ../../enterprise/meta/advanced/metasetup.visual.php:847 #: ../../enterprise/meta/include/functions_meta.php:1714 -#: ../../godmode/setup/setup_visuals.php:798 -#: ../../include/functions_config.php:1146 +#: ../../godmode/setup/setup_visuals.php:802 +#: ../../include/functions_config.php:1158 msgid "Product name" msgstr "Nom du produit" #: ../../enterprise/meta/advanced/metasetup.visual.php:767 #: ../../enterprise/meta/advanced/metasetup.visual.php:859 #: ../../enterprise/meta/include/functions_meta.php:1724 -#: ../../godmode/setup/setup_visuals.php:803 -#: ../../include/functions_config.php:1150 +#: ../../godmode/setup/setup_visuals.php:807 +#: ../../include/functions_config.php:1162 msgid "Copyright notice" msgstr "Mention de copyright" #: ../../enterprise/meta/advanced/metasetup.visual.php:780 #: ../../enterprise/meta/include/functions_meta.php:1614 -#: ../../godmode/setup/setup_visuals.php:809 -#: ../../include/functions_config.php:1154 -#: ../../include/functions_config.php:1158 +#: ../../godmode/setup/setup_visuals.php:813 +#: ../../include/functions_config.php:1166 +#: ../../include/functions_config.php:1170 msgid "Background opacity % (login)" msgstr "% d’opacité d’arrière-plan (connexion)" #: ../../enterprise/meta/advanced/metasetup.visual.php:786 -#: ../../godmode/setup/setup_visuals.php:762 +#: ../../godmode/setup/setup_visuals.php:766 msgid "Title (header)" msgstr "Titre (en-tête)" #: ../../enterprise/meta/advanced/metasetup.visual.php:792 -#: ../../godmode/setup/setup_visuals.php:768 +#: ../../godmode/setup/setup_visuals.php:772 msgid "Subtitle (header)" msgstr "Sous-titre (en-tête)" #: ../../enterprise/meta/advanced/metasetup.visual.php:798 -#: ../../godmode/setup/setup_visuals.php:776 +#: ../../godmode/setup/setup_visuals.php:780 msgid "Title 1 (login)" msgstr "Titre 1 (connexion)" #: ../../enterprise/meta/advanced/metasetup.visual.php:811 -#: ../../godmode/setup/setup_visuals.php:781 +#: ../../godmode/setup/setup_visuals.php:785 msgid "Title 2 (login)" msgstr "Titre 2 (connexion)" #: ../../enterprise/meta/advanced/metasetup.visual.php:823 #: ../../enterprise/meta/include/functions_meta.php:1774 -#: ../../godmode/setup/setup_visuals.php:787 +#: ../../godmode/setup/setup_visuals.php:791 msgid "Docs URL (login)" msgstr "URL docs (connexion)" #: ../../enterprise/meta/advanced/metasetup.visual.php:835 #: ../../enterprise/meta/include/functions_meta.php:1784 -#: ../../godmode/setup/setup_visuals.php:792 +#: ../../godmode/setup/setup_visuals.php:796 msgid "Support URL (login)" msgstr "URL assistance (connexion)" @@ -5574,17 +5641,17 @@ msgstr "Famille de polices de graphiques" #: ../../enterprise/meta/advanced/metasetup.visual.php:884 #: ../../enterprise/meta/include/functions_meta.php:1594 -#: ../../godmode/setup/setup_visuals.php:864 +#: ../../godmode/setup/setup_visuals.php:868 msgid "Visual effects and animation" msgstr "Effets visuels et animation" #: ../../enterprise/meta/advanced/metasetup.visual.php:894 -#: ../../godmode/setup/setup_visuals.php:875 +#: ../../godmode/setup/setup_visuals.php:879 msgid "Random background (login)" msgstr "Arrière-plan aléatoire (connexion)" #: ../../enterprise/meta/advanced/metasetup.visual.php:906 -#: ../../godmode/setup/setup_visuals.php:1340 +#: ../../godmode/setup/setup_visuals.php:1344 msgid "Legacy Visual Console View" msgstr "Vue console visuelle legacy" @@ -5595,26 +5662,26 @@ msgstr "" "visuelle" #: ../../enterprise/meta/advanced/metasetup.visual.php:925 -#: ../../godmode/setup/setup_visuals.php:1325 -#: ../../include/functions_visual_map_editor.php:1227 +#: ../../godmode/setup/setup_visuals.php:1329 +#: ../../include/functions_visual_map_editor.php:1285 msgid "hour" msgstr "heure" #: ../../enterprise/meta/advanced/metasetup.visual.php:928 -#: ../../godmode/setup/setup_visuals.php:1350 +#: ../../godmode/setup/setup_visuals.php:1354 msgid "Default cache expiration" msgstr "Expiration du cache par défaut" #: ../../enterprise/meta/advanced/metasetup.visual.php:933 -#: ../../godmode/setup/setup_visuals.php:1355 -#: ../../include/functions_visual_map_editor.php:1253 +#: ../../godmode/setup/setup_visuals.php:1359 +#: ../../include/functions_visual_map_editor.php:1311 msgid "No cache" msgstr "Pas de cache" #: ../../enterprise/meta/advanced/metasetup.visual.php:955 #: ../../enterprise/meta/include/functions_meta.php:1992 -#: ../../godmode/setup/setup_visuals.php:1369 -#: ../../include/functions_config.php:1202 +#: ../../godmode/setup/setup_visuals.php:1373 +#: ../../include/functions_config.php:1214 msgid "Default interval for refresh on Visual Console" msgstr "Intervalle de rafraîchissement par défaut sur la console visuelle" @@ -5623,34 +5690,36 @@ msgid "This interval will affect to Visual Console pages" msgstr "Cet intervalle aura un effet sur les pages de la console visuelle" #: ../../enterprise/meta/advanced/metasetup.visual.php:973 -#: ../../godmode/setup/setup_visuals.php:1710 +#: ../../godmode/setup/setup_visuals.php:1725 msgid "Use 1024 when module unit are bytes" msgstr "Utiliser 1024 lorsque l’unité de module est en octets" #: ../../enterprise/meta/advanced/metasetup.visual.php:974 -#: ../../godmode/setup/setup_visuals.php:1711 +#: ../../godmode/setup/setup_visuals.php:1726 msgid "Use always 1000" msgstr "Utilisez toujours 1000" #: ../../enterprise/meta/advanced/metasetup.visual.php:975 -#: ../../godmode/setup/setup_visuals.php:1712 +#: ../../godmode/setup/setup_visuals.php:1727 msgid "Use always 1024" msgstr "Utilisez toujours 1024" #: ../../enterprise/meta/advanced/metasetup.visual.php:978 -#: ../../godmode/setup/setup_visuals.php:2072 +#: ../../godmode/setup/setup_visuals.php:2087 msgid "Data multiplier to use in graphs/data" msgstr "Multiplicateur de données à utiliser dans les graphiques/données" #: ../../enterprise/meta/advanced/metasetup.visual.php:993 #: ../../enterprise/meta/include/functions_meta.php:1997 -#: ../../godmode/setup/setup_visuals.php:1416 -#: ../../include/functions_config.php:1218 +#: ../../godmode/setup/setup_visuals.php:1420 +#: ../../include/functions_config.php:1230 msgid "Mobile view not allow visual console orientation" msgstr "Non permettre l’orientation de la console visuelle dans la vue mobile" #: ../../enterprise/meta/advanced/metasetup.visual.php:1003 #: ../../enterprise/meta/include/functions_meta.php:2002 +#: ../../godmode/setup/setup_visuals.php:1430 +#: ../../include/functions_config.php:1234 msgid "Display item frame on alert triggered" msgstr "Afficher le cadre de l’élément déclenché par l’alerte" @@ -5659,7 +5728,7 @@ msgid "Reports configuration" msgstr "Configuration des rapports" #: ../../enterprise/meta/advanced/metasetup.visual.php:1028 -#: ../../godmode/setup/setup_visuals.php:1482 +#: ../../godmode/setup/setup_visuals.php:1497 msgid "Show report info with description" msgstr "Afficher l'information du rapport avec description" @@ -5672,7 +5741,7 @@ msgstr "" "rapports et modèles." #: ../../enterprise/meta/advanced/metasetup.visual.php:1042 -#: ../../godmode/setup/setup_visuals.php:1492 +#: ../../godmode/setup/setup_visuals.php:1507 msgid "Custom report front page" msgstr "Page de couverture du rapport personnalisé" @@ -5686,21 +5755,21 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1055 #: ../../enterprise/meta/include/functions_meta.php:1459 -#: ../../godmode/setup/setup_visuals.php:1503 -#: ../../include/functions_config.php:1480 +#: ../../godmode/setup/setup_visuals.php:1518 +#: ../../include/functions_config.php:1496 msgid "PDF font size (px)" msgstr "Taille de la police PDF (px)" #: ../../enterprise/meta/advanced/metasetup.visual.php:1060 #: ../../enterprise/meta/include/functions_meta.php:1449 -#: ../../godmode/setup/setup_visuals.php:1507 -#: ../../include/functions_config.php:1476 +#: ../../godmode/setup/setup_visuals.php:1522 +#: ../../include/functions_config.php:1492 msgid "HTML font size for SLA (em)" msgstr "Taille de la police HTML pour SLA (em)" #: ../../enterprise/meta/advanced/metasetup.visual.php:1065 #: ../../enterprise/meta/include/functions_meta.php:1574 -#: ../../godmode/setup/setup_visuals.php:1513 +#: ../../godmode/setup/setup_visuals.php:1528 msgid "Graph image height for HTML reports" msgstr "Hauteur de l'image du graphique pour des rapports HTML" @@ -5714,21 +5783,21 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1127 #: ../../enterprise/meta/include/functions_meta.php:1479 -#: ../../godmode/setup/setup_visuals.php:2061 -#: ../../include/functions_config.php:1508 +#: ../../godmode/setup/setup_visuals.php:2076 +#: ../../include/functions_config.php:1524 msgid "CSV divider" msgstr "Séparateur CSV" #: ../../enterprise/meta/advanced/metasetup.visual.php:1136 #: ../../enterprise/meta/include/functions_meta.php:1489 -#: ../../godmode/setup/setup_visuals.php:2066 -#: ../../include/functions_config.php:1512 +#: ../../godmode/setup/setup_visuals.php:2081 +#: ../../include/functions_config.php:1528 msgid "CSV decimal separator" msgstr "Séparateur décimale CSV" #: ../../enterprise/meta/advanced/metasetup.visual.php:1146 #: ../../enterprise/meta/include/functions_meta.php:1469 -#: ../../godmode/setup/setup_visuals.php:1517 +#: ../../godmode/setup/setup_visuals.php:1532 msgid "Interval description" msgstr "Description de l'intervalle" @@ -5745,9 +5814,9 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1905 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:113 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:125 -#: ../../godmode/setup/setup_visuals.php:1534 -#: ../../include/functions_config.php:1074 -#: ../../include/functions_config.php:1492 +#: ../../godmode/setup/setup_visuals.php:1549 +#: ../../include/functions_config.php:1086 +#: ../../include/functions_config.php:1508 msgid "Custom logo" msgstr "Logo personnalisé" @@ -5772,17 +5841,17 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1915 #: ../../enterprise/meta/include/functions_meta.php:1925 #: ../../enterprise/meta/include/functions_meta.php:1935 -#: ../../godmode/setup/setup_visuals.php:1534 #: ../../godmode/setup/setup_visuals.php:1549 -#: ../../godmode/setup/setup_visuals.php:1555 -#: ../../godmode/setup/setup_visuals.php:1568 -#: ../../godmode/setup/setup_visuals.php:1582 -#: ../../include/functions_config.php:1484 -#: ../../include/functions_config.php:1488 -#: ../../include/functions_config.php:1492 -#: ../../include/functions_config.php:1496 +#: ../../godmode/setup/setup_visuals.php:1564 +#: ../../godmode/setup/setup_visuals.php:1570 +#: ../../godmode/setup/setup_visuals.php:1583 +#: ../../godmode/setup/setup_visuals.php:1597 #: ../../include/functions_config.php:1500 #: ../../include/functions_config.php:1504 +#: ../../include/functions_config.php:1508 +#: ../../include/functions_config.php:1512 +#: ../../include/functions_config.php:1516 +#: ../../include/functions_config.php:1520 msgid "Custom report front" msgstr "Page de couverture du rapport personnalisé" @@ -5790,8 +5859,8 @@ msgstr "Page de couverture du rapport personnalisé" #: ../../enterprise/meta/include/functions_meta.php:1915 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:139 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:137 -#: ../../godmode/setup/setup_visuals.php:1555 -#: ../../include/functions_config.php:1496 +#: ../../godmode/setup/setup_visuals.php:1570 +#: ../../include/functions_config.php:1512 msgid "Header" msgstr "En-tête" @@ -5800,23 +5869,93 @@ msgstr "En-tête" #: ../../enterprise/meta/include/functions_meta.php:1925 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:149 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:147 -#: ../../godmode/setup/setup_visuals.php:1568 -#: ../../include/functions_config.php:1500 +#: ../../godmode/setup/setup_visuals.php:1583 +#: ../../include/functions_config.php:1516 msgid "First page" msgstr "Première page" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1420 -#: ../../godmode/setup/setup_visuals.php:2356 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1266 +#: ../../godmode/setup/setup_visuals.php:73 +msgid "Legacy visual console Information" +msgstr "Informations sur la console visuelle héritée" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1267 +#: ../../godmode/setup/setup_visuals.php:74 +msgid "Visual console in legacy mode will no longer be supported as of LTS 772" +msgstr "" +"La console visuelle en mode héritée ne sera pas prise en charge à partir de la " +"version LTS 772" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1400 +#: ../../enterprise/godmode/services/services.service.php:1025 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608 +#: ../../enterprise/include/functions_reporting_csv.php:1589 +#: ../../enterprise/include/functions_reporting_csv.php:1635 +#: ../../enterprise/include/functions_reporting_csv.php:1953 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1704 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1756 +#: ../../enterprise/include/class/DatabaseHA.class.php:390 +#: ../../enterprise/include/class/DatabaseHA.class.php:625 +#: ../../enterprise/include/class/DatabaseHA.class.php:727 +#: ../../enterprise/include/class/AgentRepository.class.php:1000 +#: ../../enterprise/include/class/LogSource.class.php:820 +#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142 +#: ../../enterprise/include/class/ManageBackups.class.php:298 +#: ../../enterprise/include/class/ManageBackups.class.php:454 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:182 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:225 +#: ../../enterprise/include/functions_reporting.php:1876 +#: ../../enterprise/include/functions_reporting.php:2949 +#: ../../enterprise/include/functions_reporting.php:3206 +#: ../../enterprise/include/functions_reporting.php:3939 +#: ../../enterprise/include/functions_reporting.php:4208 +#: ../../enterprise/include/functions_reporting.php:4854 +#: ../../enterprise/include/functions_reporting.php:6176 +#: ../../enterprise/include/functions_reporting.php:6214 +#: ../../enterprise/include/functions_services.php:2091 +#: ../../enterprise/include/functions_ux_console.php:483 +#: ../../enterprise/operation/agentes/ux_console_view.php:186 +#: ../../enterprise/operation/agentes/ux_console_view.php:391 +#: ../../enterprise/operation/agentes/wux_console_view.php:407 +#: ../../extensions/module_groups.php:53 +#: ../../godmode/massive/massive_operations.php:415 +#: ../../godmode/setup/setup_visuals.php:2257 +#: ../../godmode/setup/setup_general.php:1044 +#: ../../godmode/setup/setup_general.php:1062 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2743 +#: ../../include/functions_reporting_html.php:667 +#: ../../include/functions_reporting_html.php:862 +#: ../../include/functions_reporting_html.php:3597 +#: ../../include/functions_reporting_html.php:4894 +#: ../../include/functions_db.php:1974 +#: ../../include/class/ConfigPEN.class.php:674 +#: ../../include/class/ConfigPEN.class.php:698 +#: ../../include/class/SatelliteAgent.class.php:1105 +#: ../../include/class/HelpFeedBack.class.php:370 +#: ../../include/class/CredentialStore.class.php:1655 +#: ../../include/class/ModuleTemplates.class.php:1363 +#: ../../include/class/WelcomeWindow.class.php:173 +#: ../../include/class/AgentWizard.class.php:6229 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:362 +#: ../../operation/agentes/pandora_networkmap.editor.php:745 +#: ../../operation/snmpconsole/snmp_browser.php:622 +#: ../../operation/snmpconsole/snmp_browser.php:698 +msgid "OK" +msgstr "OK" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1437 +#: ../../godmode/setup/setup_visuals.php:2376 msgid "Logo preview" msgstr "Aperçu du logo" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1442 -#: ../../godmode/setup/setup_visuals.php:2386 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1459 +#: ../../godmode/setup/setup_visuals.php:2406 msgid "Splash Preview" msgstr "Aperçu du Splash" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1447 -#: ../../godmode/setup/setup_visuals.php:2410 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1464 +#: ../../godmode/setup/setup_visuals.php:2430 #: ../../godmode/reporting/visual_console_builder.data.php:196 msgid "Background preview" msgstr "Aperçu du fond d'écran" @@ -5948,12 +6087,12 @@ msgstr "Serveur source" #: ../../godmode/massive/massive_delete_alerts.php:312 #: ../../godmode/massive/massive_add_action_alerts.php:210 #: ../../godmode/massive/massive_edit_modules.php:370 -#: ../../include/functions_html.php:1290 ../../include/functions_html.php:1440 +#: ../../include/functions_html.php:1295 ../../include/functions_html.php:1445 #: ../../include/functions_massive_operations.php:136 #: ../../include/lib/Dashboard/Widgets/groups_status.php:243 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:334 #: ../../include/lib/Dashboard/Widgets/events_list.php:447 -#: ../../operation/events/events.php:1704 +#: ../../operation/events/events.php:1758 msgid "Group recursion" msgstr "Récursion du groupe" @@ -5998,7 +6137,7 @@ msgstr "Serveur de destination" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:474 #: ../../enterprise/include/class/Omnishell.class.php:1119 -#: ../../enterprise/operation/services/massive/services.create.php:1305 +#: ../../enterprise/operation/services/massive/services.create.php:1317 #: ../../enterprise/operation/services/massive/service.delete.elements.php:262 #: ../../enterprise/operation/services/massive/service.create.elements.php:610 #: ../../enterprise/operation/services/massive/service.edit.elements.php:369 @@ -6068,8 +6207,8 @@ msgstr "Déplacer" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:579 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130 -#: ../../include/functions_inventory.php:142 -#: ../../include/functions_inventory.php:176 +#: ../../include/functions_inventory.php:143 +#: ../../include/functions_inventory.php:177 #: ../../include/functions_events.php:250 msgid "Agent alias" msgstr "Alias de l'agent" @@ -6085,8 +6224,8 @@ msgstr "Nœud cible" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:582 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:333 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:478 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:538 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:591 @@ -6100,9 +6239,9 @@ msgstr "Nœud cible" #: ../../godmode/alerts/alert_view.php:130 #: ../../godmode/setup/setup_integria.php:444 #: ../../godmode/setup/setup_integria.php:578 -#: ../../include/functions_reporting_html.php:5374 -#: ../../include/functions_events.php:4593 -#: ../../operation/agentes/estado_generalagente.php:758 +#: ../../include/functions_reporting_html.php:5402 +#: ../../include/functions_events.php:4598 +#: ../../operation/agentes/estado_generalagente.php:727 #: ../../operation/incidents/integriaims_export_csv.php:85 #: ../../operation/incidents/configure_integriaims_incident.php:287 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:341 @@ -6133,7 +6272,7 @@ msgstr "Priorité" #: ../../godmode/alerts/configure_alert_template.php:270 #: ../../godmode/alerts/configure_alert_template.php:287 #: ../../godmode/alerts/configure_alert_template.php:291 -#: ../../include/functions_config.php:1729 +#: ../../include/functions_config.php:1741 msgid "Step" msgstr "Étape" @@ -6159,8 +6298,8 @@ msgstr "Créant un agent dans le nœud cible" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:661 #: ../../enterprise/meta/advanced/policymanager.queue.php:261 -#: ../../enterprise/godmode/policies/policy_queue.php:711 -#: ../../enterprise/godmode/policies/policy_queue.php:714 +#: ../../enterprise/godmode/policies/policy_queue.php:713 +#: ../../enterprise/godmode/policies/policy_queue.php:716 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:453 #: ../../enterprise/include/class/Omnishell.class.php:369 #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4180 @@ -6189,12 +6328,12 @@ msgid "checking migration requirements" msgstr "vérificant des exigences de migration" #: ../../enterprise/meta/advanced/servers.php:37 -#: ../../godmode/servers/modificar_server.php:308 +#: ../../godmode/servers/modificar_server.php:330 msgid "Server deleted successfully" msgstr "Serveur supprimé correctement" #: ../../enterprise/meta/advanced/servers.php:39 -#: ../../godmode/servers/modificar_server.php:310 +#: ../../godmode/servers/modificar_server.php:332 msgid "There was a problem deleting the server" msgstr "Problème de suppression du serveur" @@ -6220,12 +6359,12 @@ msgstr "Erreur de mise à jour de la chaîne de traduction" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:174 #: ../../enterprise/extensions/translate_string.php:308 -#: ../../godmode/users/configure_user.php:1096 -#: ../../godmode/users/user_management.php:558 +#: ../../godmode/users/configure_user.php:1160 +#: ../../godmode/users/user_management.php:564 #: ../../godmode/massive/massive_edit_users.php:248 -#: ../../include/class/TipsWindow.class.php:453 -#: ../../include/class/TipsWindow.class.php:702 -#: ../../include/class/TipsWindow.class.php:869 +#: ../../include/class/TipsWindow.class.php:465 +#: ../../include/class/TipsWindow.class.php:722 +#: ../../include/class/TipsWindow.class.php:889 #: ../../operation/users/user_edit.php:437 msgid "Language" msgstr "Langue" @@ -6255,7 +6394,7 @@ msgstr "Texte libre pour la recherche (*)" #: ../../enterprise/meta/general/main_header.php:689 #: ../../enterprise/meta/general/main_header.php:691 #: ../../enterprise/extensions/translate_string.php:334 -#: ../../enterprise/godmode/policies/policy_modules.php:1466 +#: ../../enterprise/godmode/policies/policy_modules.php:1511 #: ../../enterprise/godmode/policies/policy_collections.php:172 #: ../../enterprise/godmode/policies/policy_agents.php:440 #: ../../enterprise/godmode/policies/policy_agents.php:462 @@ -6263,8 +6402,8 @@ msgstr "Texte libre pour la recherche (*)" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:168 #: ../../enterprise/godmode/setup/setup_skins.php:131 #: ../../enterprise/operation/agentes/tag_view.php:229 -#: ../../enterprise/operation/log/log_viewer.php:610 -#: ../../enterprise/operation/log/log_viewer.php:957 +#: ../../enterprise/operation/log/log_viewer.php:608 +#: ../../enterprise/operation/log/log_viewer.php:955 #: ../../enterprise/operation/services/services.list.php:233 #: ../../enterprise/operation/services/services.list.php:338 #: ../../enterprise/operation/services/services.table_services.php:171 @@ -6281,23 +6420,23 @@ msgstr "Texte libre pour la recherche (*)" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:335 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:358 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:375 -#: ../../godmode/groups/group_list.php:785 ../../godmode/users/user_list.php:484 -#: ../../godmode/users/user_list.php:504 +#: ../../godmode/groups/group_list.php:786 ../../godmode/users/user_list.php:485 +#: ../../godmode/users/user_list.php:505 #: ../../godmode/agentes/planned_downtime.list.php:372 #: ../../godmode/agentes/planned_downtime.list.php:697 #: ../../godmode/alerts/alert_actions.php:250 #: ../../godmode/alerts/alert_actions.php:317 #: ../../godmode/alerts/alert_actions.php:332 #: ../../godmode/alerts/alert_actions.php:333 -#: ../../godmode/alerts/alert_templates.php:325 -#: ../../godmode/alerts/alert_templates.php:342 +#: ../../godmode/alerts/alert_templates.php:329 +#: ../../godmode/alerts/alert_templates.php:346 #: ../../godmode/reporting/map_builder.php:357 #: ../../godmode/reporting/graphs.php:238 #: ../../godmode/reporting/visual_console_favorite.php:177 #: ../../godmode/reporting/reporting_builder.item_editor.php:1313 #: ../../godmode/module_library/module_library_view.php:102 #: ../../godmode/module_library/module_library_view.php:112 -#: ../../mobile/operation/agent.php:320 ../../include/ajax/heatmap.ajax.php:72 +#: ../../mobile/operation/agent.php:323 ../../include/ajax/heatmap.ajax.php:76 #: ../../include/functions_snmp.php:358 #: ../../include/class/SatelliteAgent.class.php:184 #: ../../include/class/CalendarManager.class.php:1071 @@ -6305,13 +6444,12 @@ msgstr "Texte libre pour la recherche (*)" #: ../../include/class/AgentWizard.class.php:2753 #: ../../include/lib/Dashboard/Widgets/heatmap.php:236 #: ../../include/functions_snmp_browser.php:1023 -#: ../../include/functions_snmp_browser.php:1641 +#: ../../include/functions_snmp_browser.php:1650 #: ../../operation/search_results.php:193 ../../operation/search_results.php:202 #: ../../operation/agentes/estado_agente.php:342 -#: ../../operation/agentes/status_monitor.php:915 -#: ../../operation/agentes/agent_inventory.php:138 -#: ../../operation/agentes/agent_inventory.php:140 -#: ../../operation/inventory/inventory.php:640 +#: ../../operation/agentes/status_monitor.php:917 +#: ../../operation/agentes/agent_inventory.php:153 +#: ../../operation/inventory/inventory.php:642 #: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 msgid "Search" msgstr "Rechercher" @@ -6331,8 +6469,8 @@ msgstr "Rechercher" #: ../../enterprise/godmode/modules/local_components.php:624 #: ../../enterprise/godmode/agentes/collections.php:473 #: ../../enterprise/godmode/agentes/collections.php:474 -#: ../../enterprise/godmode/policies/policy_modules.php:1512 -#: ../../enterprise/godmode/policies/policy_queue.php:378 +#: ../../enterprise/godmode/policies/policy_modules.php:1557 +#: ../../enterprise/godmode/policies/policy_queue.php:380 #: ../../enterprise/godmode/policies/policies.php:364 #: ../../enterprise/godmode/policies/policy_linking.php:175 #: ../../enterprise/godmode/policies/policy_external_alerts.php:415 @@ -6342,14 +6480,14 @@ msgstr "Rechercher" #: ../../enterprise/godmode/setup/setup_acl.php:511 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947 #: ../../enterprise/operation/agentes/tag_view.php:533 -#: ../../enterprise/operation/log/log_viewer.php:1026 +#: ../../enterprise/operation/log/log_viewer.php:1024 #: ../../enterprise/operation/services/services.list.php:497 #: ../../enterprise/operation/services/services.table_services.php:472 #: ../../enterprise/operation/services/services.table_services.php:487 #: ../../extensions/module_groups.php:322 -#: ../../extensions/realtime_graphs.php:220 -#: ../../godmode/modules/manage_network_components.php:713 -#: ../../godmode/groups/group_list.php:820 +#: ../../extensions/realtime_graphs.php:216 +#: ../../godmode/modules/manage_network_components.php:716 +#: ../../godmode/groups/group_list.php:821 #: ../../godmode/agentes/planned_downtime.list.php:661 #: ../../godmode/agentes/planned_downtime.list.php:662 #: ../../godmode/agentes/planned_downtime.list.php:711 @@ -6360,16 +6498,17 @@ msgstr "Rechercher" #: ../../godmode/reporting/visual_console_favorite.php:220 #: ../../godmode/reporting/reporting_builder.php:782 #: ../../godmode/events/events.php:105 ../../godmode/events/events.php:124 -#: ../../godmode/tag/tag.php:263 ../../include/functions_ui.php:3715 -#: ../../include/functions_ui.php:3728 -#: ../../include/class/AgentsAlerts.class.php:879 +#: ../../godmode/tag/tag.php:264 ../../include/functions_ui.php:3763 +#: ../../include/functions_ui.php:3776 +#: ../../include/class/AgentsAlerts.class.php:880 #: ../../include/functions_snmp_browser.php:992 #: ../../operation/agentes/estado_agente.php:490 -#: ../../operation/agentes/status_monitor.php:1081 +#: ../../operation/agentes/status_monitor.php:1083 +#: ../../operation/agentes/agent_inventory.php:188 #: ../../operation/network/network_report.php:219 #: ../../operation/network/network_report.php:220 #: ../../operation/incidents/list_integriaims_incidents.php:502 -#: ../../operation/inventory/inventory.php:721 +#: ../../operation/inventory/inventory.php:722 #: ../../operation/reporting/reporting_viewer.php:305 #: ../../operation/reporting/graph_viewer.php:415 msgid "Filters" @@ -6398,7 +6537,7 @@ msgstr "Personnaliser la traduction" #: ../../include/ajax/visual_console_builder.ajax.php:343 #: ../../include/functions_visual_map.php:2843 #: ../../operation/network/network_usage_map.php:275 -#: ../../operation/netflow/nf_live_view.php:647 +#: ../../operation/netflow/nf_live_view.php:720 msgid "No data to show" msgstr "Aucune donnée à afficher" @@ -6412,14 +6551,14 @@ msgstr "Aucune donnée à afficher" #: ../../enterprise/include/functions_cron.php:582 #: ../../enterprise/include/lib/NetworkManager.php:87 #: ../../godmode/agentes/module_manager_editor_wmi.php:59 -#: ../../godmode/agentes/module_manager_editor_network.php:105 +#: ../../godmode/agentes/module_manager_editor_network.php:106 #: ../../godmode/massive/massive_edit_modules.php:834 -#: ../../include/functions_html.php:1917 ../../include/functions_html.php:1918 -#: ../../include/functions_html.php:2028 ../../include/functions_html.php:2029 -#: ../../include/functions_html.php:2181 ../../include/functions_html.php:2182 -#: ../../include/functions_html.php:6698 ../../include/functions_html.php:6699 +#: ../../include/functions_html.php:1928 ../../include/functions_html.php:1929 +#: ../../include/functions_html.php:2039 ../../include/functions_html.php:2040 +#: ../../include/functions_html.php:2189 ../../include/functions_html.php:2190 +#: ../../include/functions_html.php:6726 ../../include/functions_html.php:6727 #: ../../include/class/CredentialStore.class.php:959 -#: ../../operation/netflow/nf_live_view.php:274 +#: ../../operation/netflow/nf_live_view.php:283 msgid "Custom" msgstr "Personnaliser" @@ -6446,8 +6585,8 @@ msgid "Imei" msgstr "Imei" #: ../../enterprise/meta/advanced/metasetup.relations.php:330 -#: ../../include/class/NetworkMap.class.php:3265 -#: ../../include/class/NetworkMap.class.php:3266 +#: ../../include/class/NetworkMap.class.php:3271 +#: ../../include/class/NetworkMap.class.php:3272 msgid "Relations" msgstr "Relations" @@ -6483,21 +6622,21 @@ msgstr "Afficher les relations de liste" #: ../../enterprise/include/functions_reporting_csv.php:2731 #: ../../enterprise/operation/services/services.service.php:115 #: ../../enterprise/operation/services/services.list.php:544 -#: ../../godmode/agentes/module_manager_editor_common.php:1432 +#: ../../godmode/agentes/module_manager_editor_common.php:1442 #: ../../godmode/snmpconsole/snmp_trap_generator.php:126 #: ../../godmode/massive/massive_edit_modules.php:899 #: ../../godmode/alerts/configure_alert_template.php:839 -#: ../../godmode/setup/setup_visuals.php:1823 -#: ../../godmode/setup/setup_visuals.php:1913 -#: ../../godmode/setup/setup_visuals.php:1995 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2708 +#: ../../godmode/setup/setup_visuals.php:1838 +#: ../../godmode/setup/setup_visuals.php:1928 +#: ../../godmode/setup/setup_visuals.php:2010 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2717 #: ../../godmode/reporting/visual_console_builder.wizard.php:330 -#: ../../include/functions_visual_map_editor.php:691 +#: ../../include/functions_visual_map_editor.php:741 #: ../../include/functions_reporting_html.php:949 -#: ../../include/functions_reporting_html.php:2461 -#: ../../include/functions_reporting_html.php:4962 -#: ../../include/functions_reporting_html.php:5492 -#: ../../include/ajax/events.php:2173 ../../include/functions_graph.php:5172 +#: ../../include/functions_reporting_html.php:2482 +#: ../../include/functions_reporting_html.php:4990 +#: ../../include/functions_reporting_html.php:5520 +#: ../../include/ajax/events.php:2174 ../../include/functions_graph.php:5182 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 #: ../../include/functions_reports.php:1087 #: ../../include/functions_netflow.php:212 @@ -6515,7 +6654,7 @@ msgstr "Adresse du nœud" #: ../../enterprise/meta/advanced/metasetup.relations.php:550 #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:255 -#: ../../enterprise/godmode/policies/policy_modules.php:1546 +#: ../../enterprise/godmode/policies/policy_modules.php:1591 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:397 @@ -6537,7 +6676,7 @@ msgstr "Adresse du nœud" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:330 #: ../../godmode/modules/manage_nc_groups.php:266 #: ../../godmode/modules/manage_inventory_modules.php:295 -#: ../../godmode/modules/manage_network_components.php:781 +#: ../../godmode/modules/manage_network_components.php:784 #: ../../godmode/modules/manage_network_templates.php:250 #: ../../godmode/agentes/agent_template.php:277 #: ../../godmode/agentes/planned_downtime.editor.php:1446 @@ -6547,26 +6686,26 @@ msgstr "Adresse du nœud" #: ../../godmode/snmpconsole/snmp_alert.php:1915 #: ../../godmode/snmpconsole/snmp_alert.php:2075 #: ../../godmode/snmpconsole/snmp_filters.php:315 -#: ../../godmode/massive/massive_operations.php:452 +#: ../../godmode/massive/massive_operations.php:454 #: ../../godmode/massive/massive_standby_alerts.php:251 #: ../../godmode/massive/massive_delete_action_alerts.php:271 #: ../../godmode/massive/massive_enable_disable_alerts.php:223 #: ../../godmode/massive/massive_add_action_alerts.php:249 #: ../../godmode/alerts/alert_list.list.php:825 #: ../../godmode/alerts/alert_view.php:394 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4138 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4629 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4650 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4638 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4659 #: ../../godmode/reporting/visual_console_builder.elements.php:134 #: ../../godmode/events/event_filter.php:149 -#: ../../mobile/operation/tactical.php:348 -#: ../../include/functions_reporting_html.php:3451 -#: ../../include/functions_reporting_html.php:6013 +#: ../../mobile/operation/tactical.php:349 +#: ../../include/functions_reporting_html.php:3479 +#: ../../include/functions_reporting_html.php:6047 #: ../../include/functions.php:3109 ../../include/ajax/alert_list.ajax.php:294 #: ../../include/ajax/alert_list.ajax.php:319 #: ../../include/ajax/alert_list.ajax.php:495 #: ../../include/functions_profile.php:207 -#: ../../include/class/AgentsAlerts.class.php:911 +#: ../../include/class/AgentsAlerts.class.php:912 #: ../../include/class/SnmpConsole.class.php:512 #: ../../include/class/AuditLog.class.php:111 #: ../../include/class/AuditLog.class.php:230 @@ -6575,7 +6714,7 @@ msgstr "Adresse du nœud" #: ../../operation/agentes/alerts_status.php:279 #: ../../operation/agentes/alerts_status.php:280 #: ../../operation/agentes/alerts_status.functions.php:178 -#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:256 +#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:301 msgid "Action" msgstr "Action" @@ -6594,7 +6733,7 @@ msgstr "Mots de passe" #: ../../enterprise/meta/advanced/metasetup.password.php:93 #: ../../enterprise/meta/include/functions_meta.php:377 #: ../../enterprise/godmode/setup/setup.php:318 -#: ../../include/functions_config.php:494 +#: ../../include/functions_config.php:502 msgid "Enable password policy" msgstr "Activer la politique de mot de passe" @@ -6629,7 +6768,7 @@ msgstr "Activer la politique de mot de passe" #: ../../enterprise/godmode/setup/setup_auth.php:230 #: ../../enterprise/godmode/setup/setup_auth.php:431 #: ../../enterprise/godmode/setup/setup_auth.php:479 -#: ../../enterprise/godmode/setup/setup_auth.php:1287 +#: ../../enterprise/godmode/setup/setup_auth.php:1504 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:521 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:317 #: ../../enterprise/godmode/reporting/visual_console_template.php:304 @@ -6638,11 +6777,11 @@ msgstr "Activer la politique de mot de passe" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2357 #: ../../godmode/update_manager/update_manager.setup.php:395 -#: ../../godmode/users/configure_user.php:1301 +#: ../../godmode/users/configure_user.php:1365 #: ../../godmode/agentes/agent_conf_gis.php:133 -#: ../../godmode/massive/massive_edit_agents.php:671 -#: ../../godmode/massive/massive_edit_agents.php:1084 -#: ../../godmode/massive/massive_edit_agents.php:1116 +#: ../../godmode/massive/massive_edit_agents.php:688 +#: ../../godmode/massive/massive_edit_agents.php:1101 +#: ../../godmode/massive/massive_edit_agents.php:1133 #: ../../godmode/massive/massive_edit_modules.php:631 #: ../../godmode/massive/massive_edit_modules.php:653 #: ../../godmode/massive/massive_edit_modules.php:722 @@ -6657,13 +6796,13 @@ msgstr "Activer la politique de mot de passe" #: ../../godmode/reporting/visual_console_builder.wizard.php:382 #: ../../godmode/reporting/visual_console_builder.wizard.php:481 #: ../../godmode/servers/modificar_server.php:80 -#: ../../include/functions_reporting_html.php:1664 +#: ../../include/functions_reporting_html.php:1673 #: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304 #: ../../include/functions_snmp.php:390 #: ../../include/class/EventSound.class.php:349 #: ../../include/class/SnmpConsole.class.php:403 #: ../../operation/users/user_edit.php:433 -#: ../../operation/netflow/nf_live_view.php:340 +#: ../../operation/netflow/nf_live_view.php:349 msgid "Yes" msgstr "Oui" @@ -6699,7 +6838,7 @@ msgstr "Oui" #: ../../enterprise/godmode/setup/setup_auth.php:230 #: ../../enterprise/godmode/setup/setup_auth.php:434 #: ../../enterprise/godmode/setup/setup_auth.php:482 -#: ../../enterprise/godmode/setup/setup_auth.php:1290 +#: ../../enterprise/godmode/setup/setup_auth.php:1507 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:523 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:319 #: ../../enterprise/godmode/reporting/visual_console_template.php:304 @@ -6708,11 +6847,11 @@ msgstr "Oui" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2357 #: ../../godmode/update_manager/update_manager.setup.php:396 -#: ../../godmode/users/configure_user.php:1302 +#: ../../godmode/users/configure_user.php:1366 #: ../../godmode/agentes/agent_conf_gis.php:142 -#: ../../godmode/massive/massive_edit_agents.php:672 -#: ../../godmode/massive/massive_edit_agents.php:1095 -#: ../../godmode/massive/massive_edit_agents.php:1117 +#: ../../godmode/massive/massive_edit_agents.php:689 +#: ../../godmode/massive/massive_edit_agents.php:1112 +#: ../../godmode/massive/massive_edit_agents.php:1134 #: ../../godmode/massive/massive_edit_modules.php:632 #: ../../godmode/massive/massive_edit_modules.php:654 #: ../../godmode/massive/massive_edit_modules.php:723 @@ -6723,28 +6862,28 @@ msgstr "Oui" #: ../../godmode/massive/massive_edit_modules.php:1125 #: ../../godmode/alerts/alert_view.php:135 #: ../../godmode/alerts/alert_view.php:265 -#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:390 +#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:389 #: ../../godmode/reporting/reporting_builder.php:1086 #: ../../godmode/reporting/visual_console_builder.wizard.php:393 #: ../../godmode/reporting/visual_console_builder.wizard.php:492 #: ../../godmode/servers/modificar_server.php:78 -#: ../../mobile/operation/events.php:365 ../../mobile/operation/events.php:373 -#: ../../include/functions_reporting_html.php:1664 +#: ../../mobile/operation/events.php:358 ../../mobile/operation/events.php:366 +#: ../../include/functions_reporting_html.php:1673 #: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304 #: ../../include/functions_snmp.php:382 #: ../../include/class/EventSound.class.php:348 #: ../../include/class/SnmpConsole.class.php:402 -#: ../../include/functions_events.php:4971 #: ../../include/functions_events.php:4976 +#: ../../include/functions_events.php:4981 #: ../../operation/users/user_edit.php:434 -#: ../../operation/netflow/nf_live_view.php:350 +#: ../../operation/netflow/nf_live_view.php:359 msgid "No" msgstr "Non" #: ../../enterprise/meta/advanced/metasetup.password.php:114 #: ../../enterprise/meta/include/functions_meta.php:387 #: ../../enterprise/godmode/setup/setup.php:329 -#: ../../include/functions_config.php:498 +#: ../../include/functions_config.php:506 msgid "Min. size password" msgstr "Taille minimale du mot de passe" @@ -6756,7 +6895,7 @@ msgstr " Caractères" #: ../../enterprise/meta/advanced/metasetup.password.php:126 #: ../../enterprise/meta/include/functions_meta.php:417 #: ../../enterprise/godmode/setup/setup.php:347 -#: ../../include/functions_config.php:502 +#: ../../include/functions_config.php:510 msgid "Password expiration" msgstr "Expiration du mot de passe" @@ -6772,7 +6911,7 @@ msgstr " Jours" #: ../../enterprise/meta/advanced/metasetup.password.php:138 #: ../../enterprise/meta/include/functions_meta.php:437 #: ../../enterprise/godmode/setup/setup.php:395 -#: ../../include/functions_config.php:510 +#: ../../include/functions_config.php:518 msgid "User blocked if login fails" msgstr "Utilisateur bloqué en cas d'erreur de connexion" @@ -6784,7 +6923,7 @@ msgstr " Minutes" #: ../../enterprise/meta/advanced/metasetup.password.php:150 #: ../../enterprise/meta/include/functions_meta.php:447 #: ../../enterprise/godmode/setup/setup.php:413 -#: ../../include/functions_config.php:514 +#: ../../include/functions_config.php:522 msgid "Number of failed login attempts" msgstr "Nombre de tentatives de connexion infructueuses" @@ -6800,56 +6939,56 @@ msgstr " Tentatives" #: ../../enterprise/meta/advanced/metasetup.password.php:162 #: ../../enterprise/meta/include/functions_meta.php:469 #: ../../enterprise/godmode/setup/setup.php:451 -#: ../../include/functions_config.php:534 +#: ../../include/functions_config.php:542 msgid "Compare previous password" msgstr "Comparer mot de passe précédent" #: ../../enterprise/meta/advanced/metasetup.password.php:174 #: ../../enterprise/meta/include/functions_meta.php:457 #: ../../enterprise/godmode/setup/setup.php:441 -#: ../../include/functions_config.php:530 +#: ../../include/functions_config.php:538 msgid "Enable password history" msgstr "Activer historique de mot de passe" #: ../../enterprise/meta/advanced/metasetup.password.php:192 #: ../../enterprise/meta/include/functions_meta.php:480 #: ../../enterprise/godmode/setup/setup.php:431 -#: ../../include/functions_config.php:526 +#: ../../include/functions_config.php:534 msgid "Apply password policy to admin users" msgstr "Appliquer la politique de mot de passe aux administrateurs" #: ../../enterprise/meta/advanced/metasetup.password.php:199 #: ../../enterprise/meta/include/functions_meta.php:427 #: ../../enterprise/godmode/setup/setup.php:385 -#: ../../include/functions_config.php:506 +#: ../../include/functions_config.php:514 msgid "Force change password on first login" msgstr "Forcer le changement mot de passe lors de la première connexion" #: ../../enterprise/meta/advanced/metasetup.password.php:206 #: ../../enterprise/meta/include/functions_meta.php:397 #: ../../enterprise/godmode/setup/setup.php:365 -#: ../../include/functions_config.php:518 +#: ../../include/functions_config.php:526 msgid "Password must have numbers" msgstr "Le mot de passe doit contenir des chiffres" #: ../../enterprise/meta/advanced/metasetup.password.php:213 #: ../../enterprise/meta/include/functions_meta.php:407 #: ../../enterprise/godmode/setup/setup.php:375 -#: ../../include/functions_config.php:522 +#: ../../include/functions_config.php:530 msgid "Password must have symbols" msgstr "Le mot de passe doit contenir des symboles" #: ../../enterprise/meta/advanced/metasetup.password.php:220 #: ../../enterprise/meta/include/functions_meta.php:491 #: ../../enterprise/godmode/setup/setup.php:463 -#: ../../include/functions_config.php:538 +#: ../../include/functions_config.php:546 msgid "Activate reset password" msgstr "Activer la réinitialisation du mot de passe" #: ../../enterprise/meta/advanced/metasetup.password.php:228 #: ../../enterprise/meta/include/functions_meta.php:501 #: ../../enterprise/godmode/setup/setup.php:473 -#: ../../include/functions_config.php:542 +#: ../../include/functions_config.php:550 msgid "Exclusion word list for passwords" msgstr "Liste de mots exclus pour les mots de passe" @@ -6919,56 +7058,56 @@ msgstr "" "noter que ces paramètres ignoreront cette configuration de la console." #: ../../enterprise/meta/advanced/metasetup.mail.php:117 -#: ../../godmode/setup/setup_general.php:725 +#: ../../godmode/setup/setup_general.php:751 msgid "Mail configuration" msgstr "Configuration du courriel" #: ../../enterprise/meta/advanced/metasetup.mail.php:122 -#: ../../include/functions_config.php:398 +#: ../../include/functions_config.php:406 msgid "From dir" msgstr "À partir du répertoire" #: ../../enterprise/meta/advanced/metasetup.mail.php:127 -#: ../../godmode/setup/setup_general.php:756 -#: ../../include/functions_config.php:402 +#: ../../godmode/setup/setup_general.php:782 +#: ../../include/functions_config.php:410 msgid "From name" msgstr "À partir d'un nom" #: ../../enterprise/meta/advanced/metasetup.mail.php:132 -#: ../../include/functions_config.php:394 +#: ../../include/functions_config.php:402 msgid "Server SMTP" msgstr "Serveur SMTP" #: ../../enterprise/meta/advanced/metasetup.mail.php:137 -#: ../../include/functions_config.php:406 +#: ../../include/functions_config.php:414 msgid "Port SMTP" msgstr "Port SMTP" #: ../../enterprise/meta/advanced/metasetup.mail.php:142 -#: ../../godmode/setup/setup_general.php:817 -#: ../../include/functions_config.php:410 +#: ../../godmode/setup/setup_general.php:843 +#: ../../include/functions_config.php:418 msgid "Encryption" msgstr "Encodage" #: ../../enterprise/meta/advanced/metasetup.mail.php:148 #: ../../godmode/gis_maps/configure_gis_map.php:586 -#: ../../godmode/setup/setup_general.php:823 +#: ../../godmode/setup/setup_general.php:849 #: ../../godmode/reporting/create_container.php:291 #: ../../godmode/reporting/create_container.php:310 -#: ../../include/ajax/module.php:2549 ../../include/ajax/events.php:1087 -#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5106 +#: ../../include/ajax/module.php:2578 ../../include/ajax/events.php:1088 +#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5130 msgid "none" msgstr "aucun" #: ../../enterprise/meta/advanced/metasetup.mail.php:155 -#: ../../godmode/setup/setup_general.php:792 -#: ../../include/functions_config.php:414 +#: ../../godmode/setup/setup_general.php:818 +#: ../../include/functions_config.php:422 msgid "Email user" msgstr "Utilisateur du courriel" #: ../../enterprise/meta/advanced/metasetup.mail.php:160 -#: ../../godmode/setup/setup_general.php:803 -#: ../../include/functions_config.php:418 +#: ../../godmode/setup/setup_general.php:829 +#: ../../include/functions_config.php:426 msgid "Email password" msgstr "Mot de passe du courriel" @@ -6992,11 +7131,11 @@ msgstr "Configuration des mots de passe" #: ../../enterprise/meta/general/main_header.php:143 #: ../../enterprise/meta/general/main_menu.php:260 #: ../../enterprise/operation/log/elasticsearch_interface.php:30 -#: ../../enterprise/operation/log/log_viewer.php:399 -#: ../../enterprise/operation/log/log_viewer.php:439 -#: ../../enterprise/operation/log/log_viewer.php:498 +#: ../../enterprise/operation/log/log_viewer.php:397 +#: ../../enterprise/operation/log/log_viewer.php:437 +#: ../../enterprise/operation/log/log_viewer.php:496 #: ../../enterprise/operation/menu.php:162 -#: ../../operation/agentes/ver_agente.php:1893 +#: ../../operation/agentes/ver_agente.php:1889 msgid "Log viewer" msgstr "Visualiseur de journaux" @@ -7004,12 +7143,12 @@ msgstr "Visualiseur de journaux" #: ../../enterprise/godmode/menu.php:132 #: ../../enterprise/include/functions_setup.php:67 #: ../../enterprise/include/functions_setup.php:119 -#: ../../operation/agentes/datos_agente.php:180 +#: ../../operation/agentes/datos_agente.php:181 msgid "History database" msgstr "Base de Données de l'historique" #: ../../enterprise/meta/advanced/metasetup.php:100 -#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:360 +#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:358 #: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:274 msgid "Authentication" msgstr "Authentification" @@ -7026,7 +7165,7 @@ msgstr "Configuration de la performance" #: ../../enterprise/meta/advanced/metasetup.php:126 #: ../../enterprise/meta/advanced/metasetup.php:225 -#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:439 +#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:437 #: ../../godmode/setup/file_manager.php:47 #: ../../godmode/setup/file_manager.php:60 msgid "File manager" @@ -7043,7 +7182,7 @@ msgid "Mail" msgstr "Email" #: ../../enterprise/meta/advanced/metasetup.php:150 -#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:389 +#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:387 #: ../../godmode/setup/setup.php:218 ../../godmode/setup/setup.php:325 msgid "Notifications" msgstr "Notifications" @@ -7115,8 +7254,8 @@ msgstr "Mise à jour en ligne en ligne" #: ../../godmode/update_manager/update_manager.php:57 #: ../../godmode/update_manager/update_manager.php:87 #: ../../godmode/agentes/configurar_agente.php:405 -#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:338 -#: ../../godmode/menu.php:345 ../../godmode/setup/setup.php:389 +#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:336 +#: ../../godmode/menu.php:343 ../../godmode/setup/setup.php:389 #: ../../godmode/setup/gis_step_2.php:63 ../../godmode/setup/gis_step_2.php:67 #: ../../godmode/setup/gis_step_2.php:100 ../../godmode/setup/gis_step_2.php:104 #: ../../godmode/module_library/module_library_view.php:48 @@ -7169,37 +7308,19 @@ msgstr "Appliquer les politiques" #: ../../enterprise/operation/agentes/ver_agente.php:254 #: ../../include/functions_networkmap.php:1303 #: ../../include/functions_maps.php:42 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:346 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:349 #: ../../operation/tree.php:128 ../../operation/search_results.php:172 #: ../../operation/agentes/estado_agente.php:387 -#: ../../operation/agentes/ver_agente.php:1860 ../../operation/search_main.php:73 +#: ../../operation/agentes/ver_agente.php:1856 ../../operation/search_main.php:73 msgid "Policies" msgstr "Politiques" -#: ../../enterprise/meta/advanced/policymanager.apply.php:200 -#: ../../enterprise/godmode/servers/new_HA_cluster.php:86 -#: ../../enterprise/godmode/servers/HA_cluster.php:97 -#: ../../enterprise/godmode/servers/manage_export.php:69 -#: ../../enterprise/godmode/servers/manage_export_form.php:85 -#: ../../enterprise/godmode/servers/list_satellite.php:37 -#: ../../godmode/menu.php:300 ../../godmode/setup/os.php:225 -#: ../../godmode/reporting/visual_console_builder.wizard.php:353 -#: ../../godmode/servers/modificar_server.php:59 -#: ../../godmode/servers/modificar_server.php:218 -#: ../../godmode/servers/modificar_server.php:271 -#: ../../godmode/servers/plugin_registration.php:73 -#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:355 -#: ../../godmode/servers/plugin.php:802 ../../mobile/include/functions_web.php:28 -#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:370 -msgid "Servers" -msgstr "Serveurs" - #: ../../enterprise/meta/advanced/policymanager.apply.php:213 #: ../../enterprise/meta/advanced/policymanager.queue.php:311 -#: ../../enterprise/godmode/policies/policy_queue.php:754 +#: ../../enterprise/godmode/policies/policy_queue.php:758 #: ../../enterprise/godmode/policies/policy_agents.php:964 #: ../../enterprise/godmode/policies/policy_agents.php:1348 -#: ../../include/functions_visual_map_editor.php:641 +#: ../../include/functions_visual_map_editor.php:637 msgid "Apply" msgstr "Appliquer" @@ -7295,8 +7416,8 @@ msgstr "Erreur de suppression" #: ../../enterprise/godmode/policies/policy_alerts.php:137 #: ../../enterprise/godmode/policies/policy_modules.php:529 #: ../../enterprise/godmode/setup/setup_metaconsole.php:147 -#: ../../godmode/users/user_list.php:448 -#: ../../godmode/agentes/configurar_agente.php:2188 +#: ../../godmode/users/user_list.php:449 +#: ../../godmode/agentes/configurar_agente.php:2251 #: ../../godmode/agentes/modificar_agente.php:227 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 #: ../../godmode/alerts/alert_list.php:382 @@ -7308,7 +7429,7 @@ msgstr "Activé correctement" #: ../../enterprise/godmode/policies/policy_alerts.php:138 #: ../../enterprise/godmode/policies/policy_modules.php:530 #: ../../enterprise/godmode/setup/setup_metaconsole.php:148 -#: ../../godmode/agentes/configurar_agente.php:2189 +#: ../../godmode/agentes/configurar_agente.php:2252 #: ../../godmode/agentes/modificar_agente.php:228 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 #: ../../godmode/alerts/alert_list.php:383 @@ -7320,8 +7441,8 @@ msgstr "Erreur d'activation" #: ../../enterprise/godmode/policies/policy_alerts.php:163 #: ../../enterprise/godmode/policies/policy_modules.php:546 #: ../../enterprise/godmode/setup/setup_metaconsole.php:156 -#: ../../godmode/users/user_list.php:442 -#: ../../godmode/agentes/configurar_agente.php:2213 +#: ../../godmode/users/user_list.php:443 +#: ../../godmode/agentes/configurar_agente.php:2276 #: ../../godmode/agentes/modificar_agente.php:270 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 #: ../../godmode/alerts/alert_list.php:418 @@ -7396,29 +7517,30 @@ msgstr "%s édition des éléments de la Métaconsole" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:502 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1714 #: ../../enterprise/include/functions_reporting_csv.php:1208 -#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/graph_builder.graph_editor.php:347 #: ../../godmode/reporting/reporting_builder.item_editor.php:1290 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.elements.php:310 #: ../../godmode/reporting/visual_console_builder.wizard.php:469 #: ../../include/functions_visual_map_editor.php:67 -#: ../../include/functions_visual_map_editor.php:193 -#: ../../include/functions_visual_map_editor.php:777 -#: ../../include/functions_visual_map_editor.php:1392 -#: ../../include/functions_visual_map.php:4210 -#: ../../include/rest-api/models/VisualConsole/Item.php:1942 -#: ../../include/rest-api/models/VisualConsole/Item.php:2136 +#: ../../include/functions_visual_map_editor.php:189 +#: ../../include/functions_visual_map_editor.php:817 +#: ../../include/functions_visual_map_editor.php:1450 +#: ../../include/functions_visual_map.php:4219 +#: ../../include/rest-api/models/VisualConsole/Item.php:1947 +#: ../../include/rest-api/models/VisualConsole/Item.php:2139 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:329 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:284 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:354 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:365 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:468 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:447 #: ../../include/lib/Dashboard/Widgets/module_icon.php:347 #: ../../include/lib/Dashboard/Widgets/module_value.php:322 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:260 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:314 #: ../../include/lib/Dashboard/Widgets/module_status.php:338 -#: ../../operation/visual_console/view.php:356 +#: ../../operation/visual_console/view.php:358 msgid "Label" msgstr "Étiquette" @@ -7508,12 +7630,12 @@ msgstr "Port de la BD" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:227 #: ../../extensions/quick_shell.php:539 #: ../../godmode/agentes/module_manager_editor.php:750 -#: ../../godmode/agentes/agent_manager.php:905 -#: ../../godmode/massive/massive_edit_agents.php:1159 +#: ../../godmode/agentes/agent_manager.php:912 +#: ../../godmode/massive/massive_edit_agents.php:1175 #: ../../godmode/massive/massive_add_action_alerts.php:251 -#: ../../include/functions_visual_map_editor.php:893 -#: ../../operation/agentes/status_monitor.php:1022 -#: ../../operation/events/events.php:2271 +#: ../../include/functions_visual_map_editor.php:941 +#: ../../operation/agentes/status_monitor.php:1024 +#: ../../operation/events/events.php:2325 msgid "Advanced options" msgstr "Options avancées" @@ -7623,7 +7745,7 @@ msgstr "Synchronisation de la base de données" #: ../../enterprise/tools/ipam/ipam.php:426 ../../operation/search_agents.php:132 #: ../../operation/search_agents.php:133 #: ../../operation/agentes/ver_agente.php:1375 -#: ../../operation/agentes/ver_agente.php:1831 +#: ../../operation/agentes/ver_agente.php:1827 msgid "Manage" msgstr "Gérer" @@ -7666,7 +7788,7 @@ msgstr "Erreur de création du lien" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:50 #: ../../godmode/modules/manage_nc_groups.php:108 #: ../../godmode/users/profile_list.php:278 -#: ../../godmode/users/configure_user.php:530 +#: ../../godmode/users/configure_user.php:479 #: ../../godmode/agentes/configurar_agente.php:888 #: ../../godmode/agentes/planned_downtime.editor.php:660 #: ../../godmode/snmpconsole/snmp_alert.php:302 @@ -7675,7 +7797,7 @@ msgstr "Erreur de création du lien" #: ../../godmode/alerts/configure_alert_template.php:553 #: ../../godmode/alerts/alert_list.php:185 ../../godmode/setup/news.php:83 #: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:57 -#: ../../include/functions_alerts.php:2754 +#: ../../include/functions_alerts.php:2755 #: ../../include/class/EventSound.class.php:103 #: ../../include/class/EventSound.class.php:134 #: ../../include/class/CalendarManager.class.php:537 @@ -7695,7 +7817,7 @@ msgstr "Problème de modification du lien" #: ../../enterprise/meta/advanced/links.php:69 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:126 -#: ../../enterprise/godmode/policies/policy_modules.php:1265 +#: ../../enterprise/godmode/policies/policy_modules.php:1310 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:138 @@ -7712,21 +7834,21 @@ msgstr "Problème de modification du lien" #: ../../enterprise/tools/ipam/ipam_massive.php:47 #: ../../godmode/modules/manage_nc_groups.php:142 #: ../../godmode/users/profile_list.php:261 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 -#: ../../godmode/agentes/configurar_agente.php:1198 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 +#: ../../godmode/agentes/configurar_agente.php:1214 #: ../../godmode/agentes/planned_downtime.editor.php:662 -#: ../../godmode/netflow/nf_edit_form.php:140 +#: ../../godmode/netflow/nf_edit_form.php:172 #: ../../godmode/snmpconsole/snmp_alert.php:444 #: ../../godmode/snmpconsole/snmp_filters.php:110 #: ../../godmode/massive/massive_edit_modules.php:184 #: ../../godmode/alerts/configure_alert_command.php:149 -#: ../../godmode/alerts/alert_templates.php:161 +#: ../../godmode/alerts/alert_templates.php:165 #: ../../godmode/alerts/configure_alert_template.php:571 #: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:319 #: ../../godmode/setup/news.php:124 ../../godmode/setup/gis.php:39 #: ../../godmode/setup/links.php:76 -#: ../../godmode/events/event_edit_filter.php:242 -#: ../../include/functions_alerts.php:2754 +#: ../../godmode/events/event_edit_filter.php:244 +#: ../../include/functions_alerts.php:2755 #: ../../include/class/CalendarManager.class.php:534 #: ../../include/class/CalendarManager.class.php:891 #: ../../include/functions_planned_downtimes.php:125 @@ -7784,7 +7906,7 @@ msgstr "Appliquer les politiques" #: ../../enterprise/include/class/CommandCenter.class.php:145 #: ../../godmode/netflow/nf_item_list.php:49 #: ../../operation/agentes/ver_agente.php:1390 -#: ../../operation/agentes/ver_agente.php:1835 +#: ../../operation/agentes/ver_agente.php:1831 msgid "Main" msgstr "Principal" @@ -7860,41 +7982,49 @@ msgstr "Collections" #: ../../enterprise/operation/agentes/tag_view.php:787 #: ../../extensions/insert_data.php:226 ../../extensions/insert_data.php:230 #: ../../extensions/insert_data.php:235 -#: ../../godmode/agentes/status_monitor_custom_fields.php:113 -#: ../../godmode/agentes/status_monitor_custom_fields.php:150 +#: ../../godmode/agentes/status_monitor_custom_fields.php:133 +#: ../../godmode/agentes/status_monitor_custom_fields.php:170 #: ../../godmode/events/custom_events.php:113 -#: ../../mobile/operation/modules.php:715 ../../mobile/operation/modules.php:718 -#: ../../mobile/operation/modules.php:719 ../../mobile/operation/modules.php:720 -#: ../../mobile/operation/modules.php:721 ../../mobile/operation/modules.php:722 -#: ../../mobile/operation/modules.php:723 ../../mobile/operation/modules.php:724 -#: ../../mobile/operation/modules.php:725 ../../mobile/operation/modules.php:727 -#: ../../mobile/operation/modules.php:730 ../../mobile/operation/modules.php:731 -#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:733 -#: ../../mobile/operation/modules.php:734 ../../mobile/operation/modules.php:735 -#: ../../mobile/operation/modules.php:736 ../../mobile/operation/modules.php:737 -#: ../../mobile/operation/modules.php:853 -#: ../../include/functions_reporting_html.php:2357 -#: ../../include/functions_reporting_html.php:2836 -#: ../../include/functions_reporting_html.php:2840 -#: ../../include/functions_reporting_html.php:2841 -#: ../../include/functions_reporting_html.php:2845 -#: ../../include/functions_reporting_html.php:2850 -#: ../../include/functions_reporting_html.php:2855 -#: ../../include/functions_reporting_html.php:2859 +#: ../../mobile/operation/modules.php:726 ../../mobile/operation/modules.php:730 +#: ../../mobile/operation/modules.php:731 ../../mobile/operation/modules.php:732 +#: ../../mobile/operation/modules.php:733 ../../mobile/operation/modules.php:734 +#: ../../mobile/operation/modules.php:735 ../../mobile/operation/modules.php:737 +#: ../../mobile/operation/modules.php:740 ../../mobile/operation/modules.php:741 +#: ../../mobile/operation/modules.php:742 ../../mobile/operation/modules.php:743 +#: ../../mobile/operation/modules.php:744 ../../mobile/operation/modules.php:745 +#: ../../mobile/operation/modules.php:749 ../../mobile/operation/modules.php:750 +#: ../../mobile/operation/modules.php:751 ../../mobile/operation/modules.php:752 +#: ../../mobile/operation/modules.php:753 ../../mobile/operation/modules.php:754 +#: ../../mobile/operation/modules.php:755 ../../mobile/operation/modules.php:756 +#: ../../mobile/operation/modules.php:758 ../../mobile/operation/modules.php:761 +#: ../../mobile/operation/modules.php:762 ../../mobile/operation/modules.php:763 +#: ../../mobile/operation/modules.php:764 ../../mobile/operation/modules.php:765 +#: ../../mobile/operation/modules.php:766 ../../mobile/operation/modules.php:767 +#: ../../mobile/operation/modules.php:768 ../../mobile/operation/modules.php:912 +#: ../../mobile/operation/module_data.php:164 +#: ../../include/functions_reporting_html.php:2378 #: ../../include/functions_reporting_html.php:2864 -#: ../../include/functions_reporting_html.php:2871 -#: ../../include/functions_reporting_html.php:2921 -#: ../../include/functions_reporting_html.php:2995 -#: ../../include/ajax/module.php:1005 ../../include/ajax/custom_fields.php:412 -#: ../../include/functions_graph.php:3504 ../../include/functions_netflow.php:301 -#: ../../include/functions_reporting.php:4729 -#: ../../include/functions_reporting.php:4770 +#: ../../include/functions_reporting_html.php:2868 +#: ../../include/functions_reporting_html.php:2869 +#: ../../include/functions_reporting_html.php:2873 +#: ../../include/functions_reporting_html.php:2878 +#: ../../include/functions_reporting_html.php:2883 +#: ../../include/functions_reporting_html.php:2887 +#: ../../include/functions_reporting_html.php:2892 +#: ../../include/functions_reporting_html.php:2899 +#: ../../include/functions_reporting_html.php:2949 +#: ../../include/functions_reporting_html.php:3023 +#: ../../include/ajax/heatmap.ajax.php:336 ../../include/ajax/module.php:1028 +#: ../../include/ajax/custom_fields.php:412 +#: ../../include/functions_graph.php:3514 ../../include/functions_netflow.php:301 +#: ../../include/functions_reporting.php:4738 +#: ../../include/functions_reporting.php:4779 #: ../../include/functions_events.php:218 ../../include/functions_events.php:301 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1590 +#: ../../operation/agentes/status_monitor.php:1592 #: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/search_modules.php:38 +#: ../../operation/search_modules.php:41 msgid "Data" msgstr "Données" @@ -7954,7 +8084,7 @@ msgstr "Collection créée correctement" #: ../../enterprise/godmode/agentes/collections.editor.php:74 #: ../../enterprise/godmode/agentes/collections.editor.php:463 #: ../../enterprise/include/functions_collection.php:186 -#: ../../operation/agentes/ver_agente.php:1679 +#: ../../operation/agentes/ver_agente.php:1675 msgid "Files" msgstr "Fichiers" @@ -8060,7 +8190,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/collections.editor.php:179 #: ../../enterprise/godmode/agentes/collections.editor.php:245 #: ../../godmode/servers/plugin.php:171 -#: ../../include/functions_filemanager.php:776 +#: ../../include/functions_filemanager.php:791 msgid "Edit file" msgstr "Modifier le fichier" @@ -8151,27 +8281,28 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4037 #: ../../enterprise/godmode/wizards/consoletask_js.php:41 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4410 -#: ../../enterprise/operation/log/log_viewer.php:1195 -#: ../../enterprise/operation/log/log_viewer.php:1210 +#: ../../enterprise/operation/log/log_viewer.php:1193 +#: ../../enterprise/operation/log/log_viewer.php:1208 #: ../../enterprise/operation/services/services.treeview_services.php:410 #: ../../extensions/insert_data.php:279 -#: ../../godmode/agentes/planned_downtime.editor.php:2011 +#: ../../godmode/agentes/planned_downtime.editor.php:2007 #: ../../godmode/alerts/configure_alert_template.php:1506 #: ../../godmode/alerts/configure_alert_template.php:1590 -#: ../../godmode/setup/news.php:431 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5162 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:737 -#: ../../operation/tree.php:625 ../../operation/agentes/stat_win.php:585 -#: ../../operation/agentes/interface_traffic_graph_win.php:436 -#: ../../operation/agentes/datos_agente.php:312 -#: ../../operation/agentes/estado_monitores.php:464 +#: ../../godmode/setup/news.php:430 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5171 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:730 +#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:601 +#: ../../operation/agentes/interface_traffic_graph_win.php:445 +#: ../../operation/agentes/datos_agente.php:314 +#: ../../operation/agentes/estado_monitores.php:461 #: ../../operation/network/network_report.php:457 #: ../../operation/network/network_usage_map.php:294 -#: ../../operation/netflow/nf_live_view.php:865 +#: ../../operation/netflow/nf_live_view.php:976 +#: ../../operation/search_modules.php:353 #: ../../operation/reporting/reporting_viewer.php:360 #: ../../operation/reporting/reporting_viewer.php:379 #: ../../operation/reporting/graph_viewer.php:466 -#: ../../operation/events/events.php:3223 +#: ../../operation/events/events.php:3282 msgid "Choose time" msgstr "Définir temps" @@ -8183,28 +8314,29 @@ msgstr "Définir temps" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4101 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4411 #: ../../enterprise/include/lib/Metaconsole/Node.php:539 -#: ../../enterprise/operation/log/log_viewer.php:1196 -#: ../../enterprise/operation/log/log_viewer.php:1211 +#: ../../enterprise/operation/log/log_viewer.php:1194 +#: ../../enterprise/operation/log/log_viewer.php:1209 #: ../../enterprise/operation/services/services.treeview_services.php:411 #: ../../extensions/insert_data.php:280 -#: ../../godmode/agentes/planned_downtime.editor.php:2012 +#: ../../godmode/agentes/planned_downtime.editor.php:2008 #: ../../godmode/alerts/configure_alert_template.php:1507 #: ../../godmode/alerts/configure_alert_template.php:1591 -#: ../../godmode/setup/news.php:432 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5163 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:738 -#: ../../operation/tree.php:626 ../../operation/agentes/stat_win.php:586 -#: ../../operation/agentes/interface_traffic_graph_win.php:437 -#: ../../operation/agentes/datos_agente.php:313 -#: ../../operation/agentes/estado_monitores.php:465 +#: ../../godmode/setup/news.php:431 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5172 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:731 +#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:602 +#: ../../operation/agentes/interface_traffic_graph_win.php:446 +#: ../../operation/agentes/datos_agente.php:315 +#: ../../operation/agentes/estado_monitores.php:462 #: ../../operation/network/network_report.php:458 #: ../../operation/network/network_usage_map.php:295 -#: ../../operation/netflow/nf_live_view.php:866 +#: ../../operation/netflow/nf_live_view.php:977 +#: ../../operation/search_modules.php:354 #: ../../operation/reporting/reporting_viewer.php:361 #: ../../operation/reporting/reporting_viewer.php:380 #: ../../operation/reporting/graph_viewer.php:333 #: ../../operation/reporting/graph_viewer.php:467 -#: ../../operation/events/events.php:3224 +#: ../../operation/events/events.php:3283 msgid "Time" msgstr "Temps" @@ -8215,28 +8347,29 @@ msgstr "Temps" #: ../../enterprise/godmode/wizards/consoletask_js.php:43 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4102 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4412 -#: ../../enterprise/operation/log/log_viewer.php:1197 -#: ../../enterprise/operation/log/log_viewer.php:1212 +#: ../../enterprise/operation/log/log_viewer.php:1195 +#: ../../enterprise/operation/log/log_viewer.php:1210 #: ../../enterprise/operation/services/services.treeview_services.php:412 #: ../../extensions/insert_data.php:281 -#: ../../godmode/agentes/planned_downtime.editor.php:2013 +#: ../../godmode/agentes/planned_downtime.editor.php:2009 #: ../../godmode/alerts/configure_alert_template.php:1508 #: ../../godmode/alerts/configure_alert_template.php:1592 -#: ../../godmode/setup/news.php:433 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5164 -#: ../../include/functions_html.php:2319 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:739 -#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:587 -#: ../../operation/agentes/interface_traffic_graph_win.php:438 -#: ../../operation/agentes/datos_agente.php:314 -#: ../../operation/agentes/estado_monitores.php:466 +#: ../../godmode/setup/news.php:432 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5173 +#: ../../include/functions_html.php:2334 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:732 +#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:603 +#: ../../operation/agentes/interface_traffic_graph_win.php:447 +#: ../../operation/agentes/datos_agente.php:316 +#: ../../operation/agentes/estado_monitores.php:463 #: ../../operation/network/network_report.php:459 #: ../../operation/network/network_usage_map.php:296 -#: ../../operation/netflow/nf_live_view.php:867 +#: ../../operation/netflow/nf_live_view.php:978 +#: ../../operation/search_modules.php:355 #: ../../operation/reporting/reporting_viewer.php:362 #: ../../operation/reporting/reporting_viewer.php:381 #: ../../operation/reporting/graph_viewer.php:468 -#: ../../operation/events/events.php:3225 +#: ../../operation/events/events.php:3284 msgid "Hour" msgstr "Heure" @@ -8247,28 +8380,29 @@ msgstr "Heure" #: ../../enterprise/godmode/wizards/consoletask_js.php:44 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4103 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4413 -#: ../../enterprise/operation/log/log_viewer.php:1198 -#: ../../enterprise/operation/log/log_viewer.php:1213 +#: ../../enterprise/operation/log/log_viewer.php:1196 +#: ../../enterprise/operation/log/log_viewer.php:1211 #: ../../enterprise/operation/services/services.treeview_services.php:413 #: ../../extensions/insert_data.php:282 -#: ../../godmode/agentes/planned_downtime.editor.php:2014 +#: ../../godmode/agentes/planned_downtime.editor.php:2010 #: ../../godmode/alerts/configure_alert_template.php:1509 #: ../../godmode/alerts/configure_alert_template.php:1593 -#: ../../godmode/setup/news.php:434 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5165 -#: ../../include/functions_html.php:2320 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:740 -#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:588 -#: ../../operation/agentes/interface_traffic_graph_win.php:439 -#: ../../operation/agentes/datos_agente.php:315 -#: ../../operation/agentes/estado_monitores.php:467 +#: ../../godmode/setup/news.php:433 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5174 +#: ../../include/functions_html.php:2335 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:733 +#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:604 +#: ../../operation/agentes/interface_traffic_graph_win.php:448 +#: ../../operation/agentes/datos_agente.php:317 +#: ../../operation/agentes/estado_monitores.php:464 #: ../../operation/network/network_report.php:460 #: ../../operation/network/network_usage_map.php:297 -#: ../../operation/netflow/nf_live_view.php:868 +#: ../../operation/netflow/nf_live_view.php:979 +#: ../../operation/search_modules.php:356 #: ../../operation/reporting/reporting_viewer.php:363 #: ../../operation/reporting/reporting_viewer.php:382 #: ../../operation/reporting/graph_viewer.php:469 -#: ../../operation/events/events.php:3226 +#: ../../operation/events/events.php:3285 msgid "Minute" msgstr "Minute" @@ -8279,27 +8413,28 @@ msgstr "Minute" #: ../../enterprise/godmode/wizards/consoletask_js.php:45 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4104 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4414 -#: ../../enterprise/operation/log/log_viewer.php:1199 -#: ../../enterprise/operation/log/log_viewer.php:1214 +#: ../../enterprise/operation/log/log_viewer.php:1197 +#: ../../enterprise/operation/log/log_viewer.php:1212 #: ../../enterprise/operation/services/services.treeview_services.php:414 #: ../../extensions/insert_data.php:283 -#: ../../godmode/agentes/planned_downtime.editor.php:2015 +#: ../../godmode/agentes/planned_downtime.editor.php:2011 #: ../../godmode/alerts/configure_alert_template.php:1510 #: ../../godmode/alerts/configure_alert_template.php:1594 -#: ../../godmode/setup/news.php:435 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5166 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:741 -#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:589 -#: ../../operation/agentes/interface_traffic_graph_win.php:440 -#: ../../operation/agentes/datos_agente.php:316 -#: ../../operation/agentes/estado_monitores.php:468 +#: ../../godmode/setup/news.php:434 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5175 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:734 +#: ../../operation/tree.php:631 ../../operation/agentes/stat_win.php:605 +#: ../../operation/agentes/interface_traffic_graph_win.php:449 +#: ../../operation/agentes/datos_agente.php:318 +#: ../../operation/agentes/estado_monitores.php:465 #: ../../operation/network/network_report.php:461 #: ../../operation/network/network_usage_map.php:298 -#: ../../operation/netflow/nf_live_view.php:869 +#: ../../operation/netflow/nf_live_view.php:980 +#: ../../operation/search_modules.php:357 #: ../../operation/reporting/reporting_viewer.php:364 #: ../../operation/reporting/reporting_viewer.php:383 #: ../../operation/reporting/graph_viewer.php:470 -#: ../../operation/events/events.php:3227 +#: ../../operation/events/events.php:3286 msgid "Second" msgstr "Seconde" @@ -8310,36 +8445,37 @@ msgstr "Seconde" #: ../../enterprise/godmode/wizards/consoletask_js.php:46 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4105 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4415 -#: ../../enterprise/operation/log/log_viewer.php:1200 -#: ../../enterprise/operation/log/log_viewer.php:1215 +#: ../../enterprise/operation/log/log_viewer.php:1198 +#: ../../enterprise/operation/log/log_viewer.php:1213 #: ../../enterprise/operation/services/services.treeview_services.php:415 #: ../../extensions/insert_data.php:284 -#: ../../godmode/agentes/planned_downtime.editor.php:2016 +#: ../../godmode/agentes/planned_downtime.editor.php:2012 #: ../../godmode/alerts/configure_alert_template.php:1511 #: ../../godmode/alerts/configure_alert_template.php:1595 -#: ../../godmode/setup/news.php:436 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5167 +#: ../../godmode/setup/news.php:435 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5176 #: ../../include/functions.php:515 ../../include/functions.php:646 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:742 -#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:590 -#: ../../operation/agentes/interface_traffic_graph_win.php:441 -#: ../../operation/agentes/datos_agente.php:317 -#: ../../operation/agentes/estado_monitores.php:469 -#: ../../operation/agentes/agent_inventory.php:133 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:735 +#: ../../operation/tree.php:632 ../../operation/agentes/stat_win.php:606 +#: ../../operation/agentes/interface_traffic_graph_win.php:450 +#: ../../operation/agentes/datos_agente.php:319 +#: ../../operation/agentes/estado_monitores.php:466 +#: ../../operation/agentes/agent_inventory.php:141 #: ../../operation/network/network_report.php:462 #: ../../operation/network/network_usage_map.php:299 -#: ../../operation/netflow/nf_live_view.php:870 +#: ../../operation/netflow/nf_live_view.php:981 +#: ../../operation/search_modules.php:358 #: ../../operation/reporting/reporting_viewer.php:365 #: ../../operation/reporting/reporting_viewer.php:384 #: ../../operation/reporting/graph_viewer.php:471 -#: ../../operation/events/events.php:3228 +#: ../../operation/events/events.php:3287 msgid "Now" msgstr "Maintenant" #: ../../enterprise/meta/advanced/metasetup.setup.php:78 #: ../../enterprise/godmode/modules/configure_local_component.php:166 #: ../../godmode/modules/manage_network_components_form_common.php:52 -#: ../../godmode/users/configure_user.php:1405 +#: ../../godmode/users/configure_user.php:1454 #: ../../godmode/alerts/alert_commands.php:143 #: ../../godmode/alerts/alert_commands.php:184 #: ../../godmode/alerts/configure_alert_template.php:953 @@ -8364,17 +8500,17 @@ msgstr "Mot de passe de connexion automatique (hash)" #: ../../enterprise/meta/advanced/metasetup.setup.php:110 #: ../../godmode/setup/setup_general.php:58 ../../mobile/operation/events.php:248 #: ../../include/functions_reporting_html.php:1142 -#: ../../include/functions_reporting_html.php:2701 +#: ../../include/functions_reporting_html.php:2720 #: ../../include/functions.php:1291 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:434 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:430 #: ../../include/functions_events.php:2609 -#: ../../include/functions_events.php:3162 ../../operation/events/events.php:833 +#: ../../include/functions_events.php:3167 ../../operation/events/events.php:838 msgid "System" msgstr "Système" #: ../../enterprise/meta/advanced/metasetup.setup.php:111 -#: ../../godmode/setup/setup_general.php:59 ../../include/functions_menu.php:937 +#: ../../godmode/setup/setup_general.php:59 ../../include/functions_menu.php:942 msgid "Database" msgstr "Base de données" @@ -8434,7 +8570,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:192 #: ../../enterprise/godmode/setup/setup_auth.php:353 #: ../../godmode/setup/setup_general.php:80 -#: ../../include/functions_visual_map_editor.php:290 +#: ../../include/functions_visual_map_editor.php:286 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271 #: ../../include/functions_register.php:134 msgid "Africa" @@ -8443,7 +8579,7 @@ msgstr "Afrique" #: ../../enterprise/meta/advanced/metasetup.setup.php:193 #: ../../enterprise/godmode/setup/setup_auth.php:354 #: ../../godmode/setup/setup_general.php:81 -#: ../../include/functions_visual_map_editor.php:291 +#: ../../include/functions_visual_map_editor.php:287 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272 #: ../../include/functions_register.php:135 msgid "America" @@ -8452,7 +8588,7 @@ msgstr "Amérique" #: ../../enterprise/meta/advanced/metasetup.setup.php:194 #: ../../enterprise/godmode/setup/setup_auth.php:355 #: ../../godmode/setup/setup_general.php:82 -#: ../../include/functions_visual_map_editor.php:292 +#: ../../include/functions_visual_map_editor.php:288 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273 #: ../../include/functions_register.php:136 msgid "Antarctica" @@ -8461,7 +8597,7 @@ msgstr "Antarctique" #: ../../enterprise/meta/advanced/metasetup.setup.php:195 #: ../../enterprise/godmode/setup/setup_auth.php:356 #: ../../godmode/setup/setup_general.php:83 -#: ../../include/functions_visual_map_editor.php:293 +#: ../../include/functions_visual_map_editor.php:289 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274 #: ../../include/functions_register.php:137 msgid "Arctic" @@ -8470,7 +8606,7 @@ msgstr "Arctique" #: ../../enterprise/meta/advanced/metasetup.setup.php:196 #: ../../enterprise/godmode/setup/setup_auth.php:357 #: ../../godmode/setup/setup_general.php:84 -#: ../../include/functions_visual_map_editor.php:294 +#: ../../include/functions_visual_map_editor.php:290 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275 #: ../../include/functions_register.php:138 msgid "Asia" @@ -8479,7 +8615,7 @@ msgstr "Asie" #: ../../enterprise/meta/advanced/metasetup.setup.php:197 #: ../../enterprise/godmode/setup/setup_auth.php:358 #: ../../godmode/setup/setup_general.php:85 -#: ../../include/functions_visual_map_editor.php:295 +#: ../../include/functions_visual_map_editor.php:291 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276 #: ../../include/functions_register.php:139 msgid "Atlantic" @@ -8488,7 +8624,7 @@ msgstr "Atlantique" #: ../../enterprise/meta/advanced/metasetup.setup.php:198 #: ../../enterprise/godmode/setup/setup_auth.php:359 #: ../../godmode/setup/setup_general.php:86 -#: ../../include/functions_visual_map_editor.php:296 +#: ../../include/functions_visual_map_editor.php:292 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277 #: ../../include/functions_register.php:140 msgid "Australia" @@ -8497,7 +8633,7 @@ msgstr "Australie" #: ../../enterprise/meta/advanced/metasetup.setup.php:199 #: ../../enterprise/godmode/setup/setup_auth.php:360 #: ../../godmode/setup/setup_general.php:87 -#: ../../include/functions_visual_map_editor.php:297 +#: ../../include/functions_visual_map_editor.php:293 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278 #: ../../include/functions_register.php:141 msgid "Europe" @@ -8506,7 +8642,7 @@ msgstr "Europe" #: ../../enterprise/meta/advanced/metasetup.setup.php:200 #: ../../enterprise/godmode/setup/setup_auth.php:361 #: ../../godmode/setup/setup_general.php:88 -#: ../../include/functions_visual_map_editor.php:298 +#: ../../include/functions_visual_map_editor.php:294 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279 #: ../../include/functions_register.php:142 msgid "Indian" @@ -8515,7 +8651,7 @@ msgstr "Indien" #: ../../enterprise/meta/advanced/metasetup.setup.php:201 #: ../../enterprise/godmode/setup/setup_auth.php:362 #: ../../godmode/setup/setup_general.php:89 -#: ../../include/functions_visual_map_editor.php:299 +#: ../../include/functions_visual_map_editor.php:295 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280 #: ../../include/functions_register.php:143 msgid "Pacific" @@ -8524,7 +8660,7 @@ msgstr "Pacifique" #: ../../enterprise/meta/advanced/metasetup.setup.php:202 #: ../../enterprise/godmode/setup/setup_auth.php:363 #: ../../godmode/setup/setup_general.php:90 -#: ../../include/functions_visual_map_editor.php:300 +#: ../../include/functions_visual_map_editor.php:296 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281 #: ../../include/functions_register.php:144 msgid "UTC" @@ -8537,7 +8673,6 @@ msgstr "Modifier le fuseau horaire" #: ../../enterprise/meta/advanced/metasetup.setup.php:232 #: ../../enterprise/meta/include/functions_meta.php:161 -#: ../../godmode/setup/setup_general.php:434 #: ../../include/functions_register.php:164 #: ../../include/functions_config.php:283 msgid "Timezone setup" @@ -8582,9 +8717,9 @@ msgstr "Forcer l’utilisation d’une URL publique définie)." #: ../../enterprise/meta/advanced/metasetup.setup.php:306 #: ../../godmode/setup/setup_sflow.php:75 -#: ../../godmode/setup/setup_netflow.php:75 -#: ../../include/functions_config.php:1560 -#: ../../include/functions_config.php:1603 +#: ../../godmode/setup/setup_netflow.php:71 +#: ../../include/functions_config.php:1572 +#: ../../include/functions_config.php:1615 msgid "Disable custom live view filters" msgstr "Désactiver les filtres personnalisés d'affichage en temps réel" @@ -8646,7 +8781,7 @@ msgstr "Activer la mise à jour de Warp" #: ../../enterprise/meta/advanced/metasetup.setup.php:437 #: ../../enterprise/meta/include/functions_meta.php:276 #: ../../enterprise/godmode/setup/setup.php:106 -#: ../../include/functions_config.php:442 +#: ../../include/functions_config.php:450 msgid "Size of collection" msgstr "Taille de la collection" @@ -8707,34 +8842,38 @@ msgstr "Emplacement du journal : pandora_console/log/audit.log" #: ../../enterprise/meta/advanced/metasetup.setup.php:598 #: ../../enterprise/meta/include/functions_meta.php:326 #: ../../godmode/setup/setup_general.php:698 -#: ../../include/functions_config.php:386 +#: ../../include/functions_config.php:390 msgid "Enable console report" msgstr "Activer le rapport de console" #: ../../enterprise/meta/advanced/metasetup.setup.php:605 #: ../../enterprise/meta/include/functions_meta.php:346 +#: ../../godmode/setup/setup_general.php:708 +#: ../../include/functions_config.php:394 msgid "Check conexion interval" msgstr "Vérifier l’intervalle de conexion" #: ../../enterprise/meta/advanced/metasetup.setup.php:616 +#: ../../godmode/setup/setup_general.php:719 msgid "" "If there are any "In process" events with a specific Extra ID and a " "New event with that Extra ID is received, it will be created as "In " "process" instead." msgstr "" -"S’il y a des événements « En cours » avec un ID supplémentaire spécifique et " -"qu’un nouvel événement avec cet ID supplémentaire est reçu, il sera créé en " -"tant que « En cours » à la place." +"S’il y a quelques "En processus" événements avec un Extra ID " +"spécifique et un Nouveau événement avec ledit Extra ID est recevu, il sera " +"créé en tant que "En processus" au lieu." #: ../../enterprise/meta/advanced/metasetup.setup.php:639 #: ../../enterprise/meta/include/functions_meta.php:336 +#: ../../godmode/setup/setup_general.php:724 msgid "Keep In process status for new events with extra ID" msgstr "" -"Conserver l’état en cours pour les nouveaux événements avec ID supplémentaire" +"Maintenir l’état En processus pour des nouveaux événements avec un ID extra" #: ../../enterprise/meta/advanced/policymanager.sync.php:247 #: ../../enterprise/meta/include/functions_groups_meta.php:174 -#: ../../godmode/groups/group_list.php:664 +#: ../../godmode/groups/group_list.php:665 #, php-format msgid "Error connecting to %s" msgstr "Erreur de connexion à %s" @@ -8795,23 +8934,23 @@ msgstr "%s alertes de politique supprimées" #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 #: ../../enterprise/include/class/LogSource.class.php:602 -#: ../../enterprise/operation/log/log_viewer.php:793 +#: ../../enterprise/operation/log/log_viewer.php:791 #: ../../godmode/massive/massive_copy_modules.php:144 #: ../../godmode/reporting/reporting_builder.item_editor.php:1677 -#: ../../godmode/events/event_edit_filter.php:797 +#: ../../godmode/events/event_edit_filter.php:799 #: ../../godmode/events/custom_events.php:107 #: ../../include/functions_events.php:212 ../../include/functions_events.php:283 -#: ../../include/functions_events.php:4554 -#: ../../include/functions_events.php:4636 +#: ../../include/functions_events.php:4559 +#: ../../include/functions_events.php:4641 #: ../../operation/agentes/log_sources_status.php:56 #: ../../operation/agentes/pandora_networkmap.editor.php:425 #: ../../operation/agentes/pandora_networkmap.view.php:173 -#: ../../operation/events/events.php:1886 +#: ../../operation/events/events.php:1940 msgid "Source" msgstr "Source" #: ../../enterprise/meta/advanced/policymanager.sync.php:308 -#: ../../extensions/dbmanager.php:191 ../../include/lib/Dashboard/Widget.php:610 +#: ../../extensions/dbmanager.php:191 ../../include/lib/Dashboard/Widget.php:611 msgid "This metaconsole" msgstr "Cette Métaconsole" @@ -8821,26 +8960,26 @@ msgstr "Cette Métaconsole" #: ../../enterprise/extensions/resource_exportation/functions.php:35 #: ../../enterprise/godmode/agentes/collection_manager.php:260 #: ../../enterprise/godmode/agentes/plugins_manager.php:213 -#: ../../enterprise/godmode/policies/policy_queue.php:286 -#: ../../enterprise/godmode/policies/policy_queue.php:685 +#: ../../enterprise/godmode/policies/policy_queue.php:288 +#: ../../enterprise/godmode/policies/policy_queue.php:687 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:114 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462 #: ../../enterprise/include/functions_policies.php:4043 #: ../../enterprise/operation/agentes/policy_view.php:67 #: ../../enterprise/operation/agentes/collection_view.php:83 -#: ../../godmode/agentes/status_monitor_custom_fields.php:73 -#: ../../godmode/agentes/status_monitor_custom_fields.php:140 +#: ../../godmode/agentes/status_monitor_custom_fields.php:93 +#: ../../godmode/agentes/status_monitor_custom_fields.php:160 #: ../../godmode/agentes/inventory_manager.php:232 #: ../../godmode/agentes/module_manager.php:619 #: ../../godmode/alerts/alert_view.php:154 -#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:999 -#: ../../operation/agentes/alerts_status.php:249 +#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:1022 #: ../../operation/agentes/alerts_status.php:250 -#: ../../operation/agentes/status_monitor.php:1531 +#: ../../operation/agentes/alerts_status.php:251 +#: ../../operation/agentes/status_monitor.php:1533 msgid "Policy" msgstr "Politique" @@ -8889,12 +9028,12 @@ msgstr "Exécuté :" #: ../../enterprise/operation/agentes/wux_console_view.php:342 #: ../../enterprise/operation/agentes/wux_console_view.php:363 #: ../../godmode/setup/performance.php:193 -#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:199 +#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:208 msgid "ago" msgstr "il y a" #: ../../enterprise/meta/advanced/metasetup.performance.php:112 -#: ../../godmode/menu.php:363 ../../godmode/setup/setup.php:125 +#: ../../godmode/menu.php:361 ../../godmode/setup/setup.php:125 #: ../../godmode/setup/setup.php:279 msgid "Performance" msgstr "Performance" @@ -8912,13 +9051,13 @@ msgstr "Utiliser des statistiques en temps réel" #: ../../enterprise/meta/advanced/metasetup.performance.php:139 #: ../../enterprise/meta/include/functions_meta.php:2030 -#: ../../godmode/setup/performance.php:293 ../../include/functions_config.php:842 +#: ../../godmode/setup/performance.php:293 ../../include/functions_config.php:854 msgid "Max. days before delete audit events" msgstr "Nombre de jours maximum avant la suppression d'événements d'audit" #: ../../enterprise/meta/advanced/metasetup.performance.php:154 #: ../../enterprise/meta/include/functions_meta.php:2040 -#: ../../godmode/setup/performance.php:637 ../../include/functions_config.php:882 +#: ../../godmode/setup/performance.php:637 ../../include/functions_config.php:894 msgid "Default hours for event view" msgstr "Heures par défaut pour la visualisation des événements" @@ -8945,26 +9084,26 @@ msgid "maximum number of events to be displayed per node" msgstr "nombre maximale d’événements à montrer par noeud" #: ../../enterprise/meta/advanced/metasetup.performance.php:211 -#: ../../godmode/setup/performance.php:761 ../../include/functions_config.php:944 +#: ../../godmode/setup/performance.php:761 ../../include/functions_config.php:956 msgid "Row limit in csv log" msgstr "Limite de ligne dans le journal csv" #: ../../enterprise/meta/advanced/metasetup.performance.php:226 #: ../../enterprise/meta/include/functions_meta.php:2103 -#: ../../godmode/setup/performance.php:425 ../../include/functions_config.php:918 +#: ../../godmode/setup/performance.php:425 ../../include/functions_config.php:930 msgid "Max. macro data fields" msgstr "Nombre maximum de champs macro de données" #: ../../enterprise/meta/advanced/metasetup.performance.php:241 #: ../../enterprise/meta/include/functions_meta.php:2113 -#: ../../godmode/setup/performance.php:601 ../../include/functions_config.php:874 +#: ../../godmode/setup/performance.php:601 ../../include/functions_config.php:886 msgid "Limit of events per query" msgstr "Limite d’événements par requête" #: ../../enterprise/meta/advanced/metasetup.performance.php:255 #: ../../enterprise/meta/include/functions_meta.php:2123 #: ../../godmode/setup/performance.php:338 -#: ../../godmode/setup/performance.php:470 ../../include/functions_config.php:850 +#: ../../godmode/setup/performance.php:470 ../../include/functions_config.php:862 msgid "Max. days before purge" msgstr "Nombre de jours maximum avant le nettoyage" @@ -9022,7 +9161,7 @@ msgid "To manage collections you must activate centralized management" msgstr "Pour gérer les collections, vous devez activer la gestion centralisée" #: ../../enterprise/meta/advanced/collections.php:227 -#: ../../godmode/users/user_list.php:488 ../../godmode/users/user_list.php:493 +#: ../../godmode/users/user_list.php:489 ../../godmode/users/user_list.php:494 msgid "Search by username, fullname or email" msgstr "Rechercher par nom d'utilisateur, nom complet ou courriel" @@ -9037,7 +9176,7 @@ msgstr "Erreur : le répertoire principal de la collection n'existe pas." #: ../../enterprise/include/functions_groups.php:81 #: ../../enterprise/operation/agentes/ver_agente.php:210 #: ../../godmode/agentes/configurar_agente.php:716 -#: ../../operation/agentes/ver_agente.php:1856 +#: ../../operation/agentes/ver_agente.php:1852 msgid "Collection" msgstr "Collection" @@ -9051,7 +9190,7 @@ msgstr "Nom abrégé" #: ../../enterprise/meta/advanced/collections.php:442 #: ../../enterprise/godmode/agentes/collections.php:537 -#: ../../operation/agentes/status_monitor.php:2257 +#: ../../operation/agentes/status_monitor.php:2259 msgid "Are you sure to delete?" msgstr "Êtes-vous sûr(e) de vouloir le supprimer ?" @@ -9105,12 +9244,12 @@ msgid "There are no collections defined yet." msgstr "Aucune collection définie jusqu'à présent." #: ../../enterprise/meta/advanced/policymanager.queue.php:58 -#: ../../enterprise/godmode/policies/policy_queue.php:96 +#: ../../enterprise/godmode/policies/policy_queue.php:98 msgid "Operation successfully deleted from the queue" msgstr "Opération supprimée correctement de la file d'attente" #: ../../enterprise/meta/advanced/policymanager.queue.php:59 -#: ../../enterprise/godmode/policies/policy_queue.php:97 +#: ../../enterprise/godmode/policies/policy_queue.php:99 msgid "Operation cannot be deleted from the queue" msgstr "Impossible de supprimer l'opération de la file d'attente" @@ -9118,42 +9257,42 @@ msgstr "Impossible de supprimer l'opération de la file d'attente" #: ../../enterprise/meta/advanced/policymanager.queue.php:259 #: ../../enterprise/meta/include/functions_autoprovision.php:698 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:501 -#: ../../enterprise/godmode/policies/policy_queue.php:311 -#: ../../enterprise/godmode/policies/policy_queue.php:687 +#: ../../enterprise/godmode/policies/policy_queue.php:313 +#: ../../enterprise/godmode/policies/policy_queue.php:689 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3815 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:176 #: ../../enterprise/include/functions_reporting_csv.php:1064 #: ../../enterprise/include/class/CommandCenter.class.php:453 #: ../../extensions/api_checker.php:279 ../../godmode/extensions.php:169 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4642 -#: ../../include/functions_reporting_html.php:2460 -#: ../../include/functions_reporting_html.php:4959 -#: ../../include/functions_menu.php:675 -#: ../../include/class/ExternalTools.class.php:571 ../../general/main_menu.php:78 -#: ../../general/main_menu.php:85 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4651 +#: ../../include/functions_reporting_html.php:2481 +#: ../../include/functions_reporting_html.php:4987 +#: ../../include/functions_menu.php:679 +#: ../../include/class/ExternalTools.class.php:571 ../../general/main_menu.php:79 +#: ../../general/main_menu.php:86 msgid "Operation" msgstr "Opération" #: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/godmode/policies/policy_queue.php:305 +#: ../../enterprise/godmode/policies/policy_queue.php:307 msgid "Apply (database and files)" msgstr "Appliquer (base de données et fichiers)" #: ../../enterprise/meta/advanced/policymanager.queue.php:219 #: ../../enterprise/meta/advanced/policymanager.queue.php:315 -#: ../../enterprise/godmode/policies/policy_queue.php:306 -#: ../../enterprise/godmode/policies/policy_queue.php:758 +#: ../../enterprise/godmode/policies/policy_queue.php:308 +#: ../../enterprise/godmode/policies/policy_queue.php:762 msgid "Apply (only database)" msgstr "Appliquer (seulement base de données)" #: ../../enterprise/meta/advanced/policymanager.queue.php:229 -#: ../../enterprise/godmode/policies/policy_queue.php:330 +#: ../../enterprise/godmode/policies/policy_queue.php:332 msgid "Complete" msgstr "Compléter" #: ../../enterprise/meta/advanced/policymanager.queue.php:230 -#: ../../enterprise/godmode/policies/policy_queue.php:331 +#: ../../enterprise/godmode/policies/policy_queue.php:333 msgid "Incomplete" msgstr "Inachevé" @@ -9164,13 +9303,13 @@ msgstr "Inachevé" #: ../../enterprise/godmode/agentes/collection_manager.php:94 #: ../../enterprise/godmode/agentes/collection_manager.php:95 #: ../../enterprise/godmode/agentes/collections.php:458 -#: ../../enterprise/godmode/policies/policy_modules.php:1494 -#: ../../enterprise/godmode/policies/policy_queue.php:356 +#: ../../enterprise/godmode/policies/policy_modules.php:1539 +#: ../../enterprise/godmode/policies/policy_queue.php:358 #: ../../enterprise/godmode/policies/policies.php:341 #: ../../enterprise/godmode/policies/policy_linking.php:152 #: ../../enterprise/godmode/policies/policy_external_alerts.php:393 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:274 #: ../../enterprise/godmode/setup/setup_acl.php:495 #: ../../enterprise/include/class/SAPView.class.php:409 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2928 @@ -9180,18 +9319,18 @@ msgstr "Inachevé" #: ../../enterprise/operation/services/services.treeview_services.php:164 #: ../../enterprise/operation/services/services.treeview_services.php:187 #: ../../enterprise/operation/services/services.list.php:482 -#: ../../extensions/agents_modules.php:665 ../../extensions/module_groups.php:305 +#: ../../extensions/agents_modules.php:673 ../../extensions/module_groups.php:305 #: ../../godmode/modules/manage_network_templates_form.php:277 #: ../../godmode/modules/manage_network_templates_form.php:337 -#: ../../godmode/modules/manage_network_components.php:697 -#: ../../godmode/groups/group_list.php:799 ../../godmode/users/user_list.php:521 -#: ../../godmode/users/user_list.php:522 +#: ../../godmode/modules/manage_network_components.php:700 +#: ../../godmode/groups/group_list.php:800 ../../godmode/users/user_list.php:522 +#: ../../godmode/users/user_list.php:523 #: ../../godmode/agentes/modificar_agente.php:397 #: ../../godmode/agentes/modificar_agente.php:412 #: ../../godmode/agentes/modificar_agente.php:413 #: ../../godmode/agentes/planned_downtime.list.php:647 #: ../../godmode/netflow/nf_item_list.php:174 -#: ../../godmode/netflow/nf_edit_form.php:238 +#: ../../godmode/netflow/nf_edit_form.php:283 #: ../../godmode/snmpconsole/snmp_alert.php:1797 #: ../../godmode/snmpconsole/snmp_filters.php:216 #: ../../godmode/snmpconsole/snmp_filters.php:314 @@ -9199,32 +9338,33 @@ msgstr "Inachevé" #: ../../godmode/reporting/map_builder.php:384 #: ../../godmode/reporting/graphs.php:283 #: ../../godmode/reporting/visual_console_favorite.php:204 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1120 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1122 #: ../../godmode/reporting/reporting_builder.php:766 -#: ../../godmode/tag/tag.php:247 ../../include/ajax/agent.php:652 -#: ../../include/functions_ui.php:3697 -#: ../../include/class/ModuleTemplates.class.php:713 ../../operation/tree.php:339 +#: ../../godmode/tag/tag.php:248 ../../include/ajax/agent.php:652 +#: ../../include/functions_ui.php:3745 +#: ../../include/class/ModuleTemplates.class.php:713 ../../operation/tree.php:341 #: ../../operation/agentes/estado_agente.php:444 #: ../../operation/agentes/graphs.php:270 #: ../../operation/agentes/interface_view.functions.php:134 -#: ../../operation/agentes/status_monitor.php:1034 -#: ../../operation/agentes/estado_monitores.php:626 +#: ../../operation/agentes/status_monitor.php:1036 +#: ../../operation/agentes/estado_monitores.php:620 +#: ../../operation/agentes/agent_inventory.php:165 #: ../../operation/network/network_report.php:205 #: ../../operation/network/network_usage_map.php:249 #: ../../operation/network/network_usage_map.php:250 -#: ../../operation/netflow/nf_live_view.php:273 -#: ../../operation/netflow/nf_live_view.php:605 -#: ../../operation/netflow/nf_live_view.php:606 +#: ../../operation/netflow/nf_live_view.php:282 +#: ../../operation/netflow/nf_live_view.php:678 +#: ../../operation/netflow/nf_live_view.php:679 #: ../../operation/incidents/list_integriaims_incidents.php:470 -#: ../../operation/inventory/inventory.php:704 +#: ../../operation/inventory/inventory.php:705 #: ../../operation/reporting/graph_viewer.php:399 msgid "Filter" msgstr "Filtre" #: ../../enterprise/meta/advanced/policymanager.queue.php:246 #: ../../enterprise/meta/agentsearch.php:111 -#: ../../godmode/alerts/alert_templates.php:357 -#: ../../godmode/alerts/alert_templates.php:358 +#: ../../godmode/alerts/alert_templates.php:361 +#: ../../godmode/alerts/alert_templates.php:362 msgid "Show Options" msgstr "Afficher les options" @@ -9242,21 +9382,21 @@ msgstr "Afficher les options" #: ../../enterprise/include/class/CSVImportAgents.class.php:157 #: ../../enterprise/include/class/SAPView.class.php:226 #: ../../enterprise/include/functions_events.php:216 -#: ../../enterprise/operation/log/log_viewer.php:749 -#: ../../godmode/modules/manage_network_components.php:775 +#: ../../enterprise/operation/log/log_viewer.php:747 +#: ../../godmode/modules/manage_network_components.php:778 #: ../../godmode/agentes/agent_manager.php:551 #: ../../godmode/agentes/module_manager.php:623 -#: ../../godmode/massive/massive_edit_agents.php:757 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1215 +#: ../../godmode/massive/massive_edit_agents.php:774 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1217 #: ../../godmode/reporting/reporting_builder.item_editor.php:1238 #: ../../godmode/reporting/reporting_builder.item_editor.php:1260 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3695 -#: ../../godmode/events/event_edit_filter.php:930 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3704 +#: ../../godmode/events/event_edit_filter.php:932 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1065 -#: ../../include/functions_reporting_html.php:2350 +#: ../../include/functions_reporting_html.php:2371 #: ../../include/class/AgentWizard.class.php:1282 -#: ../../operation/inventory/inventory.php:490 -#: ../../operation/events/events.php:1953 +#: ../../operation/inventory/inventory.php:492 +#: ../../operation/events/events.php:2007 msgid "Server" msgstr "Serveur" @@ -9266,11 +9406,11 @@ msgstr "Serveur" #: ../../enterprise/meta/monitoring/group_view.php:212 #: ../../enterprise/meta/include/functions_autoprovision.php:497 #: ../../enterprise/godmode/agentes/collections.agents.php:62 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123 #: ../../enterprise/godmode/agentes/collections.data.php:155 #: ../../enterprise/godmode/agentes/collections.data.php:321 #: ../../enterprise/godmode/agentes/collections.editor.php:83 -#: ../../enterprise/godmode/policies/policy_queue.php:686 +#: ../../enterprise/godmode/policies/policy_queue.php:688 #: ../../enterprise/godmode/policies/policies.php:438 #: ../../enterprise/godmode/policies/policies.php:603 #: ../../enterprise/godmode/policies/policy_agents.php:719 @@ -9287,8 +9427,8 @@ msgstr "Serveur" #: ../../enterprise/operation/services/massive/services.create.php:985 #: ../../enterprise/operation/services/massive/service.create.elements.php:379 #: ../../enterprise/operation/services/services.service_map.php:148 -#: ../../extensions/agents_modules.php:470 -#: ../../extensions/agents_modules.php:841 ../../godmode/groups/tactical.php:213 +#: ../../extensions/agents_modules.php:478 +#: ../../extensions/agents_modules.php:865 ../../godmode/groups/tactical.php:213 #: ../../godmode/agentes/planned_downtime.list.php:84 #: ../../godmode/agentes/planned_downtime.list.php:109 #: ../../godmode/massive/massive_standby_alerts.php:204 @@ -9305,34 +9445,34 @@ msgstr "Serveur" #: ../../godmode/reporting/reporting_builder.item_editor.php:2126 #: ../../godmode/reporting/visual_console_builder.wizard.php:430 #: ../../mobile/include/functions_web.php:23 -#: ../../mobile/operation/agents.php:204 ../../mobile/operation/home.php:81 -#: ../../mobile/operation/agent.php:155 -#: ../../include/functions_reporting_html.php:2094 -#: ../../include/functions_reporting_html.php:2566 -#: ../../include/functions_reporting_html.php:3349 -#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1685 -#: ../../include/functions_html.php:5914 +#: ../../mobile/operation/agents.php:205 ../../mobile/operation/home.php:81 +#: ../../mobile/operation/agent.php:161 +#: ../../include/functions_reporting_html.php:2115 +#: ../../include/functions_reporting_html.php:2587 +#: ../../include/functions_reporting_html.php:3377 +#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1693 +#: ../../include/functions_html.php:5938 #: ../../include/functions_massive_operations.php:217 -#: ../../include/class/Diagnostics.class.php:1184 #: ../../include/class/Diagnostics.class.php:1188 #: ../../include/class/Diagnostics.class.php:1192 #: ../../include/class/Diagnostics.class.php:1196 -#: ../../include/class/NetworkMap.class.php:3439 +#: ../../include/class/Diagnostics.class.php:1200 +#: ../../include/class/NetworkMap.class.php:3445 #: ../../include/class/AgentsAlerts.class.php:252 #: ../../include/class/AgentsAlerts.class.php:567 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:340 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:345 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:432 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:347 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:352 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:445 #: ../../include/functions_groups.php:53 ../../operation/heatmap.php:98 #: ../../operation/search_results.php:81 #: ../../operation/agentes/interface_view.functions.php:78 #: ../../operation/agentes/group_view.php:184 -#: ../../operation/agentes/group_view.php:234 +#: ../../operation/agentes/group_view.php:237 msgid "Agents" msgstr "Agents" #: ../../enterprise/meta/advanced/policymanager.queue.php:260 -#: ../../enterprise/godmode/policies/policy_queue.php:688 +#: ../../enterprise/godmode/policies/policy_queue.php:690 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:712 #: ../../enterprise/include/class/Omnishell.class.php:408 #: ../../enterprise/include/functions_ipam.php:1425 @@ -9342,18 +9482,18 @@ msgid "Progress" msgstr "En cours" #: ../../enterprise/meta/advanced/policymanager.queue.php:298 -#: ../../enterprise/godmode/policies/policy_queue.php:728 +#: ../../enterprise/godmode/policies/policy_queue.php:730 msgid "Policy " msgstr "Politique " #: ../../enterprise/meta/advanced/policymanager.queue.php:339 -#: ../../enterprise/godmode/policies/policy_queue.php:788 -#: ../../enterprise/godmode/policies/policy_queue.php:797 +#: ../../enterprise/godmode/policies/policy_queue.php:792 +#: ../../enterprise/godmode/policies/policy_queue.php:801 msgid "Policy applying timeout" msgstr "Temps d’attente de l’application de la politique" #: ../../enterprise/meta/advanced/policymanager.queue.php:353 -#: ../../enterprise/godmode/policies/policy_queue.php:816 +#: ../../enterprise/godmode/policies/policy_queue.php:820 msgid "Delete from queue" msgstr "Supprimer de la file d'attente" @@ -9431,17 +9571,17 @@ msgstr "Vider la file" #: ../../enterprise/include/functions_services.php:1666 #: ../../enterprise/include/functions_events.php:80 #: ../../enterprise/operation/agentes/tag_view.php:693 -#: ../../enterprise/operation/log/log_viewer.php:770 +#: ../../enterprise/operation/log/log_viewer.php:768 #: ../../enterprise/tools/ipam/ipam_network.php:425 #: ../../enterprise/tools/ipam/ipam_ajax.php:382 #: ../../extensions/insert_data.php:194 #: ../../godmode/modules/manage_inventory_modules.php:317 -#: ../../godmode/agentes/status_monitor_custom_fields.php:77 -#: ../../godmode/agentes/status_monitor_custom_fields.php:141 +#: ../../godmode/agentes/status_monitor_custom_fields.php:97 +#: ../../godmode/agentes/status_monitor_custom_fields.php:161 #: ../../godmode/agentes/module_manager_editor_prediction.php:134 #: ../../godmode/agentes/planned_downtime.list.php:420 -#: ../../godmode/agentes/module_manager_editor_common.php:1475 -#: ../../godmode/agentes/module_manager_editor_common.php:1534 +#: ../../godmode/agentes/module_manager_editor_common.php:1485 +#: ../../godmode/agentes/module_manager_editor_common.php:1544 #: ../../godmode/gis_maps/configure_gis_map.php:592 #: ../../godmode/massive/massive_copy_modules.php:131 #: ../../godmode/massive/massive_copy_modules.php:295 @@ -9457,55 +9597,55 @@ msgstr "Vider la file" #: ../../godmode/reporting/create_container.php:473 #: ../../godmode/reporting/create_container.php:657 #: ../../godmode/reporting/create_container.php:744 -#: ../../godmode/reporting/graph_builder.graph_editor.php:212 -#: ../../godmode/reporting/reporting_builder.item_editor.php:211 -#: ../../godmode/reporting/reporting_builder.item_editor.php:890 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1168 +#: ../../godmode/reporting/graph_builder.graph_editor.php:345 +#: ../../godmode/reporting/reporting_builder.item_editor.php:212 +#: ../../godmode/reporting/reporting_builder.item_editor.php:891 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1170 #: ../../godmode/reporting/reporting_builder.item_editor.php:1735 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4093 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4611 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4635 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4102 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4620 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4644 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.wizard.php:463 #: ../../godmode/reporting/visual_console_builder.wizard.php:789 #: ../../godmode/reporting/visual_console_builder.wizard.php:812 #: ../../godmode/servers/plugin.php:85 ../../mobile/operation/agents.php:93 -#: ../../mobile/operation/agents.php:403 ../../mobile/operation/modules.php:597 -#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335 -#: ../../mobile/operation/events.php:841 -#: ../../include/functions_visual_map_editor.php:422 -#: ../../include/functions_visual_map_editor.php:455 +#: ../../mobile/operation/agents.php:404 ../../mobile/operation/modules.php:608 +#: ../../mobile/operation/home.php:112 ../../mobile/operation/services.php:225 +#: ../../mobile/operation/events.php:870 +#: ../../include/functions_visual_map_editor.php:416 +#: ../../include/functions_visual_map_editor.php:449 #: ../../include/functions_reporting_html.php:548 #: ../../include/functions_reporting_html.php:947 #: ../../include/functions_reporting_html.php:1059 #: ../../include/functions_reporting_html.php:1067 -#: ../../include/functions_reporting_html.php:2016 -#: ../../include/functions_reporting_html.php:2353 -#: ../../include/functions_reporting_html.php:2458 -#: ../../include/functions_reporting_html.php:3312 -#: ../../include/functions_reporting_html.php:3447 -#: ../../include/functions_reporting_html.php:3741 -#: ../../include/functions_reporting_html.php:3822 -#: ../../include/functions_reporting_html.php:3830 -#: ../../include/functions_reporting_html.php:3839 -#: ../../include/functions_reporting_html.php:3851 -#: ../../include/functions_reporting_html.php:4011 -#: ../../include/functions_reporting_html.php:4135 -#: ../../include/functions_reporting_html.php:4229 -#: ../../include/functions_reporting_html.php:4956 -#: ../../include/functions_reporting_html.php:5004 -#: ../../include/functions_reporting_html.php:5043 -#: ../../include/functions_reporting_html.php:5371 -#: ../../include/functions_reporting_html.php:5411 -#: ../../include/functions_reporting_html.php:5661 -#: ../../include/ajax/heatmap.ajax.php:252 -#: ../../include/ajax/heatmap.ajax.php:291 -#: ../../include/ajax/heatmap.ajax.php:326 +#: ../../include/functions_reporting_html.php:2032 +#: ../../include/functions_reporting_html.php:2374 +#: ../../include/functions_reporting_html.php:2479 +#: ../../include/functions_reporting_html.php:3340 +#: ../../include/functions_reporting_html.php:3475 +#: ../../include/functions_reporting_html.php:3769 +#: ../../include/functions_reporting_html.php:3850 +#: ../../include/functions_reporting_html.php:3858 +#: ../../include/functions_reporting_html.php:3867 +#: ../../include/functions_reporting_html.php:3879 +#: ../../include/functions_reporting_html.php:4039 +#: ../../include/functions_reporting_html.php:4163 +#: ../../include/functions_reporting_html.php:4257 +#: ../../include/functions_reporting_html.php:4984 +#: ../../include/functions_reporting_html.php:5032 +#: ../../include/functions_reporting_html.php:5071 +#: ../../include/functions_reporting_html.php:5399 +#: ../../include/functions_reporting_html.php:5439 +#: ../../include/functions_reporting_html.php:5689 +#: ../../include/ajax/heatmap.ajax.php:294 +#: ../../include/ajax/heatmap.ajax.php:419 +#: ../../include/ajax/heatmap.ajax.php:454 #: ../../include/ajax/alert_list.ajax.php:459 -#: ../../include/functions_inventory.php:393 -#: ../../include/functions_inventory.php:1063 -#: ../../include/functions_inventory.php:1119 -#: ../../include/functions_graph.php:5062 ../../include/functions_gis.php:229 +#: ../../include/functions_inventory.php:402 +#: ../../include/functions_inventory.php:1173 +#: ../../include/functions_inventory.php:1229 +#: ../../include/functions_graph.php:5072 ../../include/functions_gis.php:229 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281 @@ -9514,22 +9654,24 @@ msgstr "Vider la file" #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:414 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:240 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:575 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:217 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:214 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368 #: ../../include/functions_reports.php:1332 -#: ../../include/class/NetworkMap.class.php:2979 -#: ../../include/class/NetworkMap.class.php:3031 -#: ../../include/class/NetworkMap.class.php:3363 +#: ../../include/class/NetworkMap.class.php:2985 +#: ../../include/class/NetworkMap.class.php:3037 +#: ../../include/class/NetworkMap.class.php:3369 #: ../../include/class/AgentsAlerts.class.php:430 -#: ../../include/class/AgentsAlerts.class.php:981 -#: ../../include/functions_reporting.php:7332 +#: ../../include/class/AgentsAlerts.class.php:982 +#: ../../include/functions_reporting.php:7341 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:341 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:279 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:416 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:360 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:463 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:373 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:442 #: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250 #: ../../include/lib/Dashboard/Widgets/module_icon.php:359 #: ../../include/lib/Dashboard/Widgets/module_value.php:334 @@ -9540,20 +9682,20 @@ msgstr "Vider la file" #: ../../include/lib/Dashboard/Widgets/module_status.php:350 #: ../../include/lib/Dashboard/Widgets/single_graph.php:301 #: ../../include/lib/Dashboard/Widgets/top_n.php:206 -#: ../../include/functions_snmp_browser.php:1809 +#: ../../include/functions_snmp_browser.php:1818 #: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48 #: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/estado_agente.php:1023 +#: ../../operation/agentes/estado_agente.php:1030 #: ../../operation/agentes/interface_view.functions.php:499 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1536 +#: ../../operation/agentes/status_monitor.php:1538 #: ../../operation/agentes/estado_monitores.php:123 #: ../../operation/agentes/ver_agente.php:1187 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269 #: ../../operation/search_alerts.php:34 -#: ../../operation/inventory/inventory.php:628 -#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2688 +#: ../../operation/inventory/inventory.php:630 +#: ../../operation/search_modules.php:36 ../../operation/events/events.php:2742 msgid "Agent" msgstr "Agent" @@ -9575,14 +9717,13 @@ msgstr "Agent" #: ../../extensions/api_checker.php:231 ../../extensions/users_connected.php:178 #: ../../godmode/reporting/reporting_builder.item_editor.php:70 #: ../../godmode/reporting/visual_console_builder.elements.php:847 -#: ../../include/functions_visual_map_editor.php:1455 -#: ../../include/functions_reporting_html.php:3329 -#: ../../include/functions_reporting_html.php:3662 -#: ../../include/ajax/heatmap.ajax.php:333 +#: ../../include/functions_visual_map_editor.php:1513 +#: ../../include/functions_reporting_html.php:3357 +#: ../../include/functions_reporting_html.php:3690 +#: ../../include/ajax/heatmap.ajax.php:461 #: ../../include/class/AuditLog.class.php:223 #: ../../operation/network/network_report.php:272 -#: ../../operation/inventory/inventory.php:1000 -#: ../../operation/inventory/inventory.php:1294 +#: ../../operation/inventory/inventory.php:1246 msgid "IP" msgstr "Adresse IP" @@ -9604,43 +9745,43 @@ msgstr "État des agents" #: ../../enterprise/operation/services/services.treeview_services.php:321 #: ../../enterprise/operation/services/services.list.php:205 #: ../../enterprise/operation/services/services.table_services.php:141 -#: ../../godmode/groups/group_list.php:1114 +#: ../../godmode/groups/group_list.php:1126 #: ../../godmode/agentes/module_manager_editor_common.php:476 -#: ../../godmode/agentes/module_manager_editor_common.php:559 -#: ../../godmode/netflow/nf_edit_form.php:245 +#: ../../godmode/agentes/module_manager_editor_common.php:564 +#: ../../godmode/netflow/nf_edit_form.php:290 #: ../../godmode/massive/massive_copy_modules.php:115 #: ../../godmode/massive/massive_copy_modules.php:275 #: ../../godmode/massive/massive_delete_modules.php:418 #: ../../godmode/massive/massive_delete_modules.php:439 #: ../../godmode/massive/massive_edit_modules.php:385 #: ../../godmode/massive/massive_edit_modules.php:471 -#: ../../godmode/setup/setup_visuals.php:1013 -#: ../../godmode/setup/setup_visuals.php:1035 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3830 +#: ../../godmode/setup/setup_visuals.php:1017 +#: ../../godmode/setup/setup_visuals.php:1039 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3839 #: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69 -#: ../../include/functions_reporting_html.php:2573 +#: ../../include/functions_reporting_html.php:2594 #: ../../include/functions.php:1087 ../../include/functions.php:1327 #: ../../include/functions.php:1334 ../../include/functions.php:1367 -#: ../../include/ajax/module.php:1933 ../../include/functions_graph.php:3329 -#: ../../include/functions_graph.php:3331 ../../include/functions_graph.php:4842 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:432 +#: ../../include/ajax/module.php:1961 ../../include/functions_graph.php:3339 +#: ../../include/functions_graph.php:3341 ../../include/functions_graph.php:4852 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:578 #: ../../include/functions_massive_operations.php:146 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:315 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:253 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:557 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:398 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:432 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:729 -#: ../../include/functions_events.php:3218 ../../operation/tree.php:208 -#: ../../operation/tree.php:298 ../../operation/tree.php:533 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:401 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:436 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:722 +#: ../../include/functions_events.php:3223 ../../operation/tree.php:208 +#: ../../operation/tree.php:299 ../../operation/tree.php:535 #: ../../operation/agentes/estado_agente.php:273 -#: ../../operation/agentes/status_monitor.php:564 -#: ../../operation/agentes/group_view.php:244 -#: ../../operation/agentes/group_view.php:249 -#: ../../operation/agentes/estado_monitores.php:518 +#: ../../operation/agentes/status_monitor.php:563 +#: ../../operation/agentes/group_view.php:247 +#: ../../operation/agentes/group_view.php:252 +#: ../../operation/agentes/estado_monitores.php:515 #: ../../operation/agentes/tactical.php:199 -#: ../../operation/netflow/nf_live_view.php:274 ../../general/logon_ok.php:150 +#: ../../operation/netflow/nf_live_view.php:283 ../../general/logon_ok.php:159 msgid "Normal" msgstr "Normal" @@ -9677,24 +9818,24 @@ msgstr "Normal" #: ../../enterprise/operation/services/services.table_services.php:143 #: ../../extensions/module_groups.php:50 #: ../../godmode/modules/manage_network_components_form_wizard.php:418 -#: ../../godmode/groups/group_list.php:1094 +#: ../../godmode/groups/group_list.php:1106 #: ../../godmode/massive/massive_copy_modules.php:117 #: ../../godmode/massive/massive_copy_modules.php:277 #: ../../godmode/massive/massive_delete_modules.php:420 #: ../../godmode/massive/massive_delete_modules.php:441 #: ../../godmode/massive/massive_edit_modules.php:387 #: ../../godmode/massive/massive_edit_modules.php:473 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3832 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3841 #: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71 #: ../../include/functions_reporting_html.php:867 -#: ../../include/functions_reporting_html.php:2574 -#: ../../include/functions_reporting_html.php:4871 +#: ../../include/functions_reporting_html.php:2595 +#: ../../include/functions_reporting_html.php:4899 #: ../../include/functions.php:1095 ../../include/functions.php:1331 #: ../../include/functions.php:1332 ../../include/functions.php:1334 -#: ../../include/functions.php:1375 ../../include/ajax/module.php:1938 -#: ../../include/functions_graph.php:3353 ../../include/functions_graph.php:3355 -#: ../../include/functions_graph.php:4850 ../../include/functions_ui.php:2869 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:418 +#: ../../include/functions.php:1375 ../../include/ajax/module.php:1966 +#: ../../include/functions_graph.php:3363 ../../include/functions_graph.php:3365 +#: ../../include/functions_graph.php:4860 ../../include/functions_ui.php:2912 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564 #: ../../include/functions_massive_operations.php:148 #: ../../include/class/AgentWizard.class.php:1404 #: ../../include/class/AgentWizard.class.php:4161 @@ -9703,18 +9844,18 @@ msgstr "Normal" #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:567 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:400 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:434 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:709 -#: ../../include/functions_events.php:3226 ../../operation/tree.php:210 -#: ../../operation/tree.php:300 ../../operation/tree.php:513 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:403 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:438 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:702 +#: ../../include/functions_events.php:3231 ../../operation/tree.php:210 +#: ../../operation/tree.php:301 ../../operation/tree.php:515 #: ../../operation/agentes/estado_agente.php:275 -#: ../../operation/agentes/status_monitor.php:566 -#: ../../operation/agentes/group_view.php:246 -#: ../../operation/agentes/group_view.php:251 -#: ../../operation/agentes/estado_monitores.php:516 +#: ../../operation/agentes/status_monitor.php:565 +#: ../../operation/agentes/group_view.php:249 +#: ../../operation/agentes/group_view.php:254 +#: ../../operation/agentes/estado_monitores.php:513 #: ../../operation/agentes/tactical.php:197 -#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:148 +#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:157 msgid "Critical" msgstr "Critique" @@ -9739,15 +9880,16 @@ msgstr "Vue des champs personnalisés" #: ../../enterprise/meta/monitoring/custom_fields_view.php:170 #: ../../enterprise/godmode/policies/policies.php:314 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:736 -#: ../../extensions/agents_modules.php:439 +#: ../../extensions/agents_modules.php:447 #: ../../godmode/agentes/modificar_agente.php:333 #: ../../godmode/agentes/planned_downtime.editor.php:1197 #: ../../godmode/reporting/reporting_builder.item_editor.php:1667 -#: ../../include/functions_html.php:1575 -#: ../../include/class/NetworkMap.class.php:3427 +#: ../../include/functions_html.php:1581 +#: ../../include/class/NetworkMap.class.php:3433 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:254 #: ../../operation/agentes/estado_agente.php:310 #: ../../operation/agentes/interface_view.functions.php:61 -#: ../../operation/agentes/status_monitor.php:845 +#: ../../operation/agentes/status_monitor.php:844 msgid "Recursion" msgstr "Récursion" @@ -9760,21 +9902,21 @@ msgstr "Récursion" #: ../../godmode/massive/massive_delete_modules.php:443 #: ../../godmode/massive/massive_edit_modules.php:389 #: ../../godmode/massive/massive_edit_modules.php:475 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3834 -#: ../../godmode/events/event_edit_filter.php:350 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3843 +#: ../../godmode/events/event_edit_filter.php:352 #: ../../mobile/operation/modules.php:73 ../../include/functions.php:1333 #: ../../include/functions_massive_operations.php:150 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:258 #: ../../include/lib/Dashboard/Widgets/events_list.php:319 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:264 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:582 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:403 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:437 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:734 -#: ../../include/functions_events.php:3174 ../../operation/tree.php:538 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:406 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:441 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:727 +#: ../../include/functions_events.php:3179 ../../operation/tree.php:540 #: ../../operation/agentes/estado_agente.php:277 -#: ../../operation/agentes/status_monitor.php:568 -#: ../../operation/events/events.php:1739 +#: ../../operation/agentes/status_monitor.php:567 +#: ../../operation/events/events.php:1793 msgid "Not normal" msgstr "Anormal" @@ -9785,30 +9927,30 @@ msgstr "Anormal" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 #: ../../enterprise/operation/agentes/tag_view.php:136 #: ../../enterprise/operation/services/services.treeview_services.php:316 -#: ../../godmode/groups/group_list.php:1109 +#: ../../godmode/groups/group_list.php:1121 #: ../../godmode/massive/massive_copy_modules.php:120 #: ../../godmode/massive/massive_copy_modules.php:280 #: ../../godmode/massive/massive_delete_modules.php:423 #: ../../godmode/massive/massive_delete_modules.php:444 #: ../../godmode/massive/massive_edit_modules.php:390 #: ../../godmode/massive/massive_edit_modules.php:476 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3835 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3844 #: ../../mobile/operation/modules.php:75 #: ../../include/functions_reporting_html.php:660 -#: ../../include/functions_reporting_html.php:2577 -#: ../../include/functions_reporting_html.php:4678 -#: ../../include/ajax/module.php:1950 +#: ../../include/functions_reporting_html.php:2598 +#: ../../include/functions_reporting_html.php:4706 +#: ../../include/ajax/module.php:1978 #: ../../include/functions_massive_operations.php:151 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:257 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:402 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:436 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:724 -#: ../../operation/tree.php:212 ../../operation/tree.php:302 -#: ../../operation/tree.php:528 ../../operation/agentes/estado_agente.php:278 -#: ../../operation/agentes/status_monitor.php:570 -#: ../../operation/agentes/group_view.php:243 -#: ../../operation/agentes/group_view.php:248 -#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:152 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:405 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:440 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:717 +#: ../../operation/tree.php:212 ../../operation/tree.php:303 +#: ../../operation/tree.php:530 ../../operation/agentes/estado_agente.php:278 +#: ../../operation/agentes/status_monitor.php:569 +#: ../../operation/agentes/group_view.php:246 +#: ../../operation/agentes/group_view.php:251 +#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:161 msgid "Not init" msgstr "Non initialisé" @@ -9824,14 +9966,14 @@ msgstr "Module d’état" #: ../../enterprise/meta/monitoring/custom_fields_view.php:230 #: ../../enterprise/meta/monitoring/custom_fields_view.php:231 #: ../../enterprise/include/ajax/log_viewer.ajax.php:410 -#: ../../enterprise/operation/log/log_viewer.php:994 -#: ../../enterprise/operation/log/log_viewer.php:2026 -#: ../../enterprise/operation/log/log_viewer.php:2065 -#: ../../include/ajax/audit_log.php:292 ../../include/ajax/events.php:864 +#: ../../enterprise/operation/log/log_viewer.php:992 +#: ../../enterprise/operation/log/log_viewer.php:2024 +#: ../../enterprise/operation/log/log_viewer.php:2063 +#: ../../include/ajax/audit_log.php:293 ../../include/ajax/events.php:865 #: ../../include/class/AuditLog.class.php:167 -#: ../../include/class/AuditLog.class.php:445 -#: ../../include/class/AuditLog.class.php:485 -#: ../../operation/events/events.php:1871 +#: ../../include/class/AuditLog.class.php:457 +#: ../../include/class/AuditLog.class.php:497 +#: ../../operation/events/events.php:1925 msgid "Save filter" msgstr "Sauvegarder le filtre" @@ -9840,21 +9982,20 @@ msgstr "Sauvegarder le filtre" #: ../../enterprise/meta/monitoring/custom_fields_view.php:245 #: ../../enterprise/include/ajax/log_viewer.ajax.php:709 #: ../../enterprise/include/ajax/log_viewer.ajax.php:727 -#: ../../enterprise/operation/log/log_viewer.php:979 -#: ../../enterprise/operation/log/log_viewer.php:2078 -#: ../../enterprise/operation/log/log_viewer.php:2115 +#: ../../enterprise/operation/log/log_viewer.php:977 +#: ../../enterprise/operation/log/log_viewer.php:2076 +#: ../../enterprise/operation/log/log_viewer.php:2113 #: ../../include/ajax/audit_log.php:150 ../../include/ajax/audit_log.php:168 -#: ../../include/ajax/module.php:2149 ../../include/ajax/module.php:2173 +#: ../../include/ajax/module.php:2178 ../../include/ajax/module.php:2202 #: ../../include/ajax/agent.php:494 ../../include/ajax/agent.php:518 -#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:583 -#: ../../include/ajax/events.php:608 ../../include/class/AuditLog.class.php:159 -#: ../../include/class/AuditLog.class.php:502 -#: ../../include/class/AuditLog.class.php:539 +#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:584 +#: ../../include/ajax/events.php:609 ../../include/class/AuditLog.class.php:159 +#: ../../include/class/AuditLog.class.php:514 +#: ../../include/class/AuditLog.class.php:551 #: ../../operation/agentes/estado_agente.php:455 -#: ../../operation/agentes/status_monitor.php:1045 -#: ../../operation/netflow/nf_live_view.php:277 -#: ../../operation/events/sound_events.php:184 -#: ../../operation/events/events.php:1862 +#: ../../operation/agentes/status_monitor.php:1047 +#: ../../operation/netflow/nf_live_view.php:286 +#: ../../operation/events/events.php:1916 msgid "Load filter" msgstr "Charger le filtre" @@ -9868,8 +10009,8 @@ msgid "Custom Fields Data" msgstr "Données des champs personnalisés" #: ../../enterprise/meta/monitoring/custom_fields_view.php:295 -#: ../../godmode/events/event_edit_filter.php:780 -#: ../../operation/events/events.php:1969 +#: ../../godmode/events/event_edit_filter.php:782 +#: ../../operation/events/events.php:2023 msgid "Module search" msgstr "Rechercher module" @@ -9878,8 +10019,8 @@ msgstr "Rechercher module" #: ../../enterprise/include/class/DeploymentCenter.class.php:1569 #: ../../enterprise/include/class/AgentRepository.class.php:873 #: ../../enterprise/include/class/Omnishell.class.php:1359 -#: ../../enterprise/include/class/LogSource.class.php:745 -#: ../../godmode/users/configure_user.php:1024 +#: ../../enterprise/include/class/LogSource.class.php:742 +#: ../../godmode/users/configure_user.php:1072 #: ../../include/class/ConfigPEN.class.php:252 ../../operation/heatmap.php:299 #: ../../operation/agentes/interface_view.functions.php:172 msgid "Show" @@ -9888,11 +10029,11 @@ msgstr "Afficher" #: ../../enterprise/meta/monitoring/custom_fields_view.php:321 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:565 #: ../../enterprise/include/functions_ipam.php:339 -#: ../../enterprise/operation/log/log_viewer.php:968 +#: ../../enterprise/operation/log/log_viewer.php:966 #: ../../enterprise/operation/reporting/custom_reporting.php:100 #: ../../godmode/modules/manage_network_templates.php:290 #: ../../godmode/agentes/planned_downtime.list.php:1000 -#: ../../include/graphs/functions_flot.php:382 +#: ../../include/graphs/functions_flot.php:383 #: ../../include/class/ModuleTemplates.class.php:904 #: ../../operation/network/network_report.php:230 #: ../../operation/incidents/list_integriaims_incidents.php:480 @@ -9903,170 +10044,170 @@ msgstr "Exporter un fichier en CSV" #: ../../enterprise/meta/monitoring/custom_fields_view.php:361 #: ../../enterprise/include/class/DatabaseHA.class.php:217 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1883 -#: ../../include/functions_ui.php:3741 +#: ../../include/functions_ui.php:3789 msgid "Processing" msgstr "Traitement en cours" #: ../../enterprise/meta/monitoring/custom_fields_view.php:386 -#: ../../mobile/operation/groups.php:153 -#: ../../include/functions_reporting_html.php:5843 +#: ../../mobile/operation/groups.php:192 +#: ../../include/functions_reporting_html.php:5871 #: ../../include/functions_agents.php:3955 msgid "Agents critical" msgstr "Agents en état critique" #: ../../enterprise/meta/monitoring/custom_fields_view.php:399 -#: ../../include/functions_reporting_html.php:5846 +#: ../../include/functions_reporting_html.php:5874 #: ../../include/functions_agents.php:3965 msgid "Agents warning" msgstr "Agents en état d'alerte" #: ../../enterprise/meta/monitoring/custom_fields_view.php:412 -#: ../../include/functions_reporting_html.php:5852 +#: ../../include/functions_reporting_html.php:5880 #: ../../include/functions_agents.php:3945 #: ../../include/functions_agents.php:3999 msgid "Agents ok" msgstr "Agents en état OK" #: ../../enterprise/meta/monitoring/custom_fields_view.php:425 -#: ../../mobile/operation/groups.php:156 -#: ../../include/functions_reporting_html.php:5855 +#: ../../mobile/operation/groups.php:195 +#: ../../include/functions_reporting_html.php:5883 #: ../../include/functions_agents.php:3975 msgid "Agents unknown" msgstr "Agents inconnus" #: ../../enterprise/meta/monitoring/custom_fields_view.php:438 -#: ../../mobile/operation/groups.php:150 -#: ../../include/functions_reporting_html.php:5861 +#: ../../mobile/operation/groups.php:189 +#: ../../include/functions_reporting_html.php:5889 #: ../../include/functions_agents.php:3989 msgid "Agents not init" msgstr "Agents non initialisés" #: ../../enterprise/meta/monitoring/custom_fields_view.php:464 -#: ../../include/functions_reporting.php:12227 -#: ../../include/functions_groups.php:2794 +#: ../../include/functions_reporting.php:12300 +#: ../../include/functions_groups.php:2819 msgid "Monitor critical" msgstr "Moniteur en état critique" #: ../../enterprise/meta/monitoring/custom_fields_view.php:475 -#: ../../include/functions_reporting.php:12231 -#: ../../include/functions_groups.php:2798 +#: ../../include/functions_reporting.php:12304 +#: ../../include/functions_groups.php:2823 msgid "Monitor warning" msgstr "Moniteur en état d'alerte" #: ../../enterprise/meta/monitoring/custom_fields_view.php:486 -#: ../../include/functions_reporting.php:12238 -#: ../../include/functions_groups.php:2805 +#: ../../include/functions_reporting.php:12311 +#: ../../include/functions_groups.php:2830 msgid "Monitor normal" msgstr "Moniteur en état normal" #: ../../enterprise/meta/monitoring/custom_fields_view.php:497 -#: ../../include/functions_reporting.php:12242 -#: ../../include/functions_groups.php:2809 +#: ../../include/functions_reporting.php:12315 +#: ../../include/functions_groups.php:2834 msgid "Monitor unknown" msgstr "Moniteur inconnu" #: ../../enterprise/meta/monitoring/custom_fields_view.php:508 -#: ../../include/functions_reporting.php:12249 -#: ../../include/functions_groups.php:2816 +#: ../../include/functions_reporting.php:12322 +#: ../../include/functions_groups.php:2841 msgid "Monitor not init" msgstr "Moniteur non initialisé" #: ../../enterprise/meta/monitoring/custom_fields_view.php:523 -#: ../../include/functions_reporting_html.php:5870 -#: ../../include/functions_reporting_html.php:5875 +#: ../../include/functions_reporting_html.php:5898 +#: ../../include/functions_reporting_html.php:5903 msgid "Agents by status" msgstr "Agents par état" #: ../../enterprise/meta/monitoring/custom_fields_view.php:531 -#: ../../include/functions_reporting.php:12269 -#: ../../include/functions_reporting.php:12275 -#: ../../include/functions_groups.php:2836 -#: ../../include/functions_groups.php:2842 +#: ../../include/functions_reporting.php:12342 +#: ../../include/functions_reporting.php:12348 +#: ../../include/functions_groups.php:2861 +#: ../../include/functions_groups.php:2867 msgid "Monitors by status" msgstr "Moniteurs par état" #: ../../enterprise/meta/monitoring/custom_fields_view.php:545 #: ../../enterprise/operation/services/services.treeview_services.php:299 -#: ../../godmode/groups/group_list.php:1092 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:707 -#: ../../operation/tree.php:511 +#: ../../godmode/groups/group_list.php:1104 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:700 +#: ../../operation/tree.php:513 msgid "Critical agents" msgstr "Agents critiques" #: ../../enterprise/meta/monitoring/custom_fields_view.php:555 #: ../../enterprise/operation/services/services.treeview_services.php:304 -#: ../../godmode/groups/group_list.php:1097 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:712 -#: ../../operation/tree.php:516 +#: ../../godmode/groups/group_list.php:1109 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:705 +#: ../../operation/tree.php:518 msgid "Warning agents" msgstr "Agents d'alerte" #: ../../enterprise/meta/monitoring/custom_fields_view.php:565 #: ../../enterprise/operation/services/services.treeview_services.php:319 -#: ../../godmode/groups/group_list.php:1112 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:727 -#: ../../operation/tree.php:531 +#: ../../godmode/groups/group_list.php:1124 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:720 +#: ../../operation/tree.php:533 msgid "Normal agents" msgstr "Agents normaux" #: ../../enterprise/meta/monitoring/custom_fields_view.php:575 #: ../../enterprise/operation/services/services.treeview_services.php:309 -#: ../../godmode/groups/group_list.php:1102 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:717 -#: ../../operation/tree.php:521 +#: ../../godmode/groups/group_list.php:1114 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:710 +#: ../../operation/tree.php:523 msgid "Unknown agents" msgstr "Agents inconnus" #: ../../enterprise/meta/monitoring/custom_fields_view.php:585 #: ../../enterprise/operation/services/services.treeview_services.php:314 -#: ../../godmode/groups/group_list.php:1107 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:722 -#: ../../operation/tree.php:526 +#: ../../godmode/groups/group_list.php:1119 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:715 +#: ../../operation/tree.php:528 msgid "Not init agents" msgstr "Agents non initialisés" #: ../../enterprise/meta/monitoring/custom_fields_view.php:614 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:300 -#: ../../godmode/groups/group_list.php:1093 ../../mobile/operation/groups.php:171 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:708 -#: ../../operation/tree.php:512 +#: ../../godmode/groups/group_list.php:1105 ../../mobile/operation/groups.php:210 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:701 +#: ../../operation/tree.php:514 msgid "Critical modules" msgstr "Modules en état critique" #: ../../enterprise/meta/monitoring/custom_fields_view.php:625 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:305 -#: ../../godmode/groups/group_list.php:1098 ../../mobile/operation/groups.php:168 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:713 -#: ../../operation/tree.php:517 +#: ../../godmode/groups/group_list.php:1110 ../../mobile/operation/groups.php:207 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:706 +#: ../../operation/tree.php:519 msgid "Warning modules" msgstr "Modules en état d'alerte" #: ../../enterprise/meta/monitoring/custom_fields_view.php:636 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:320 -#: ../../godmode/groups/group_list.php:1113 ../../mobile/operation/groups.php:165 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:728 -#: ../../operation/tree.php:532 +#: ../../godmode/groups/group_list.php:1125 ../../mobile/operation/groups.php:204 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:721 +#: ../../operation/tree.php:534 msgid "Normal modules" msgstr "Modules normaux" #: ../../enterprise/meta/monitoring/custom_fields_view.php:647 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:310 -#: ../../godmode/groups/group_list.php:1103 ../../mobile/operation/groups.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:718 -#: ../../operation/tree.php:522 +#: ../../godmode/groups/group_list.php:1115 ../../mobile/operation/groups.php:198 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:711 +#: ../../operation/tree.php:524 msgid "Unknown modules" msgstr "Modules inconnus" #: ../../enterprise/meta/monitoring/custom_fields_view.php:658 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:315 -#: ../../godmode/groups/group_list.php:1108 ../../mobile/operation/groups.php:162 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:723 -#: ../../operation/tree.php:527 +#: ../../godmode/groups/group_list.php:1120 ../../mobile/operation/groups.php:201 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:716 +#: ../../operation/tree.php:529 msgid "Not init modules" msgstr "Modules non initialisés" @@ -10098,7 +10239,7 @@ msgstr "Aucune recherche personnalisée n’est définie." #: ../../enterprise/meta/monitoring/custom_fields_view.php:1167 #: ../../enterprise/meta/event/custom_events.php:245 #: ../../enterprise/include/functions_login.php:114 -#: ../../godmode/agentes/status_monitor_custom_fields.php:253 +#: ../../godmode/agentes/status_monitor_custom_fields.php:273 #: ../../godmode/events/custom_events.php:233 #: ../../include/class/TreeGroupEdition.class.php:164 msgid "Confirm" @@ -10107,9 +10248,9 @@ msgstr "Confirmer " #: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:74 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:227 #: ../../godmode/agentes/configurar_agente.php:835 -#: ../../godmode/agentes/modificar_agente.php:1025 -#: ../../include/class/SnmpConsole.class.php:781 -#: ../../operation/agentes/estado_agente.php:1317 +#: ../../godmode/agentes/modificar_agente.php:1036 +#: ../../include/class/SnmpConsole.class.php:783 +#: ../../operation/agentes/estado_agente.php:1326 #: ../../operation/snmpconsole/snmp_statistics.php:195 msgid "Create agent" msgstr "Créer un agent" @@ -10195,18 +10336,18 @@ msgstr "Créer une alerte" #: ../../enterprise/include/functions_services.php:1779 #: ../../enterprise/include/functions_events.php:90 #: ../../enterprise/operation/agentes/policy_view.php:259 -#: ../../extensions/agents_modules.php:513 ../../extensions/insert_data.php:195 +#: ../../extensions/agents_modules.php:521 ../../extensions/insert_data.php:195 #: ../../godmode/agentes/module_manager_editor_prediction.php:135 #: ../../godmode/agentes/planned_downtime.list.php:425 #: ../../godmode/agentes/planned_downtime.editor.php:1445 -#: ../../godmode/agentes/module_manager_editor_common.php:1481 -#: ../../godmode/agentes/module_manager_editor_common.php:1535 +#: ../../godmode/agentes/module_manager_editor_common.php:1491 +#: ../../godmode/agentes/module_manager_editor_common.php:1545 #: ../../godmode/massive/massive_standby_alerts.php:224 #: ../../godmode/massive/massive_standby_alerts.php:259 #: ../../godmode/massive/massive_enable_disable_alerts.php:196 #: ../../godmode/massive/massive_enable_disable_alerts.php:231 -#: ../../godmode/massive/massive_edit_agents.php:682 -#: ../../godmode/massive/massive_edit_agents.php:1147 +#: ../../godmode/massive/massive_edit_agents.php:699 +#: ../../godmode/massive/massive_edit_agents.php:1164 #: ../../godmode/alerts/alert_list.list.php:566 #: ../../godmode/alerts/alert_list.list.php:817 #: ../../godmode/alerts/alert_view.php:97 @@ -10215,41 +10356,41 @@ msgstr "Créer une alerte" #: ../../godmode/reporting/create_container.php:490 #: ../../godmode/reporting/create_container.php:662 #: ../../godmode/reporting/create_container.php:745 -#: ../../godmode/reporting/graph_builder.graph_editor.php:213 -#: ../../godmode/reporting/reporting_builder.item_editor.php:212 -#: ../../godmode/reporting/reporting_builder.item_editor.php:891 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1191 +#: ../../godmode/reporting/graph_builder.graph_editor.php:346 +#: ../../godmode/reporting/reporting_builder.item_editor.php:213 +#: ../../godmode/reporting/reporting_builder.item_editor.php:892 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1193 #: ../../godmode/reporting/reporting_builder.item_editor.php:1792 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4098 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4614 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4638 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4107 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4623 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4647 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.wizard.php:462 #: ../../godmode/reporting/visual_console_builder.wizard.php:821 -#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/alerts.php:338 -#: ../../include/functions_visual_map_editor.php:497 +#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/services.php:332 +#: ../../include/functions_visual_map_editor.php:491 #: ../../include/functions_reporting_html.php:549 #: ../../include/functions_reporting_html.php:948 -#: ../../include/functions_reporting_html.php:2017 -#: ../../include/functions_reporting_html.php:2354 -#: ../../include/functions_reporting_html.php:2459 -#: ../../include/functions_reporting_html.php:3448 -#: ../../include/functions_reporting_html.php:3823 -#: ../../include/functions_reporting_html.php:3831 -#: ../../include/functions_reporting_html.php:3840 -#: ../../include/functions_reporting_html.php:3852 -#: ../../include/functions_reporting_html.php:4012 -#: ../../include/functions_reporting_html.php:4141 -#: ../../include/functions_reporting_html.php:4235 -#: ../../include/functions_reporting_html.php:4957 -#: ../../include/functions_reporting_html.php:5005 +#: ../../include/functions_reporting_html.php:2033 +#: ../../include/functions_reporting_html.php:2375 +#: ../../include/functions_reporting_html.php:2480 +#: ../../include/functions_reporting_html.php:3476 +#: ../../include/functions_reporting_html.php:3851 +#: ../../include/functions_reporting_html.php:3859 +#: ../../include/functions_reporting_html.php:3868 +#: ../../include/functions_reporting_html.php:3880 +#: ../../include/functions_reporting_html.php:4040 +#: ../../include/functions_reporting_html.php:4169 +#: ../../include/functions_reporting_html.php:4263 +#: ../../include/functions_reporting_html.php:4985 +#: ../../include/functions_reporting_html.php:5033 #: ../../include/ajax/alert_list.ajax.php:292 #: ../../include/ajax/alert_list.ajax.php:317 #: ../../include/ajax/alert_list.ajax.php:480 -#: ../../include/functions_inventory.php:1064 -#: ../../include/functions_inventory.php:1120 -#: ../../include/functions_graph.php:5169 ../../include/functions_ui.php:7393 -#: ../../include/functions_ui.php:7411 +#: ../../include/functions_inventory.php:1174 +#: ../../include/functions_inventory.php:1230 +#: ../../include/functions_graph.php:5179 ../../include/functions_ui.php:7463 +#: ../../include/functions_ui.php:7488 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299 @@ -10258,17 +10399,19 @@ msgstr "Créer une alerte" #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:432 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:257 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:594 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:235 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:232 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385 #: ../../include/functions_reports.php:1363 #: ../../include/class/AgentsAlerts.class.php:432 -#: ../../include/class/AgentsAlerts.class.php:910 -#: ../../include/functions_reporting.php:7333 +#: ../../include/class/AgentsAlerts.class.php:911 +#: ../../include/functions_reporting.php:7342 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:359 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:278 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:434 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:359 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:462 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:391 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:441 #: ../../include/lib/Dashboard/Widgets/module_icon.php:377 #: ../../include/lib/Dashboard/Widgets/module_value.php:352 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:254 @@ -10276,16 +10419,16 @@ msgstr "Créer une alerte" #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:344 #: ../../include/lib/Dashboard/Widgets/module_status.php:368 #: ../../include/lib/Dashboard/Widgets/single_graph.php:319 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:736 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:729 #: ../../include/lib/Dashboard/Widgets/top_n.php:221 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 #: ../../operation/agentes/estado_monitores.php:125 -#: ../../operation/agentes/agent_inventory.php:116 +#: ../../operation/agentes/agent_inventory.php:118 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/search_alerts.php:35 -#: ../../operation/inventory/inventory.php:634 -#: ../../operation/search_modules.php:32 +#: ../../operation/inventory/inventory.php:636 +#: ../../operation/search_modules.php:35 msgid "Module" msgstr "Module" @@ -10301,18 +10444,18 @@ msgstr "Module" #: ../../godmode/alerts/alert_list.list.php:570 #: ../../godmode/alerts/alert_view.php:101 #: ../../godmode/alerts/alert_list.builder.php:151 -#: ../../godmode/reporting/reporting_builder.item_editor.php:216 -#: ../../godmode/reporting/reporting_builder.item_editor.php:896 -#: ../../mobile/operation/alerts.php:342 -#: ../../include/functions_reporting_html.php:3449 -#: ../../include/functions_reporting_html.php:3452 +#: ../../godmode/reporting/reporting_builder.item_editor.php:217 +#: ../../godmode/reporting/reporting_builder.item_editor.php:897 +#: ../../mobile/operation/alerts.php:349 +#: ../../include/functions_reporting_html.php:3477 +#: ../../include/functions_reporting_html.php:3480 #: ../../include/functions_cron.php:691 #: ../../include/ajax/alert_list.ajax.php:293 #: ../../include/ajax/alert_list.ajax.php:318 -#: ../../include/functions_treeview.php:399 -#: ../../include/functions_treeview.php:440 +#: ../../include/functions_treeview.php:403 +#: ../../include/functions_treeview.php:444 #: ../../include/class/AgentsAlerts.class.php:359 -#: ../../include/class/AgentsAlerts.class.php:983 +#: ../../include/class/AgentsAlerts.class.php:984 #: ../../operation/search_alerts.php:36 msgid "Template" msgstr "Modèle" @@ -10392,8 +10535,8 @@ msgstr "Créer une nouvelle action" #: ../../godmode/alerts/configure_alert_action.php:287 #: ../../godmode/alerts/alert_view.php:367 #: ../../godmode/alerts/alert_list.builder.php:169 -#: ../../include/functions_reporting_html.php:3710 -#: ../../include/functions_reporting_html.php:5493 +#: ../../include/functions_reporting_html.php:3738 +#: ../../include/functions_reporting_html.php:5521 #: ../../include/ajax/alert_list.ajax.php:540 #: ../../include/ajax/custom_fields.php:413 #: ../../include/class/AgentsAlerts.class.php:398 @@ -10414,8 +10557,8 @@ msgstr "Configuration avancée" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:40 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:117 -#: ../../godmode/agentes/module_manager.php:1027 -#: ../../operation/snmpconsole/snmp_browser.php:633 +#: ../../godmode/agentes/module_manager.php:1041 +#: ../../operation/snmpconsole/snmp_browser.php:692 msgid "Create module" msgstr "Créer un module" @@ -10454,11 +10597,11 @@ msgstr "Caractères non valides trouvés dans le nom du module" #: ../../enterprise/godmode/policies/policy.php:158 #: ../../enterprise/godmode/setup/setup_acl.php:664 #: ../../enterprise/include/functions_reporting.php:60 -#: ../../enterprise/include/functions_reporting.php:8008 -#: ../../enterprise/include/functions_reporting.php:8034 -#: ../../godmode/reporting/visual_console_builder.php:830 -#: ../../include/functions_menu.php:589 -#: ../../operation/visual_console/view.php:202 +#: ../../enterprise/include/functions_reporting.php:8017 +#: ../../enterprise/include/functions_reporting.php:8043 +#: ../../godmode/reporting/visual_console_builder.php:838 +#: ../../include/functions_menu.php:593 +#: ../../operation/visual_console/view.php:204 #: ../../operation/visual_console/legacy_view.php:171 msgid "Wizard" msgstr "Assistant" @@ -10473,8 +10616,8 @@ msgstr "Gérer les modules" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:720 #: ../../enterprise/meta/agentsearch.php:52 #: ../../enterprise/meta/agentsearch.php:58 -#: ../../godmode/events/event_edit_filter.php:447 -#: ../../mobile/operation/home.php:168 ../../operation/events/events.php:1946 +#: ../../godmode/events/event_edit_filter.php:449 +#: ../../mobile/operation/home.php:188 ../../operation/events/events.php:2000 msgid "Agent search" msgstr "Rechercher agent" @@ -10488,18 +10631,22 @@ msgstr "Sélectionner l'agent où le module sera créé" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:744 #: ../../godmode/snmpconsole/snmp_alert.php:1688 #: ../../godmode/alerts/configure_alert_action.php:432 -#: ../../mobile/operation/agents.php:209 ../../mobile/operation/modules.php:241 -#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:148 -#: ../../mobile/operation/alerts.php:199 ../../mobile/operation/visualmap.php:256 +#: ../../mobile/operation/agents.php:210 ../../mobile/operation/modules.php:241 +#: ../../mobile/operation/groups.php:82 ../../mobile/operation/services.php:128 +#: ../../mobile/operation/agent.php:154 ../../mobile/operation/alerts.php:199 +#: ../../mobile/operation/visualmap.php:256 #: ../../mobile/operation/visualmaps.php:189 -#: ../../mobile/operation/module_graph.php:364 -#: ../../mobile/operation/module_graph.php:377 -#: ../../mobile/operation/events.php:913 ../../mobile/operation/tactical.php:102 +#: ../../mobile/operation/module_data.php:130 +#: ../../mobile/operation/module_graph.php:365 +#: ../../mobile/operation/module_graph.php:378 +#: ../../mobile/operation/events.php:957 +#: ../../mobile/operation/server_status.php:232 +#: ../../mobile/operation/tactical.php:102 msgid "Back" msgstr "Retour" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:326 -#: ../../godmode/agentes/module_manager.php:1146 +#: ../../godmode/agentes/module_manager.php:1162 msgid "Create Module" msgstr "Créer un module" @@ -10576,14 +10723,14 @@ msgstr "Veuillez définir un intervalle" #: ../../godmode/modules/manage_network_components_form_wizard.php:336 #: ../../godmode/massive/massive_delete_modules.php:323 #: ../../godmode/massive/massive_edit_modules.php:309 -#: ../../include/ajax/module.php:1000 +#: ../../include/ajax/module.php:1023 msgid "Module type" msgstr "Type de module" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:146 #: ../../mobile/include/functions_web.php:24 -#: ../../include/functions_reporting_html.php:5412 -#: ../../include/functions_reporting_html.php:5566 +#: ../../include/functions_reporting_html.php:5440 +#: ../../include/functions_reporting_html.php:5594 msgid "Monitor" msgstr "Moniteur" @@ -10598,7 +10745,7 @@ msgstr "Vérification web" #: ../../enterprise/include/functions_reporting_csv.php:763 #: ../../enterprise/operation/agentes/tag_view.php:174 #: ../../enterprise/operation/agentes/ver_agente.php:53 -#: ../../extensions/agents_modules.php:448 +#: ../../extensions/agents_modules.php:456 #: ../../godmode/modules/manage_network_components_form_common.php:111 #: ../../godmode/agentes/module_manager_editor_common.php:292 #: ../../godmode/massive/massive_edit_modules.php:904 @@ -10606,15 +10753,17 @@ msgstr "Vérification web" #: ../../godmode/reporting/reporting_builder.item_editor.php:1720 #: ../../mobile/operation/modules.php:183 ../../mobile/operation/modules.php:184 #: ../../mobile/operation/modules.php:293 ../../mobile/operation/modules.php:294 -#: ../../include/functions_reporting_html.php:1768 -#: ../../include/ajax/heatmap.ajax.php:193 -#: ../../include/ajax/heatmap.ajax.php:263 -#: ../../include/ajax/heatmap.ajax.php:302 ../../include/functions_graph.php:5085 -#: ../../include/functions_treeview.php:121 ../../include/functions_html.php:1600 +#: ../../mobile/operation/server_status.php:174 +#: ../../mobile/operation/server_status.php:175 +#: ../../include/functions_reporting_html.php:1777 +#: ../../include/ajax/heatmap.ajax.php:222 +#: ../../include/ajax/heatmap.ajax.php:305 +#: ../../include/ajax/heatmap.ajax.php:430 ../../include/functions_graph.php:5095 +#: ../../include/functions_treeview.php:121 ../../include/functions_html.php:1607 #: ../../include/lib/Dashboard/Widgets/heatmap.php:324 -#: ../../include/functions_events.php:4478 ../../operation/heatmap.php:103 -#: ../../operation/heatmap.php:105 ../../operation/agentes/status_monitor.php:859 -#: ../../operation/agentes/estado_monitores.php:592 +#: ../../include/functions_events.php:4483 ../../operation/heatmap.php:103 +#: ../../operation/heatmap.php:105 ../../operation/agentes/status_monitor.php:858 +#: ../../operation/agentes/estado_monitores.php:590 #: ../../operation/agentes/ver_agente.php:1175 msgid "Module group" msgstr "Groupe de modules" @@ -10634,14 +10783,14 @@ msgstr "Assistant étape par étape" #: ../../enterprise/godmode/agentes/plugins_manager.php:130 #: ../../enterprise/godmode/policies/policy_plugins.php:126 #: ../../godmode/modules/manage_network_components_form_common.php:53 -#: ../../godmode/users/configure_user.php:1406 -#: ../../godmode/netflow/nf_edit_form.php:251 +#: ../../godmode/users/configure_user.php:1455 +#: ../../godmode/netflow/nf_edit_form.php:296 #: ../../godmode/alerts/alert_commands.php:159 #: ../../godmode/alerts/alert_commands.php:196 #: ../../godmode/alerts/configure_alert_template.php:966 #: ../../godmode/alerts/configure_alert_template.php:1011 #: ../../godmode/alerts/configure_alert_template.php:1169 -#: ../../operation/netflow/nf_live_view.php:563 +#: ../../operation/netflow/nf_live_view.php:636 msgid "Advanced" msgstr "Avancé" @@ -10652,7 +10801,7 @@ msgstr "Cliquez sur Créer pour continuer" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:380 #: ../../enterprise/meta/monitoring/wizard/wizard.php:150 -#: ../../godmode/reporting/graph_builder.graph_editor.php:423 +#: ../../godmode/reporting/graph_builder.graph_editor.php:438 msgid "Please, select a module" msgstr "Veuillez sélectionner un module" @@ -10662,7 +10811,7 @@ msgstr "Veuillez sélectionner un module" #: ../../enterprise/include/class/Omnishell.class.php:975 #: ../../enterprise/include/class/Omnishell.class.php:1056 #: ../../enterprise/include/class/DB2.app.php:862 -#: ../../enterprise/include/class/SAP.app.php:924 +#: ../../enterprise/include/class/SAP.app.php:925 #: ../../enterprise/include/class/Aws.cloud.php:1467 #: ../../enterprise/include/class/MySQL.app.php:938 #: ../../enterprise/include/class/Oracle.app.php:970 @@ -10670,8 +10819,8 @@ msgstr "Veuillez sélectionner un module" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:336 #: ../../godmode/alerts/configure_alert_template.php:1216 #: ../../godmode/wizards/HostDevices.class.php:1617 -#: ../../include/class/CustomNetScan.class.php:758 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1244 +#: ../../include/class/CustomNetScan.class.php:757 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1245 msgid "Finish" msgstr "Terminer" @@ -10705,8 +10854,8 @@ msgstr "Vide" #: ../../enterprise/godmode/agentes/collections.data.php:241 #: ../../enterprise/godmode/agentes/collections.data.php:272 #: ../../enterprise/godmode/agentes/collections.data.php:336 -#: ../../include/functions_events.php:3268 -#: ../../include/functions_events.php:3542 +#: ../../include/functions_events.php:3273 +#: ../../include/functions_events.php:3547 msgid "New" msgstr "Nouveau" @@ -10726,18 +10875,18 @@ msgid "Please, select an agent" msgstr "Veuillez sélectionner un agent" #: ../../enterprise/meta/monitoring/wizard/wizard.php:154 -#: ../../enterprise/godmode/policies/policy_modules.php:1764 +#: ../../enterprise/godmode/policies/policy_modules.php:1809 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195 #: ../../enterprise/include/class/CommandCenter.class.php:465 -#: ../../enterprise/operation/log/log_viewer.php:1051 -#: ../../enterprise/operation/log/log_viewer.php:1073 +#: ../../enterprise/operation/log/log_viewer.php:1049 +#: ../../enterprise/operation/log/log_viewer.php:1071 #: ../../enterprise/operation/services/services.treeview_services.php:197 -#: ../../godmode/groups/group_list.php:744 +#: ../../godmode/groups/group_list.php:745 #: ../../godmode/massive/massive_copy_modules.php:235 #: ../../godmode/massive/massive_operations.php:384 #: ../../godmode/massive/massive_add_profiles.php:292 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:602 -#: ../../include/functions_events.php:4282 ../../operation/tree.php:374 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:595 +#: ../../include/functions_events.php:4287 ../../operation/tree.php:376 #: ../../operation/reporting/reporting_viewer.php:340 #: ../../operation/reporting/graph_viewer.php:430 #: ../../general/ui/agents_list.php:146 @@ -10746,10 +10895,10 @@ msgstr "Chargement en cours" #: ../../enterprise/meta/monitoring/wizard/wizard.php:156 #: ../../enterprise/meta/include/functions_wizard_meta.php:642 -#: ../../godmode/tag/edit_tag.php:212 -#: ../../include/class/TipsWindow.class.php:726 -#: ../../include/class/TipsWindow.class.php:893 -#: ../../include/functions_reporting.php:7470 +#: ../../godmode/tag/edit_tag.php:216 +#: ../../include/class/TipsWindow.class.php:746 +#: ../../include/class/TipsWindow.class.php:913 +#: ../../include/functions_reporting.php:7479 #: ../../include/lib/Dashboard/Widgets/url.php:216 msgid "Url" msgstr "URL" @@ -10773,24 +10922,25 @@ msgstr "Un autre agent existe déjà avec le même nom" #: ../../enterprise/meta/monitoring/wizard/wizard.php:161 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:473 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:476 -#: ../../godmode/agentes/module_manager_editor_common.php:673 -#: ../../godmode/agentes/module_manager_editor_common.php:675 +#: ../../godmode/agentes/module_manager_editor_common.php:678 +#: ../../godmode/agentes/module_manager_editor_common.php:680 #, php-format msgid "Agent interval x %s" msgstr "Agent intervalle x %s" #: ../../enterprise/meta/monitoring/wizard/wizard.php:365 msgid "" -"This feature will be removed in version 771 and its\n" +"This feature will be removed in version 773 and its\n" " functions transferred to different metaconsole tools " "( bulk operations, agent alert editing, etc).\n" " The current functions of the wizard is minimal and we do " "not recommend its use." msgstr "" -"Cette fonctionnalité sera supprimée dans la version 771 et ses\n" -" fonctions seront transférées vers différents outils de la " -"Métaconsole (opérations en masse, édition des alertes de l’agent, etc.).\n" -" Les fonctions actuelles de l’assistant sont minimes et " +"Cette fonctionnalité disparaîtra dans la version 773 et ses\n" +" Fonctions transférées aux différentes aux différents " +"outils de la Métaconsole (opérations en bloc, édition d’alerte des agents, " +"etc.).\n" +" Les fonctions actuelles de l’assistant sont minimales et " "nous ne recommandons pas son utilisation." #: ../../enterprise/meta/monitoring/group_view.php:59 @@ -10799,9 +10949,10 @@ msgstr "Vue du groupe" #: ../../enterprise/meta/monitoring/group_view.php:64 #: ../../godmode/groups/group_list.php:324 +#: ../../godmode/users/configure_user.php:61 #: ../../godmode/users/user_management.php:40 #: ../../godmode/massive/massive_edit_users.php:276 -#: ../../operation/users/user_edit.php:471 +#: ../../include/auth/mysql.php:809 ../../operation/users/user_edit.php:471 #: ../../operation/agentes/group_view.php:89 ../../operation/menu.php:176 msgid "Group view" msgstr "Affichage du groupe" @@ -10848,9 +10999,9 @@ msgid "% Monitors Not init" msgstr "% moniteurs non initialisés" #: ../../enterprise/meta/monitoring/group_view.php:203 -#: ../../godmode/agentes/modificar_agente.php:1016 -#: ../../operation/agentes/estado_agente.php:1309 -#: ../../operation/agentes/group_view.php:600 +#: ../../godmode/agentes/modificar_agente.php:1028 +#: ../../operation/agentes/estado_agente.php:1318 +#: ../../operation/agentes/group_view.php:603 msgid "There are no defined agents" msgstr "Aucun agent défini" @@ -10865,15 +11016,15 @@ msgstr "Groupe ou étiquette" #: ../../enterprise/meta/monitoring/group_view.php:232 #: ../../enterprise/operation/services/services.treeview_services.php:291 -#: ../../godmode/groups/group_list.php:1084 -#: ../../include/functions_reporting_html.php:2562 -#: ../../include/functions_reporting_html.php:2572 -#: ../../include/functions_inventory.php:511 -#: ../../include/functions_inventory.php:654 -#: ../../include/functions_alerts.php:3386 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:699 -#: ../../operation/tree.php:503 ../../operation/agentes/group_view.php:241 -#: ../../operation/agentes/agent_inventory.php:266 +#: ../../godmode/groups/group_list.php:1096 +#: ../../include/functions_reporting_html.php:2583 +#: ../../include/functions_reporting_html.php:2593 +#: ../../include/functions_inventory.php:520 +#: ../../include/functions_inventory.php:663 +#: ../../include/functions_alerts.php:3387 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:692 +#: ../../operation/tree.php:505 ../../operation/agentes/group_view.php:244 +#: ../../operation/agentes/agent_inventory.php:321 msgid "Total" msgstr "Total" @@ -10882,18 +11033,18 @@ msgstr "Total" #: ../../godmode/alerts/alert_list.list.php:645 #: ../../godmode/alerts/alert_view.php:111 ../../mobile/operation/alerts.php:324 #: ../../include/functions.php:1284 ../../include/functions_agents.php:2998 -#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1417 -#: ../../include/class/AgentsAlerts.class.php:956 -#: ../../include/class/SnmpConsole.class.php:841 -#: ../../include/functions_reporting.php:13143 -#: ../../include/functions_events.php:2942 -#: ../../include/functions_events.php:3142 -#: ../../operation/agentes/group_view.php:252 +#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1460 +#: ../../include/class/AgentsAlerts.class.php:957 +#: ../../include/class/SnmpConsole.class.php:843 +#: ../../include/functions_reporting.php:13216 +#: ../../include/functions_events.php:2947 +#: ../../include/functions_events.php:3147 +#: ../../operation/agentes/group_view.php:255 msgid "Alert fired" msgstr "Alerte déclenchée" #: ../../enterprise/meta/monitoring/group_view.php:367 -#: ../../operation/agentes/group_view.php:343 +#: ../../operation/agentes/group_view.php:346 #, php-format msgid "" "This %s installation are using the secondary groups feature. For this reason, " @@ -10905,9 +11056,11 @@ msgstr "" #: ../../enterprise/meta/monitoring/tactical.php:46 #: ../../enterprise/meta/general/main_header.php:103 #: ../../enterprise/meta/general/main_menu.php:205 +#: ../../godmode/users/configure_user.php:62 #: ../../godmode/users/user_management.php:41 #: ../../godmode/massive/massive_edit_users.php:277 #: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97 +#: ../../include/auth/mysql.php:810 #: ../../include/lib/Dashboard/Widgets/tactical.php:176 #: ../../include/lib/Dashboard/Widgets/tactical.php:533 #: ../../operation/users/user_edit.php:472 @@ -10931,14 +11084,14 @@ msgstr "Rapport de l'état" #: ../../enterprise/meta/general/main_menu.php:271 #: ../../enterprise/include/class/CommandCenter.class.php:1087 #: ../../enterprise/tools/ipam/ipam_network.php:427 -#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:246 +#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:245 #: ../../godmode/events/events.php:142 ../../mobile/include/functions_web.php:25 -#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:908 -#: ../../include/functions.php:4167 ../../include/ajax/events.php:2219 +#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:952 +#: ../../include/functions.php:4193 ../../include/ajax/events.php:2220 #: ../../include/functions_reports.php:876 #: ../../include/functions_reports.php:880 #: ../../include/functions_reports.php:884 ../../operation/menu.php:518 -#: ../../operation/events/events.php:1613 +#: ../../operation/events/events.php:1667 msgid "Events" msgstr "Événements" @@ -10962,14 +11115,14 @@ msgstr "Afficher les événements" #: ../../enterprise/meta/event/custom_events.php:42 #: ../../godmode/netflow/nf_edit.php:211 -#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../godmode/netflow/nf_edit_form.php:80 #: ../../godmode/snmpconsole/snmp_filters.php:37 #: ../../godmode/events/event_filter.php:230 #: ../../include/ajax/custom_fields.php:654 msgid "Create filter" msgstr "Créer un filtre" -#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:241 +#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:240 #: ../../godmode/events/events.php:83 msgid "Event responses" msgstr "Réponses des événements" @@ -10979,24 +11132,23 @@ msgstr "Réponses des événements" #: ../../enterprise/meta/event/custom_events.php:72 #: ../../enterprise/meta/event/custom_events.php:90 #: ../../godmode/agentes/fields_manager.php:59 -#: ../../godmode/agentes/agent_manager.php:1034 ../../godmode/menu.php:103 -#: ../../godmode/massive/massive_edit_agents.php:1251 +#: ../../godmode/agentes/agent_manager.php:1040 ../../godmode/menu.php:103 +#: ../../godmode/massive/massive_edit_agents.php:1267 #: ../../godmode/reporting/reporting_builder.item_editor.php:76 -#: ../../include/functions_reporting_html.php:1620 -#: ../../include/functions_events.php:4440 +#: ../../include/functions_reporting_html.php:1629 +#: ../../include/functions_events.php:4445 #: ../../operation/agentes/status_monitor.php:64 #: ../../operation/agentes/status_monitor.php:87 -#: ../../operation/agentes/status_monitor.php:293 -#: ../../operation/agentes/status_monitor.php:316 -#: ../../operation/agentes/ver_agente.php:1565 -#: ../../operation/agentes/ver_agente.php:1823 -#: ../../operation/inventory/inventory.php:1009 -#: ../../operation/inventory/inventory.php:1303 +#: ../../operation/agentes/status_monitor.php:292 +#: ../../operation/agentes/status_monitor.php:315 +#: ../../operation/agentes/ver_agente.php:1561 +#: ../../operation/agentes/ver_agente.php:1819 +#: ../../operation/inventory/inventory.php:1255 msgid "Custom fields" msgstr "Champs personnalisés" #: ../../enterprise/meta/event/custom_events.php:77 -#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1790 +#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1791 msgid "Responses" msgstr "Réponses" @@ -11011,25 +11163,25 @@ msgid "Fields" msgstr "Champs" #: ../../enterprise/meta/event/custom_events.php:173 -#: ../../godmode/agentes/status_monitor_custom_fields.php:168 +#: ../../godmode/agentes/status_monitor_custom_fields.php:188 #: ../../godmode/events/custom_events.php:127 msgid "Fields available" msgstr "Champs disponibles" #: ../../enterprise/meta/event/custom_events.php:175 -#: ../../godmode/agentes/status_monitor_custom_fields.php:190 +#: ../../godmode/agentes/status_monitor_custom_fields.php:210 #: ../../godmode/events/custom_events.php:150 msgid "Fields selected" msgstr "Champs sélectionnés" #: ../../enterprise/meta/event/custom_events.php:185 -#: ../../godmode/agentes/status_monitor_custom_fields.php:175 +#: ../../godmode/agentes/status_monitor_custom_fields.php:195 #: ../../godmode/events/custom_events.php:134 msgid "Add fields to select" msgstr "Ajouter champs à sélectionner" #: ../../enterprise/meta/event/custom_events.php:195 -#: ../../godmode/agentes/status_monitor_custom_fields.php:184 +#: ../../godmode/agentes/status_monitor_custom_fields.php:204 #: ../../godmode/events/custom_events.php:144 msgid "Delete fields to select" msgstr "Supprimer champs pour sélectionner" @@ -11040,7 +11192,7 @@ msgid "Show event fields" msgstr "Afficher champs d'événement" #: ../../enterprise/meta/event/custom_events.php:244 -#: ../../godmode/agentes/status_monitor_custom_fields.php:252 +#: ../../godmode/agentes/status_monitor_custom_fields.php:272 #: ../../godmode/events/custom_events.php:232 msgid "There must be at least one custom field. Timestamp will be set by default" msgstr "" @@ -11098,9 +11250,9 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3007 #: ../../enterprise/include/functions_ipam.php:1665 #: ../../godmode/reporting/reporting_builder.list_items.php:442 -#: ../../godmode/reporting/reporting_builder.list_items.php:738 -#: ../../godmode/reporting/graph_builder.graph_editor.php:217 -#: ../../godmode/reporting/graph_builder.graph_editor.php:354 +#: ../../godmode/reporting/reporting_builder.list_items.php:739 +#: ../../godmode/reporting/graph_builder.graph_editor.php:267 +#: ../../godmode/reporting/graph_builder.graph_editor.php:350 msgid "Sort" msgstr "Classer" @@ -11191,7 +11343,7 @@ msgstr "Erreur Nom dupliqué" #: ../../godmode/users/profile_list.php:61 #: ../../godmode/users/configure_profile.php:54 #: ../../godmode/users/user_list.php:251 ../../godmode/users/user_list.php:276 -#: ../../godmode/users/configure_user.php:245 +#: ../../godmode/users/configure_user.php:183 #: ../../operation/users/user_edit_header.php:89 msgid "User management" msgstr "Gestion des utilisateurs" @@ -11201,7 +11353,7 @@ msgstr "Gestion des utilisateurs" #: ../../godmode/users/profile_list.php:72 #: ../../godmode/users/configure_profile.php:65 #: ../../godmode/users/user_list.php:262 -#: ../../godmode/users/configure_user.php:256 ../../godmode/menu.php:159 +#: ../../godmode/users/configure_user.php:194 ../../godmode/menu.php:159 msgid "Profile management" msgstr "Gestion des profils" @@ -11236,11 +11388,10 @@ msgstr "Gestion des utilisateurs" #: ../../godmode/groups/tactical.php:179 #: ../../godmode/agentes/agent_manager.php:373 #: ../../godmode/reporting/reporting_builder.item_editor.php:69 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3993 -#: ../../include/functions_reporting_html.php:1592 -#: ../../include/functions_reporting_html.php:1756 -#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:999 -#: ../../operation/inventory/inventory.php:1293 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4002 +#: ../../include/functions_reporting_html.php:1601 +#: ../../include/functions_reporting_html.php:1765 +#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:1245 msgid "Alias" msgstr "Alias" @@ -11252,18 +11403,18 @@ msgstr "Alias" #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../godmode/agentes/agent_manager.php:401 #: ../../godmode/servers/modificar_server.php:95 -#: ../../include/functions_reporting_html.php:1596 -#: ../../include/functions_reporting_html.php:4139 -#: ../../include/functions_reporting_html.php:4233 -#: ../../include/functions_treeview.php:643 -#: ../../include/functions_events.php:4372 ../../operation/gis_maps/ajax.php:290 +#: ../../include/functions_reporting_html.php:1605 +#: ../../include/functions_reporting_html.php:4167 +#: ../../include/functions_reporting_html.php:4261 +#: ../../include/functions_treeview.php:647 +#: ../../include/functions_events.php:4377 ../../operation/gis_maps/ajax.php:290 msgid "IP Address" msgstr "Adresse IP" #: ../../enterprise/meta/include/functions_wizard_meta.php:236 #: ../../enterprise/meta/include/functions_wizard_meta.php:682 #: ../../enterprise/godmode/modules/configure_local_component.php:515 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:206 #: ../../enterprise/godmode/setup/setup_log_collector.php:89 #: ../../enterprise/include/functions_metaconsole.php:1339 #: ../../enterprise/include/functions_metaconsole.php:1372 @@ -11272,7 +11423,7 @@ msgstr "Adresse IP" #: ../../enterprise/include/functions_metaconsole.php:1471 #: ../../enterprise/include/functions_metaconsole.php:1502 #: ../../enterprise/include/functions_metaconsole.php:1535 -#: ../../godmode/agentes/module_manager_editor_web.php:179 +#: ../../godmode/agentes/module_manager_editor_web.php:182 msgid "Check" msgstr "Vérifier" @@ -11286,9 +11437,9 @@ msgstr "Vérifier" #: ../../godmode/alerts/configure_alert_template.php:246 #: ../../godmode/alerts/configure_alert_template.php:250 #: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:268 -#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1740 +#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1741 #: ../../include/functions_reports.php:783 -#: ../../include/functions_reporting.php:10176 +#: ../../include/functions_reporting.php:10185 msgid "General" msgstr "Général" @@ -11314,7 +11465,7 @@ msgstr "Annuler les modifications" #: ../../enterprise/meta/include/functions_wizard_meta.php:492 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753 #: ../../godmode/agentes/module_manager_editor_wmi.php:57 -#: ../../godmode/agentes/module_manager_editor_network.php:103 +#: ../../godmode/agentes/module_manager_editor_network.php:104 #: ../../godmode/massive/massive_edit_modules.php:832 msgid "Auto" msgstr "Automatique" @@ -11322,7 +11473,7 @@ msgstr "Automatique" #: ../../enterprise/meta/include/functions_wizard_meta.php:493 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 #: ../../godmode/agentes/module_manager_editor_wmi.php:58 -#: ../../godmode/agentes/module_manager_editor_network.php:104 +#: ../../godmode/agentes/module_manager_editor_network.php:105 #: ../../godmode/massive/massive_edit_modules.php:833 msgid "Force primary key" msgstr "Forcer clé principale" @@ -11337,8 +11488,8 @@ msgstr "Forcer clé principale" #: ../../enterprise/meta/general/login_page.php:267 #: ../../enterprise/extensions/disabled/check_acls.php:47 #: ../../enterprise/extensions/disabled/check_acls.php:132 -#: ../../enterprise/godmode/setup/setup_auth.php:1130 -#: ../../enterprise/godmode/setup/setup_auth.php:1162 +#: ../../enterprise/godmode/setup/setup_auth.php:1347 +#: ../../enterprise/godmode/setup/setup_auth.php:1379 #: ../../enterprise/godmode/servers/manage_export_form.php:155 #: ../../enterprise/include/functions_tasklist.php:172 #: ../../enterprise/include/class/DB2.app.php:509 @@ -11349,23 +11500,22 @@ msgstr "Forcer clé principale" #: ../../godmode/update_manager/update_manager.history.php:43 #: ../../godmode/setup/setup_ehorus.php:97 #: ../../godmode/setup/setup_integria.php:292 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3525 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3534 #: ../../godmode/events/custom_events.php:97 -#: ../../mobile/include/user.class.php:392 -#: ../../mobile/operation/tactical.php:349 -#: ../../include/functions_reporting_html.php:6011 +#: ../../mobile/operation/tactical.php:350 +#: ../../include/functions_reporting_html.php:6045 #: ../../include/functions.php:3109 ../../include/functions_cron.php:498 -#: ../../include/functions_config.php:731 ../../include/functions_config.php:751 +#: ../../include/functions_config.php:743 ../../include/functions_config.php:763 #: ../../include/class/CredentialStore.class.php:817 -#: ../../include/class/CredentialStore.class.php:1300 +#: ../../include/class/CredentialStore.class.php:1301 #: ../../include/class/AuditLog.class.php:110 #: ../../include/class/AuditLog.class.php:240 #: ../../include/functions_events.php:202 ../../include/functions_events.php:253 -#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:857 -#: ../../operation/users/user_edit.php:910 +#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:854 +#: ../../operation/users/user_edit.php:907 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:134 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:265 -#: ../../general/logon_ok.php:255 ../../general/login_page.php:276 +#: ../../general/logon_ok.php:300 ../../general/login_page.php:276 #: ../../general/login_page.php:335 msgid "User" msgstr "Utilisateur" @@ -11379,8 +11529,8 @@ msgstr "Utilisateur" #: ../../enterprise/meta/general/login_page.php:284 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851 #: ../../enterprise/godmode/setup/setup_module_library.php:57 -#: ../../enterprise/godmode/setup/setup_auth.php:1136 -#: ../../enterprise/godmode/setup/setup_auth.php:1168 +#: ../../enterprise/godmode/setup/setup_auth.php:1353 +#: ../../enterprise/godmode/setup/setup_auth.php:1385 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250 #: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 #: ../../enterprise/godmode/servers/manage_export_form.php:161 @@ -11396,22 +11546,21 @@ msgstr "Utilisateur" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:532 #: ../../extensions/api_checker.php:260 #: ../../godmode/modules/manage_network_components_form_wmi.php:49 -#: ../../godmode/users/configure_user.php:1126 +#: ../../godmode/users/configure_user.php:1190 #: ../../godmode/users/user_management.php:280 #: ../../godmode/agentes/module_manager_editor_wmi.php:148 #: ../../godmode/massive/massive_edit_modules.php:923 #: ../../godmode/setup/setup_ehorus.php:104 -#: ../../godmode/setup/setup_integria.php:306 -#: ../../mobile/include/user.class.php:399 ../../include/functions_ui.php:7484 -#: ../../include/functions_config.php:735 ../../include/functions_config.php:755 +#: ../../godmode/setup/setup_integria.php:306 ../../include/functions_ui.php:7561 +#: ../../include/functions_config.php:747 ../../include/functions_config.php:767 #: ../../include/class/CredentialStore.class.php:974 #: ../../include/class/CredentialStore.class.php:1024 -#: ../../include/class/CredentialStore.class.php:1301 -#: ../../include/class/CredentialStore.class.php:1324 -#: ../../include/class/CredentialStore.class.php:1346 +#: ../../include/class/CredentialStore.class.php:1302 +#: ../../include/class/CredentialStore.class.php:1328 +#: ../../include/class/CredentialStore.class.php:1352 #: ../../include/class/AgentWizard.class.php:690 -#: ../../operation/users/user_edit.php:863 -#: ../../operation/users/user_edit.php:916 ../../general/login_page.php:290 +#: ../../operation/users/user_edit.php:860 +#: ../../operation/users/user_edit.php:913 ../../general/login_page.php:290 #: ../../general/login_page.php:351 msgid "Password" msgstr "Mot de passe" @@ -11425,14 +11574,14 @@ msgid "Response" msgstr "Réponse" #: ../../enterprise/meta/include/functions_wizard_meta.php:593 -#: ../../godmode/agentes/module_manager_editor_web.php:213 +#: ../../godmode/agentes/module_manager_editor_web.php:216 msgid "Check type" msgstr "Vérifier le type" #: ../../enterprise/meta/include/functions_wizard_meta.php:610 #: ../../enterprise/meta/include/functions_wizard_meta.php:667 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066 -#: ../../enterprise/include/functions_enterprise.php:447 +#: ../../enterprise/include/functions_enterprise.php:457 #: ../../godmode/agentes/module_manager_editor_web.php:92 #: ../../godmode/massive/massive_edit_modules.php:1156 msgid "Web checks" @@ -11452,47 +11601,47 @@ msgstr "Supprimer vérification" #: ../../enterprise/meta/include/functions_wizard_meta.php:674 #: ../../enterprise/godmode/modules/configure_local_component.php:506 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:217 -#: ../../godmode/agentes/module_manager_editor_web.php:168 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:218 +#: ../../godmode/agentes/module_manager_editor_web.php:171 msgid "Load basic" msgstr "Charger les bases" #: ../../enterprise/meta/include/functions_wizard_meta.php:680 -#: ../../godmode/agentes/module_manager_editor_web.php:177 +#: ../../godmode/agentes/module_manager_editor_web.php:180 msgid "Load a basic structure on Web Checks" msgstr "Charger une structure de base sur les contrôles web" #: ../../enterprise/meta/include/functions_wizard_meta.php:688 -#: ../../godmode/agentes/module_manager_editor_web.php:188 +#: ../../godmode/agentes/module_manager_editor_web.php:191 msgid "Check the correct structure of the WebCheck" msgstr "Vérifiez la structure correcte du WebCheck" #: ../../enterprise/meta/include/functions_wizard_meta.php:695 -#: ../../godmode/agentes/module_manager_editor_web.php:267 +#: ../../godmode/agentes/module_manager_editor_web.php:270 msgid "First line must be \"task_begin\"" msgstr "La première ligne doit être « task_begin »." #: ../../enterprise/meta/include/functions_wizard_meta.php:696 -#: ../../godmode/agentes/module_manager_editor_web.php:268 +#: ../../godmode/agentes/module_manager_editor_web.php:271 msgid "Webchecks configuration is empty" msgstr "La configuration des Webchecks est vide." #: ../../enterprise/meta/include/functions_wizard_meta.php:697 #: ../../enterprise/meta/include/functions_wizard_meta.php:698 -#: ../../godmode/agentes/module_manager_editor_web.php:269 -#: ../../godmode/agentes/module_manager_editor_web.php:270 +#: ../../godmode/agentes/module_manager_editor_web.php:272 +#: ../../godmode/agentes/module_manager_editor_web.php:273 msgid "Last line must be \"task_end\"" msgstr "La dernière ligne doit être « task_end »." #: ../../enterprise/meta/include/functions_wizard_meta.php:699 #: ../../enterprise/godmode/modules/configure_local_component.php:525 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256 -#: ../../godmode/agentes/module_manager_editor_web.php:271 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257 +#: ../../godmode/agentes/module_manager_editor_web.php:274 msgid "There is a line with a unknown token 'token_fail'." msgstr "Une ligne contient un token inconnu « token_fail »." #: ../../enterprise/meta/include/functions_wizard_meta.php:700 -#: ../../godmode/agentes/module_manager_editor_web.php:273 +#: ../../godmode/agentes/module_manager_editor_web.php:276 msgid "Web checks are built correctly" msgstr "Contrôles web établis correctement" @@ -11525,42 +11674,41 @@ msgstr "Contrôles web établis correctement" #: ../../enterprise/operation/agentes/tag_view.php:784 #: ../../enterprise/tools/ipam/ipam_list.php:724 #: ../../godmode/modules/manage_network_components_form_common.php:143 -#: ../../godmode/agentes/status_monitor_custom_fields.php:93 -#: ../../godmode/agentes/status_monitor_custom_fields.php:145 +#: ../../godmode/agentes/status_monitor_custom_fields.php:113 +#: ../../godmode/agentes/status_monitor_custom_fields.php:165 #: ../../godmode/agentes/inventory_manager.php:236 #: ../../godmode/agentes/agent_manager.php:503 -#: ../../godmode/agentes/module_manager_editor_common.php:1067 +#: ../../godmode/agentes/module_manager_editor_common.php:1077 #: ../../godmode/agentes/module_manager.php:637 -#: ../../godmode/massive/massive_edit_agents.php:714 +#: ../../godmode/massive/massive_edit_agents.php:731 #: ../../godmode/massive/massive_edit_modules.php:769 -#: ../../godmode/setup/setup_visuals.php:1919 -#: ../../godmode/setup/setup_visuals.php:2001 +#: ../../godmode/setup/setup_visuals.php:1934 +#: ../../godmode/setup/setup_visuals.php:2016 #: ../../godmode/wizards/HostDevices.class.php:799 #: ../../godmode/wizards/DiscoveryTaskList.class.php:599 -#: ../../mobile/operation/modules.php:657 ../../mobile/operation/modules.php:659 -#: ../../mobile/operation/modules.php:851 -#: ../../include/functions_reporting_html.php:3712 -#: ../../include/ajax/events.php:2372 ../../include/functions_treeview.php:83 -#: ../../include/functions_treeview.php:649 ../../include/functions_ui.php:7417 +#: ../../mobile/operation/modules.php:668 ../../mobile/operation/modules.php:670 +#: ../../mobile/operation/modules.php:910 +#: ../../include/functions_reporting_html.php:3740 +#: ../../include/ajax/events.php:2373 ../../include/functions_treeview.php:83 +#: ../../include/functions_treeview.php:653 ../../include/functions_ui.php:7494 #: ../../include/class/CustomNetScan.class.php:526 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:376 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:296 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:319 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:408 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:362 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:387 #: ../../include/lib/Dashboard/Widgets/single_graph.php:347 #: ../../include/lib/Dashboard/Widgets/top_n.php:236 #: ../../include/lib/Group.php:570 ../../operation/search_agents.php:45 #: ../../operation/search_agents.php:51 -#: ../../operation/agentes/estado_agente.php:1035 -#: ../../operation/agentes/status_monitor.php:1560 -#: ../../operation/agentes/estado_generalagente.php:458 +#: ../../operation/agentes/status_monitor.php:1562 +#: ../../operation/agentes/estado_generalagente.php:429 #: ../../operation/network/network_usage_map.php:114 -#: ../../operation/netflow/nf_live_view.php:389 -#: ../../operation/inventory/inventory.php:1006 -#: ../../operation/inventory/inventory.php:1300 -#: ../../operation/search_modules.php:35 -#: ../../operation/events/sound_events.php:219 +#: ../../operation/netflow/nf_live_view.php:462 +#: ../../operation/inventory/inventory.php:1252 +#: ../../operation/search_modules.php:38 +#: ../../operation/events/sound_events.php:249 msgid "Interval" msgstr "Intervalle" @@ -11574,9 +11722,9 @@ msgstr "Intervalle" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868 #: ../../enterprise/include/functions_reporting_csv.php:2791 #: ../../godmode/modules/manage_network_components_form_common.php:323 -#: ../../godmode/agentes/module_manager_editor_common.php:1327 +#: ../../godmode/agentes/module_manager_editor_common.php:1337 #: ../../godmode/massive/massive_edit_modules.php:940 -#: ../../include/functions_reporting_html.php:3713 +#: ../../include/functions_reporting_html.php:3741 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:498 msgid "Unit" msgstr "Unité" @@ -11599,7 +11747,7 @@ msgstr "Communauté SNMP" #: ../../enterprise/include/class/DeploymentCenter.class.php:1344 #: ../../enterprise/include/class/DeploymentCenter.class.php:1354 #: ../../extensions/api_checker.php:331 -#: ../../godmode/wizards/HostDevices.class.php:1508 +#: ../../godmode/wizards/HostDevices.class.php:1504 msgid "Credentials" msgstr "Identifiants" @@ -11624,9 +11772,10 @@ msgstr "Identifiants" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268 #: ../../godmode/alerts/alert_view.php:272 #: ../../godmode/reporting/reporting_builder.item_editor.php:1483 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2574 -#: ../../include/functions_reporting_html.php:5008 -#: ../../include/functions_ui.php:2869 ../../include/functions_reporting.php:1539 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2583 +#: ../../include/functions_reporting_html.php:5036 +#: ../../include/functions.php:4088 ../../include/functions_ui.php:2912 +#: ../../include/functions_reporting.php:1539 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:363 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:410 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:439 @@ -11654,9 +11803,10 @@ msgstr "Minimum" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268 #: ../../godmode/alerts/alert_view.php:272 #: ../../godmode/reporting/reporting_builder.item_editor.php:1485 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2567 -#: ../../include/functions_reporting_html.php:5007 -#: ../../include/functions_ui.php:2869 ../../include/functions_reporting.php:1535 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2576 +#: ../../include/functions_reporting_html.php:5035 +#: ../../include/functions.php:4095 ../../include/functions_ui.php:2912 +#: ../../include/functions_reporting.php:1535 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:372 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:419 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:448 @@ -11686,8 +11836,8 @@ msgstr "Maximum" #: ../../godmode/modules/manage_network_components_form_wizard.php:444 #: ../../godmode/agentes/module_manager_editor_common.php:477 #: ../../godmode/agentes/module_manager_editor_common.php:485 -#: ../../godmode/agentes/module_manager_editor_common.php:560 -#: ../../godmode/agentes/module_manager_editor_common.php:569 +#: ../../godmode/agentes/module_manager_editor_common.php:565 +#: ../../godmode/agentes/module_manager_editor_common.php:574 #: ../../godmode/massive/massive_edit_modules.php:625 #: ../../godmode/massive/massive_edit_modules.php:716 msgid "Inverse interval" @@ -11696,13 +11846,13 @@ msgstr "Intervalle inverse" #: ../../enterprise/meta/include/functions_wizard_meta.php:996 #: ../../enterprise/meta/include/functions_wizard_meta.php:1081 #: ../../enterprise/meta/include/functions_wizard_meta.php:1314 -#: ../../include/ajax/module.php:1004 +#: ../../include/ajax/module.php:1027 msgid "Thresholds" msgstr "Seuils" #: ../../enterprise/meta/include/functions_wizard_meta.php:1087 #: ../../enterprise/meta/include/functions_wizard_meta.php:1619 -#: ../../godmode/agentes/module_manager_editor_web.php:238 +#: ../../godmode/agentes/module_manager_editor_web.php:241 msgid "Proxy URL" msgstr "URL du proxy" @@ -11727,7 +11877,7 @@ msgid "Alerts in module" msgstr "Alertes dans le module" #: ../../enterprise/meta/include/functions_wizard_meta.php:1376 -#: ../../include/functions_reporting_html.php:5372 +#: ../../include/functions_reporting_html.php:5400 msgid "Alert description" msgstr "Description de l'alerte" @@ -11762,7 +11912,7 @@ msgstr "Erreur de création des alertes ; l'opération a été annulée." #: ../../enterprise/meta/include/functions_wizard_meta.php:2064 #: ../../enterprise/meta/include/functions_wizard_meta.php:2159 -#: ../../enterprise/godmode/policies/policy_modules.php:933 +#: ../../enterprise/godmode/policies/policy_modules.php:937 msgid "Successfully added module." msgstr "Module ajouté correctement" @@ -11838,7 +11988,7 @@ msgstr "Tous les jours" #: ../../enterprise/include/ajax/ipam.ajax.php:521 #: ../../enterprise/tools/ipam/ipam_editor.php:364 #: ../../godmode/alerts/alert_templates.php:71 -#: ../../include/functions_config.php:1684 +#: ../../include/functions_config.php:1696 msgid "Days" msgstr "Jours" @@ -11853,7 +12003,7 @@ msgid "and" msgstr "et" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:318 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:254 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2263 #: ../../godmode/snmpconsole/snmp_alert.php:1589 @@ -11879,8 +12029,8 @@ msgstr "Seuil de temps" #: ../../godmode/alerts/alert_list.list.php:733 #: ../../godmode/alerts/alert_templates.php:94 #: ../../include/functions_reporting_html.php:148 -#: ../../include/functions_reporting_html.php:3202 -#: ../../include/functions_reporting_html.php:4013 +#: ../../include/functions_reporting_html.php:3230 +#: ../../include/functions_reporting_html.php:4041 #: ../../include/rest-api/index.php:375 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:513 @@ -11906,10 +12056,10 @@ msgstr "De" #: ../../godmode/alerts/alert_templates.php:96 #: ../../godmode/alerts/alert_list.builder.php:126 #: ../../include/functions_reporting_html.php:149 -#: ../../include/functions_reporting_html.php:3207 +#: ../../include/functions_reporting_html.php:3235 #: ../../include/ajax/alert_list.ajax.php:527 #: ../../include/class/AgentsAlerts.class.php:321 -#: ../../include/functions_reporting.php:14866 +#: ../../include/functions_reporting.php:14939 #: ../../operation/reporting/reporting_viewer.php:272 msgid "to" msgstr "pour" @@ -11933,9 +12083,9 @@ msgstr "Identifiant de l'événement" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:587 #: ../../include/functions_reporting_html.php:1307 #: ../../include/functions_reporting_html.php:1315 -#: ../../include/functions_reporting_html.php:5304 +#: ../../include/functions_reporting_html.php:5332 #: ../../include/functions_events.php:200 ../../include/functions_events.php:2529 -#: ../../include/functions_events.php:4901 +#: ../../include/functions_events.php:4906 msgid "Event name" msgstr "Nom de l'événement" @@ -11943,15 +12093,15 @@ msgstr "Nom de l'événement" #: ../../enterprise/include/functions_reporting_csv.php:921 #: ../../enterprise/include/class/Omnishell.class.php:642 #: ../../enterprise/include/functions_ipam.php:2114 -#: ../../godmode/agentes/modificar_agente.php:690 +#: ../../godmode/agentes/modificar_agente.php:700 #: ../../godmode/agentes/agent_manager.php:357 -#: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849 -#: ../../include/functions_reporting_html.php:3659 -#: ../../include/functions_treeview.php:607 +#: ../../mobile/operation/modules.php:608 ../../mobile/operation/modules.php:908 +#: ../../include/functions_reporting_html.php:3687 +#: ../../include/functions_treeview.php:611 #: ../../include/class/SatelliteAgent.class.php:513 #: ../../include/lib/Group.php:550 ../../include/functions_events.php:201 #: ../../include/functions_events.php:247 ../../include/functions_events.php:2534 -#: ../../operation/events/events.php:2669 +#: ../../operation/events/events.php:2723 msgid "Agent name" msgstr "Nom de l'agent" @@ -11966,38 +12116,39 @@ msgstr "Nom de l'agent" #: ../../enterprise/include/class/LogSource.class.php:604 #: ../../enterprise/operation/agentes/tag_view.php:789 #: ../../godmode/update_manager/update_manager.history.php:44 -#: ../../godmode/agentes/status_monitor_custom_fields.php:117 -#: ../../godmode/agentes/status_monitor_custom_fields.php:151 -#: ../../godmode/setup/news.php:352 ../../godmode/events/custom_events.php:100 -#: ../../mobile/operation/modules.php:661 ../../mobile/operation/modules.php:852 -#: ../../mobile/operation/events.php:804 +#: ../../godmode/agentes/status_monitor_custom_fields.php:137 +#: ../../godmode/agentes/status_monitor_custom_fields.php:171 +#: ../../godmode/setup/news.php:356 ../../godmode/events/custom_events.php:100 +#: ../../mobile/operation/modules.php:672 ../../mobile/operation/modules.php:911 +#: ../../mobile/operation/module_data.php:165 +#: ../../mobile/operation/events.php:833 #: ../../include/functions_reporting_html.php:1062 #: ../../include/functions_reporting_html.php:1070 #: ../../include/functions_reporting_html.php:1310 #: ../../include/functions_reporting_html.php:1317 -#: ../../include/functions_reporting_html.php:2646 -#: ../../include/functions_reporting_html.php:5306 +#: ../../include/functions_reporting_html.php:2665 +#: ../../include/functions_reporting_html.php:5334 #: ../../include/ajax/events_extended.php:90 #: ../../include/ajax/custom_fields.php:415 -#: ../../include/functions_inventory.php:143 -#: ../../include/functions_inventory.php:177 -#: ../../include/functions_inventory.php:379 -#: ../../include/functions_inventory.php:399 -#: ../../include/functions_inventory.php:585 +#: ../../include/functions_inventory.php:144 +#: ../../include/functions_inventory.php:178 +#: ../../include/functions_inventory.php:388 +#: ../../include/functions_inventory.php:408 +#: ../../include/functions_inventory.php:594 #: ../../include/functions_netflow.php:278 #: ../../include/class/SnmpConsole.class.php:279 #: ../../include/functions_events.php:205 ../../include/functions_events.php:262 #: ../../include/functions_events.php:2539 -#: ../../include/functions_events.php:4914 +#: ../../include/functions_events.php:4919 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1598 -#: ../../operation/agentes/estado_generalagente.php:751 +#: ../../operation/agentes/status_monitor.php:1600 +#: ../../operation/agentes/estado_generalagente.php:720 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/messages/message_list.php:196 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:132 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:263 -#: ../../operation/search_modules.php:39 +#: ../../operation/search_modules.php:42 msgid "Timestamp" msgstr "Horodatage" @@ -12007,12 +12158,12 @@ msgstr "Horodatage" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1406 #: ../../enterprise/include/lib/AlertCorrelation.class.php:1127 #: ../../enterprise/include/functions_events.php:60 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3025 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3034 #: ../../godmode/events/event_filter.php:146 -#: ../../godmode/events/event_edit_filter.php:352 +#: ../../godmode/events/event_edit_filter.php:354 #: ../../include/lib/Dashboard/Widgets/events_list.php:332 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:267 -#: ../../include/functions_events.php:206 ../../operation/events/events.php:1749 +#: ../../include/functions_events.php:206 ../../operation/events/events.php:1803 msgid "Event type" msgstr "Type d'événement" @@ -12021,20 +12172,20 @@ msgstr "Type d'événement" #: ../../enterprise/include/functions_reporting_csv.php:923 #: ../../enterprise/operation/agentes/tag_view.php:217 #: ../../godmode/modules/manage_network_templates_form.php:231 -#: ../../godmode/modules/manage_network_components.php:774 +#: ../../godmode/modules/manage_network_components.php:777 #: ../../godmode/modules/manage_network_components_form_wizard.php:272 #: ../../godmode/agentes/agent_template.php:274 -#: ../../godmode/agentes/status_monitor_custom_fields.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:143 +#: ../../godmode/agentes/status_monitor_custom_fields.php:105 +#: ../../godmode/agentes/status_monitor_custom_fields.php:163 #: ../../godmode/alerts/alert_list.list.php:104 -#: ../../mobile/operation/modules.php:594 ../../mobile/operation/modules.php:848 -#: ../../include/ajax/heatmap.ajax.php:239 -#: ../../include/ajax/heatmap.ajax.php:278 ../../include/ajax/module.php:1001 +#: ../../mobile/operation/modules.php:602 ../../mobile/operation/modules.php:604 +#: ../../mobile/operation/modules.php:907 ../../include/ajax/heatmap.ajax.php:281 +#: ../../include/ajax/heatmap.ajax.php:406 ../../include/ajax/module.php:1024 #: ../../include/ajax/custom_fields.php:411 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:542 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:558 -#: ../../operation/agentes/status_monitor.php:902 -#: ../../operation/agentes/status_monitor.php:1548 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559 +#: ../../operation/agentes/status_monitor.php:901 +#: ../../operation/agentes/status_monitor.php:1550 msgid "Module name" msgstr "Nom du module" @@ -12045,14 +12196,14 @@ msgstr "Nom du module" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:380 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4422 #: ../../godmode/alerts/configure_alert_template.php:1602 -#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4174 +#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4200 #: ../../include/functions_snmp.php:324 #: ../../include/class/SnmpConsole.class.php:280 #: ../../include/class/SnmpConsole.class.php:352 #: ../../include/class/SnmpConsole.class.php:506 #: ../../include/class/SnmpConsole.class.php:507 #: ../../include/functions_events.php:208 ../../include/functions_events.php:271 -#: ../../operation/agentes/estado_monitores.php:517 +#: ../../operation/agentes/estado_monitores.php:514 msgid "Alert" msgstr "Alerte" @@ -12063,35 +12214,35 @@ msgstr "Alerte" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2867 #: ../../enterprise/include/functions_reporting.php:2020 #: ../../enterprise/include/functions_events.php:70 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2998 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3007 #: ../../godmode/events/event_filter.php:148 -#: ../../godmode/events/event_edit_filter.php:372 +#: ../../godmode/events/event_edit_filter.php:374 #: ../../godmode/events/custom_events.php:104 -#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679 -#: ../../mobile/operation/events.php:820 ../../mobile/operation/events.php:982 -#: ../../mobile/operation/events.php:983 +#: ../../mobile/operation/events.php:707 ../../mobile/operation/events.php:708 +#: ../../mobile/operation/events.php:849 ../../mobile/operation/events.php:1026 +#: ../../mobile/operation/events.php:1027 #: ../../include/functions_reporting_html.php:1060 #: ../../include/functions_reporting_html.php:1068 #: ../../include/functions_reporting_html.php:1308 #: ../../include/functions_reporting_html.php:1316 -#: ../../include/functions_reporting_html.php:2644 +#: ../../include/functions_reporting_html.php:2663 #: ../../include/functions_snmp.php:335 #: ../../include/class/SnmpConsole.class.php:363 #: ../../include/class/SnmpConsole.class.php:483 #: ../../include/lib/Dashboard/Widgets/events_list.php:404 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:396 #: ../../include/functions_events.php:209 ../../include/functions_events.php:274 -#: ../../include/functions_events.php:4982 ../../operation/events/events.php:1850 +#: ../../include/functions_events.php:4987 ../../operation/events/events.php:1904 msgid "Severity" msgstr "Sévérité" #: ../../enterprise/meta/include/functions_events_meta.php:102 -#: ../../godmode/events/event_edit_filter.php:829 +#: ../../godmode/events/event_edit_filter.php:831 #: ../../godmode/events/custom_events.php:105 -#: ../../godmode/wizards/HostDevices.class.php:960 +#: ../../godmode/wizards/HostDevices.class.php:956 #: ../../include/class/CustomNetScan.class.php:474 #: ../../include/functions_events.php:210 ../../include/functions_events.php:277 -#: ../../include/functions_events.php:3622 ../../operation/events/events.php:1906 +#: ../../include/functions_events.php:3627 ../../operation/events/events.php:1960 msgid "Comment" msgstr "Commentaire" @@ -12102,7 +12253,7 @@ msgstr "Commentaire" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971 #: ../../enterprise/godmode/setup/setup_auth.php:253 #: ../../enterprise/godmode/setup/setup_auth.php:603 -#: ../../enterprise/godmode/setup/setup_auth.php:1413 +#: ../../enterprise/godmode/setup/setup_auth.php:1630 #: ../../enterprise/include/functions_reporting_csv.php:763 #: ../../enterprise/operation/agentes/tag_view.php:241 #: ../../enterprise/operation/agentes/tag_view.php:781 @@ -12114,27 +12265,27 @@ msgstr "Commentaire" #: ../../godmode/massive/massive_edit_modules.php:491 #: ../../godmode/massive/massive_edit_modules.php:1062 #: ../../godmode/reporting/reporting_builder.item_editor.php:85 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3964 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3973 #: ../../godmode/events/custom_events.php:106 -#: ../../mobile/operation/events.php:845 -#: ../../include/functions_reporting_html.php:1772 -#: ../../include/functions_reporting_html.php:3715 +#: ../../mobile/operation/events.php:874 +#: ../../include/functions_reporting_html.php:1781 +#: ../../include/functions_reporting_html.php:3743 #: ../../include/functions_treeview.php:152 #: ../../include/functions_profile.php:205 #: ../../include/lib/Dashboard/Widgets/events_list.php:461 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:342 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:345 #: ../../include/functions_events.php:211 ../../include/functions_events.php:280 -#: ../../include/functions_events.php:5080 ../../operation/tree.php:67 -#: ../../operation/users/user_edit.php:1000 -#: ../../operation/agentes/status_monitor.php:878 -#: ../../operation/agentes/group_view.php:240 +#: ../../include/functions_events.php:5085 ../../operation/tree.php:67 +#: ../../operation/users/user_edit.php:997 +#: ../../operation/agentes/status_monitor.php:877 +#: ../../operation/agentes/group_view.php:243 #: ../../operation/agentes/alerts_status.functions.php:146 #: ../../general/first_task/tags.php:22 msgid "Tags" msgstr "Étiquettes" #: ../../enterprise/meta/include/functions_events_meta.php:114 -#: ../../include/functions_events.php:213 ../../include/functions_events.php:4626 +#: ../../include/functions_events.php:213 ../../include/functions_events.php:4631 msgid "Extra id" msgstr "Identifiant supplémentaire" @@ -12142,13 +12293,13 @@ msgstr "Identifiant supplémentaire" #: ../../godmode/setup/setup_integria.php:464 #: ../../godmode/setup/setup_integria.php:598 #: ../../godmode/events/custom_events.php:109 -#: ../../mobile/operation/events.php:808 ../../include/functions_events.php:214 -#: ../../include/functions_events.php:289 ../../include/functions_events.php:4936 +#: ../../mobile/operation/events.php:837 ../../include/functions_events.php:214 +#: ../../include/functions_events.php:289 ../../include/functions_events.php:4941 #: ../../operation/incidents/integriaims_export_csv.php:89 #: ../../operation/incidents/configure_integriaims_incident.php:339 #: ../../operation/incidents/list_integriaims_incidents.php:360 #: ../../operation/incidents/list_integriaims_incidents.php:593 -#: ../../operation/events/events.php:2026 +#: ../../operation/events/events.php:2080 msgid "Owner" msgstr "Propriétaire" @@ -12161,7 +12312,7 @@ msgstr "Horodatage ACK" #: ../../enterprise/meta/include/functions_events_meta.php:126 #: ../../godmode/events/custom_events.php:111 #: ../../include/functions_events.php:216 ../../include/functions_events.php:295 -#: ../../include/functions_events.php:4614 ../../operation/events/events.php:3239 +#: ../../include/functions_events.php:4619 ../../operation/events/events.php:3298 msgid "Instructions" msgstr "Instructions" @@ -12177,11 +12328,11 @@ msgid "Server name" msgstr "Nom du serveur" #: ../../enterprise/meta/include/functions_events_meta.php:138 -#: ../../include/functions_reporting_html.php:5216 +#: ../../include/functions_reporting_html.php:5244 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:172 #: ../../include/lib/Dashboard/Widgets/module_status.php:175 #: ../../include/lib/Dashboard/Widgets/module_status.php:610 -#: ../../include/functions_events.php:219 ../../operation/tree.php:315 +#: ../../include/functions_events.php:219 ../../operation/tree.php:317 msgid "Module status" msgstr "État du module" @@ -12225,8 +12376,8 @@ msgstr "Aller à la wiki de Pandora FMS" #: ../../enterprise/meta/include/process_reset_pass.php:58 #: ../../enterprise/meta/include/reset_pass.php:58 #: ../../enterprise/godmode/modules/configure_local_component.php:657 -#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1624 -#: ../../include/class/ManageNetScanScripts.class.php:698 +#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1667 +#: ../../include/class/ManageNetScanScripts.class.php:694 msgid "Help" msgstr "Aide" @@ -12247,8 +12398,8 @@ msgid "Change password" msgstr "Modifier le mot de passe" #: ../../enterprise/meta/include/process_reset_pass.php:123 -#: ../../enterprise/meta/index.php:691 -#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:856 +#: ../../enterprise/meta/index.php:692 +#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:857 msgid "Passwords must be the same" msgstr "Les mots de passe doivent être identiques." @@ -12273,8 +12424,7 @@ msgstr "MÉTACONSOLE" #: ../../enterprise/meta/general/login_page.php:316 #: ../../enterprise/include/process_reset_pass.php:239 #: ../../enterprise/include/reset_pass.php:213 -#: ../../enterprise/include/reset_pass.php:320 -#: ../../include/functions_menu.php:955 ../../general/login_page.php:460 +#: ../../enterprise/include/reset_pass.php:320 ../../general/login_page.php:460 msgid "Build" msgstr "Générer" @@ -12336,7 +12486,7 @@ msgstr "Opérations utilisateur" #: ../../enterprise/meta/include/functions_agents_meta.php:661 #: ../../enterprise/extensions/disabled/check_acls.php:50 #: ../../enterprise/extensions/disabled/check_acls.php:137 -#: ../../include/functions_menu.php:567 +#: ../../include/functions_menu.php:569 msgid "Agents management" msgstr "Gestion des agents" @@ -12352,7 +12502,7 @@ msgid "No admin user" msgstr "Aucun utilisateur administrateur" #: ../../enterprise/meta/include/functions_meta.php:71 -#: ../../include/functions_config.php:438 +#: ../../include/functions_config.php:446 msgid "Activate Metaconsole" msgstr "Activer la Métaconsole" @@ -12400,26 +12550,26 @@ msgstr "Port ElasticSearch" #: ../../enterprise/meta/include/functions_meta.php:533 #: ../../enterprise/godmode/setup/setup_log_collector.php:64 -#: ../../include/functions_config.php:1625 +#: ../../include/functions_config.php:1637 msgid "Number of logs viewed" msgstr "Nombre de journaux visionnés" #: ../../enterprise/meta/include/functions_meta.php:554 -#: ../../godmode/setup/setup_auth.php:483 ../../include/functions_config.php:559 +#: ../../godmode/setup/setup_auth.php:483 ../../include/functions_config.php:567 #: ../../include/class/CredentialStore.class.php:1162 -#: ../../include/class/CredentialStore.class.php:1455 +#: ../../include/class/CredentialStore.class.php:1464 #: ../../include/class/AgentWizard.class.php:925 msgid "Authentication method" msgstr "Méthode d'authentification" #: ../../enterprise/meta/include/functions_meta.php:564 -#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:691 +#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:703 msgid "Fallback to local authentication" msgstr "Repli à l'authentification locale" #: ../../enterprise/meta/include/functions_meta.php:574 #: ../../enterprise/meta/include/functions_meta.php:798 -#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:563 +#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:571 msgid "Autocreate remote users" msgstr "Créer des utilisateurs à distance" @@ -12427,8 +12577,8 @@ msgstr "Créer des utilisateurs à distance" #: ../../enterprise/godmode/setup/setup_auth.php:55 #: ../../enterprise/godmode/setup/setup_auth.php:325 #: ../../enterprise/godmode/setup/setup_auth.php:457 -#: ../../enterprise/godmode/setup/setup_auth.php:1250 -#: ../../include/functions_config.php:567 +#: ../../enterprise/godmode/setup/setup_auth.php:1467 +#: ../../include/functions_config.php:575 msgid "Autocreate profile" msgstr "Créer profil automatiquement" @@ -12436,8 +12586,8 @@ msgstr "Créer profil automatiquement" #: ../../enterprise/godmode/setup/setup_auth.php:61 #: ../../enterprise/godmode/setup/setup_auth.php:331 #: ../../enterprise/godmode/setup/setup_auth.php:463 -#: ../../enterprise/godmode/setup/setup_auth.php:1256 -#: ../../include/functions_config.php:571 +#: ../../enterprise/godmode/setup/setup_auth.php:1473 +#: ../../include/functions_config.php:579 msgid "Autocreate profile group" msgstr "Créer groupe de profil automatiquement" @@ -12445,29 +12595,29 @@ msgstr "Créer groupe de profil automatiquement" #: ../../enterprise/godmode/setup/setup_auth.php:68 #: ../../enterprise/godmode/setup/setup_auth.php:340 #: ../../enterprise/godmode/setup/setup_auth.php:472 -#: ../../enterprise/godmode/setup/setup_auth.php:1280 -#: ../../include/functions_config.php:575 +#: ../../enterprise/godmode/setup/setup_auth.php:1497 +#: ../../include/functions_config.php:583 msgid "Autocreate profile tags" msgstr "Créer étiquettes de profil automatiquement" #: ../../enterprise/meta/include/functions_meta.php:614 #: ../../enterprise/godmode/setup/setup_auth.php:346 -#: ../../include/functions_config.php:579 +#: ../../include/functions_config.php:587 msgid "Automatically assigned no hierarchy" msgstr "Pas de hiérarchie attribué automatiquement" #: ../../enterprise/meta/include/functions_meta.php:624 -#: ../../enterprise/godmode/setup/setup_auth.php:662 -#: ../../enterprise/godmode/setup/setup_auth.php:1477 -#: ../../include/functions_config.php:587 +#: ../../enterprise/godmode/setup/setup_auth.php:668 +#: ../../enterprise/godmode/setup/setup_auth.php:1694 +#: ../../include/functions_config.php:595 msgid "Autocreate blacklist" msgstr "Créer liste noire automatiquement" #: ../../enterprise/meta/include/functions_meta.php:634 #: ../../enterprise/meta/include/functions_meta.php:941 -#: ../../godmode/users/configure_user.php:1493 -#: ../../godmode/setup/setup_auth.php:392 ../../include/functions_config.php:799 -#: ../../operation/users/user_edit.php:544 +#: ../../godmode/users/configure_user.php:1546 +#: ../../godmode/setup/setup_auth.php:392 ../../include/functions_config.php:811 +#: ../../operation/users/user_edit.php:537 msgid "Double authentication" msgstr "Double authentification" @@ -12477,7 +12627,7 @@ msgstr "2FA_all_users" #: ../../enterprise/meta/include/functions_meta.php:656 #: ../../enterprise/meta/include/functions_meta.php:954 -#: ../../include/functions_config.php:807 ../../include/functions_config.php:813 +#: ../../include/functions_config.php:819 ../../include/functions_config.php:825 msgid "Session timeout" msgstr "Session expirée" @@ -12485,7 +12635,7 @@ msgstr "Session expirée" #: ../../enterprise/meta/include/functions_meta.php:1148 #: ../../enterprise/godmode/setup/setup_auth.php:82 #: ../../enterprise/godmode/setup/setup_auth.php:441 -#: ../../include/functions_config.php:704 ../../include/functions_config.php:820 +#: ../../include/functions_config.php:716 ../../include/functions_config.php:832 msgid "Save Password" msgstr "Enregistrer le mot de passe" @@ -12494,58 +12644,58 @@ msgid "Timezone visual" msgstr "Visualisation du fuseau horaire" #: ../../enterprise/meta/include/functions_meta.php:692 -#: ../../enterprise/godmode/setup/setup_auth.php:670 -#: ../../enterprise/godmode/setup/setup_auth.php:1485 -#: ../../include/functions_config.php:591 +#: ../../enterprise/godmode/setup/setup_auth.php:676 +#: ../../enterprise/godmode/setup/setup_auth.php:1702 +#: ../../include/functions_config.php:599 msgid "Active directory server" msgstr "Serveur de répertoire actif" #: ../../enterprise/meta/include/functions_meta.php:702 -#: ../../enterprise/godmode/setup/setup_auth.php:676 -#: ../../enterprise/godmode/setup/setup_auth.php:1502 -#: ../../include/functions_config.php:595 +#: ../../enterprise/godmode/setup/setup_auth.php:682 +#: ../../enterprise/godmode/setup/setup_auth.php:1719 +#: ../../include/functions_config.php:603 msgid "Active directory port" msgstr "Port de répertoire actif" #: ../../enterprise/meta/include/functions_meta.php:712 #: ../../enterprise/meta/include/functions_meta.php:996 -#: ../../enterprise/godmode/setup/setup_auth.php:682 -#: ../../enterprise/godmode/setup/setup_auth.php:1519 -#: ../../godmode/setup/setup_auth.php:146 ../../include/functions_config.php:599 -#: ../../include/functions_config.php:635 +#: ../../enterprise/godmode/setup/setup_auth.php:688 +#: ../../enterprise/godmode/setup/setup_auth.php:1736 +#: ../../godmode/setup/setup_auth.php:146 ../../include/functions_config.php:607 +#: ../../include/functions_config.php:647 msgid "Start TLS" msgstr "Lancer TLS" #: ../../enterprise/meta/include/functions_meta.php:722 #: ../../enterprise/godmode/setup/setup_auth.php:446 -#: ../../enterprise/godmode/setup/setup_auth.php:1239 -#: ../../include/functions_config.php:603 +#: ../../enterprise/godmode/setup/setup_auth.php:1456 +#: ../../include/functions_config.php:615 msgid "Advanced Config AD" msgstr "Configuration AD avancée" #: ../../enterprise/meta/include/functions_meta.php:732 -#: ../../enterprise/godmode/setup/setup_auth.php:688 -#: ../../enterprise/godmode/setup/setup_auth.php:1525 -#: ../../include/functions_config.php:611 +#: ../../enterprise/godmode/setup/setup_auth.php:694 +#: ../../enterprise/godmode/setup/setup_auth.php:1742 +#: ../../include/functions_config.php:623 msgid "Domain" msgstr "Domaine" #: ../../enterprise/meta/include/functions_meta.php:742 #: ../../enterprise/godmode/setup/setup_auth.php:506 -#: ../../enterprise/godmode/setup/setup_auth.php:1314 -#: ../../include/functions_config.php:615 +#: ../../enterprise/godmode/setup/setup_auth.php:1531 +#: ../../include/functions_config.php:627 msgid "Advanced Permisions AD" msgstr "Permissions AD avancées" #: ../../enterprise/meta/include/functions_meta.php:752 #: ../../enterprise/godmode/setup/setup_auth.php:151 -#: ../../include/functions_config.php:619 +#: ../../include/functions_config.php:631 msgid "Advanced Permissions LDAP" msgstr "Permissions LDAP avancées" #: ../../enterprise/meta/include/functions_meta.php:762 #: ../../enterprise/godmode/setup/setup_auth.php:128 -#: ../../include/functions_config.php:607 +#: ../../include/functions_config.php:619 msgid "Advanced Config LDAP" msgstr "Configuration LDAP avancée" @@ -12553,47 +12703,47 @@ msgstr "Configuration LDAP avancée" #: ../../enterprise/meta/include/functions_meta.php:784 #: ../../enterprise/godmode/setup/setup_auth.php:430 #: ../../enterprise/godmode/setup/setup_auth.php:478 -#: ../../enterprise/godmode/setup/setup_auth.php:1286 +#: ../../enterprise/godmode/setup/setup_auth.php:1503 msgid "Auto enable node access" msgstr "Activer automatiquement l'accès noeud" #: ../../enterprise/meta/include/functions_meta.php:811 -#: ../../include/functions_config.php:759 +#: ../../include/functions_config.php:771 msgid "Saml path" msgstr "Chemin SAML" #: ../../enterprise/meta/include/functions_meta.php:824 -#: ../../include/functions_config.php:763 +#: ../../include/functions_config.php:775 msgid "Saml source" msgstr "Source Saml" #: ../../enterprise/meta/include/functions_meta.php:837 -#: ../../include/functions_config.php:767 +#: ../../include/functions_config.php:779 msgid "Saml user id parameter" msgstr "Paramètre de l'ID de l'utilisateur Saml" #: ../../enterprise/meta/include/functions_meta.php:850 -#: ../../include/functions_config.php:771 +#: ../../include/functions_config.php:783 msgid "Saml mail parameter" msgstr "Paramètre email Saml" #: ../../enterprise/meta/include/functions_meta.php:863 -#: ../../include/functions_config.php:775 +#: ../../include/functions_config.php:787 msgid "Saml group name parameter" msgstr "Paramètre nom de group Saml" #: ../../enterprise/meta/include/functions_meta.php:876 -#: ../../include/functions_config.php:779 +#: ../../include/functions_config.php:791 msgid "Saml attr type parameter" msgstr "Paramètre type attr Saml" #: ../../enterprise/meta/include/functions_meta.php:889 -#: ../../include/functions_config.php:783 +#: ../../include/functions_config.php:795 msgid "Saml profiles and tags parameter" msgstr "Paramètre d'étiquettes et profils Saml" #: ../../enterprise/meta/include/functions_meta.php:902 -#: ../../include/functions_config.php:795 +#: ../../include/functions_config.php:807 msgid "Saml profile and tag separator" msgstr "Séparateur d'etiquettes et profils Saml" @@ -12602,42 +12752,42 @@ msgid "SAML profile parameters" msgstr "Paramètres de profils SAML" #: ../../enterprise/meta/include/functions_meta.php:928 -#: ../../include/functions_config.php:791 +#: ../../include/functions_config.php:803 msgid "Saml tag parameter" msgstr "Paramètre d'etiquettes Saml" #: ../../enterprise/meta/include/functions_meta.php:966 -#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:623 +#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:635 msgid "LDAP server" msgstr "Serveur LDAP" #: ../../enterprise/meta/include/functions_meta.php:976 -#: ../../godmode/setup/setup_auth.php:107 ../../include/functions_config.php:627 +#: ../../godmode/setup/setup_auth.php:107 ../../include/functions_config.php:639 msgid "LDAP port" msgstr "Port LDAP" #: ../../enterprise/meta/include/functions_meta.php:986 -#: ../../godmode/setup/setup_auth.php:129 ../../include/functions_config.php:631 +#: ../../godmode/setup/setup_auth.php:129 ../../include/functions_config.php:643 msgid "LDAP version" msgstr "Version LDAP" #: ../../enterprise/meta/include/functions_meta.php:1006 -#: ../../godmode/setup/setup_auth.php:157 ../../include/functions_config.php:639 +#: ../../godmode/setup/setup_auth.php:157 ../../include/functions_config.php:651 msgid "Base DN" msgstr "Base DN" #: ../../enterprise/meta/include/functions_meta.php:1016 -#: ../../godmode/setup/setup_auth.php:170 ../../include/functions_config.php:643 +#: ../../godmode/setup/setup_auth.php:170 ../../include/functions_config.php:655 msgid "Login attribute" msgstr "Attribut de connexion" #: ../../enterprise/meta/include/functions_meta.php:1026 -#: ../../godmode/setup/setup_auth.php:183 ../../include/functions_config.php:647 +#: ../../godmode/setup/setup_auth.php:183 ../../include/functions_config.php:659 msgid "Admin LDAP login" msgstr "Connexion LDAP administrateur" #: ../../enterprise/meta/include/functions_meta.php:1036 -#: ../../godmode/setup/setup_auth.php:196 ../../include/functions_config.php:651 +#: ../../godmode/setup/setup_auth.php:196 ../../include/functions_config.php:663 msgid "Admin LDAP password" msgstr "Mot de passe LDAP administrateur" @@ -12647,22 +12797,22 @@ msgid "Ldap search timeout (secs)" msgstr "Délai de recherche Ldap (secondes)" #: ../../enterprise/meta/include/functions_meta.php:1056 -#: ../../include/functions_config.php:715 +#: ../../include/functions_config.php:727 msgid "LDAP secondary enabled" msgstr "LDAP secondaire activé" #: ../../enterprise/meta/include/functions_meta.php:1065 -#: ../../godmode/setup/setup_auth.php:250 ../../include/functions_config.php:659 +#: ../../godmode/setup/setup_auth.php:250 ../../include/functions_config.php:671 msgid "Secondary LDAP server" msgstr "Serveur LDAP secondaire" #: ../../enterprise/meta/include/functions_meta.php:1075 -#: ../../godmode/setup/setup_auth.php:267 ../../include/functions_config.php:663 +#: ../../godmode/setup/setup_auth.php:267 ../../include/functions_config.php:675 msgid "Secondary LDAP port" msgstr "Port LDAP secondaire" #: ../../enterprise/meta/include/functions_meta.php:1085 -#: ../../godmode/setup/setup_auth.php:289 ../../include/functions_config.php:667 +#: ../../godmode/setup/setup_auth.php:289 ../../include/functions_config.php:679 msgid "Secondary LDAP version" msgstr "Version LDAP secondaire" @@ -12672,39 +12822,39 @@ msgid "Secondary start TLS" msgstr "Démarrage secondaire TLS" #: ../../enterprise/meta/include/functions_meta.php:1105 -#: ../../include/functions_config.php:675 +#: ../../include/functions_config.php:687 msgid "Secondary base DN" msgstr "DN de base secondaire" #: ../../enterprise/meta/include/functions_meta.php:1115 -#: ../../include/functions_config.php:679 +#: ../../include/functions_config.php:691 msgid "Secondary login attribute" msgstr "Attribut de connexion secondaire" #: ../../enterprise/meta/include/functions_meta.php:1125 -#: ../../godmode/setup/setup_auth.php:343 ../../include/functions_config.php:683 +#: ../../godmode/setup/setup_auth.php:343 ../../include/functions_config.php:695 msgid "Admin secondary LDAP login" msgstr "Connexion LDAP secondaire d’administrateur" #: ../../enterprise/meta/include/functions_meta.php:1135 -#: ../../godmode/setup/setup_auth.php:356 ../../include/functions_config.php:687 +#: ../../godmode/setup/setup_auth.php:356 ../../include/functions_config.php:699 msgid "Admin secondary LDAP password" msgstr "Mot de passe LDAP secondaire d’administrateur" #: ../../enterprise/meta/include/functions_meta.php:1168 #: ../../enterprise/godmode/setup/setup_auth.php:112 -#: ../../include/functions_config.php:695 +#: ../../include/functions_config.php:707 msgid "Login user attribute" msgstr "Identifier attribut d'utilisateur" #: ../../enterprise/meta/include/functions_meta.php:1178 -#: ../../include/functions_config.php:711 +#: ../../include/functions_config.php:723 msgid "Save profile" msgstr "Enregistrer le profil" #: ../../enterprise/meta/include/functions_meta.php:1189 #: ../../enterprise/godmode/setup/setup_auth.php:94 -#: ../../include/functions_config.php:699 +#: ../../include/functions_config.php:711 msgid "LDAP function" msgstr "Fonction LDAP" @@ -12716,9 +12866,9 @@ msgstr "Hôte %s" #: ../../enterprise/meta/include/functions_meta.php:1211 #: ../../enterprise/meta/include/functions_meta.php:1265 #: ../../enterprise/meta/include/functions_meta.php:1319 -#: ../../enterprise/godmode/setup/setup_auth.php:1118 -#: ../../enterprise/godmode/setup/setup_auth.php:1150 -#: ../../include/functions_config.php:723 ../../include/functions_config.php:743 +#: ../../enterprise/godmode/setup/setup_auth.php:1335 +#: ../../enterprise/godmode/setup/setup_auth.php:1367 +#: ../../include/functions_config.php:735 ../../include/functions_config.php:755 msgid "MySQL port" msgstr "Port MySQL" @@ -12727,10 +12877,10 @@ msgstr "Port MySQL" #: ../../enterprise/meta/include/functions_meta.php:1329 #: ../../enterprise/meta/include/functions_meta.php:2167 #: ../../enterprise/godmode/setup/setup_history.php:210 -#: ../../enterprise/godmode/setup/setup_auth.php:1124 -#: ../../enterprise/godmode/setup/setup_auth.php:1156 -#: ../../include/functions_config.php:727 ../../include/functions_config.php:747 -#: ../../include/functions_config.php:1655 +#: ../../enterprise/godmode/setup/setup_auth.php:1341 +#: ../../enterprise/godmode/setup/setup_auth.php:1373 +#: ../../include/functions_config.php:739 ../../include/functions_config.php:759 +#: ../../include/functions_config.php:1667 msgid "Database name" msgstr "Nom de la base de données" @@ -12739,13 +12889,13 @@ msgid "Babel Enterprise host" msgstr "Hôte de Babel Enterprise" #: ../../enterprise/meta/include/functions_meta.php:1309 -#: ../../enterprise/godmode/setup/setup_auth.php:1144 -#: ../../include/functions_config.php:739 +#: ../../enterprise/godmode/setup/setup_auth.php:1361 +#: ../../include/functions_config.php:751 msgid "Integria host" msgstr "Hôte d'Integria IMS" #: ../../enterprise/meta/include/functions_meta.php:1374 -#: ../../include/functions_config.php:981 +#: ../../include/functions_config.php:993 msgid "Timestamp or time comparation" msgstr "Horodatage ou comparaison temporelle" @@ -12762,7 +12912,7 @@ msgid "Graph color (max)" msgstr "Couleur du graphique (max.)" #: ../../enterprise/meta/include/functions_meta.php:1439 -#: ../../include/functions_config.php:1029 +#: ../../include/functions_config.php:1041 msgid "Data precision for reports" msgstr "Précision de données pour rapports" @@ -12779,8 +12929,8 @@ msgid "type mode zoom charts" msgstr "Type mode zoom graphiques" #: ../../enterprise/meta/include/functions_meta.php:1604 -#: ../../include/functions_config.php:1270 -#: ../../include/functions_config.php:1274 +#: ../../include/functions_config.php:1286 +#: ../../include/functions_config.php:1290 msgid "Random background" msgstr "Arrière-plan aléatoire" @@ -12789,7 +12939,7 @@ msgid "Type of charts" msgstr "Type de graphiques" #: ../../enterprise/meta/include/functions_meta.php:1664 -#: ../../include/functions_config.php:1078 +#: ../../include/functions_config.php:1090 msgid "Custom logo collapsed" msgstr "Le logo personnalisé s'est effondré" @@ -12798,32 +12948,32 @@ msgid "Custom logo (white background)" msgstr "Logo personnalisé (fond blanc)" #: ../../enterprise/meta/include/functions_meta.php:1694 -#: ../../include/functions_config.php:1086 +#: ../../include/functions_config.php:1098 msgid "Custom logo login" msgstr "Logo personnalisé sur écran de connexion" #: ../../enterprise/meta/include/functions_meta.php:1704 -#: ../../include/functions_config.php:1090 +#: ../../include/functions_config.php:1102 msgid "Custom splash login" msgstr "Splash personnalisé sur écran de connexion" #: ../../enterprise/meta/include/functions_meta.php:1734 -#: ../../include/functions_config.php:1126 +#: ../../include/functions_config.php:1138 msgid "Custom title1 login" msgstr "Titre1 personnalisé sur écran de connexion" #: ../../enterprise/meta/include/functions_meta.php:1744 -#: ../../include/functions_config.php:1130 +#: ../../include/functions_config.php:1142 msgid "Custom title2 login" msgstr "Titre2 personnalisé sur écran de connexion" #: ../../enterprise/meta/include/functions_meta.php:1754 -#: ../../include/functions_config.php:1118 +#: ../../include/functions_config.php:1130 msgid "Meta custom title header" msgstr "Entête du titre personnalisé Meta" #: ../../enterprise/meta/include/functions_meta.php:1764 -#: ../../include/functions_config.php:1122 +#: ../../include/functions_config.php:1134 msgid "Meta custom subtitle header" msgstr "Entête du sous-titre personnalisé Meta" @@ -12840,42 +12990,42 @@ msgid "Custom copyright notice" msgstr "Avis de droit d’auteur personnalisé" #: ../../enterprise/meta/include/functions_meta.php:1863 -#: ../../include/functions_config.php:1062 +#: ../../include/functions_config.php:1074 msgid "Font path" msgstr "Chemin de la police" #: ../../enterprise/meta/include/functions_meta.php:1873 -#: ../../include/functions_config.php:1516 +#: ../../include/functions_config.php:1532 msgid "Use data multiplier" msgstr "Utiliser de mutiplicateur de données" #: ../../enterprise/meta/include/functions_meta.php:1885 -#: ../../include/functions_config.php:1472 +#: ../../include/functions_config.php:1488 msgid "Custom report info" msgstr "Information du rapport personnalisé" #: ../../enterprise/meta/include/functions_meta.php:1895 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:102 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:122 -#: ../../include/functions_config.php:1488 +#: ../../include/functions_config.php:1504 msgid "Font family" msgstr "Type de police" #: ../../enterprise/meta/include/functions_meta.php:1935 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:159 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:157 -#: ../../godmode/setup/setup_visuals.php:1582 -#: ../../include/functions_config.php:1504 +#: ../../godmode/setup/setup_visuals.php:1597 +#: ../../include/functions_config.php:1520 msgid "Footer" msgstr "Pied de page" #: ../../enterprise/meta/include/functions_meta.php:1970 -#: ../../include/functions_config.php:1194 +#: ../../include/functions_config.php:1206 msgid "Use the legacy Visual Console" msgstr "utiliser la Console visuelle Legacy" #: ../../enterprise/meta/include/functions_meta.php:1981 -#: ../../include/functions_config.php:1198 +#: ../../include/functions_config.php:1210 msgid "Default expiration of the Visual Console item's cache" msgstr "Expiration par défaut du caché de l'élément de la Console visuelle" @@ -12884,7 +13034,7 @@ msgid "Realtime stats" msgstr "Statistiques en temps réel" #: ../../enterprise/meta/include/functions_meta.php:2050 -#: ../../godmode/setup/performance.php:674 ../../include/functions_config.php:894 +#: ../../godmode/setup/performance.php:674 ../../include/functions_config.php:906 msgid "Use agent access graph" msgstr "Utiliser le graphique d'accès pour agent" @@ -12905,36 +13055,36 @@ msgid "Node address default" msgstr "Adresse du noeud par défaut" #: ../../enterprise/meta/include/functions_meta.php:2153 -#: ../../include/functions_config.php:1642 +#: ../../include/functions_config.php:1654 msgid "Active and historical database cannot be the same." msgstr "" "Les bases de données actives et historiques ne peuvent pas être identiques." #: ../../enterprise/meta/include/functions_meta.php:2157 #: ../../enterprise/godmode/setup/setup_history.php:178 -#: ../../include/functions_config.php:1647 +#: ../../include/functions_config.php:1659 msgid "Host" msgstr "Hôte" #: ../../enterprise/meta/include/functions_meta.php:2173 -#: ../../include/functions_config.php:1660 +#: ../../include/functions_config.php:1672 msgid "Enable history database" msgstr "Activer la base de données de l'historique" #: ../../enterprise/meta/include/functions_meta.php:2178 -#: ../../include/functions_config.php:1664 +#: ../../include/functions_config.php:1676 msgid "Enable history event" msgstr "Activer historique d'événements" #: ../../enterprise/meta/include/functions_meta.php:2183 #: ../../enterprise/godmode/setup/setup_history.php:226 -#: ../../include/functions_config.php:1672 +#: ../../include/functions_config.php:1684 msgid "Database user" msgstr "Utilisateur de la base de données" #: ../../enterprise/meta/include/functions_meta.php:2188 #: ../../enterprise/godmode/setup/setup_history.php:242 -#: ../../include/functions_config.php:1676 +#: ../../include/functions_config.php:1688 msgid "Database password" msgstr "Mot de passe de la base de données" @@ -12947,45 +13097,45 @@ msgid "Database advanced" msgstr "Base de données avancée" #: ../../enterprise/meta/include/functions_meta.php:2231 -#: ../../include/functions_config.php:1705 +#: ../../include/functions_config.php:1717 msgid "Event Days" msgstr "Jours d'événements" #: ../../enterprise/meta/include/functions_meta.php:2249 #: ../../enterprise/godmode/servers/new_HA_cluster.php:143 -#: ../../include/functions_config.php:1737 +#: ../../include/functions_config.php:1749 msgid "Delay" msgstr "Retard" #: ../../enterprise/meta/include/functions_meta.php:2282 -#: ../../include/functions_config.php:1769 +#: ../../include/functions_config.php:1781 msgid "Historical database purge" msgstr "Purge de la base de données historique" #: ../../enterprise/meta/include/functions_meta.php:2291 -#: ../../include/functions_config.php:1777 +#: ../../include/functions_config.php:1789 msgid "Historical database partitions" msgstr "Partitions de base de données historiques" #: ../../enterprise/meta/include/functions_meta.php:2300 -#: ../../include/functions_config.php:1785 +#: ../../include/functions_config.php:1797 msgid "Historical database events purge" msgstr "Purge des événements de base de données historiques" #: ../../enterprise/meta/include/functions_meta.php:2309 -#: ../../include/functions_config.php:1801 +#: ../../include/functions_config.php:1813 msgid "Historical database string purge" msgstr "Purge de la chaîne de la base de données historique" #: ../../enterprise/meta/include/functions_meta.php:2524 #: ../../extensions/dbmanager.php:312 ../../extensions/dbmanager.php:323 -#: ../../godmode/menu.php:478 +#: ../../godmode/menu.php:476 msgid "DB interface" msgstr "Interface de la BD" #: ../../enterprise/meta/include/functions_meta.php:2598 #: ../../enterprise/include/functions_policies.php:935 -#: ../../include/functions_reporting.php:7569 +#: ../../include/functions_reporting.php:7578 #, php-format msgid "Failed to connect to node %s" msgstr "Connection avec le noeud %s échoué" @@ -12999,7 +13149,6 @@ msgstr "Groupes de composants" #: ../../enterprise/meta/include/functions_components_meta.php:88 #: ../../enterprise/meta/include/functions_components_meta.php:139 #: ../../enterprise/godmode/menu.php:83 ../../enterprise/godmode/menu.php:175 -#: ../../godmode/menu.php:181 msgid "Local components" msgstr "Composants locaux" @@ -13022,13 +13171,13 @@ msgstr "Gestion des plugins" #: ../../godmode/modules/manage_inventory_modules.php:45 #: ../../godmode/modules/manage_inventory_modules.php:58 #: ../../godmode/modules/manage_inventory_modules_form.php:49 -#: ../../godmode/menu.php:187 +#: ../../godmode/menu.php:186 msgid "Inventory modules" msgstr "Modules d'inventaire" #: ../../enterprise/meta/include/functions_components_meta.php:124 #: ../../enterprise/meta/include/functions_components_meta.php:164 -#: ../../godmode/servers/plugin_registration.php:109 +#: ../../godmode/servers/plugin_registration.php:105 #: ../../godmode/servers/plugin.php:346 msgid "Plugin registration" msgstr "Enregistrement du plugin" @@ -13063,32 +13212,32 @@ msgstr "%s - le Système de supervision flexible" #: ../../enterprise/godmode/setup/setup.php:602 #: ../../enterprise/include/class/CommandCenter.class.php:475 #: ../../enterprise/include/functions_login.php:165 -#: ../../enterprise/include/functions_login.php:580 +#: ../../enterprise/include/functions_login.php:584 #: ../../enterprise/include/lib/Metaconsole/Node.php:541 #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4151 -#: ../../godmode/users/configure_user.php:2067 -#: ../../godmode/users/configure_user.php:2136 +#: ../../godmode/users/configure_user.php:2119 +#: ../../godmode/users/configure_user.php:2188 #: ../../godmode/massive/massive_edit_plugins.php:856 #: ../../godmode/massive/massive_edit_plugins.php:857 #: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1292 #: ../../include/ajax/double_auth.ajax.php:270 #: ../../include/ajax/double_auth.ajax.php:368 #: ../../include/ajax/double_auth.ajax.php:414 -#: ../../include/ajax/double_auth.ajax.php:531 ../../include/ajax/events.php:2273 -#: ../../include/functions_menu.php:892 ../../include/functions_ui.php:306 +#: ../../include/ajax/double_auth.ajax.php:531 ../../include/ajax/events.php:2274 +#: ../../include/functions_menu.php:897 ../../include/functions_ui.php:306 #: ../../include/class/SatelliteAgent.class.php:831 -#: ../../include/class/Diagnostics.class.php:1855 -#: ../../include/functions_events.php:2966 -#: ../../include/functions_events.php:3166 ../../index.php:1555 -#: ../../operation/users/user_edit.php:1241 -#: ../../operation/users/user_edit.php:1307 ../../general/register.php:168 +#: ../../include/class/Diagnostics.class.php:1859 +#: ../../include/functions_events.php:2971 +#: ../../include/functions_events.php:3171 ../../index.php:1557 +#: ../../operation/users/user_edit.php:1238 +#: ../../operation/users/user_edit.php:1304 ../../general/register.php:168 #: ../../general/mysqlerr.php:28 ../../general/login_page.php:566 msgid "Error" msgstr "Erreur" #: ../../enterprise/meta/include/functions_alerts_meta.php:137 #: ../../enterprise/meta/include/functions_alerts_meta.php:168 -#: ../../godmode/menu.php:282 +#: ../../godmode/menu.php:280 msgid "Commands" msgstr "Commandes" @@ -13106,8 +13255,8 @@ msgid "User to reset password" msgstr "Utilisateur pour remettre le mot de passe" #: ../../enterprise/meta/include/reset_pass.php:103 -#: ../../enterprise/meta/index.php:757 -#: ../../enterprise/include/reset_pass.php:195 ../../index.php:928 +#: ../../enterprise/meta/index.php:758 +#: ../../enterprise/include/reset_pass.php:195 ../../index.php:929 msgid "Reset password" msgstr "Réinitialiser le mot de passe" @@ -13117,8 +13266,8 @@ msgstr "Réinitialiser le mot de passe" #: ../../enterprise/include/process_reset_pass.php:174 #: ../../enterprise/include/reset_pass.php:295 #: ../../enterprise/include/reset_pass.php:298 -#: ../../include/functions_config.php:2678 -#: ../../include/functions_config.php:2730 ../../general/login_page.php:527 +#: ../../include/functions_config.php:2698 +#: ../../include/functions_config.php:2750 ../../general/login_page.php:527 #: ../../general/login_page.php:530 msgid "ONE TOOL TO RULE THEM ALL" msgstr "UN SEUL OUTIL POUR LES GOUVERNER TOUS" @@ -13126,7 +13275,7 @@ msgstr "UN SEUL OUTIL POUR LES GOUVERNER TOUS" #: ../../enterprise/meta/include/reset_pass.php:147 #: ../../enterprise/meta/general/login_page.php:335 #: ../../enterprise/include/reset_pass.php:285 -#: ../../include/functions_config.php:2734 +#: ../../include/functions_config.php:2754 msgid "COMMAND CENTER" msgstr "CENTRE DE COMMANDE" @@ -13207,21 +13356,19 @@ msgstr "Erreur en éliminant la relation" msgid "Relation deleted successfully" msgstr "Relation éliminée correctement" -#: ../../enterprise/meta/index.php:221 ../../index.php:1492 +#: ../../enterprise/meta/index.php:221 ../../index.php:1494 #: ../../operation/visual_console/legacy_public_view.php:57 #: ../../operation/visual_console/public_view.php:38 #: ../../operation/agentes/stat_win.php:92 #: ../../operation/gis_maps/public_console.php:277 -#: ../../operation/events/sound_events.php:168 msgid "Connection with server has been lost" msgstr "Connexion avec le serveur perdue" -#: ../../enterprise/meta/index.php:222 ../../index.php:1493 +#: ../../enterprise/meta/index.php:222 ../../index.php:1495 #: ../../operation/visual_console/legacy_public_view.php:58 #: ../../operation/visual_console/public_view.php:39 #: ../../operation/agentes/stat_win.php:93 #: ../../operation/gis_maps/public_console.php:278 -#: ../../operation/events/sound_events.php:169 msgid "" "Connection to the server has been lost. Please check your internet connection " "or contact with administrator." @@ -13247,57 +13394,57 @@ msgstr "Connexion expirée" msgid "Login error" msgstr "Erreur de connexion" -#: ../../enterprise/meta/index.php:682 ../../index.php:845 +#: ../../enterprise/meta/index.php:683 ../../index.php:846 msgid "Password changed successfully" msgstr "Mot de passe changé correctement" -#: ../../enterprise/meta/index.php:688 ../../index.php:851 +#: ../../enterprise/meta/index.php:689 ../../index.php:852 msgid "Failed to change password" msgstr "Erreur de modification du mot de passe" -#: ../../enterprise/meta/index.php:702 ../../index.php:868 +#: ../../enterprise/meta/index.php:703 ../../index.php:869 msgid "Too much time since password change request" msgstr "" "Trop de temps s'est écoulé depuis la demande de changement du mot de passe" -#: ../../enterprise/meta/index.php:709 ../../index.php:875 +#: ../../enterprise/meta/index.php:710 ../../index.php:876 msgid "This user has not requested a password change" msgstr "Cet utilisateur n'a pas demandé de changement de mot de passe" -#: ../../enterprise/meta/index.php:725 ../../index.php:902 +#: ../../enterprise/meta/index.php:726 ../../index.php:903 msgid "Id user cannot be empty" msgstr "L'identifiant de l'utilisateur ne peut pas être vide." -#: ../../enterprise/meta/index.php:733 ../../index.php:910 +#: ../../enterprise/meta/index.php:734 ../../index.php:911 msgid "Error in reset password request" msgstr "Erreur de réinitialisation du mot de passe" -#: ../../enterprise/meta/index.php:741 ../../index.php:918 +#: ../../enterprise/meta/index.php:742 ../../index.php:919 msgid "This user doesn't have a valid email address" msgstr "Cet utilisateur n'a pas d'adresse courriel valide." -#: ../../enterprise/meta/index.php:758 ../../index.php:929 +#: ../../enterprise/meta/index.php:759 ../../index.php:930 msgid "This is an automatically sent message for user " msgstr "Ceci est un message envoyé automatiquement à l'utilisateur " -#: ../../enterprise/meta/index.php:761 ../../index.php:932 +#: ../../enterprise/meta/index.php:762 ../../index.php:933 msgid "Please click the link below to reset your password" msgstr "" "Veuillez cliquer sur le lien ci-dessous pour réinitialiser le mot de passe." -#: ../../enterprise/meta/index.php:763 ../../index.php:934 +#: ../../enterprise/meta/index.php:764 ../../index.php:935 msgid "Reset your password" msgstr "Réinitialiser le mot de passe" -#: ../../enterprise/meta/index.php:767 ../../index.php:938 +#: ../../enterprise/meta/index.php:768 ../../index.php:939 msgid "Please do not reply to this email." msgstr "Veuillez ne pas répondre à ce courriel." -#: ../../enterprise/meta/index.php:773 ../../index.php:943 +#: ../../enterprise/meta/index.php:774 ../../index.php:944 msgid "Error at sending the email" msgstr "Erreur lors de l'envoi du courriel" -#: ../../enterprise/meta/index.php:933 +#: ../../enterprise/meta/index.php:934 #, php-format msgid "" "System is not centralised, please go to %s to perform a database merge process." @@ -13305,17 +13452,17 @@ msgstr "" "Le système n'est pas centralisé, allez vers %s pour effectuer le processus " "d'unification" -#: ../../enterprise/meta/index.php:1001 +#: ../../enterprise/meta/index.php:1002 #, php-format msgid "There are nodes with different MR than this (%d):" msgstr "Il existe des nœuds avec un MR différent de celui-ci (%d):" -#: ../../enterprise/meta/index.php:1010 ../../index.php:1237 +#: ../../enterprise/meta/index.php:1011 ../../index.php:1238 msgid "Please keep all environment updated to same version." msgstr "Veuillez garder tout l’environnement à jour vers la même version." -#: ../../enterprise/meta/index.php:1075 ../../enterprise/meta/index.php:1170 -#: ../../index.php:1340 +#: ../../enterprise/meta/index.php:1076 ../../enterprise/meta/index.php:1172 +#: ../../index.php:1341 msgid "Sorry! I can't find the page!" msgstr "Désolé ! La page est introuvable !" @@ -13334,22 +13481,21 @@ msgstr "Agents trouvés" #: ../../enterprise/operation/agentes/policy_view.php:400 #: ../../enterprise/operation/agentes/tag_view.php:703 #: ../../enterprise/operation/agentes/ver_agente.php:95 -#: ../../extensions/users_connected.php:180 ../../godmode/users/user_list.php:576 +#: ../../extensions/users_connected.php:180 ../../godmode/users/user_list.php:577 #: ../../godmode/agentes/planned_downtime.editor.php:1359 -#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417 -#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 -#: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:1006 -#: ../../include/functions_treeview.php:671 -#: ../../include/functions_events.php:4389 ../../operation/search_users.php:46 +#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:418 +#: ../../mobile/operation/agents.php:420 ../../mobile/operation/agents.php:423 +#: ../../mobile/operation/agent.php:199 ../../include/ajax/heatmap.ajax.php:483 +#: ../../include/ajax/module.php:1029 ../../include/functions_treeview.php:675 +#: ../../include/functions_events.php:4394 ../../operation/search_users.php:46 #: ../../operation/search_agents.php:58 #: ../../operation/agentes/log_sources_status.php:58 -#: ../../operation/agentes/estado_agente.php:1055 +#: ../../operation/agentes/estado_agente.php:1063 #: ../../operation/agentes/ver_agente.php:1046 -#: ../../operation/agentes/estado_generalagente.php:464 +#: ../../operation/agentes/estado_generalagente.php:435 #: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 #: ../../operation/gis_maps/ajax.php:466 -#: ../../operation/inventory/inventory.php:1007 -#: ../../operation/inventory/inventory.php:1301 +#: ../../operation/inventory/inventory.php:1253 msgid "Last contact" msgstr "Dernier contact" @@ -13358,8 +13504,8 @@ msgid "There are no agents included in this group" msgstr "Aucun agent inclus dans ce groupe" #: ../../enterprise/meta/agentsearch.php:320 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:650 -#: ../../operation/tree.php:468 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:643 +#: ../../operation/tree.php:470 msgid "Policies found" msgstr "Politiques trouvées" @@ -13392,21 +13538,24 @@ msgstr "Il n'y a pas des politiques inclues dans ce groupe" msgid "%s %s - %s - MR %s" msgstr "%s %s - %s - MR %s" -#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1459 +#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1460 msgid "Page generated at" msgstr "Page générée à" #: ../../enterprise/meta/general/metaconsole_no_activated.php:12 #: ../../enterprise/meta/general/noaccesssaml.php:130 -#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:266 -#: ../../mobile/operation/agents.php:186 ../../mobile/operation/modules.php:218 -#: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:117 +#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:284 +#: ../../mobile/operation/agents.php:187 ../../mobile/operation/modules.php:218 +#: ../../mobile/operation/groups.php:59 ../../mobile/operation/services.php:68 +#: ../../mobile/operation/services.php:83 ../../mobile/operation/agent.php:119 #: ../../mobile/operation/alerts.php:176 ../../mobile/operation/visualmap.php:185 #: ../../mobile/operation/visualmaps.php:159 -#: ../../mobile/operation/module_graph.php:255 -#: ../../mobile/operation/events.php:744 ../../mobile/operation/tactical.php:79 -#: ../../general/noaccesssaml.php:130 ../../general/noaccess2.php:16 -#: ../../general/noaccess2.php:18 +#: ../../mobile/operation/module_data.php:107 +#: ../../mobile/operation/module_graph.php:256 +#: ../../mobile/operation/events.php:773 +#: ../../mobile/operation/server_status.php:209 +#: ../../mobile/operation/tactical.php:79 ../../general/noaccesssaml.php:130 +#: ../../general/noaccess2.php:16 ../../general/noaccess2.php:18 msgid "You don't have access to this page" msgstr "Vous n'avez pas accès à cette page" @@ -13464,8 +13613,8 @@ msgstr "Rafraîchissement automatique désactivé" #: ../../enterprise/meta/general/header.php:266 #: ../../enterprise/meta/general/main_header.php:535 #: ../../mobile/include/functions_web.php:34 -#: ../../mobile/include/ui.class.php:225 ../../mobile/include/user.class.php:460 -#: ../../mobile/operation/home.php:148 ../../general/header.php:443 +#: ../../mobile/include/ui.class.php:225 ../../mobile/include/user.class.php:527 +#: ../../mobile/operation/home.php:167 ../../general/header.php:443 #: ../../general/header.php:445 msgid "Logout" msgstr "Déconnexion" @@ -13482,7 +13631,7 @@ msgid "Please navigate to %s" msgstr "Veuillez naviguer jusqu’à %s" #: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:69 -#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64 +#: ../../general/maintenance.php:58 ../../general/node_deactivated.php:69 msgid "You will be automatically redirected when all tasks finish" msgstr "Vous serez redirigé automatiquement quand tous les taches sont finis" @@ -13490,8 +13639,8 @@ msgstr "Vous serez redirigé automatiquement quand tous les taches sont finis" #: ../../enterprise/meta/general/main_menu.php:199 #: ../../enterprise/operation/services/services.treeview_services.php:60 #: ../../godmode/groups/group_list.php:347 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:178 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:768 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:173 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:761 #: ../../operation/tree.php:137 ../../operation/menu.php:179 msgid "Tree view" msgstr "Vue arborescente" @@ -13516,7 +13665,7 @@ msgstr "Vue des moniteurs" #: ../../enterprise/meta/general/main_menu.php:312 #: ../../enterprise/meta/general/main_menu.php:313 #: ../../enterprise/mobile/include/functions_web.php:15 -#: ../../include/functions_reporting.php:15831 +#: ../../include/functions_reporting.php:15908 #: ../../include/functions_groups.php:139 ../../operation/search_results.php:133 msgid "Reports" msgstr "Rapports" @@ -13534,7 +13683,7 @@ msgstr "Modèles de rapport" #: ../../enterprise/meta/general/main_header.php:200 #: ../../enterprise/meta/general/main_menu.php:340 #: ../../enterprise/include/functions_reporting.php:124 -#: ../../include/functions_menu.php:584 +#: ../../include/functions_menu.php:586 msgid "Templates wizard" msgstr "Assistant de modèles" @@ -13562,7 +13711,8 @@ msgstr "Assistant de modèles" #: ../../enterprise/operation/services/services.treeview_services.php:73 #: ../../enterprise/operation/services/services.list.php:70 #: ../../enterprise/operation/services/services.table_services.php:67 -#: ../../operation/agentes/ver_agente.php:1668 +#: ../../mobile/operation/home.php:103 ../../mobile/operation/services.php:123 +#: ../../operation/agentes/ver_agente.php:1664 #: ../../general/first_task/service_list.php:38 #: ../../general/first_task/service_list.php:41 msgid "Services" @@ -13577,7 +13727,7 @@ msgstr "Écrans" #: ../../enterprise/meta/general/main_header.php:240 #: ../../enterprise/meta/general/main_menu.php:436 -#: ../../enterprise/include/functions_enterprise.php:443 +#: ../../enterprise/include/functions_enterprise.php:453 #: ../../include/class/OrderInterpreter.class.php:233 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:175 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:515 @@ -13604,8 +13754,8 @@ msgstr "Console visuelle de l'assistant" #: ../../enterprise/meta/general/main_header.php:275 #: ../../enterprise/meta/general/logon_ok.php:44 #: ../../enterprise/meta/general/main_menu.php:473 -#: ../../enterprise/include/functions_enterprise.php:439 -#: ../../godmode/netflow/nf_edit_form.php:82 ../../godmode/menu.php:371 +#: ../../enterprise/include/functions_enterprise.php:449 +#: ../../godmode/netflow/nf_edit_form.php:93 ../../godmode/menu.php:369 #: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:290 #: ../../include/functions_reports.php:925 #: ../../include/functions_reports.php:929 @@ -13661,7 +13811,7 @@ msgid "Command Center" msgstr "Centre de commande" #: ../../enterprise/meta/general/main_header.php:369 -#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:406 +#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:404 #: ../../godmode/setup/license.php:59 msgid "License" msgstr "Licence" @@ -13676,8 +13826,8 @@ msgstr "Metasetup" #: ../../enterprise/meta/general/main_header.php:448 #: ../../enterprise/meta/general/main_menu.php:720 #: ../../enterprise/meta/general/main_menu.php:755 -#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:428 -#: ../../godmode/menu.php:550 ../../general/links_menu.php:17 +#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:426 +#: ../../godmode/menu.php:548 ../../general/links_menu.php:17 msgid "Links" msgstr "Liens" @@ -13712,9 +13862,9 @@ msgstr "Journaux d’audit" #: ../../godmode/reporting/graph_container.php:118 #: ../../godmode/reporting/graphs.php:129 #: ../../godmode/reporting/reporting_builder.php:557 -#: ../../godmode/reporting/reporting_builder.php:3597 -#: ../../godmode/reporting/reporting_builder.php:3695 -#: ../../godmode/reporting/reporting_builder.php:3723 +#: ../../godmode/reporting/reporting_builder.php:3614 +#: ../../godmode/reporting/reporting_builder.php:3712 +#: ../../godmode/reporting/reporting_builder.php:3740 #: ../../include/ajax/consoles.ajax.php:61 ../../operation/menu.php:450 #: ../../operation/reporting/reporting_viewer.php:218 #: ../../operation/reporting/custom_reporting.php:23 @@ -13775,39 +13925,40 @@ msgstr "" #: ../../include/functions_reports.php:905 #: ../../include/functions_reports.php:909 #: ../../include/functions_reporting.php:3124 -#: ../../operation/agentes/ver_agente.php:1450 -#: ../../operation/agentes/ver_agente.php:1852 ../../operation/menu.php:203 -#: ../../operation/inventory/inventory.php:301 +#: ../../operation/agentes/ver_agente.php:1451 +#: ../../operation/agentes/ver_agente.php:1848 ../../operation/menu.php:203 +#: ../../operation/inventory/inventory.php:303 msgid "Inventory" msgstr "Inventaire" #: ../../enterprise/meta/general/main_menu.php:277 -#: ../../include/ajax/events.php:2320 ../../operation/events/events.php:1604 +#: ../../include/ajax/events.php:2321 ../../operation/events/sound_events.php:197 +#: ../../operation/events/events.php:1658 msgid "Events list" msgstr "Liste des événements" #: ../../enterprise/meta/general/main_menu.php:285 -#: ../../operation/events/events.php:1516 +#: ../../operation/events/events.php:1570 msgid "Sound Console" msgstr "Console sonore" #: ../../enterprise/meta/general/main_menu.php:286 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:376 -#: ../../godmode/menu.php:52 ../../godmode/setup/setup_ehorus.php:141 -#: ../../godmode/setup/setup_integria.php:654 ../../include/ajax/events.php:2493 -#: ../../operation/users/user_edit.php:874 -#: ../../operation/users/user_edit.php:927 ../../operation/menu.php:571 -#: ../../operation/events/events.php:1517 +#: ../../godmode/menu.php:52 ../../include/ajax/events.php:2494 +#: ../../operation/users/user_edit.php:871 +#: ../../operation/users/user_edit.php:924 ../../operation/menu.php:571 +#: ../../operation/events/sound_events.php:368 +#: ../../operation/events/events.php:1571 msgid "Start" msgstr "Démarrer" #: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:573 -#: ../../operation/events/events.php:1519 +#: ../../operation/events/events.php:1573 msgid "No alert" msgstr "Pas d’alerte" #: ../../enterprise/meta/general/main_menu.php:289 ../../operation/menu.php:574 -#: ../../operation/events/events.php:1520 +#: ../../operation/events/events.php:1574 msgid "Silence alarm" msgstr "Arrêter l’alarme" @@ -13841,7 +13992,7 @@ msgstr "Correlation d'alertes" #: ../../enterprise/meta/general/main_menu.php:504 #: ../../godmode/alerts/alert_view.php:65 ../../godmode/alerts/alert_view.php:286 -#: ../../include/functions_events.php:4548 +#: ../../include/functions_events.php:4553 msgid "Alert details" msgstr "Détails de l'alerte" @@ -13854,7 +14005,7 @@ msgstr "Détails de l'alerte" msgid "Centralised management" msgstr "Gestion centralisée" -#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:204 +#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:203 #: ../../godmode/massive/massive_operations.php:313 #: ../../godmode/massive/massive_operations.php:336 #: ../../godmode/massive/massive_operations.php:342 @@ -13872,12 +14023,12 @@ msgstr "Outil de fusion" msgid "List of Links" msgstr "Liste des liens" -#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:426 +#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:424 msgid "System audit log" msgstr "Journaux d'audit du système" #: ../../enterprise/meta/general/main_menu.php:869 -#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:608 +#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:606 msgid "About" msgstr "À propos" @@ -13895,18 +14046,18 @@ msgid "Authentication code" msgstr "Code d'authentification" #: ../../enterprise/meta/general/login_page.php:185 -#: ../../mobile/include/user.class.php:493 ../../general/login_page.php:393 +#: ../../mobile/include/user.class.php:595 ../../general/login_page.php:393 msgid "Check code" msgstr "Code de vérification" #: ../../enterprise/meta/general/login_page.php:229 #: ../../enterprise/meta/general/login_page.php:288 -#: ../../mobile/include/user.class.php:404 +#: ../../mobile/include/user.class.php:470 msgid "Login" msgstr "Se connecter" #: ../../enterprise/meta/general/login_page.php:245 -#: ../../mobile/include/user.class.php:424 ../../general/login_page.php:316 +#: ../../mobile/include/user.class.php:490 ../../general/login_page.php:316 msgid "Login with SAML" msgstr "Connexion avec SAML" @@ -13998,15 +14149,15 @@ msgstr "Ou désactivez %s Enterprise" #: ../../enterprise/godmode/reporting/aws_view.php:181 #: ../../enterprise/godmode/wizards/Cloud.class.php:330 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3239 -#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:858 +#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:887 #: ../../include/ajax/alert_list.ajax.php:280 #: ../../include/ajax/alert_list.ajax.php:306 #: ../../include/class/SnmpConsole.class.php:456 #: ../../include/class/SnmpConsole.class.php:514 -#: ../../include/class/SnmpConsole.class.php:854 -#: ../../operation/agentes/alerts_status.php:302 -#: ../../operation/agentes/alerts_status.php:441 -#: ../../operation/agentes/alerts_status.php:455 +#: ../../include/class/SnmpConsole.class.php:856 +#: ../../operation/agentes/alerts_status.php:301 +#: ../../operation/agentes/alerts_status.php:444 +#: ../../operation/agentes/alerts_status.php:458 msgid "Validate" msgstr "Valider" @@ -14091,7 +14242,7 @@ msgstr "Veuillez contacter %s pour renouveler votre licence." #: ../../enterprise/load_enterprise.php:931 #: ../../enterprise/load_enterprise.php:1072 -#: ../../godmode/users/configure_user.php:1008 +#: ../../godmode/users/configure_user.php:1056 msgid "Renew" msgstr "Renouveler" @@ -14174,7 +14325,7 @@ msgstr "Gestion des systèmes" #: ../../enterprise/extensions/disabled/check_acls.php:150 #: ../../enterprise/godmode/setup/setup_metaconsole.php:276 #: ../../enterprise/godmode/servers/HA_cluster.php:182 -#: ../../godmode/users/user_list.php:579 ../../godmode/users/user_list.php:767 +#: ../../godmode/users/user_list.php:580 ../../godmode/users/user_list.php:768 #: ../../operation/search_users.php:62 msgid "Admin" msgstr "Administrateur" @@ -14221,7 +14372,7 @@ msgstr "Vue VMware" #: ../../extensions/api_checker.php:209 ../../extensions/db_status.php:34 #: ../../extensions/files_repo.php:141 ../../extensions/files_repo.php:253 #: ../../extensions/pandora_logs.php:95 ../../godmode/extensions.php:38 -#: ../../godmode/menu.php:417 ../../godmode/setup/news.php:39 +#: ../../godmode/menu.php:415 ../../godmode/setup/news.php:39 #: ../../godmode/setup/links.php:29 ../../godmode/setup/file_manager.php:56 #: ../../include/class/EventSound.class.php:226 #: ../../include/class/Diagnostics.class.php:159 @@ -14232,7 +14383,7 @@ msgstr "Outils d'administration" #: ../../extensions/extension_uploader.php:43 #: ../../extensions/api_checker.php:213 ../../extensions/files_repo.php:145 #: ../../extensions/files_repo.php:257 ../../extensions/pandora_logs.php:99 -#: ../../godmode/extensions.php:42 ../../godmode/menu.php:537 +#: ../../godmode/extensions.php:42 ../../godmode/menu.php:535 msgid "Extension manager" msgstr "Gestionnaire d'extension" @@ -14287,7 +14438,7 @@ msgstr "Séparateur" #: ../../enterprise/extensions/csv_import_group/main.php:131 #: ../../enterprise/include/class/CSVImportAgents.class.php:208 -#: ../../include/functions_filemanager.php:899 +#: ../../include/functions_filemanager.php:919 msgid "Go" msgstr "Exécuter" @@ -14466,24 +14617,24 @@ msgstr "Hôte ESX" #: ../../enterprise/operation/agentes/tag_view.php:1137 #: ../../enterprise/operation/agentes/tag_view.php:1143 #: ../../mobile/operation/modules.php:548 ../../mobile/operation/modules.php:571 -#: ../../mobile/operation/modules.php:611 ../../mobile/operation/modules.php:634 -#: ../../include/functions.php:1416 ../../include/functions.php:1455 -#: ../../include/functions_modules.php:2905 +#: ../../mobile/operation/modules.php:622 ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/services.php:427 ../../include/functions.php:1416 +#: ../../include/functions.php:1455 ../../include/functions_modules.php:2905 #: ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:4235 -#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4246 -#: ../../include/functions_ui.php:4322 ../../include/class/Tree.class.php:664 +#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4320 +#: ../../include/functions_ui.php:4396 ../../include/class/Tree.class.php:687 #: ../../include/lib/Module.php:603 ../../include/functions_events.php:64 #: ../../include/functions_events.php:116 ../../include/functions_events.php:179 -#: ../../operation/agentes/status_monitor.php:1791 -#: ../../operation/agentes/status_monitor.php:1797 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/pandora_networkmap.view.php:1848 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/search_modules.php:115 ../../operation/search_modules.php:142 -#: ../../operation/events/events.php:633 ../../operation/events/events.php:710 -#: ../../operation/events/events.php:736 +#: ../../operation/agentes/status_monitor.php:1793 +#: ../../operation/agentes/status_monitor.php:1799 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/pandora_networkmap.view.php:1849 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/search_modules.php:118 ../../operation/search_modules.php:145 +#: ../../operation/events/events.php:638 ../../operation/events/events.php:715 +#: ../../operation/events/events.php:741 msgid "NORMAL" msgstr "NORMAL" @@ -14496,24 +14647,24 @@ msgstr "NORMAL" #: ../../enterprise/operation/agentes/tag_view.php:1153 #: ../../enterprise/operation/agentes/tag_view.php:1159 #: ../../mobile/operation/modules.php:554 ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:617 ../../mobile/operation/modules.php:642 -#: ../../include/functions.php:1404 ../../include/functions.php:1436 -#: ../../include/functions_modules.php:2899 +#: ../../mobile/operation/modules.php:628 ../../mobile/operation/modules.php:653 +#: ../../mobile/operation/services.php:435 ../../include/functions.php:1404 +#: ../../include/functions.php:1436 ../../include/functions_modules.php:2899 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:4239 -#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4252 -#: ../../include/functions_ui.php:4332 ../../include/class/Tree.class.php:634 +#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4326 +#: ../../include/functions_ui.php:4406 ../../include/class/Tree.class.php:657 #: ../../include/lib/Module.php:587 ../../include/functions_events.php:67 #: ../../include/functions_events.php:120 ../../include/functions_events.php:164 -#: ../../operation/agentes/status_monitor.php:1805 -#: ../../operation/agentes/status_monitor.php:1818 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/pandora_networkmap.view.php:1842 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/search_modules.php:121 ../../operation/search_modules.php:150 -#: ../../operation/events/events.php:608 ../../operation/events/events.php:716 -#: ../../operation/events/events.php:741 +#: ../../operation/agentes/status_monitor.php:1807 +#: ../../operation/agentes/status_monitor.php:1820 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/pandora_networkmap.view.php:1843 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/search_modules.php:124 ../../operation/search_modules.php:153 +#: ../../operation/events/events.php:613 ../../operation/events/events.php:721 +#: ../../operation/events/events.php:746 msgid "CRITICAL" msgstr "CRITIQUE" @@ -14527,25 +14678,25 @@ msgstr "CRITIQUE" #: ../../enterprise/operation/agentes/tag_view.php:1169 #: ../../enterprise/operation/agentes/tag_view.php:1175 #: ../../mobile/operation/modules.php:560 ../../mobile/operation/modules.php:587 -#: ../../mobile/operation/modules.php:623 ../../mobile/operation/modules.php:650 -#: ../../include/functions.php:1407 ../../include/functions.php:1443 -#: ../../include/functions_modules.php:2902 +#: ../../mobile/operation/modules.php:634 ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/services.php:443 ../../include/functions.php:1407 +#: ../../include/functions.php:1443 ../../include/functions_modules.php:2902 #: ../../include/functions_modules.php:2919 #: ../../include/functions_modules.php:4243 -#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4240 -#: ../../include/functions_ui.php:4327 ../../include/class/Tree.class.php:642 -#: ../../include/class/NetworkMap.class.php:2949 ../../include/lib/Module.php:591 +#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4314 +#: ../../include/functions_ui.php:4401 ../../include/class/Tree.class.php:665 +#: ../../include/class/NetworkMap.class.php:2955 ../../include/lib/Module.php:591 #: ../../include/functions_events.php:78 ../../include/functions_events.php:112 #: ../../include/functions_events.php:182 -#: ../../operation/agentes/status_monitor.php:1826 -#: ../../operation/agentes/status_monitor.php:1839 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1845 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:127 ../../operation/search_modules.php:158 -#: ../../operation/events/events.php:638 ../../operation/events/events.php:704 -#: ../../operation/events/events.php:758 +#: ../../operation/agentes/status_monitor.php:1828 +#: ../../operation/agentes/status_monitor.php:1841 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1846 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:130 ../../operation/search_modules.php:161 +#: ../../operation/events/events.php:643 ../../operation/events/events.php:709 +#: ../../operation/events/events.php:763 msgid "WARNING" msgstr "ATTENTION" @@ -14561,31 +14712,31 @@ msgstr "ATTENTION" #: ../../enterprise/operation/agentes/tag_view.php:1169 #: ../../enterprise/operation/agentes/tag_view.php:1175 #: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634 -#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650 -#: ../../include/functions.php:1420 ../../include/functions.php:1446 -#: ../../include/functions_modules.php:2911 +#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/modules.php:653 ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/services.php:458 ../../include/functions.php:1420 +#: ../../include/functions.php:1446 ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:2919 -#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4259 -#: ../../include/functions_ui.php:4347 ../../include/class/Tree.class.php:648 +#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4333 +#: ../../include/functions_ui.php:4421 ../../include/class/Tree.class.php:671 #: ../../include/lib/Module.php:594 ../../include/functions_events.php:81 #: ../../include/functions_events.php:125 ../../include/functions_events.php:185 -#: ../../operation/agentes/status_monitor.php:1847 -#: ../../operation/agentes/status_monitor.php:1860 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:133 ../../operation/search_modules.php:142 -#: ../../operation/search_modules.php:150 ../../operation/search_modules.php:158 -#: ../../operation/events/events.php:644 ../../operation/events/events.php:723 -#: ../../operation/events/events.php:763 +#: ../../operation/agentes/status_monitor.php:1849 +#: ../../operation/agentes/status_monitor.php:1862 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:136 ../../operation/search_modules.php:145 +#: ../../operation/search_modules.php:153 ../../operation/search_modules.php:161 +#: ../../operation/events/events.php:649 ../../operation/events/events.php:728 +#: ../../operation/events/events.php:768 msgid "UNKNOWN" msgstr "INCONNU" @@ -14809,7 +14960,7 @@ msgid "Power Status: " msgstr "État : " #: ../../enterprise/extensions/vmware/vmware_manager.php:269 -#: ../../operation/agentes/pandora_networkmap.view.php:1881 +#: ../../operation/agentes/pandora_networkmap.view.php:1882 msgid "Status: " msgstr "État : " @@ -14822,7 +14973,7 @@ msgid "Export agents" msgstr "Exporter des agents" #: ../../enterprise/extensions/resource_exportation/functions.php:46 -#: ../../enterprise/include/functions_reporting.php:8156 +#: ../../enterprise/include/functions_reporting.php:8165 #: ../../extensions/resource_exportation.php:456 #: ../../extensions/resource_exportation.php:468 #: ../../operation/agentes/exportdata.php:464 @@ -14942,12 +15093,12 @@ msgstr "État d'alerte" #: ../../godmode/modules/manage_network_components_form_common.php:217 #: ../../godmode/modules/manage_network_components_form_wizard.php:387 #: ../../godmode/modules/manage_network_components_form_wizard.php:421 -#: ../../godmode/agentes/module_manager_editor_common.php:1141 +#: ../../godmode/agentes/module_manager_editor_common.php:1151 #: ../../godmode/massive/massive_edit_modules.php:580 #: ../../godmode/massive/massive_edit_modules.php:671 #: ../../godmode/massive/massive_edit_modules.php:900 #: ../../godmode/alerts/configure_alert_template.php:870 -#: ../../include/functions_reporting_html.php:5528 +#: ../../include/functions_reporting_html.php:5556 #: ../../include/functions_treeview.php:91 #: ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:676 @@ -14966,12 +15117,12 @@ msgstr "Min." #: ../../godmode/modules/manage_network_components_form_common.php:226 #: ../../godmode/modules/manage_network_components_form_wizard.php:389 #: ../../godmode/modules/manage_network_components_form_wizard.php:430 -#: ../../godmode/agentes/module_manager_editor_common.php:1142 +#: ../../godmode/agentes/module_manager_editor_common.php:1152 #: ../../godmode/massive/massive_edit_modules.php:595 #: ../../godmode/massive/massive_edit_modules.php:686 #: ../../godmode/massive/massive_edit_modules.php:902 #: ../../godmode/alerts/configure_alert_template.php:883 -#: ../../include/functions_reporting_html.php:5529 +#: ../../include/functions_reporting_html.php:5557 #: ../../include/functions_treeview.php:91 #: ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:675 @@ -14988,7 +15139,7 @@ msgstr "Max." #: ../../godmode/modules/manage_network_components_form_common.php:183 #: ../../godmode/modules/manage_network_components_form_common.php:235 #: ../../godmode/agentes/module_manager_editor_common.php:504 -#: ../../godmode/agentes/module_manager_editor_common.php:596 +#: ../../godmode/agentes/module_manager_editor_common.php:601 #: ../../godmode/massive/massive_edit_modules.php:610 #: ../../godmode/massive/massive_edit_modules.php:701 #: ../../include/functions_treeview.php:89 @@ -15005,7 +15156,7 @@ msgstr "Chaîne" #: ../../godmode/modules/manage_network_components_form_wizard.php:400 #: ../../godmode/modules/manage_network_components_form_wizard.php:448 #: ../../godmode/agentes/module_manager_editor_common.php:478 -#: ../../godmode/agentes/module_manager_editor_common.php:561 +#: ../../godmode/agentes/module_manager_editor_common.php:566 #: ../../godmode/massive/massive_edit_modules.php:645 #: ../../godmode/massive/massive_edit_modules.php:737 msgid "Percentage" @@ -15021,12 +15172,14 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:350 #: ../../godmode/modules/manage_network_components_form_common.php:201 #: ../../godmode/modules/manage_network_components_form_wizard.php:412 +#: ../../godmode/agentes/module_manager_editor_common.php:528 msgid "Change to critical status after" msgstr "Passer à l’état critique après" #: ../../enterprise/godmode/modules/configure_local_component.php:359 #: ../../godmode/modules/manage_network_components_form_common.php:210 #: ../../godmode/modules/manage_network_components_form_wizard.php:414 +#: ../../godmode/agentes/module_manager_editor_common.php:530 msgid "intervals in warning status." msgstr "intervalles dans l’état de l’avertissement." @@ -15046,7 +15199,7 @@ msgstr "État critique" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:267 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873 #: ../../godmode/modules/manage_network_components_form_common.php:254 -#: ../../godmode/agentes/module_manager_editor_common.php:1191 +#: ../../godmode/agentes/module_manager_editor_common.php:1201 #: ../../godmode/massive/massive_edit_modules.php:945 msgid "FF threshold" msgstr "Seuil du FF" @@ -15054,7 +15207,7 @@ msgstr "Seuil du FF" #: ../../enterprise/godmode/modules/configure_local_component.php:406 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941 #: ../../godmode/modules/manage_network_components_form_common.php:257 -#: ../../godmode/agentes/module_manager_editor_common.php:1314 +#: ../../godmode/agentes/module_manager_editor_common.php:1324 #: ../../godmode/massive/massive_edit_modules.php:1009 msgid "Keep counters" msgstr "Conserver les compteurs" @@ -15064,7 +15217,7 @@ msgstr "Conserver les compteurs" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 #: ../../godmode/modules/manage_network_components_form_common.php:271 -#: ../../godmode/agentes/module_manager_editor_common.php:1195 +#: ../../godmode/agentes/module_manager_editor_common.php:1205 #: ../../godmode/massive/massive_edit_modules.php:953 #: ../../godmode/massive/massive_edit_modules.php:968 msgid "All state changing" @@ -15075,7 +15228,7 @@ msgstr "Tous les changements d'état" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910 #: ../../godmode/modules/manage_network_components_form_common.php:287 -#: ../../godmode/agentes/module_manager_editor_common.php:1196 +#: ../../godmode/agentes/module_manager_editor_common.php:1206 #: ../../godmode/massive/massive_edit_modules.php:952 #: ../../godmode/massive/massive_edit_modules.php:978 msgid "Each state changing" @@ -15085,7 +15238,7 @@ msgstr "Chaque changement d'état" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:308 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911 #: ../../godmode/modules/manage_network_components_form_common.php:288 -#: ../../godmode/agentes/module_manager_editor_common.php:1228 +#: ../../godmode/agentes/module_manager_editor_common.php:1238 #: ../../godmode/massive/massive_edit_modules.php:979 msgid "To normal" msgstr "À l'état normal" @@ -15094,7 +15247,7 @@ msgstr "À l'état normal" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:309 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921 #: ../../godmode/modules/manage_network_components_form_common.php:297 -#: ../../godmode/agentes/module_manager_editor_common.php:1229 +#: ../../godmode/agentes/module_manager_editor_common.php:1239 #: ../../godmode/massive/massive_edit_modules.php:989 msgid "To warning" msgstr "À l'état d'alerte" @@ -15103,7 +15256,7 @@ msgstr "À l'état d'alerte" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:310 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931 #: ../../godmode/modules/manage_network_components_form_common.php:306 -#: ../../godmode/agentes/module_manager_editor_common.php:1230 +#: ../../godmode/agentes/module_manager_editor_common.php:1240 #: ../../godmode/massive/massive_edit_modules.php:999 msgid "To critical" msgstr "À l'état critique" @@ -15113,15 +15266,16 @@ msgstr "À l'état critique" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966 #: ../../enterprise/include/functions_reporting_csv.php:2225 #: ../../godmode/modules/manage_network_components_form_common.php:316 -#: ../../godmode/agentes/module_manager_editor_common.php:619 +#: ../../godmode/agentes/module_manager_editor_common.php:624 #: ../../godmode/massive/massive_edit_modules.php:1057 -#: ../../include/functions_reporting.php:4664 +#: ../../mobile/operation/modules.php:860 +#: ../../include/functions_reporting.php:4673 msgid "Historical data" msgstr "Historique des données" #: ../../enterprise/godmode/modules/configure_local_component.php:462 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 -#: ../../godmode/agentes/module_manager_editor_common.php:1282 +#: ../../godmode/agentes/module_manager_editor_common.php:1292 #: ../../godmode/massive/massive_edit_modules.php:1043 msgid "FF timeout" msgstr "FF délai" @@ -15144,9 +15298,9 @@ msgstr "Cette valeur peut être réglée que dans les modules asynchrones." #: ../../enterprise/godmode/modules/configure_local_component.php:473 #: ../../enterprise/include/functions_reporting_csv.php:1251 #: ../../godmode/modules/manage_network_components_form_common.php:319 -#: ../../godmode/agentes/module_manager_editor_common.php:1105 +#: ../../godmode/agentes/module_manager_editor_common.php:1115 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 -#: ../../include/functions_reporting.php:7102 +#: ../../include/functions_reporting.php:7111 msgid "Min. Value" msgstr "Valeur minimale" @@ -15158,9 +15312,9 @@ msgstr "Toute valeur inférieure à ce nombre est refusée" #: ../../enterprise/godmode/modules/configure_local_component.php:478 #: ../../enterprise/include/functions_reporting_csv.php:1306 #: ../../godmode/modules/manage_network_components_form_common.php:321 -#: ../../godmode/agentes/module_manager_editor_common.php:1106 +#: ../../godmode/agentes/module_manager_editor_common.php:1116 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 -#: ../../include/functions_reporting.php:7098 +#: ../../include/functions_reporting.php:7107 msgid "Max. Value" msgstr "Valeur maximale" @@ -15172,9 +15326,9 @@ msgstr "Toute valeur supérieure à ce nombre est refusée" #: ../../enterprise/godmode/modules/configure_local_component.php:485 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 #: ../../godmode/modules/manage_network_components_form_plugin.php:49 -#: ../../godmode/modules/manage_network_components_form_network.php:178 +#: ../../godmode/modules/manage_network_components_form_network.php:210 #: ../../godmode/modules/manage_network_components_form_wmi.php:55 -#: ../../godmode/agentes/module_manager_editor_common.php:1328 +#: ../../godmode/agentes/module_manager_editor_common.php:1338 #: ../../godmode/massive/massive_edit_modules.php:795 #: ../../godmode/setup/snmp_wizard.php:43 msgid "Post process" @@ -15189,24 +15343,24 @@ msgid "Check the correct structure of the data configuration" msgstr "Vérifier la structure correcte de la configuration des données" #: ../../enterprise/godmode/modules/configure_local_component.php:518 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:249 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250 msgid "First line must be \"module_begin\"" msgstr "La première ligne doit être « module_begin »." #: ../../enterprise/godmode/modules/configure_local_component.php:519 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251 msgid "Data configuration is empty" msgstr "La configuration de données est vide." #: ../../enterprise/godmode/modules/configure_local_component.php:520 #: ../../enterprise/godmode/modules/configure_local_component.php:524 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256 msgid "Last line must be \"module_end\"" msgstr "La dernière ligne doit être « module_end »." #: ../../enterprise/godmode/modules/configure_local_component.php:521 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253 msgid "" "Name is missed. Please add a line with \"module_name yourmodulename\" to data " "configuration" @@ -15215,7 +15369,7 @@ msgstr "" "» à la configuration des données" #: ../../enterprise/godmode/modules/configure_local_component.php:522 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254 msgid "" "Type is missed. Please add a line with \"module_type yourmoduletype\" to data " "configuration" @@ -15224,24 +15378,24 @@ msgstr "" "yourmoduletype » à la configuration des données." #: ../../enterprise/godmode/modules/configure_local_component.php:523 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255 msgid "Type is wrong. Please set a correct type" msgstr "Le type est incorrect. Veuillez choisir un type correct." #: ../../enterprise/godmode/modules/configure_local_component.php:526 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258 msgid "Error in the syntax, please check the data configuration." msgstr "Erreur dans la syntaxe, veuillez vérifier la configuration de données." #: ../../enterprise/godmode/modules/configure_local_component.php:527 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:259 msgid "Data configuration are built correctly" msgstr "Configuration des données établie correctement" #: ../../enterprise/godmode/modules/configure_local_component.php:535 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 #: ../../godmode/modules/manage_network_components_form_common.php:334 -#: ../../godmode/agentes/module_manager_editor_common.php:1044 +#: ../../godmode/agentes/module_manager_editor_common.php:1053 #: ../../godmode/massive/massive_edit_modules.php:1107 msgid "Critical instructions" msgstr "Instructions état critique" @@ -15256,7 +15410,7 @@ msgstr "Instructions lorsque l'état est critique" #: ../../enterprise/godmode/modules/configure_local_component.php:540 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 #: ../../godmode/modules/manage_network_components_form_common.php:338 -#: ../../godmode/agentes/module_manager_editor_common.php:1043 +#: ../../godmode/agentes/module_manager_editor_common.php:1054 #: ../../godmode/massive/massive_edit_modules.php:1111 msgid "Warning instructions" msgstr "Instructions état d'alerte" @@ -15271,7 +15425,7 @@ msgstr "Instructions lorsque l'état est en alerte" #: ../../enterprise/godmode/modules/configure_local_component.php:545 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 #: ../../godmode/modules/manage_network_components_form_common.php:342 -#: ../../godmode/agentes/module_manager_editor_common.php:1020 +#: ../../godmode/agentes/module_manager_editor_common.php:1030 #: ../../godmode/massive/massive_edit_modules.php:1115 msgid "Unknown instructions" msgstr "Instructions état inconnu" @@ -15286,7 +15440,7 @@ msgstr "Instructions lorsque l'état est inconnu" #: ../../enterprise/godmode/modules/configure_local_component.php:554 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984 #: ../../godmode/modules/manage_network_components_form_common.php:353 -#: ../../godmode/agentes/module_manager_editor_common.php:745 +#: ../../godmode/agentes/module_manager_editor_common.php:755 #: ../../godmode/massive/massive_edit_modules.php:1075 #: ../../godmode/module_library/module_library_view.php:123 msgid "Category" @@ -15294,13 +15448,13 @@ msgstr "Catégorie" #: ../../enterprise/godmode/modules/configure_local_component.php:573 #: ../../godmode/modules/manage_network_components_form_common.php:373 -#: ../../godmode/agentes/module_manager_editor_common.php:782 +#: ../../godmode/agentes/module_manager_editor_common.php:792 msgid "Tags available" msgstr "Étiquettes disponibles" #: ../../enterprise/godmode/modules/configure_local_component.php:591 #: ../../godmode/modules/manage_network_components_form_common.php:391 -#: ../../godmode/agentes/module_manager_editor_common.php:862 +#: ../../godmode/agentes/module_manager_editor_common.php:872 msgid "Add tags to module" msgstr "Ajouter des étiquettes au module" @@ -15312,7 +15466,7 @@ msgstr "Supprimer les étiquettes du module" #: ../../enterprise/godmode/modules/configure_local_component.php:593 #: ../../enterprise/godmode/setup/setup_auth.php:196 #: ../../enterprise/godmode/setup/setup_auth.php:551 -#: ../../enterprise/godmode/setup/setup_auth.php:1359 +#: ../../enterprise/godmode/setup/setup_auth.php:1576 #: ../../godmode/modules/manage_network_components_form_common.php:393 msgid "Tags selected" msgstr "Étiquettes sélectionnées" @@ -15323,48 +15477,48 @@ msgstr "Macros" #: ../../enterprise/godmode/modules/configure_local_component.php:651 #: ../../godmode/servers/plugin.php:573 -#: ../../include/class/ManageNetScanScripts.class.php:644 +#: ../../include/class/ManageNetScanScripts.class.php:640 msgid "Default value" msgstr "Valeur par défaut" #: ../../enterprise/godmode/modules/configure_local_component.php:667 -#: ../../godmode/servers/plugin.php:628 -#: ../../include/class/ManageNetScanScripts.class.php:732 +#: ../../godmode/servers/plugin.php:632 +#: ../../include/class/ManageNetScanScripts.class.php:728 msgid "Add macro" msgstr "Ajouter une macro" #: ../../enterprise/godmode/modules/configure_local_component.php:675 -#: ../../include/class/ManageNetScanScripts.class.php:750 +#: ../../include/class/ManageNetScanScripts.class.php:746 msgid "Delete macro" msgstr "Effacer une macro" #: ../../enterprise/godmode/modules/configure_local_component.php:993 #: ../../godmode/modules/manage_network_components_form_common.php:717 -#: ../../godmode/agentes/module_manager_editor_common.php:2263 +#: ../../godmode/agentes/module_manager_editor_common.php:2273 msgid "Normal Status" msgstr "État normal" #: ../../enterprise/godmode/modules/configure_local_component.php:994 #: ../../godmode/modules/manage_network_components_form_common.php:718 -#: ../../godmode/agentes/module_manager_editor_common.php:2264 +#: ../../godmode/agentes/module_manager_editor_common.php:2274 msgid "Warning Status" msgstr "État d'alerte" #: ../../enterprise/godmode/modules/configure_local_component.php:995 #: ../../godmode/modules/manage_network_components_form_common.php:719 -#: ../../godmode/agentes/module_manager_editor_common.php:2265 +#: ../../godmode/agentes/module_manager_editor_common.php:2275 msgid "Critical Status" msgstr "État critique" #: ../../enterprise/godmode/modules/configure_local_component.php:998 #: ../../godmode/modules/manage_network_components_form_common.php:721 -#: ../../godmode/agentes/module_manager_editor_common.php:2268 +#: ../../godmode/agentes/module_manager_editor_common.php:2278 msgid "Please introduce a maximum warning higher than the minimun warning" msgstr "Veuillez introduire une alerte maximale supérieure à l'alerte minimale" #: ../../enterprise/godmode/modules/configure_local_component.php:1000 #: ../../godmode/modules/manage_network_components_form_common.php:722 -#: ../../godmode/agentes/module_manager_editor_common.php:2269 +#: ../../godmode/agentes/module_manager_editor_common.php:2279 msgid "Please introduce a maximum critical higher than the minimun critical" msgstr "" "Veuillez introduire un état critique maximal supérieur à l'état critique " @@ -15375,7 +15529,7 @@ msgid "Please introduce a positicve percentage value" msgstr "Veuillez introduire une valeur de pourcentage positicve" #: ../../enterprise/godmode/modules/local_components.php:140 -#: ../../godmode/modules/manage_network_components.php:195 +#: ../../godmode/modules/manage_network_components.php:196 #: ../../godmode/alerts/configure_alert_template.php:208 #, php-format msgid "Successfully created from %s" @@ -15396,9 +15550,9 @@ msgstr "Créé correctement à partir de %s" #: ../../enterprise/tools/ipam/ipam_action.php:164 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:51 #: ../../godmode/modules/manage_nc_groups.php:109 -#: ../../godmode/modules/manage_network_components.php:198 -#: ../../godmode/modules/manage_network_components.php:436 -#: ../../godmode/users/configure_user.php:531 +#: ../../godmode/modules/manage_network_components.php:199 +#: ../../godmode/modules/manage_network_components.php:438 +#: ../../godmode/users/configure_user.php:480 #: ../../godmode/agentes/configurar_agente.php:361 #: ../../godmode/agentes/configurar_agente.php:883 #: ../../godmode/agentes/planned_downtime.editor.php:650 @@ -15407,8 +15561,8 @@ msgstr "Créé correctement à partir de %s" #: ../../godmode/alerts/configure_alert_template.php:544 #: ../../godmode/alerts/alert_list.php:172 ../../godmode/setup/news.php:84 #: ../../godmode/setup/gis.php:49 -#: ../../godmode/reporting/reporting_builder.item_editor.php:6025 -#: ../../include/functions_alerts.php:2755 +#: ../../godmode/reporting/reporting_builder.item_editor.php:6028 +#: ../../include/functions_alerts.php:2756 #: ../../include/functions_planned_downtimes.php:113 #: ../../include/functions_planned_downtimes.php:845 #: ../../operation/agentes/pandora_networkmap.php:140 @@ -15430,14 +15584,14 @@ msgstr "" "lecture seule. Allez dans %s pour les gérer." #: ../../enterprise/godmode/modules/local_components.php:339 -#: ../../godmode/modules/manage_network_components.php:447 +#: ../../godmode/modules/manage_network_components.php:449 #: ../../include/class/ManageNetScanScripts.class.php:228 msgid "Created successfully" msgstr "Créé correctement" #: ../../enterprise/godmode/modules/local_components.php:407 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:127 -#: ../../enterprise/godmode/policies/policy_modules.php:1266 +#: ../../enterprise/godmode/policies/policy_modules.php:1311 #: ../../enterprise/godmode/policies/policies.php:212 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:139 @@ -15448,22 +15602,22 @@ msgstr "Créé correctement" #: ../../enterprise/include/ajax/servers.ajax.php:368 #: ../../enterprise/tools/ipam/ipam_action.php:277 #: ../../enterprise/tools/ipam/ipam_massive.php:48 -#: ../../godmode/modules/manage_network_components.php:535 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/modules/manage_network_components.php:538 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 #: ../../godmode/agentes/planned_downtime.editor.php:652 #: ../../godmode/alerts/configure_alert_command.php:150 -#: ../../godmode/alerts/alert_templates.php:162 +#: ../../godmode/alerts/alert_templates.php:166 #: ../../godmode/alerts/configure_alert_template.php:572 #: ../../godmode/alerts/alert_list.php:95 ../../godmode/alerts/alert_list.php:320 -#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2755 +#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2756 #: ../../include/functions_planned_downtimes.php:123 #: ../../operation/agentes/pandora_networkmap.php:216 -#: ../../operation/agentes/pandora_networkmap.php:515 +#: ../../operation/agentes/pandora_networkmap.php:516 msgid "Could not be updated" msgstr "Erreur de mise à jour" #: ../../enterprise/godmode/modules/local_components.php:415 -#: ../../godmode/modules/manage_network_components.php:544 +#: ../../godmode/modules/manage_network_components.php:547 #: ../../include/class/ManageNetScanScripts.class.php:315 msgid "Updated successfully" msgstr "Mis à jour correctement" @@ -15472,7 +15626,7 @@ msgstr "Mis à jour correctement" #: ../../godmode/modules/manage_nc_groups.php:218 #: ../../godmode/modules/manage_inventory_modules.php:234 #: ../../godmode/modules/manage_inventory_modules.php:267 -#: ../../godmode/modules/manage_network_components.php:588 +#: ../../godmode/modules/manage_network_components.php:591 #: ../../godmode/modules/manage_network_templates.php:114 msgid "Successfully multiple deleted" msgstr "Données multiples supprimées correctement" @@ -15481,14 +15635,14 @@ msgstr "Données multiples supprimées correctement" #: ../../godmode/modules/manage_nc_groups.php:219 #: ../../godmode/modules/manage_inventory_modules.php:235 #: ../../godmode/modules/manage_inventory_modules.php:268 -#: ../../godmode/modules/manage_network_components.php:589 +#: ../../godmode/modules/manage_network_components.php:592 #: ../../godmode/modules/manage_network_templates.php:115 msgid "Not deleted. Error deleting multiple data" msgstr "Erreur de suppression de données multiples" #: ../../enterprise/godmode/modules/local_components.php:567 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2902 -#: ../../godmode/modules/manage_network_components.php:677 +#: ../../godmode/modules/manage_network_components.php:680 msgid "Free Search" msgstr "Recherche libre" @@ -15497,15 +15651,15 @@ msgid "Search by name, description or data, list matches." msgstr "Rechercher liste de concordances par nom, description ou données" #: ../../enterprise/godmode/modules/local_components.php:732 -#: ../../enterprise/godmode/policies/policy_modules.php:1636 +#: ../../enterprise/godmode/policies/policy_modules.php:1681 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:595 #: ../../enterprise/include/class/NetworkConfigManager.class.php:628 -#: ../../godmode/modules/manage_network_components.php:841 -#: ../../godmode/agentes/module_manager.php:961 +#: ../../godmode/modules/manage_network_components.php:844 +#: ../../godmode/agentes/module_manager.php:975 #: ../../godmode/snmpconsole/snmp_alert.php:1984 #: ../../godmode/snmpconsole/snmp_alert.php:1985 #: ../../godmode/alerts/alert_actions.php:461 -#: ../../godmode/alerts/alert_templates.php:458 +#: ../../godmode/alerts/alert_templates.php:462 #: ../../godmode/reporting/reporting_builder.php:1194 msgid "Duplicate" msgstr "Dupliquer" @@ -15582,7 +15736,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wizard.php:661 #: ../../godmode/agentes/planned_downtime.list.php:737 #: ../../godmode/agentes/planned_downtime.editor.php:951 -#: ../../include/functions_reporting_html.php:6372 +#: ../../include/functions_reporting_html.php:6406 msgid "Execution" msgstr "Exécution" @@ -15670,8 +15824,8 @@ msgstr "Lacer script" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:665 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:679 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:320 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:335 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643 @@ -15701,20 +15855,20 @@ msgstr "Lacer script" #: ../../godmode/massive/massive_edit_users.php:462 #: ../../godmode/massive/massive_edit_users.php:470 #: ../../godmode/massive/massive_edit_users.php:507 -#: ../../godmode/massive/massive_edit_users.php:609 -#: ../../godmode/massive/massive_edit_users.php:628 -#: ../../godmode/massive/massive_edit_users.php:635 -#: ../../godmode/massive/massive_edit_agents.php:677 -#: ../../godmode/massive/massive_edit_agents.php:703 -#: ../../godmode/massive/massive_edit_agents.php:739 -#: ../../godmode/massive/massive_edit_agents.php:763 -#: ../../godmode/massive/massive_edit_agents.php:880 -#: ../../godmode/massive/massive_edit_agents.php:927 -#: ../../godmode/massive/massive_edit_agents.php:1020 -#: ../../godmode/massive/massive_edit_agents.php:1073 -#: ../../godmode/massive/massive_edit_agents.php:1115 -#: ../../godmode/massive/massive_edit_agents.php:1143 -#: ../../godmode/massive/massive_edit_agents.php:1237 +#: ../../godmode/massive/massive_edit_users.php:610 +#: ../../godmode/massive/massive_edit_users.php:629 +#: ../../godmode/massive/massive_edit_users.php:636 +#: ../../godmode/massive/massive_edit_agents.php:694 +#: ../../godmode/massive/massive_edit_agents.php:720 +#: ../../godmode/massive/massive_edit_agents.php:756 +#: ../../godmode/massive/massive_edit_agents.php:780 +#: ../../godmode/massive/massive_edit_agents.php:897 +#: ../../godmode/massive/massive_edit_agents.php:944 +#: ../../godmode/massive/massive_edit_agents.php:1037 +#: ../../godmode/massive/massive_edit_agents.php:1090 +#: ../../godmode/massive/massive_edit_agents.php:1132 +#: ../../godmode/massive/massive_edit_agents.php:1159 +#: ../../godmode/massive/massive_edit_agents.php:1253 #: ../../godmode/massive/massive_edit_modules.php:630 #: ../../godmode/massive/massive_edit_modules.php:652 #: ../../godmode/massive/massive_edit_modules.php:721 @@ -15736,28 +15890,27 @@ msgstr "Lacer script" #: ../../godmode/massive/massive_edit_modules.php:1095 #: ../../godmode/massive/massive_edit_modules.php:1123 #: ../../godmode/massive/massive_edit_modules.php:1227 -#: ../../include/functions_html.php:1877 ../../include/functions_html.php:1978 -#: ../../include/functions_html.php:2116 +#: ../../include/functions_html.php:1888 ../../include/functions_html.php:1989 +#: ../../include/functions_html.php:2127 msgid "No change" msgstr "Aucune modification" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:683 -#: ../../godmode/agentes/agent_manager.php:636 +#: ../../godmode/agentes/agent_manager.php:638 #: ../../godmode/reporting/reporting_builder.item_editor.php:73 -#: ../../include/functions_events.php:5061 -#: ../../operation/agentes/estado_generalagente.php:504 -#: ../../operation/inventory/inventory.php:1003 -#: ../../operation/inventory/inventory.php:1297 +#: ../../include/functions_events.php:5066 +#: ../../operation/agentes/estado_generalagente.php:475 +#: ../../operation/inventory/inventory.php:1249 msgid "Secondary groups" msgstr "Groupes secondaires" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:730 -#: ../../godmode/massive/massive_edit_agents.php:825 +#: ../../godmode/massive/massive_edit_agents.php:842 msgid "Add secondary groups" msgstr "Ajouter des groupes secondaires" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:737 -#: ../../godmode/massive/massive_edit_agents.php:851 +#: ../../godmode/massive/massive_edit_agents.php:868 msgid "Remove secondary groups" msgstr "Supprimer des groupes secondaires" @@ -15768,7 +15921,7 @@ msgstr "Ajouter une politique" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:790 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 -#: ../../operation/agentes/estado_agente.php:1063 +#: ../../operation/agentes/estado_agente.php:1071 msgid "Op" msgstr "Op" @@ -15850,13 +16003,13 @@ msgstr "Il n’y a pas de configuration automatique définie" #: ../../enterprise/include/functions_HA_cluster.php:61 #: ../../enterprise/include/lib/Metaconsole/Node.php:1114 #: ../../enterprise/include/lib/Metaconsole/Node.php:1115 -#: ../../godmode/users/user_list.php:845 +#: ../../godmode/users/user_list.php:846 #: ../../godmode/massive/massive_edit_users.php:529 -#: ../../godmode/alerts/alert_list.list.php:1170 +#: ../../godmode/alerts/alert_list.list.php:1169 #: ../../include/class/SatelliteAgent.class.php:1195 -#: ../../include/class/TipsWindow.class.php:456 -#: ../../include/class/TipsWindow.class.php:734 -#: ../../include/class/TipsWindow.class.php:901 +#: ../../include/class/TipsWindow.class.php:468 +#: ../../include/class/TipsWindow.class.php:754 +#: ../../include/class/TipsWindow.class.php:921 #: ../../operation/users/user_edit_notifications.php:64 msgid "Enable" msgstr "Activer" @@ -15868,14 +16021,14 @@ msgstr "Activer" #: ../../enterprise/include/functions_HA_cluster.php:58 #: ../../enterprise/include/lib/Metaconsole/Node.php:1140 #: ../../enterprise/include/lib/Metaconsole/Node.php:1141 -#: ../../godmode/users/user_list.php:840 +#: ../../godmode/users/user_list.php:841 #: ../../godmode/massive/massive_edit_users.php:518 -#: ../../godmode/alerts/alert_list.list.php:1143 ../../include/functions.php:3413 +#: ../../godmode/alerts/alert_list.list.php:1142 ../../include/functions.php:3413 #: ../../include/class/SatelliteAgent.class.php:1195 msgid "Disable" msgstr "Désactiver" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:218 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:226 msgid "Add new configuration definition" msgstr "Ajouter une nouvelle définition de configuration" @@ -15899,10 +16052,10 @@ msgstr "Gestionnaire de configuration réseau" #: ../../enterprise/godmode/agentes/plugins_manager.php:212 #: ../../enterprise/godmode/policies/policy_plugins.php:185 #: ../../enterprise/godmode/policies/policies.php:607 -#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:322 +#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:320 #: ../../godmode/servers/plugin.php:240 ../../godmode/servers/plugin.php:282 -#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:764 -#: ../../godmode/servers/plugin.php:806 +#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:756 +#: ../../godmode/servers/plugin.php:798 msgid "Plugins" msgstr "Plugins" @@ -15929,12 +16082,12 @@ msgid "Show files" msgstr "Afficher les fichiers" #: ../../enterprise/godmode/agentes/collection_manager.php:251 -#: ../../enterprise/operation/log/log_viewer.php:1477 -#: ../../enterprise/operation/log/log_viewer.php:1485 +#: ../../enterprise/operation/log/log_viewer.php:1475 +#: ../../enterprise/operation/log/log_viewer.php:1483 #: ../../godmode/reporting/reporting_builder.php:1268 -#: ../../include/functions_reporting.php:3199 -#: ../../operation/agentes/agent_inventory.php:280 -#: ../../operation/inventory/inventory.php:776 +#: ../../include/functions_reporting.php:3208 +#: ../../operation/agentes/agent_inventory.php:334 +#: ../../operation/inventory/inventory.php:1005 msgid "No data found." msgstr "Aucune donnée retrouvée" @@ -15943,9 +16096,9 @@ msgstr "Aucune donnée retrouvée" #: ../../godmode/agentes/inventory_manager.php:232 #: ../../godmode/snmpconsole/snmp_alert.php:1891 #: ../../godmode/reporting/reporting_builder.list_items.php:373 -#: ../../godmode/reporting/graph_builder.graph_editor.php:211 +#: ../../godmode/reporting/graph_builder.graph_editor.php:344 #: ../../include/ajax/alert_list.ajax.php:285 -#: ../../operation/agentes/status_monitor.php:1531 +#: ../../operation/agentes/status_monitor.php:1533 msgid "P." msgstr "P." @@ -15961,7 +16114,7 @@ msgid "Capacity planning" msgstr "Planification de la capacité" #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:41 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:186 #: ../../enterprise/godmode/services/services.elements.php:95 #: ../../enterprise/godmode/services/services.elements.php:184 #: ../../enterprise/include/functions_visual_map_editor.php:30 @@ -15972,7 +16125,8 @@ msgstr "Planification de la capacité" #: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288 #: ../../enterprise/include/functions_reporting.php:6152 #: ../../enterprise/include/functions_services.php:1712 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4118 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4127 +#: ../../mobile/operation/services.php:267 #: ../../include/lib/Dashboard/Widgets/service_map.php:318 msgid "Service" msgstr "Service" @@ -15989,59 +16143,59 @@ msgstr "Moyenne synthétique" msgid "Trending module" msgstr "Module tendance" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:138 msgid "Fixed value" msgstr "Valeur fixe" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:140 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141 msgid "Add module to operation as add" msgstr "Ajouter un module à l'opération comme somme" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 msgid "Add module to operations as deduct" msgstr "Ajouter un module à l'opération comme soustraction" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 msgid "Add module to operations as multiplicate " msgstr "Ajouter un module à l'opération comme multiplication " -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 msgid "Add module to operations as divide" msgstr "Ajouter un module à l'opération comme division" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145 msgid "Remove selected modules" msgstr "Supprimer les modules sélectionnés" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:148 msgid "Add module to average operation" msgstr "Ajouter un module à l'opération moyenne" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:150 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149 msgid "Remove selected modules from operations stack" msgstr "Supprimer les modules sélectionnés des opérations en attente" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:165 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:160 msgid "Move down selected modules" msgstr "Déplacer les modules sélectionnés vers le bas" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:161 msgid "Move up selected modules" msgstr "Déplacer les modules sélectionnés vers le haut" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:199 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197 msgid "Select Service" msgstr "Sélectionner un service" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:216 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:214 msgid "Netflow filter" msgstr "Filtre Netflow" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:225 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:223 msgid "Select filter" msgstr "Sélectionner un filtre" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:240 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:238 msgid "Percentual value" msgstr "Valeur en pourcentage" @@ -16083,7 +16237,7 @@ msgstr "Erreur : le répertoire de la collection n'existe pas." #: ../../enterprise/godmode/agentes/collections.editor.php:96 msgid "Collection files" -msgstr "Fichiers de collecte" +msgstr "Fichiers de collection" #: ../../enterprise/godmode/agentes/collections.editor.php:101 msgid "Edit files" @@ -16159,15 +16313,19 @@ msgstr "Configuration manuelle" msgid "No component was found" msgstr "Aucun composant a été trouvé" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:170 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:132 +msgid "Macro value" +msgstr "Valeur de la macro" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:171 msgid "Show configuration data" msgstr "Afficher les données de configuration" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:181 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:182 msgid "Hide configuration data" msgstr "Cacher les données de configuration" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:189 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:190 msgid "Data configuration" msgstr "Configuration des données" @@ -16209,7 +16367,7 @@ msgid "Add Modules" msgstr "Ajouter des modules" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:83 -#: ../../godmode/agentes/module_manager.php:1247 +#: ../../godmode/agentes/module_manager.php:1268 msgid "Delete module" msgstr "Supprimer le module" @@ -16253,8 +16411,8 @@ msgstr "" "spécifiez le chemin d’accès complet %s." #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:231 -#: ../../godmode/tag/edit_tag.php:76 ../../include/class/TipsWindow.class.php:718 -#: ../../include/class/TipsWindow.class.php:885 +#: ../../godmode/tag/edit_tag.php:76 ../../include/class/TipsWindow.class.php:738 +#: ../../include/class/TipsWindow.class.php:905 #: ../../operation/search_users.php:47 msgid "Profile" msgstr "Profil" @@ -16276,7 +16434,7 @@ msgid "Only Selenium 3." msgstr "Seulement Sélénium 3." #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:286 -#: ../../godmode/agentes/module_manager_editor_common.php:1206 +#: ../../godmode/agentes/module_manager_editor_common.php:1216 msgid "Change all states" msgstr "Modifier tous les états" @@ -16302,15 +16460,15 @@ msgstr "Collez votre test de sélénium, exporté au format HTML, ici" #: ../../enterprise/tools/ipam/ipam_excel.php:220 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:419 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:792 -#: ../../godmode/groups/configure_group.php:234 +#: ../../godmode/groups/configure_group.php:253 #: ../../godmode/agentes/agent_manager.php:195 -#: ../../godmode/agentes/module_manager_editor_common.php:744 -#: ../../godmode/massive/massive_edit_agents.php:812 +#: ../../godmode/agentes/module_manager_editor_common.php:754 +#: ../../godmode/massive/massive_edit_agents.php:829 msgid "Custom ID" msgstr "Identifiant personnalisé" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:497 -#: ../../godmode/agentes/module_manager.php:902 +#: ../../godmode/agentes/module_manager.php:916 msgid "" "The policy modules of data type will only update their intervals when policy " "is applied." @@ -16320,7 +16478,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:527 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961 -#: ../../godmode/agentes/module_manager_editor_common.php:1281 +#: ../../godmode/agentes/module_manager_editor_common.php:1291 #: ../../godmode/massive/massive_edit_modules.php:1029 msgid "FF interval" msgstr "Intervalle FF" @@ -16333,7 +16491,7 @@ msgstr "Intervalle de flip-flop d'exécution de module (en secondes)." #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:546 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057 -#: ../../godmode/agentes/module_manager_editor_common.php:1410 +#: ../../godmode/agentes/module_manager_editor_common.php:1420 #: ../../godmode/massive/massive_edit_modules.php:1150 msgid "Retries" msgstr "Tentatives" @@ -16347,7 +16505,7 @@ msgstr "Nombre de tentatives que le module tente d'éxécuter." #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:619 #: ../../enterprise/godmode/policies/policy_modules.php:418 #: ../../godmode/agentes/module_manager_editor.php:762 -#: ../../godmode/agentes/module_manager_editor_common.php:1444 +#: ../../godmode/agentes/module_manager_editor_common.php:1454 msgid "Custom macros" msgstr "Macros personnalisées" @@ -16373,13 +16531,15 @@ msgstr "Éditeur de cartes réseau vide" #: ../../enterprise/operation/services/services.table_services.php:63 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104 #: ../../godmode/gis_maps/configure_gis_map.php:116 -#: ../../godmode/reporting/visual_console_builder.php:865 +#: ../../godmode/reporting/visual_console_builder.php:873 #: ../../godmode/reporting/map_builder.php:129 #: ../../godmode/reporting/visual_console_favorite.php:126 -#: ../../operation/visual_console/view.php:247 +#: ../../operation/visual_console/view.php:249 +#: ../../operation/visual_console/legacy_view.php:215 +#: ../../operation/agentes/networkmap.dinamic.php:146 #: ../../operation/agentes/pandora_networkmap.editor.php:232 -#: ../../operation/agentes/pandora_networkmap.php:681 -#: ../../operation/agentes/pandora_networkmap.view.php:2409 +#: ../../operation/agentes/pandora_networkmap.php:682 +#: ../../operation/agentes/pandora_networkmap.view.php:2410 #: ../../operation/menu.php:439 ../../operation/gis_maps/gis_map.php:47 #: ../../operation/gis_maps/render_view.php:189 msgid "Topology maps" @@ -16388,15 +16548,15 @@ msgstr "Cartes de topologie" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108 #: ../../operation/agentes/pandora_networkmap.editor.php:236 -#: ../../operation/agentes/pandora_networkmap.php:685 -#: ../../operation/agentes/pandora_networkmap.view.php:2311 +#: ../../operation/agentes/pandora_networkmap.php:686 +#: ../../operation/agentes/pandora_networkmap.view.php:2312 msgid "Networkmap" msgstr "Carte de réseau" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115 #: ../../operation/agentes/pandora_networkmap.editor.php:274 -#: ../../operation/agentes/pandora_networkmap.view.php:2317 +#: ../../operation/agentes/pandora_networkmap.view.php:2318 msgid "Not found networkmap." msgstr "Aucune carte de réseau retrouvée" @@ -16504,7 +16664,7 @@ msgstr "Créer un nouveau module d’analyse Web" #: ../../enterprise/godmode/policies/policy_alerts.php:75 #: ../../enterprise/godmode/policies/configure_policy.php:92 #: ../../enterprise/godmode/policies/policy_modules.php:488 -#: ../../enterprise/godmode/policies/policy_queue.php:218 +#: ../../enterprise/godmode/policies/policy_queue.php:220 #: ../../enterprise/godmode/policies/policies.php:275 #: ../../enterprise/godmode/policies/policy_linking.php:127 #: ../../enterprise/godmode/policies/policy_external_alerts.php:329 @@ -16540,7 +16700,7 @@ msgstr "Impossible de l'ajouter à la liste de plugins à supprimer." #: ../../enterprise/godmode/policies/policy_plugins.php:70 #: ../../enterprise/godmode/policies/policy_alerts.php:270 -#: ../../enterprise/godmode/policies/policy_modules.php:1332 +#: ../../enterprise/godmode/policies/policy_modules.php:1377 #: ../../enterprise/godmode/policies/policy_external_alerts.php:162 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:177 #: ../../enterprise/godmode/policies/policy_collections.php:122 @@ -16551,7 +16711,7 @@ msgstr "Suppression annulée correctement" #: ../../enterprise/godmode/policies/policy_plugins.php:71 #: ../../enterprise/godmode/policies/policy_alerts.php:271 -#: ../../enterprise/godmode/policies/policy_modules.php:1333 +#: ../../enterprise/godmode/policies/policy_modules.php:1378 #: ../../enterprise/godmode/policies/policy_external_alerts.php:163 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:180 #: ../../enterprise/godmode/policies/policy_collections.php:123 @@ -16573,7 +16733,7 @@ msgid "There are no defined plugins" msgstr "Aucun plugin défini" #: ../../enterprise/godmode/policies/policy_alerts.php:105 -#: ../../enterprise/godmode/policies/policy_modules.php:611 +#: ../../enterprise/godmode/policies/policy_modules.php:615 #: ../../enterprise/godmode/policies/policies.php:256 #: ../../enterprise/godmode/policies/policy_linking.php:51 #: ../../enterprise/godmode/policies/policy_external_alerts.php:87 @@ -16587,7 +16747,7 @@ msgstr "Cette politique est en application et ne peut pas être modifiée" #: ../../enterprise/godmode/policies/policy_alerts.php:164 #: ../../enterprise/godmode/policies/policy_modules.php:547 #: ../../enterprise/godmode/setup/setup_metaconsole.php:157 -#: ../../godmode/agentes/configurar_agente.php:2214 +#: ../../godmode/agentes/configurar_agente.php:2277 #: ../../godmode/agentes/modificar_agente.php:271 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 #: ../../godmode/alerts/alert_list.php:419 @@ -16674,8 +16834,8 @@ msgstr "Toujours" #: ../../enterprise/godmode/policies/policy_external_alerts.php:510 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3443 #: ../../godmode/alerts/alert_list.list.php:724 -#: ../../include/class/Diagnostics.class.php:1204 #: ../../include/class/Diagnostics.class.php:1208 +#: ../../include/class/Diagnostics.class.php:1212 msgid "On" msgstr "Actif" @@ -16687,7 +16847,7 @@ msgid "Until" msgstr "Jusqu'à" #: ../../enterprise/godmode/policies/policy_alerts.php:577 -#: ../../enterprise/godmode/policies/policy_modules.php:1653 +#: ../../enterprise/godmode/policies/policy_modules.php:1698 #: ../../enterprise/godmode/policies/policy_external_alerts.php:583 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:303 #: ../../enterprise/godmode/policies/policy_agents.php:1192 @@ -16700,12 +16860,12 @@ msgid "There is not alerts configured in this policy." msgstr "Aucune alerte externe n’est configurée dans cette politique." #: ../../enterprise/godmode/policies/policy_alerts.php:695 -#: ../../godmode/alerts/alert_list.list.php:1197 +#: ../../godmode/alerts/alert_list.list.php:1196 msgid "Set off standby" msgstr "Déconfigurer le mode veille" #: ../../enterprise/godmode/policies/policy_alerts.php:704 -#: ../../godmode/alerts/alert_list.list.php:1224 +#: ../../godmode/alerts/alert_list.list.php:1223 msgid "Set standby" msgstr "Configurer mode veille" @@ -16724,9 +16884,9 @@ msgstr "Ajouter alertes" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:476 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:544 #: ../../godmode/snmpconsole/snmp_alert.php:2020 -#: ../../godmode/alerts/alert_list.list.php:995 -#: ../../godmode/alerts/alert_list.list.php:1006 -#: ../../godmode/alerts/alert_list.list.php:1270 +#: ../../godmode/alerts/alert_list.list.php:994 +#: ../../godmode/alerts/alert_list.list.php:1005 +#: ../../godmode/alerts/alert_list.list.php:1269 msgid "Add action" msgstr "Ajouter une action" @@ -16787,42 +16947,42 @@ msgid "Could not be added module(s). You must select a policy" msgstr "" "Impossible d'ajouter le(s) module(s). Vous devez sélectionner une politique." -#: ../../enterprise/godmode/policies/policy_modules.php:593 +#: ../../enterprise/godmode/policies/policy_modules.php:597 #, php-format msgid "Successfully added module(s) (%s/%s) to policy %s" msgstr "Module(s) (%s/%s) ajouté(s) correctement à la politique %s." -#: ../../enterprise/godmode/policies/policy_modules.php:599 +#: ../../enterprise/godmode/policies/policy_modules.php:603 #, php-format msgid "Could not be added module(s) (%s/%s) to policy %s" msgstr "Impossible d'ajouter le(s) module(s) (%s/%s) à la politique %s" -#: ../../enterprise/godmode/policies/policy_modules.php:635 +#: ../../enterprise/godmode/policies/policy_modules.php:639 msgid "To define plugins please use plugin configuration tab." msgstr "" "Pour définir les plugins, veuillez utiliser l’onglet de configuration des " "plugins." -#: ../../enterprise/godmode/policies/policy_modules.php:934 +#: ../../enterprise/godmode/policies/policy_modules.php:938 msgid "Could not be added module." msgstr "Impossible d'ajouter ce module" -#: ../../enterprise/godmode/policies/policy_modules.php:1281 +#: ../../enterprise/godmode/policies/policy_modules.php:1326 msgid "" "The module type in Data configuration is empty, take from combo box of form." msgstr "" "Le type de module dans la configuration de données est vide. Choisissez-en un " "de la liste déroulante du formulaire." -#: ../../enterprise/godmode/policies/policy_modules.php:1285 +#: ../../enterprise/godmode/policies/policy_modules.php:1330 msgid "" "The module name in Data configuration is empty, take from text field of form." msgstr "" "Le nom du module dans la configuration de données est vide. Choisissez-en un " "du champ de texte du formulaire." -#: ../../enterprise/godmode/policies/policy_modules.php:1315 -#: ../../enterprise/godmode/policies/policy_modules.php:1328 +#: ../../enterprise/godmode/policies/policy_modules.php:1360 +#: ../../enterprise/godmode/policies/policy_modules.php:1373 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:171 msgid "" "Successfully added to delete pending modules. Will be deleted in the next " @@ -16831,95 +16991,95 @@ msgstr "" "Ajouté correctement aux modules en attente de suppression. Il sera supprimé " "dans la suivante application de la politique." -#: ../../enterprise/godmode/policies/policy_modules.php:1319 +#: ../../enterprise/godmode/policies/policy_modules.php:1364 msgid "Could not be added to deleted all modules." msgstr "Impossible de l'ajouter à la liste de suppression des modules" -#: ../../enterprise/godmode/policies/policy_modules.php:1379 -#: ../../godmode/agentes/configurar_agente.php:2127 +#: ../../enterprise/godmode/policies/policy_modules.php:1424 +#: ../../godmode/agentes/configurar_agente.php:2190 #: ../../include/functions_reports.php:975 #, php-format msgid "copy of %s" msgstr "copie de %s" -#: ../../enterprise/godmode/policies/policy_modules.php:1397 -#: ../../godmode/agentes/configurar_agente.php:2141 +#: ../../enterprise/godmode/policies/policy_modules.php:1442 +#: ../../godmode/agentes/configurar_agente.php:2204 #, php-format msgid "copy of %s (%d)" msgstr "copie de %s (%d)" -#: ../../enterprise/godmode/policies/policy_modules.php:1427 +#: ../../enterprise/godmode/policies/policy_modules.php:1472 msgid "Successfully duplicate the module." msgstr "Module dupliqué correctement" -#: ../../enterprise/godmode/policies/policy_modules.php:1428 -#: ../../operation/agentes/pandora_networkmap.php:540 +#: ../../enterprise/godmode/policies/policy_modules.php:1473 +#: ../../operation/agentes/pandora_networkmap.php:541 msgid "Could not be duplicated" msgstr "Duplication impossible" -#: ../../enterprise/godmode/policies/policy_modules.php:1482 -#: ../../operation/agentes/estado_monitores.php:610 +#: ../../enterprise/godmode/policies/policy_modules.php:1527 +#: ../../operation/agentes/estado_monitores.php:608 msgid "Show in hierachy mode" msgstr "Affichage en mode hiérarchique" -#: ../../enterprise/godmode/policies/policy_modules.php:1577 +#: ../../enterprise/godmode/policies/policy_modules.php:1622 msgid "Local component" msgstr "Composant local" -#: ../../enterprise/godmode/policies/policy_modules.php:1590 -#: ../../enterprise/godmode/policies/policy_modules.php:1591 +#: ../../enterprise/godmode/policies/policy_modules.php:1635 +#: ../../enterprise/godmode/policies/policy_modules.php:1636 msgid "Disabled module" msgstr "Module désactivé" -#: ../../enterprise/godmode/policies/policy_modules.php:1598 -#: ../../enterprise/godmode/policies/policy_modules.php:1599 +#: ../../enterprise/godmode/policies/policy_modules.php:1643 +#: ../../enterprise/godmode/policies/policy_modules.php:1644 msgid "Enabled module" msgstr "Module activé" -#: ../../enterprise/godmode/policies/policy_modules.php:1609 -#: ../../enterprise/godmode/policies/policy_modules.php:1610 -#: ../../godmode/agentes/module_manager.php:940 +#: ../../enterprise/godmode/policies/policy_modules.php:1654 +#: ../../enterprise/godmode/policies/policy_modules.php:1655 +#: ../../godmode/agentes/module_manager.php:954 msgid "Enable module" msgstr "Activer le module" -#: ../../enterprise/godmode/policies/policy_modules.php:1619 -#: ../../enterprise/godmode/policies/policy_modules.php:1620 -#: ../../godmode/agentes/module_manager.php:949 +#: ../../enterprise/godmode/policies/policy_modules.php:1664 +#: ../../enterprise/godmode/policies/policy_modules.php:1665 +#: ../../godmode/agentes/module_manager.php:963 msgid "Disable module" msgstr "Module désactivé" -#: ../../enterprise/godmode/policies/policy_modules.php:1719 +#: ../../enterprise/godmode/policies/policy_modules.php:1764 msgid "There are no defined modules" msgstr "Aucun module défini" -#: ../../enterprise/godmode/policies/policy_modules.php:1840 +#: ../../enterprise/godmode/policies/policy_modules.php:1885 #: ../../godmode/agentes/module_manager_editor.php:868 msgid "No module name provided" msgstr "Aucun nom de module fourni" -#: ../../enterprise/godmode/policies/policy_modules.php:1841 +#: ../../enterprise/godmode/policies/policy_modules.php:1886 #: ../../godmode/agentes/module_manager_editor.php:878 msgid "No target IP provided" msgstr "Aucune cible IP fournie" -#: ../../enterprise/godmode/policies/policy_modules.php:1842 +#: ../../enterprise/godmode/policies/policy_modules.php:1887 #: ../../godmode/agentes/module_manager_editor.php:888 msgid "No SNMP OID provided" msgstr "Aucun OID SNMP fourni" -#: ../../enterprise/godmode/policies/policy_modules.php:2008 +#: ../../enterprise/godmode/policies/policy_modules.php:2053 msgid "Are you sure to copy modules into policy?\\n" msgstr "Êtes-vous sûr(e) de vouloir copier les modules à la politique ?" -#: ../../enterprise/godmode/policies/policy_modules.php:2028 +#: ../../enterprise/godmode/policies/policy_modules.php:2071 msgid "Please select any module to copy" msgstr "Veuillez sélectionner un module à copier." -#: ../../enterprise/godmode/policies/policy_queue.php:63 +#: ../../enterprise/godmode/policies/policy_queue.php:65 msgid "No policies with this id" msgstr "Aucune politique avec cet ID" -#: ../../enterprise/godmode/policies/policy_queue.php:78 +#: ../../enterprise/godmode/policies/policy_queue.php:80 #: ../../enterprise/godmode/policies/policy_agents.php:61 msgid "" "Starting with Pandora FMS version 760, assigning an entire group to a policy " @@ -16929,122 +17089,122 @@ msgstr "" "stratégie l’appliquera automatiquement à tous les nouveaux agents ajoutés à ce " "groupe." -#: ../../enterprise/godmode/policies/policy_queue.php:146 +#: ../../enterprise/godmode/policies/policy_queue.php:148 #, php-format msgid "%s: Operations successfully deleted from the queue" msgstr "%s : opérations supprimées correctement de la file d'attente" -#: ../../enterprise/godmode/policies/policy_queue.php:153 +#: ../../enterprise/godmode/policies/policy_queue.php:155 msgid "Operations successfully deleted from the queue" msgstr "Opérations supprimées correctement de la file d'attente" -#: ../../enterprise/godmode/policies/policy_queue.php:154 +#: ../../enterprise/godmode/policies/policy_queue.php:156 msgid "Operations cannot be deleted from the queue" msgstr "Impossible de supprimer les opérations de la file d'attente" -#: ../../enterprise/godmode/policies/policy_queue.php:261 +#: ../../enterprise/godmode/policies/policy_queue.php:263 #, php-format msgid "Some nodes (%s) are unreachebles. Some information may be missing." msgstr "" "Certains nœuds (%s) sont inaccessibles. Certaines informations peuvent être " "manquantes." -#: ../../enterprise/godmode/policies/policy_queue.php:418 +#: ../../enterprise/godmode/policies/policy_queue.php:420 msgid "Update pending" msgstr "Mise à jour en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:424 +#: ../../enterprise/godmode/policies/policy_queue.php:426 msgid "Update pending agents" msgstr "Mettre à jour les agents en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:447 +#: ../../enterprise/godmode/policies/policy_queue.php:449 #: ../../enterprise/godmode/policies/policy_agents.php:1135 #: ../../enterprise/godmode/policies/policy_agents.php:1477 msgid "Add to apply queue" msgstr "Ajouter à la file d'attente pour l'appliquer" -#: ../../enterprise/godmode/policies/policy_queue.php:453 +#: ../../enterprise/godmode/policies/policy_queue.php:455 msgid "Add to apply queue only for database" msgstr "" "Ajouter à la file d'application, seulement pour les changements dans la base " "de données" -#: ../../enterprise/godmode/policies/policy_queue.php:464 +#: ../../enterprise/godmode/policies/policy_queue.php:466 msgid "Update pending groups" msgstr "Mettre à jour les groupes en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:478 +#: ../../enterprise/godmode/policies/policy_queue.php:480 msgid "Link pending modules" msgstr "Associer les modules en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:486 +#: ../../enterprise/godmode/policies/policy_queue.php:488 msgid "Will be linked in the next policy application" msgstr "Il sera associé lors de la prochaine application de la politique" -#: ../../enterprise/godmode/policies/policy_queue.php:492 +#: ../../enterprise/godmode/policies/policy_queue.php:494 msgid "Unlink pending modules" msgstr "Dissocier les modules en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:498 +#: ../../enterprise/godmode/policies/policy_queue.php:500 msgid "Will be unlinked in the next policy application" msgstr "Ils seront dissociés lors de la prochaine application de la politique." -#: ../../enterprise/godmode/policies/policy_queue.php:503 +#: ../../enterprise/godmode/policies/policy_queue.php:505 msgid "Delete pending" msgstr "Suppression en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:509 +#: ../../enterprise/godmode/policies/policy_queue.php:511 msgid "Delete pending agents" msgstr "Supprimer les agents en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:517 -#: ../../enterprise/godmode/policies/policy_queue.php:532 -#: ../../enterprise/godmode/policies/policy_queue.php:547 -#: ../../enterprise/godmode/policies/policy_queue.php:562 -#: ../../enterprise/godmode/policies/policy_queue.php:577 -#: ../../enterprise/godmode/policies/policy_queue.php:592 -#: ../../enterprise/godmode/policies/policy_queue.php:607 -#: ../../enterprise/godmode/policies/policy_queue.php:622 +#: ../../enterprise/godmode/policies/policy_queue.php:519 +#: ../../enterprise/godmode/policies/policy_queue.php:534 +#: ../../enterprise/godmode/policies/policy_queue.php:549 +#: ../../enterprise/godmode/policies/policy_queue.php:564 +#: ../../enterprise/godmode/policies/policy_queue.php:579 +#: ../../enterprise/godmode/policies/policy_queue.php:594 +#: ../../enterprise/godmode/policies/policy_queue.php:609 +#: ../../enterprise/godmode/policies/policy_queue.php:624 msgid "Will be deleted in the next policy application" msgstr "Ils seront supprimés lors de la prochaine application de la politique." -#: ../../enterprise/godmode/policies/policy_queue.php:524 +#: ../../enterprise/godmode/policies/policy_queue.php:526 msgid "Delete pending groups" msgstr "Supprimer les groupes en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:539 +#: ../../enterprise/godmode/policies/policy_queue.php:541 msgid "Delete pending modules" msgstr "Supprimer les modules en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:554 +#: ../../enterprise/godmode/policies/policy_queue.php:556 msgid "Delete pending inventory modules" msgstr "Supprimer les modules d'inventaire en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:569 +#: ../../enterprise/godmode/policies/policy_queue.php:571 msgid "Delete pending alerts" msgstr "Supprimer les alertes en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:584 +#: ../../enterprise/godmode/policies/policy_queue.php:586 msgid "Delete pending external alerts" msgstr "Supprimer les alertes externes en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:599 +#: ../../enterprise/godmode/policies/policy_queue.php:601 msgid "Delete pending file collections" msgstr "Supprimer les collections de fichiers en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:614 +#: ../../enterprise/godmode/policies/policy_queue.php:616 msgid "Delete pending plugins" msgstr "Supprimer les plugins en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:628 +#: ../../enterprise/godmode/policies/policy_queue.php:630 msgid "Advices" msgstr "Conseils" -#: ../../enterprise/godmode/policies/policy_queue.php:633 +#: ../../enterprise/godmode/policies/policy_queue.php:635 msgid "Queue summary" msgstr "Résumé des files d'attente" -#: ../../enterprise/godmode/policies/policy_queue.php:634 +#: ../../enterprise/godmode/policies/policy_queue.php:636 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:186 #: ../../godmode/snmpconsole/snmp_alert.php:1812 #: ../../godmode/alerts/alert_list.list.php:260 @@ -17052,28 +17212,28 @@ msgstr "Résumé des files d'attente" msgid "Toggle filter(s)" msgstr "Filtre(s) de bascul" -#: ../../enterprise/godmode/policies/policy_queue.php:710 +#: ../../enterprise/godmode/policies/policy_queue.php:712 #: ../../enterprise/godmode/policies/policy_linking.php:203 #: ../../include/functions_massive_operations.php:189 -#: ../../include/lib/Dashboard/Widget.php:603 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544 -#: ../../include/functions_events.php:4908 +#: ../../include/lib/Dashboard/Widget.php:604 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545 +#: ../../include/functions_events.php:4913 msgid "Node" msgstr "Noeud" -#: ../../enterprise/godmode/policies/policy_queue.php:838 +#: ../../enterprise/godmode/policies/policy_queue.php:842 msgid "Empty queue" msgstr "Vider la file d'attente" -#: ../../enterprise/godmode/policies/policy_queue.php:852 +#: ../../enterprise/godmode/policies/policy_queue.php:856 msgid "This operation could take a long time" msgstr "Cette opération pourrait prendre du temps" -#: ../../enterprise/godmode/policies/policy_queue.php:864 +#: ../../enterprise/godmode/policies/policy_queue.php:868 msgid "Apply all queues" msgstr "Appliquer toutes les files d'attente" -#: ../../enterprise/godmode/policies/policy_queue.php:877 +#: ../../enterprise/godmode/policies/policy_queue.php:881 msgid "Clear all items" msgstr "Effacer tous les éléments" @@ -17405,7 +17565,7 @@ msgstr "Agents dans la politique" #: ../../enterprise/godmode/policies/policy_agents.php:851 #: ../../enterprise/godmode/setup/setup_auth.php:252 #: ../../enterprise/godmode/setup/setup_auth.php:602 -#: ../../enterprise/godmode/setup/setup_auth.php:1412 +#: ../../enterprise/godmode/setup/setup_auth.php:1629 #: ../../extensions/files_repo/files_repo_form.php:54 #: ../../extensions/module_groups.php:350 #: ../../godmode/reporting/visual_console_builder.wizard.php:368 @@ -17419,12 +17579,12 @@ msgstr "Agents dans la politique" #: ../../include/lib/Dashboard/Widgets/events_list.php:431 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:334 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:341 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:350 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:372 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:344 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:353 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:375 #: ../../include/lib/Dashboard/Widgets/tactical.php:331 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 -#: ../../operation/tree.php:91 ../../operation/agentes/pandora_networkmap.php:719 +#: ../../operation/tree.php:91 ../../operation/agentes/pandora_networkmap.php:720 msgid "Groups" msgstr "Groupes" @@ -17443,10 +17603,10 @@ msgstr "Groupes dans la politique" #: ../../enterprise/godmode/policies/policy_agents.php:959 #: ../../godmode/agentes/configurar_agente.php:623 #: ../../godmode/agentes/configurar_agente.php:762 -#: ../../godmode/agentes/agent_manager.php:862 -#: ../../godmode/massive/massive_edit_agents.php:966 +#: ../../godmode/agentes/agent_manager.php:870 +#: ../../godmode/massive/massive_edit_agents.php:983 #: ../../godmode/reporting/reporting_builder.item_editor.php:79 -#: ../../godmode/servers/servers.build_table.php:260 +#: ../../godmode/servers/servers.build_table.php:273 #: ../../operation/agentes/estado_generalagente.php:313 msgid "Remote configuration" msgstr "Configuration à distance" @@ -17464,7 +17624,7 @@ msgstr "R." #: ../../enterprise/operation/agentes/policy_view.php:167 #: ../../enterprise/operation/agentes/policy_view.php:258 #: ../../enterprise/operation/agentes/policy_view.php:263 -#: ../../mobile/operation/agents.php:406 +#: ../../mobile/operation/agents.php:407 #: ../../include/ajax/alert_list.ajax.php:286 #: ../../include/ajax/alert_list.ajax.php:311 #: ../../include/class/AuditLog.class.php:130 @@ -17483,7 +17643,7 @@ msgstr "U." #: ../../enterprise/godmode/policies/policy_agents.php:1348 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../godmode/reporting/visual_console_builder.elements.php:134 -#: ../../mobile/operation/agents.php:407 +#: ../../mobile/operation/agents.php:408 #: ../../include/class/AuditLog.class.php:130 msgid "A." msgstr "A." @@ -17569,16 +17729,20 @@ msgstr "Assistant de l'agent" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:55 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 +#: ../../godmode/snmpconsole/snmp_filters.php:59 #: ../../include/class/CredentialStore.class.php:965 #: ../../include/class/SnmpConsole.class.php:221 #: ../../operation/snmpconsole/snmp_statistics.php:104 +#: ../../operation/snmpconsole/snmp_browser.php:92 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 #: ../../operation/menu.php:259 msgid "SNMP" msgstr "SNMP" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:115 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:403 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:304 #: ../../godmode/setup/snmp_wizard.php:42 #: ../../include/functions_snmp_browser.php:556 msgid "OID" @@ -17594,13 +17758,13 @@ msgstr "OID personnalisé" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2232 #: ../../enterprise/include/functions_reporting_csv.php:2437 #: ../../enterprise/include/functions_reporting_csv.php:2451 -#: ../../godmode/setup/news.php:287 ../../godmode/setup/setup_visuals.php:1829 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2349 +#: ../../godmode/setup/news.php:291 ../../godmode/setup/setup_visuals.php:1844 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2358 #: ../../include/functions_reports.php:847 -#: ../../include/class/TipsWindow.class.php:455 -#: ../../include/class/TipsWindow.class.php:730 -#: ../../include/class/TipsWindow.class.php:897 -#: ../../include/functions_reporting.php:7509 +#: ../../include/class/TipsWindow.class.php:467 +#: ../../include/class/TipsWindow.class.php:750 +#: ../../include/class/TipsWindow.class.php:917 +#: ../../include/functions_reporting.php:7518 #: ../../include/lib/Dashboard/Widgets/post.php:214 msgid "Text" msgstr "Texte" @@ -17608,8 +17772,8 @@ msgstr "Texte" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 #: ../../enterprise/operation/snmpconsole/snmp_view.php:82 #: ../../enterprise/operation/menu.php:151 -#: ../../include/class/SnmpConsole.class.php:915 -#: ../../include/class/SnmpConsole.class.php:916 +#: ../../include/class/SnmpConsole.class.php:917 +#: ../../include/class/SnmpConsole.class.php:918 msgid "SNMP trap editor" msgstr "Éditeur de déroutements SNMP" @@ -17878,7 +18042,7 @@ msgid "Failed: create the alerts for this modules, please check." msgstr "Erreur de création des alertes pour ces modules. Veuillez les vérifier." #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:127 #: ../../enterprise/include/ajax/policy.ajax.php:263 #: ../../godmode/massive/massive_standby_alerts.php:218 #: ../../godmode/massive/massive_add_alerts.php:280 @@ -17889,8 +18053,9 @@ msgstr "Modèle d'alerte" #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:140 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2200 #: ../../include/functions_alerts.php:673 msgid "Regular expression" msgstr "Expression régulière" @@ -17973,8 +18138,9 @@ msgstr " politique" #: ../../enterprise/godmode/setup/setup_auth.php:341 #: ../../enterprise/godmode/setup/setup_auth.php:473 #: ../../enterprise/godmode/setup/setup_auth.php:639 -#: ../../enterprise/godmode/setup/setup_auth.php:1281 -#: ../../enterprise/godmode/setup/setup_auth.php:1451 +#: ../../enterprise/godmode/setup/setup_auth.php:1197 +#: ../../enterprise/godmode/setup/setup_auth.php:1498 +#: ../../enterprise/godmode/setup/setup_auth.php:1668 #: ../../enterprise/godmode/setup/setup_acl.php:487 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:719 #: ../../enterprise/include/functions_tasklist.php:606 @@ -17994,30 +18160,30 @@ msgstr " politique" #: ../../godmode/massive/massive_copy_modules.php:178 #: ../../godmode/massive/massive_delete_modules.php:407 #: ../../godmode/massive/massive_delete_modules.php:521 -#: ../../godmode/massive/massive_edit_agents.php:650 -#: ../../godmode/massive/massive_edit_agents.php:1153 +#: ../../godmode/massive/massive_edit_agents.php:667 +#: ../../godmode/massive/massive_edit_agents.php:1170 #: ../../godmode/massive/massive_add_action_alerts.php:217 #: ../../godmode/massive/massive_edit_modules.php:411 #: ../../godmode/massive/massive_edit_modules.php:497 #: ../../godmode/reporting/create_container.php:674 -#: ../../godmode/events/event_edit_filter.php:510 -#: ../../godmode/events/event_edit_filter.php:526 -#: ../../include/functions_visual_map_editor.php:498 -#: ../../include/functions_visual_map_editor.php:1454 -#: ../../include/functions_visual_map_editor.php:1548 +#: ../../godmode/events/event_edit_filter.php:512 +#: ../../godmode/events/event_edit_filter.php:528 +#: ../../include/functions_visual_map_editor.php:492 +#: ../../include/functions_visual_map_editor.php:1512 +#: ../../include/functions_visual_map_editor.php:1606 #: ../../include/ajax/visual_console_builder.ajax.php:1186 -#: ../../include/functions_profile.php:390 ../../include/functions_html.php:2327 -#: ../../include/functions_html.php:2328 ../../include/functions_html.php:2329 -#: ../../include/functions_html.php:2330 ../../include/functions_html.php:2331 -#: ../../include/functions_html.php:2333 ../../include/functions_html.php:2334 -#: ../../include/functions_html.php:2335 ../../include/functions_html.php:2336 -#: ../../include/functions_html.php:2337 ../../include/functions_html.php:2352 -#: ../../include/functions_html.php:2374 ../../include/functions_html.php:2396 -#: ../../include/functions_html.php:2418 ../../include/functions_html.php:2440 +#: ../../include/functions_profile.php:390 ../../include/functions_html.php:2342 +#: ../../include/functions_html.php:2343 ../../include/functions_html.php:2344 +#: ../../include/functions_html.php:2345 ../../include/functions_html.php:2346 +#: ../../include/functions_html.php:2348 ../../include/functions_html.php:2349 +#: ../../include/functions_html.php:2350 ../../include/functions_html.php:2351 +#: ../../include/functions_html.php:2352 ../../include/functions_html.php:2367 +#: ../../include/functions_html.php:2389 ../../include/functions_html.php:2411 +#: ../../include/functions_html.php:2433 ../../include/functions_html.php:2455 #: ../../include/lib/Dashboard/Widgets/events_list.php:340 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:275 -#: ../../operation/events/events.php:1999 ../../operation/events/events.php:2017 -#: ../../operation/events/events.php:3028 +#: ../../operation/events/events.php:2053 ../../operation/events/events.php:2071 +#: ../../operation/events/events.php:3087 msgid "Any" msgstr "Tous" @@ -18032,7 +18198,7 @@ msgstr "Aux politiques" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:365 #: ../../godmode/massive/massive_add_alerts.php:324 -#: ../../godmode/massive/massive_edit_agents.php:1391 +#: ../../godmode/massive/massive_edit_agents.php:1407 #: ../../godmode/massive/massive_delete_alerts.php:389 msgid "" "Unsucessful sending the data, please contact with your administrator or make " @@ -18060,7 +18226,7 @@ msgstr "Pas de politiques de destin à copier" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 #: ../../godmode/massive/massive_delete_modules.php:372 #: ../../godmode/massive/massive_edit_modules.php:356 -#: ../../include/functions_reporting_html.php:1776 +#: ../../include/functions_reporting_html.php:1785 msgid "Agent group" msgstr "Groupe d'agent" @@ -18079,8 +18245,8 @@ msgid "When select agents" msgstr "Lorsque des agents sont sélectionnés" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265 -#: ../../extensions/agents_modules.php:489 -#: ../../extensions/agents_modules.php:493 +#: ../../extensions/agents_modules.php:497 +#: ../../extensions/agents_modules.php:501 #: ../../godmode/agentes/planned_downtime.editor.php:1235 #: ../../godmode/massive/massive_delete_action_alerts.php:246 #: ../../godmode/massive/massive_delete_modules.php:555 @@ -18089,12 +18255,12 @@ msgstr "Lorsque des agents sont sélectionnés" #: ../../godmode/massive/massive_add_action_alerts.php:225 #: ../../godmode/massive/massive_edit_modules.php:528 #: ../../godmode/reporting/reporting_builder.item_editor.php:1923 -#: ../../include/functions_html.php:5947 +#: ../../include/functions_html.php:5971 msgid "Show common modules" msgstr "Afficher les modules communs" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 -#: ../../extensions/agents_modules.php:490 +#: ../../extensions/agents_modules.php:498 #: ../../godmode/agentes/planned_downtime.editor.php:1236 #: ../../godmode/massive/massive_delete_action_alerts.php:247 #: ../../godmode/massive/massive_delete_modules.php:556 @@ -18103,7 +18269,7 @@ msgstr "Afficher les modules communs" #: ../../godmode/massive/massive_add_action_alerts.php:226 #: ../../godmode/massive/massive_edit_modules.php:529 #: ../../godmode/reporting/reporting_builder.item_editor.php:1924 -#: ../../include/functions_html.php:5948 +#: ../../include/functions_html.php:5972 msgid "Show all modules" msgstr "Afficher tous les modules" @@ -18135,7 +18301,7 @@ msgstr "Opérations massives" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 #: ../../godmode/snmpconsole/snmp_alert.php:41 #: ../../include/class/SnmpConsole.class.php:315 -#: ../../include/class/SnmpConsole.class.php:1379 +#: ../../include/class/SnmpConsole.class.php:1381 msgid "Cold start (0)" msgstr "Démarrage zéro (0)" @@ -18143,7 +18309,7 @@ msgstr "Démarrage zéro (0)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 #: ../../godmode/snmpconsole/snmp_alert.php:42 #: ../../include/class/SnmpConsole.class.php:316 -#: ../../include/class/SnmpConsole.class.php:1383 +#: ../../include/class/SnmpConsole.class.php:1385 msgid "Warm start (1)" msgstr "Démarrage (1)" @@ -18151,7 +18317,7 @@ msgstr "Démarrage (1)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 #: ../../godmode/snmpconsole/snmp_alert.php:43 #: ../../include/class/SnmpConsole.class.php:317 -#: ../../include/class/SnmpConsole.class.php:1387 +#: ../../include/class/SnmpConsole.class.php:1389 msgid "Link down (2)" msgstr "Lien interrompu (2)" @@ -18159,7 +18325,7 @@ msgstr "Lien interrompu (2)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 #: ../../godmode/snmpconsole/snmp_alert.php:44 #: ../../include/class/SnmpConsole.class.php:318 -#: ../../include/class/SnmpConsole.class.php:1391 +#: ../../include/class/SnmpConsole.class.php:1393 msgid "Link up (3)" msgstr "Lien actif (3)" @@ -18167,7 +18333,7 @@ msgstr "Lien actif (3)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 #: ../../godmode/snmpconsole/snmp_alert.php:45 #: ../../include/class/SnmpConsole.class.php:319 -#: ../../include/class/SnmpConsole.class.php:1395 +#: ../../include/class/SnmpConsole.class.php:1397 msgid "Authentication failure (4)" msgstr "Erreur d'authentification (4)" @@ -18177,14 +18343,15 @@ msgstr "Erreur d'authentification (4)" #: ../../enterprise/godmode/setup/setup_acl.php:534 #: ../../enterprise/include/class/Aws.cloud.php:347 #: ../../extensions/api_checker.php:303 -#: ../../godmode/groups/configure_group.php:249 +#: ../../godmode/groups/configure_group.php:268 +#: ../../godmode/users/configure_user.php:65 #: ../../godmode/users/user_management.php:44 #: ../../godmode/snmpconsole/snmp_alert.php:46 #: ../../godmode/massive/massive_edit_users.php:279 -#: ../../include/functions_graph.php:3543 +#: ../../include/auth/mysql.php:813 ../../include/functions_graph.php:3553 #: ../../include/class/SnmpConsole.class.php:320 -#: ../../include/class/SnmpConsole.class.php:1372 -#: ../../include/class/SnmpConsole.class.php:1399 +#: ../../include/class/SnmpConsole.class.php:1374 +#: ../../include/class/SnmpConsole.class.php:1401 #: ../../operation/users/user_edit.php:474 #: ../../operation/gis_maps/render_view.php:168 msgid "Other" @@ -18203,12 +18370,12 @@ msgid "Unsuccessfully deleted alerts (%s / %s)" msgstr "Erreur de suppression des alertes (%s / %s)" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:237 msgid "You must select a SNMP alert" msgstr "Sélectionnez une alerte SNMP" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:263 msgid "" "Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single " "value, each Custom OIDs/Datas." @@ -18217,8 +18384,8 @@ msgstr "" "(IP), Valeur unique, chaque OID personnalisés/Données." #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:267 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:310 #: ../../godmode/snmpconsole/snmp_alert.php:863 #: ../../godmode/snmpconsole/snmp_alert.php:1757 #: ../../include/functions_snmp.php:433 @@ -18231,30 +18398,34 @@ msgid "SNMP Alerts to be deleted" msgstr "Alertes SNMP à supprimer" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:295 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:410 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:414 msgid "No snmp alert found." msgstr "Aucune alerte snmp trouvée." -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216 #, php-format msgid "Successfully updated alerts (%s / %s)" msgstr "Alertes (%s / %s) mises à jour correctement" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:224 #, php-format msgid "Unsuccessfully updated alerts (%s / %s)" msgstr "Erreur de mise à jour des alertes (%s / %s)" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +msgid "At least one parameter must be modified" +msgstr "Modifiez au moins un paramètre" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:282 msgid "SNMP Alerts to be edit" msgstr "Alertes SNMP à modifier" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:306 #: ../../godmode/snmpconsole/snmp_alert.php:783 msgid "Custom Value/OID" msgstr "Valeur/OID personnalisée" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:308 #: ../../godmode/snmpconsole/snmp_trap_generator.php:138 #: ../../godmode/snmpconsole/snmp_alert.php:814 #: ../../godmode/snmpconsole/snmp_alert.php:1896 @@ -18262,38 +18433,38 @@ msgstr "Valeur/OID personnalisée" msgid "SNMP Agent" msgstr "Agent SNMP" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:312 #: ../../godmode/snmpconsole/snmp_alert.php:884 msgid "Single value" msgstr "Valeur unique" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:314 #: ../../godmode/snmpconsole/snmp_alert.php:1537 #: ../../godmode/alerts/configure_alert_template.php:744 msgid "Min. number of alerts" msgstr "Nombre minimum d'alertes" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:316 #: ../../godmode/snmpconsole/snmp_alert.php:1554 #: ../../godmode/alerts/configure_alert_template.php:784 msgid "Max. number of alerts" msgstr "Nombre maximum d'alertes" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:331 #: ../../godmode/snmpconsole/snmp_alert.php:1583 msgid "Other value" msgstr "Autre valeur" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:337 #: ../../godmode/snmpconsole/snmp_alert.php:1651 #: ../../godmode/snmpconsole/snmp_alert.php:1891 #: ../../godmode/reporting/reporting_builder.list_items.php:373 -#: ../../godmode/reporting/reporting_builder.list_items.php:717 -#: ../../godmode/reporting/graph_builder.graph_editor.php:331 +#: ../../godmode/reporting/reporting_builder.list_items.php:718 +#: ../../godmode/reporting/graph_builder.graph_editor.php:244 #: ../../godmode/reporting/visual_console_builder.elements.php:123 -#: ../../include/functions_visual_map_editor.php:920 +#: ../../include/functions_visual_map_editor.php:968 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 -#: ../../include/rest-api/models/VisualConsole/Item.php:2024 +#: ../../include/rest-api/models/VisualConsole/Item.php:2027 msgid "Position" msgstr "Position" @@ -18305,16 +18476,16 @@ msgstr "Modules non utilisés" msgid "Modules used" msgstr "Modules utilisés" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90 msgid "Success: remove the alerts." msgstr "Alertes supprimées correctement" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90 msgid "Failed: remove the alerts for this modules, please check." msgstr "" "Erreur de suppression des alertes pour ces modules. Veuillez les vérifier." -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:143 msgid "Modules agents in policy" msgstr "Modules des agents dans la politique" @@ -18325,23 +18496,25 @@ msgstr "Dynamique min." #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:270 -#: ../../godmode/modules/manage_network_components_form_network.php:82 -#: ../../godmode/agentes/module_manager_editor_network.php:196 +#: ../../godmode/modules/manage_network_components_form_network.php:85 +#: ../../godmode/agentes/module_manager_editor_network.php:197 +#: ../../godmode/massive/massive_edit_modules.php:811 #: ../../include/class/CredentialStore.class.php:1094 -#: ../../include/class/CredentialStore.class.php:1369 +#: ../../include/class/CredentialStore.class.php:1378 #: ../../include/class/AgentWizard.class.php:796 msgid "SNMP community" msgstr "Communauté SNMP" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742 -#: ../../godmode/agentes/module_manager_editor_network.php:198 +#: ../../godmode/agentes/module_manager_editor_network.php:199 #: ../../godmode/massive/massive_edit_modules.php:821 msgid "SNMP OID" msgstr "OID SNMP" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757 +#: ../../godmode/modules/manage_network_components_form_network.php:53 #: ../../godmode/agentes/module_manager_editor_wmi.php:97 -#: ../../godmode/agentes/module_manager_editor_network.php:81 +#: ../../godmode/agentes/module_manager_editor_network.php:82 #: ../../godmode/massive/massive_edit_modules.php:836 #: ../../include/class/AgentWizard.class.php:633 #: ../../include/functions_snmp_browser.php:709 @@ -18351,55 +18524,55 @@ msgstr "Adresse IP cible" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:990 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:288 -#: ../../godmode/modules/manage_network_components_form_network.php:55 -#: ../../godmode/agentes/module_manager_editor_network.php:197 +#: ../../godmode/modules/manage_network_components_form_network.php:66 +#: ../../godmode/agentes/module_manager_editor_network.php:198 #: ../../godmode/massive/massive_edit_modules.php:854 -#: ../../godmode/wizards/HostDevices.class.php:1220 +#: ../../godmode/wizards/HostDevices.class.php:1216 #: ../../include/class/CredentialStore.class.php:1106 -#: ../../include/class/CredentialStore.class.php:1382 +#: ../../include/class/CredentialStore.class.php:1391 #: ../../include/class/AgentWizard.class.php:818 msgid "SNMP version" msgstr "Version SNMP" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:322 -#: ../../godmode/modules/manage_network_components_form_network.php:96 -#: ../../godmode/agentes/module_manager_editor_network.php:377 +#: ../../godmode/modules/manage_network_components_form_network.php:127 +#: ../../godmode/agentes/module_manager_editor_network.php:378 #: ../../godmode/massive/massive_edit_modules.php:867 -#: ../../godmode/wizards/HostDevices.class.php:1298 +#: ../../godmode/wizards/HostDevices.class.php:1294 #: ../../include/functions_snmp_browser.php:839 msgid "Auth user" msgstr "Utilisateur de l'authentification" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:338 -#: ../../godmode/modules/manage_network_components_form_network.php:105 -#: ../../godmode/agentes/module_manager_editor_network.php:390 +#: ../../godmode/modules/manage_network_components_form_network.php:107 +#: ../../godmode/agentes/module_manager_editor_network.php:391 #: ../../godmode/massive/massive_edit_modules.php:876 -#: ../../godmode/wizards/HostDevices.class.php:1340 +#: ../../godmode/wizards/HostDevices.class.php:1336 #: ../../include/functions_snmp_browser.php:851 msgid "Auth password" msgstr "Authentification de mot de passe" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 -#: ../../godmode/agentes/module_manager_editor_network.php:390 -#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/agentes/module_manager_editor_network.php:391 +#: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:876 #: ../../godmode/massive/massive_edit_modules.php:880 -#: ../../godmode/wizards/HostDevices.class.php:1342 -#: ../../godmode/wizards/HostDevices.class.php:1373 +#: ../../godmode/wizards/HostDevices.class.php:1338 +#: ../../godmode/wizards/HostDevices.class.php:1369 msgid "The pass length must be eight character minimum." msgstr "La longueur minimale du mot de passe est de huit caractères." #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360 -#: ../../godmode/modules/manage_network_components_form_network.php:123 -#: ../../godmode/agentes/module_manager_editor_network.php:410 +#: ../../godmode/modules/manage_network_components_form_network.php:149 +#: ../../godmode/agentes/module_manager_editor_network.php:413 #: ../../godmode/massive/massive_edit_modules.php:878 -#: ../../godmode/wizards/HostDevices.class.php:1356 +#: ../../godmode/wizards/HostDevices.class.php:1352 #: ../../include/class/CredentialStore.class.php:1196 -#: ../../include/class/CredentialStore.class.php:1489 +#: ../../include/class/CredentialStore.class.php:1498 #: ../../include/class/AgentWizard.class.php:954 #: ../../include/functions_snmp_browser.php:870 msgid "Privacy method" @@ -18407,24 +18580,24 @@ msgstr "Méthode de confidentialité" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363 -#: ../../godmode/modules/manage_network_components_form_network.php:126 -#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/modules/manage_network_components_form_network.php:152 +#: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:879 -#: ../../godmode/wizards/HostDevices.class.php:1361 +#: ../../godmode/wizards/HostDevices.class.php:1357 #: ../../include/class/CredentialStore.class.php:1205 -#: ../../include/class/CredentialStore.class.php:1498 +#: ../../include/class/CredentialStore.class.php:1507 #: ../../include/functions_snmp_browser.php:873 msgid "DES" msgstr "DES" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364 -#: ../../godmode/modules/manage_network_components_form_network.php:127 -#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/modules/manage_network_components_form_network.php:153 +#: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:879 -#: ../../godmode/wizards/HostDevices.class.php:1362 +#: ../../godmode/wizards/HostDevices.class.php:1358 #: ../../include/class/CredentialStore.class.php:1204 -#: ../../include/class/CredentialStore.class.php:1496 +#: ../../include/class/CredentialStore.class.php:1505 #: ../../include/functions_snmp_browser.php:874 msgid "AES" msgstr "AES" @@ -18432,11 +18605,11 @@ msgstr "AES" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:379 #: ../../godmode/modules/manage_network_components_form_network.php:136 -#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:880 -#: ../../godmode/wizards/HostDevices.class.php:1371 +#: ../../godmode/wizards/HostDevices.class.php:1367 #: ../../include/class/CredentialStore.class.php:1213 -#: ../../include/class/CredentialStore.class.php:1510 +#: ../../include/class/CredentialStore.class.php:1519 #: ../../include/class/AgentWizard.class.php:968 #: ../../include/functions_snmp_browser.php:886 msgid "Privacy pass" @@ -18444,47 +18617,47 @@ msgstr "Mot de passe privé" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:396 -#: ../../godmode/modules/manage_network_components_form_network.php:148 -#: ../../godmode/agentes/module_manager_editor_network.php:432 +#: ../../godmode/modules/manage_network_components_form_network.php:180 +#: ../../godmode/agentes/module_manager_editor_network.php:437 #: ../../godmode/massive/massive_edit_modules.php:882 -#: ../../godmode/wizards/HostDevices.class.php:1325 +#: ../../godmode/wizards/HostDevices.class.php:1321 #: ../../include/functions_snmp_browser.php:898 msgid "Auth method" msgstr "Méthode d'authentification" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:399 -#: ../../godmode/modules/manage_network_components_form_network.php:151 -#: ../../godmode/agentes/module_manager_editor_network.php:435 +#: ../../godmode/modules/manage_network_components_form_network.php:183 +#: ../../godmode/agentes/module_manager_editor_network.php:440 #: ../../godmode/massive/massive_edit_modules.php:883 -#: ../../godmode/wizards/HostDevices.class.php:1330 -#: ../../include/class/Diagnostics.class.php:2203 +#: ../../godmode/wizards/HostDevices.class.php:1326 +#: ../../include/class/Diagnostics.class.php:2207 #: ../../include/class/CredentialStore.class.php:1170 -#: ../../include/class/CredentialStore.class.php:1462 +#: ../../include/class/CredentialStore.class.php:1471 #: ../../include/functions_snmp_browser.php:901 msgid "MD5" msgstr "MD5" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:400 -#: ../../godmode/modules/manage_network_components_form_network.php:152 -#: ../../godmode/agentes/module_manager_editor_network.php:436 +#: ../../godmode/modules/manage_network_components_form_network.php:184 +#: ../../godmode/agentes/module_manager_editor_network.php:441 #: ../../godmode/massive/massive_edit_modules.php:883 -#: ../../godmode/wizards/HostDevices.class.php:1331 +#: ../../godmode/wizards/HostDevices.class.php:1327 #: ../../include/class/CredentialStore.class.php:1171 -#: ../../include/class/CredentialStore.class.php:1464 +#: ../../include/class/CredentialStore.class.php:1473 #: ../../include/functions_snmp_browser.php:902 msgid "SHA" msgstr "SHA" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:415 -#: ../../godmode/modules/manage_network_components_form_network.php:161 -#: ../../godmode/agentes/module_manager_editor_network.php:449 +#: ../../godmode/modules/manage_network_components_form_network.php:162 +#: ../../godmode/agentes/module_manager_editor_network.php:454 #: ../../godmode/massive/massive_edit_modules.php:884 -#: ../../godmode/wizards/HostDevices.class.php:1309 +#: ../../godmode/wizards/HostDevices.class.php:1305 #: ../../include/class/CredentialStore.class.php:1125 -#: ../../include/class/CredentialStore.class.php:1414 +#: ../../include/class/CredentialStore.class.php:1423 #: ../../include/class/AgentWizard.class.php:895 #: ../../include/functions_snmp_browser.php:914 msgid "Security level" @@ -18492,30 +18665,30 @@ msgstr "Niveau de sécurité" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:418 -#: ../../godmode/modules/manage_network_components_form_network.php:164 -#: ../../godmode/agentes/module_manager_editor_network.php:452 +#: ../../godmode/modules/manage_network_components_form_network.php:165 +#: ../../godmode/agentes/module_manager_editor_network.php:457 #: ../../godmode/massive/massive_edit_modules.php:887 -#: ../../godmode/wizards/HostDevices.class.php:1314 +#: ../../godmode/wizards/HostDevices.class.php:1310 #: ../../include/functions_snmp_browser.php:917 msgid "Not auth and not privacy method" msgstr "Méthode sans authentification ni confidentialité" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:419 -#: ../../godmode/modules/manage_network_components_form_network.php:165 -#: ../../godmode/agentes/module_manager_editor_network.php:453 +#: ../../godmode/modules/manage_network_components_form_network.php:166 +#: ../../godmode/agentes/module_manager_editor_network.php:458 #: ../../godmode/massive/massive_edit_modules.php:888 -#: ../../godmode/wizards/HostDevices.class.php:1315 +#: ../../godmode/wizards/HostDevices.class.php:1311 #: ../../include/functions_snmp_browser.php:918 msgid "Auth and not privacy method" msgstr "Méthode avec authentification et sans confidentialité" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:420 -#: ../../godmode/modules/manage_network_components_form_network.php:166 -#: ../../godmode/agentes/module_manager_editor_network.php:454 +#: ../../godmode/modules/manage_network_components_form_network.php:167 +#: ../../godmode/agentes/module_manager_editor_network.php:459 #: ../../godmode/massive/massive_edit_modules.php:889 -#: ../../godmode/wizards/HostDevices.class.php:1316 +#: ../../godmode/wizards/HostDevices.class.php:1312 #: ../../include/functions_snmp_browser.php:919 msgid "Auth and privacy method" msgstr "Méthode avec authentification et méthode de confidentialité" @@ -18523,13 +18696,13 @@ msgstr "Méthode avec authentification et méthode de confidentialité" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835 #: ../../enterprise/operation/agentes/tag_view.php:157 #: ../../godmode/agentes/module_manager_editor_common.php:301 -#: ../../godmode/agentes/module_manager_editor_common.php:974 +#: ../../godmode/agentes/module_manager_editor_common.php:984 #: ../../godmode/massive/massive_edit_modules.php:907 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3928 -#: ../../include/ajax/heatmap.ajax.php:199 ../../include/functions_graph.php:5035 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3937 +#: ../../include/ajax/heatmap.ajax.php:228 ../../include/functions_graph.php:5045 #: ../../include/functions_treeview.php:115 #: ../../include/lib/Dashboard/Widgets/heatmap.php:334 -#: ../../operation/heatmap.php:103 ../../operation/agentes/status_monitor.php:573 +#: ../../operation/heatmap.php:103 ../../operation/agentes/status_monitor.php:572 msgid "Not assigned" msgstr "Non assigné" @@ -18539,15 +18712,15 @@ msgstr "Non assigné" #: ../../godmode/modules/manage_network_components_form_wmi.php:47 #: ../../godmode/agentes/module_manager_editor_wmi.php:128 #: ../../godmode/massive/massive_edit_modules.php:921 -#: ../../include/functions_ui.php:7468 +#: ../../include/functions_ui.php:7545 #: ../../include/class/CredentialStore.class.php:973 -#: ../../include/class/CredentialStore.class.php:1345 +#: ../../include/class/CredentialStore.class.php:1351 #: ../../include/class/AgentWizard.class.php:677 msgid "Username" msgstr "Nom d'utilisateur" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855 -#: ../../godmode/agentes/module_manager_editor_common.php:1355 +#: ../../godmode/agentes/module_manager_editor_common.php:1365 #: ../../godmode/massive/massive_edit_modules.php:927 msgid "Export target" msgstr "Exporter cible" @@ -18579,16 +18752,16 @@ msgid "Linked" msgstr "Associé" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../godmode/agentes/module_manager.php:844 -#: ../../godmode/agentes/module_manager.php:847 +#: ../../godmode/agentes/module_manager.php:854 +#: ../../godmode/agentes/module_manager.php:857 #: ../../godmode/massive/massive_edit_modules.php:1082 -#: ../../include/ajax/module.php:1072 ../../include/ajax/module.php:1075 +#: ../../include/ajax/module.php:1095 ../../include/ajax/module.php:1098 msgid "Unlinked" msgstr "Dissociés" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000 #: ../../godmode/modules/manage_network_components_form_common.php:326 -#: ../../godmode/agentes/module_manager_editor_common.php:1385 +#: ../../godmode/agentes/module_manager_editor_common.php:1395 #: ../../godmode/massive/massive_edit_modules.php:1091 msgid "Discard unknown events" msgstr "Supprimer événements inconnus" @@ -18601,7 +18774,7 @@ msgstr "" "arrêtés" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044 -#: ../../godmode/agentes/module_manager_editor_common.php:1409 +#: ../../godmode/agentes/module_manager_editor_common.php:1419 #: ../../godmode/massive/massive_edit_modules.php:1137 msgid "Timeout" msgstr "Interruption de session" @@ -18612,15 +18785,15 @@ msgid "Seconds that agent will wait for the execution of the module." msgstr "Secondes que l'agent attend pour l'exécution du module." #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070 -#: ../../godmode/modules/manage_network_components_form_network.php:209 -#: ../../godmode/agentes/module_manager_editor_network.php:322 +#: ../../godmode/modules/manage_network_components_form_network.php:227 +#: ../../godmode/agentes/module_manager_editor_network.php:323 #: ../../godmode/massive/massive_edit_modules.php:1163 msgid "TCP send" msgstr "Envoyer TCP" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073 -#: ../../godmode/modules/manage_network_components_form_network.php:216 -#: ../../godmode/agentes/module_manager_editor_network.php:323 +#: ../../godmode/modules/manage_network_components_form_network.php:234 +#: ../../godmode/agentes/module_manager_editor_network.php:324 #: ../../godmode/massive/massive_edit_modules.php:1166 msgid "TCP receive" msgstr "Recevoir TCP" @@ -18652,13 +18825,13 @@ msgstr "Nombre de champs" #: ../../godmode/agentes/module_manager_editor_plugin.php:49 #: ../../godmode/massive/massive_edit_plugins.php:346 #: ../../godmode/massive/massive_edit_modules.php:1178 -#: ../../godmode/servers/plugin_registration.php:513 +#: ../../godmode/servers/plugin_registration.php:509 msgid "Plugin" msgstr "Plugin" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103 -#: ../../godmode/modules/manage_network_components_form_network.php:223 -#: ../../godmode/agentes/module_manager_editor_network.php:474 +#: ../../godmode/modules/manage_network_components_form_network.php:241 +#: ../../godmode/agentes/module_manager_editor_network.php:479 #: ../../godmode/massive/massive_edit_plugins.php:480 #: ../../godmode/massive/massive_edit_modules.php:1196 #: ../../godmode/alerts/configure_alert_command.php:266 @@ -18667,7 +18840,7 @@ msgstr "Plugin" #: ../../godmode/alerts/configure_alert_action.php:271 #: ../../godmode/events/event_responses.editor.php:230 #: ../../godmode/events/event_responses.editor.php:255 -#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:994 +#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:986 #: ../../include/class/ManageNetScanScripts.class.php:434 #: ../../include/class/ExternalTools.class.php:382 msgid "Command" @@ -18675,33 +18848,33 @@ msgstr "Commande" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120 #: ../../enterprise/include/class/DeploymentCenter.class.php:1429 -#: ../../godmode/modules/manage_network_components_form_network.php:242 -#: ../../godmode/agentes/module_manager_editor_network.php:501 +#: ../../godmode/modules/manage_network_components_form_network.php:260 +#: ../../godmode/agentes/module_manager_editor_network.php:506 #: ../../godmode/massive/massive_edit_modules.php:1213 msgid "Credential identifier" msgstr "Identifiant des idéntifiants" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135 -#: ../../godmode/modules/manage_network_components_form_network.php:258 -#: ../../godmode/agentes/module_manager_editor_network.php:534 +#: ../../godmode/modules/manage_network_components_form_network.php:276 +#: ../../godmode/agentes/module_manager_editor_network.php:539 #: ../../godmode/massive/massive_edit_modules.php:1228 msgid "Inherited" msgstr "Hérité" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136 -#: ../../godmode/modules/manage_network_components_form_network.php:259 +#: ../../godmode/modules/manage_network_components_form_network.php:277 #: ../../godmode/massive/massive_edit_modules.php:1229 msgid "Linux" msgstr "Linux" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137 -#: ../../godmode/modules/manage_network_components_form_network.php:260 +#: ../../godmode/modules/manage_network_components_form_network.php:278 #: ../../godmode/massive/massive_edit_modules.php:1230 msgid "Windows" msgstr "Windows" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140 -#: ../../godmode/modules/manage_network_components_form_network.php:263 +#: ../../godmode/modules/manage_network_components_form_network.php:281 #: ../../godmode/massive/massive_edit_modules.php:1233 msgid "Target OS" msgstr "Système d’exploitation cible" @@ -18726,11 +18899,11 @@ msgstr "Contrôle de sécurité correct" msgid "Security check is fail." msgstr "Problème de contrôle de sécurité" -#: ../../enterprise/godmode/admin_access_logs.php:213 +#: ../../enterprise/godmode/admin_access_logs.php:216 msgid "Extended info:" msgstr "Information supplémentaire :" -#: ../../enterprise/godmode/admin_access_logs.php:221 +#: ../../enterprise/godmode/admin_access_logs.php:224 msgid "Changes:" msgstr "Changements :" @@ -18741,7 +18914,7 @@ msgstr "ACL de groupe" #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:237 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:414 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2584 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2723 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2732 msgid "Condition" msgstr "Condition" @@ -18780,11 +18953,11 @@ msgstr "Nom de l’alerte" #: ../../enterprise/operation/agentes/policy_view.php:262 #: ../../godmode/snmpconsole/snmp_alert.php:1912 #: ../../godmode/alerts/alert_view.php:105 -#: ../../include/functions_reporting_html.php:5494 +#: ../../include/functions_reporting_html.php:5522 #: ../../include/ajax/alert_list.ajax.php:295 #: ../../include/ajax/alert_list.ajax.php:320 -#: ../../include/functions_treeview.php:442 -#: ../../include/class/AgentsAlerts.class.php:912 +#: ../../include/functions_treeview.php:446 +#: ../../include/class/AgentsAlerts.class.php:913 msgid "Last fired" msgstr "Déclenchée pour la dernière fois" @@ -18793,9 +18966,9 @@ msgstr "Déclenchée pour la dernière fois" #: ../../enterprise/operation/agentes/policy_view.php:349 #: ../../godmode/alerts/alert_list.list.php:648 #: ../../godmode/alerts/alert_view.php:114 ../../mobile/operation/alerts.php:327 -#: ../../include/functions_ui.php:1420 -#: ../../include/class/AgentsAlerts.class.php:959 -#: ../../include/functions_reporting.php:13152 +#: ../../include/functions_ui.php:1463 +#: ../../include/class/AgentsAlerts.class.php:960 +#: ../../include/functions_reporting.php:13225 msgid "Alert disabled" msgstr "Alerte désactivée" @@ -18831,26 +19004,26 @@ msgstr "Générateur d’alertes d’inventaire" #: ../../enterprise/godmode/alerts/alert_inventory.php:92 #: ../../godmode/agentes/planned_downtime.editor.php:58 -#: ../../godmode/alerts/alert_list.php:517 ../../include/functions_html.php:1933 -#: ../../include/functions_html.php:1934 ../../include/functions_html.php:2044 -#: ../../include/functions_html.php:2045 ../../include/functions_html.php:2227 -#: ../../include/functions_html.php:2228 ../../include/functions_html.php:6713 -#: ../../include/functions_html.php:6714 +#: ../../godmode/alerts/alert_list.php:517 ../../include/functions_html.php:1944 +#: ../../include/functions_html.php:1945 ../../include/functions_html.php:2055 +#: ../../include/functions_html.php:2056 ../../include/functions_html.php:2235 +#: ../../include/functions_html.php:2236 ../../include/functions_html.php:6741 +#: ../../include/functions_html.php:6742 #: ../../include/class/SnmpConsole.class.php:196 #: ../../operation/snmpconsole/snmp_statistics.php:67 -#: ../../operation/events/events.php:1592 +#: ../../operation/events/events.php:1646 msgid "List" msgstr "Liste" #: ../../enterprise/godmode/alerts/alert_inventory.php:111 -#: ../../godmode/reporting/visual_console_builder.php:835 +#: ../../godmode/reporting/visual_console_builder.php:843 #: ../../operation/visual_console/legacy_view.php:179 msgid "Builder" msgstr "Outil de conception" #: ../../enterprise/godmode/services/services.massive.meta.php:54 #: ../../enterprise/godmode/services/services.massive.elements.php:106 -#: ../../godmode/massive/massive_edit_agents.php:985 +#: ../../godmode/massive/massive_edit_agents.php:1002 msgid "Not available" msgstr "Non disponible" @@ -18954,7 +19127,7 @@ msgstr "Modifier des éléments" #: ../../enterprise/godmode/services/services.service.php:495 #: ../../enterprise/godmode/services/services.elements.php:894 #: ../../enterprise/operation/services/services.php:193 -#: ../../godmode/reporting/reporting_builder.list_items.php:816 +#: ../../godmode/reporting/reporting_builder.list_items.php:817 msgid "Delete items" msgstr "Supprimer les éléments" @@ -19009,7 +19182,7 @@ msgstr "Agent pour stocker des données" #: ../../enterprise/tools/ipam/ipam_list.php:779 #: ../../godmode/wizards/HostDevices.class.php:808 #: ../../godmode/wizards/DiscoveryTaskList.class.php:717 -#: ../../include/class/CustomNetScan.class.php:535 +#: ../../include/class/CustomNetScan.class.php:537 msgid "Manual" msgstr "Manuel" @@ -19104,61 +19277,6 @@ msgstr "Alerte de service inconnue" msgid "S.L.A. critical service alert" msgstr "Alerte de service critique S.L.A." -#: ../../enterprise/godmode/services/services.service.php:1025 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608 -#: ../../enterprise/include/functions_reporting_csv.php:1589 -#: ../../enterprise/include/functions_reporting_csv.php:1635 -#: ../../enterprise/include/functions_reporting_csv.php:1953 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1704 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1756 -#: ../../enterprise/include/class/DatabaseHA.class.php:390 -#: ../../enterprise/include/class/DatabaseHA.class.php:625 -#: ../../enterprise/include/class/DatabaseHA.class.php:727 -#: ../../enterprise/include/class/AgentRepository.class.php:1000 -#: ../../enterprise/include/class/LogSource.class.php:823 -#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142 -#: ../../enterprise/include/class/ManageBackups.class.php:298 -#: ../../enterprise/include/class/ManageBackups.class.php:454 -#: ../../enterprise/include/class/NewDatabaseHA.class.php:182 -#: ../../enterprise/include/class/NewDatabaseHA.class.php:225 -#: ../../enterprise/include/functions_reporting.php:1876 -#: ../../enterprise/include/functions_reporting.php:2949 -#: ../../enterprise/include/functions_reporting.php:3206 -#: ../../enterprise/include/functions_reporting.php:3939 -#: ../../enterprise/include/functions_reporting.php:4208 -#: ../../enterprise/include/functions_reporting.php:4854 -#: ../../enterprise/include/functions_reporting.php:6176 -#: ../../enterprise/include/functions_reporting.php:6214 -#: ../../enterprise/include/functions_services.php:2091 -#: ../../enterprise/include/functions_ux_console.php:483 -#: ../../enterprise/operation/agentes/ux_console_view.php:186 -#: ../../enterprise/operation/agentes/ux_console_view.php:391 -#: ../../enterprise/operation/agentes/wux_console_view.php:407 -#: ../../extensions/module_groups.php:53 -#: ../../godmode/massive/massive_operations.php:415 -#: ../../godmode/setup/setup_general.php:1018 -#: ../../godmode/setup/setup_general.php:1036 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2734 -#: ../../include/functions_reporting_html.php:667 -#: ../../include/functions_reporting_html.php:862 -#: ../../include/functions_reporting_html.php:3569 -#: ../../include/functions_reporting_html.php:4866 -#: ../../include/functions_db.php:1974 -#: ../../include/class/ConfigPEN.class.php:674 -#: ../../include/class/ConfigPEN.class.php:698 -#: ../../include/class/SatelliteAgent.class.php:1105 -#: ../../include/class/HelpFeedBack.class.php:370 -#: ../../include/class/CredentialStore.class.php:1646 -#: ../../include/class/ModuleTemplates.class.php:1359 -#: ../../include/class/WelcomeWindow.class.php:173 -#: ../../include/class/AgentWizard.class.php:6233 -#: ../../include/lib/Dashboard/Widgets/maps_status.php:362 -#: ../../operation/agentes/pandora_networkmap.editor.php:745 -#: ../../operation/snmpconsole/snmp_browser.php:639 -msgid "OK" -msgstr "OK" - #: ../../enterprise/godmode/services/services.service.php:1028 msgid "" "This change in the service configuration will delete the history of the " @@ -19184,8 +19302,8 @@ msgstr "Service invalide" #: ../../enterprise/include/functions_reporting.php:3500 #: ../../enterprise/include/functions_reporting.php:4476 #: ../../include/functions_maps.php:50 ../../include/functions_reporting.php:1075 -#: ../../include/functions_reporting.php:9702 -#: ../../operation/agentes/pandora_networkmap.php:789 +#: ../../include/functions_reporting.php:9711 +#: ../../operation/agentes/pandora_networkmap.php:790 msgid "Dynamic" msgstr "Dynamique" @@ -19381,7 +19499,7 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_history.php:416 msgid "" "Automatically create partitions on specific database IDB files (tagente_datos, " -"tagente_datos_string, tevento). Monthly partitions." +"tagente_datos_string). Monthly partitions." msgstr "" "Créez automatiquement des partitions sur des fichiers IDB de base de données " "spécifiques (tagent_données, tagent_données_string, tevent). Partitions " @@ -19602,12 +19720,12 @@ msgid "Yes without changing status" msgstr "Oui sans changer d’état" #: ../../enterprise/godmode/setup/setup.php:81 -#: ../../include/functions_config.php:430 +#: ../../include/functions_config.php:438 msgid "Forward SNMP traps to agent (if exist)" msgstr "Transférer les déroutements SNMP vers l'agent (s'il existe)" #: ../../enterprise/godmode/setup/setup.php:92 -#: ../../include/functions_config.php:434 +#: ../../include/functions_config.php:442 msgid "Use Enterprise ACL System" msgstr "Utiliser le Système ACL Enterprise" @@ -19641,7 +19759,7 @@ msgid "Metaconsole DB password" msgstr "Mot de passe de la BD de la Métaconsole" #: ../../enterprise/godmode/setup/setup.php:210 -#: ../../include/functions_config.php:470 +#: ../../include/functions_config.php:478 msgid "Activate Log Collector" msgstr "Activer le collecteur de journaux" @@ -19766,7 +19884,7 @@ msgid "Port of ElasticSearch server" msgstr "Port du serveur ElasticSearch" #: ../../enterprise/godmode/setup/setup_log_collector.php:77 -#: ../../include/functions_config.php:1629 +#: ../../include/functions_config.php:1641 msgid "Days to purge old information" msgstr "Nombre de jours avant nettoyage d'information ancienne" @@ -19798,21 +19916,21 @@ msgstr "Fonction PHP" #: ../../enterprise/include/functions_tasklist.php:283 #: ../../enterprise/include/functions_tasklist.php:370 #: ../../enterprise/operation/reporting/custom_reporting.php:20 -#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:306 -#: ../../godmode/tag/edit_tag.php:224 ../../include/functions_cron.php:613 +#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:307 +#: ../../godmode/tag/edit_tag.php:228 ../../include/functions_cron.php:613 #: ../../include/functions_cron.php:704 ../../operation/search_users.php:45 msgid "Email" msgstr "Courriel" #: ../../enterprise/godmode/setup/setup_auth.php:194 #: ../../enterprise/godmode/setup/setup_auth.php:549 -#: ../../enterprise/godmode/setup/setup_auth.php:1357 +#: ../../enterprise/godmode/setup/setup_auth.php:1574 msgid "Profiles selected" msgstr "Profils sélectionnés" #: ../../enterprise/godmode/setup/setup_auth.php:195 #: ../../enterprise/godmode/setup/setup_auth.php:550 -#: ../../enterprise/godmode/setup/setup_auth.php:1358 +#: ../../enterprise/godmode/setup/setup_auth.php:1575 msgid "Groups selected" msgstr "Groupes sélectionnés" @@ -19831,15 +19949,15 @@ msgstr "Attributs LDAP" #: ../../enterprise/godmode/setup/setup_auth.php:256 #: ../../enterprise/godmode/setup/setup_auth.php:553 #: ../../enterprise/godmode/setup/setup_auth.php:605 -#: ../../enterprise/godmode/setup/setup_auth.php:1361 -#: ../../enterprise/godmode/setup/setup_auth.php:1415 +#: ../../enterprise/godmode/setup/setup_auth.php:1578 +#: ../../enterprise/godmode/setup/setup_auth.php:1632 #: ../../godmode/setup/snmp_wizard.php:44 msgid "OP" msgstr "OP" #: ../../enterprise/godmode/setup/setup_auth.php:251 #: ../../enterprise/godmode/setup/setup_auth.php:601 -#: ../../enterprise/godmode/setup/setup_auth.php:1411 +#: ../../enterprise/godmode/setup/setup_auth.php:1628 #: ../../enterprise/godmode/setup/setup_acl.php:68 #: ../../godmode/groups/configure_group.php:108 #: ../../godmode/groups/group_list.php:377 @@ -19847,19 +19965,20 @@ msgstr "OP" #: ../../godmode/users/profile_list.php:332 #: ../../godmode/users/configure_profile.php:86 #: ../../godmode/users/user_list.php:297 -#: ../../godmode/users/configure_user.php:276 ../../godmode/menu.php:165 +#: ../../godmode/users/configure_user.php:214 ../../godmode/menu.php:165 msgid "Profiles" msgstr "Profils" #: ../../enterprise/godmode/setup/setup_auth.php:264 #: ../../enterprise/godmode/setup/setup_auth.php:612 -#: ../../enterprise/godmode/setup/setup_auth.php:1422 +#: ../../enterprise/godmode/setup/setup_auth.php:1112 +#: ../../enterprise/godmode/setup/setup_auth.php:1639 msgid "Select profile" msgstr "Sélectionner un profil" #: ../../enterprise/godmode/setup/setup_auth.php:309 #: ../../enterprise/godmode/setup/setup_auth.php:650 -#: ../../enterprise/godmode/setup/setup_auth.php:1465 +#: ../../enterprise/godmode/setup/setup_auth.php:1682 msgid "Add new permissions" msgstr "Ajouter de nouvelles autorisations" @@ -19872,57 +19991,63 @@ msgid "Change timezone visual" msgstr "Modifier la visualisation du fuseau horaire" #: ../../enterprise/godmode/setup/setup_auth.php:478 -#: ../../enterprise/godmode/setup/setup_auth.php:1286 +#: ../../enterprise/godmode/setup/setup_auth.php:1503 msgid "New users will be able to log in to the nodes." msgstr "Les nouveaux utilisateurs pourront se connecter aux nœuds." #: ../../enterprise/godmode/setup/setup_auth.php:552 #: ../../enterprise/godmode/setup/setup_auth.php:604 -#: ../../enterprise/godmode/setup/setup_auth.php:1360 -#: ../../enterprise/godmode/setup/setup_auth.php:1414 +#: ../../enterprise/godmode/setup/setup_auth.php:1577 +#: ../../enterprise/godmode/setup/setup_auth.php:1631 msgid "AD Groups" msgstr "Groupes AD" -#: ../../enterprise/godmode/setup/setup_auth.php:831 -#: ../../enterprise/godmode/setup/setup_auth.php:947 +#: ../../enterprise/godmode/setup/setup_auth.php:661 +msgid "Recursive group search" +msgstr "Recherche de groupe récursive" + +#: ../../enterprise/godmode/setup/setup_auth.php:837 +#: ../../enterprise/godmode/setup/setup_auth.php:956 +#: ../../enterprise/godmode/setup/setup_auth.php:1067 msgid "You must select a profile from the list of profiles." msgstr "Vous devez sélectionner un profil de la liste de profils." -#: ../../enterprise/godmode/setup/setup_auth.php:836 -#: ../../enterprise/godmode/setup/setup_auth.php:952 +#: ../../enterprise/godmode/setup/setup_auth.php:842 +#: ../../enterprise/godmode/setup/setup_auth.php:961 +#: ../../enterprise/godmode/setup/setup_auth.php:1071 msgid "You must select a group from the list of groups." msgstr "Sélectionnez un groupe dans la liste des groupes." -#: ../../enterprise/godmode/setup/setup_auth.php:1112 -#: ../../include/functions_config.php:719 +#: ../../enterprise/godmode/setup/setup_auth.php:1329 +#: ../../include/functions_config.php:731 msgid "MySQL host" msgstr "Hôte MySQL" -#: ../../enterprise/godmode/setup/setup_auth.php:1175 +#: ../../enterprise/godmode/setup/setup_auth.php:1392 msgid "SimpleSAML path" msgstr "Chemin SimpleSAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1176 +#: ../../enterprise/godmode/setup/setup_auth.php:1393 msgid "Directory where your 'simplesamlphp' folder is located." msgstr "Répertoire où se trouve votre dossier 'simplesamlphp'." -#: ../../enterprise/godmode/setup/setup_auth.php:1182 +#: ../../enterprise/godmode/setup/setup_auth.php:1399 msgid "SAML source" msgstr "Source Saml" -#: ../../enterprise/godmode/setup/setup_auth.php:1183 +#: ../../enterprise/godmode/setup/setup_auth.php:1400 msgid "Authsource name, e.g. 'example-userpass'" msgstr "Nom Authsource, par exemple 'example-userpass'" -#: ../../enterprise/godmode/setup/setup_auth.php:1190 +#: ../../enterprise/godmode/setup/setup_auth.php:1407 msgid "SAML user id attribute" msgstr "Attribut d’ID utilisateur SAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1195 +#: ../../enterprise/godmode/setup/setup_auth.php:1412 msgid "SAML mail attribute" msgstr "Attribut de messagerie SAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1196 +#: ../../enterprise/godmode/setup/setup_auth.php:1413 msgid "" "SAML field where search for the user email (while autocreate remote users is " "enabled)" @@ -19930,11 +20055,11 @@ msgstr "" "Champ SAML où rechercher l’e-mail de l’utilisateur (alors que la création " "automatique d’utilisateurs distants est activée)" -#: ../../enterprise/godmode/setup/setup_auth.php:1203 +#: ../../enterprise/godmode/setup/setup_auth.php:1420 msgid "SAML group name attribute" msgstr "Attribut de nom de groupe SAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1204 +#: ../../enterprise/godmode/setup/setup_auth.php:1421 msgid "" "SAML field where search for the group name (while autocreate remote users is " "enabled)" @@ -19942,23 +20067,23 @@ msgstr "" "Champ SAML où rechercher le nom du groupe (alors que la création automatique " "d’utilisateurs distants est activée)" -#: ../../enterprise/godmode/setup/setup_auth.php:1211 +#: ../../enterprise/godmode/setup/setup_auth.php:1428 msgid "Simple attribute / Multivalue attribute" msgstr "Attribut simple / Attribut à valeurs multiples" -#: ../../enterprise/godmode/setup/setup_auth.php:1216 +#: ../../enterprise/godmode/setup/setup_auth.php:1433 msgid "SAML profiles and tag attribute" msgstr "Profils SAML et attribut de l’étiquette" -#: ../../enterprise/godmode/setup/setup_auth.php:1221 +#: ../../enterprise/godmode/setup/setup_auth.php:1438 msgid "Profile attribute" msgstr "Attribut de profil" -#: ../../enterprise/godmode/setup/setup_auth.php:1226 +#: ../../enterprise/godmode/setup/setup_auth.php:1443 msgid "Tag attribute" msgstr "Attribut d’étiquette" -#: ../../enterprise/godmode/setup/setup_auth.php:1231 +#: ../../enterprise/godmode/setup/setup_auth.php:1448 msgid "SAML profile and tags prefix" msgstr "Profil SAML et préfixe des étiquettes" @@ -20036,7 +20161,7 @@ msgstr "Ajouter un élément personnalisé au profil" #: ../../godmode/massive/massive_delete_profiles.php:152 #: ../../godmode/massive/massive_add_profiles.php:202 #: ../../include/functions_profile.php:203 -#: ../../operation/users/user_edit.php:998 +#: ../../operation/users/user_edit.php:995 msgid "Profile name" msgstr "Nom du profil" @@ -20164,10 +20289,12 @@ msgstr "Groupe cible" #: ../../godmode/reporting/create_container.php:746 #: ../../mobile/operation/modules.php:194 ../../mobile/operation/modules.php:195 #: ../../mobile/operation/modules.php:308 ../../mobile/operation/modules.php:309 -#: ../../include/ajax/heatmap.ajax.php:129 -#: ../../include/ajax/heatmap.ajax.php:310 +#: ../../mobile/operation/server_status.php:185 +#: ../../mobile/operation/server_status.php:186 +#: ../../include/ajax/heatmap.ajax.php:158 +#: ../../include/ajax/heatmap.ajax.php:438 #: ../../include/lib/Dashboard/Widgets/heatmap.php:301 -#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:350 +#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:353 msgid "Tag" msgstr "Étiquette" @@ -20187,8 +20314,8 @@ msgstr "Filtrer par étiquette" #: ../../enterprise/godmode/reporting/graph_template_wizard.php:313 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:822 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:824 -#: ../../include/functions_snmp_browser.php:1653 -#: ../../include/functions_snmp_browser.php:1660 +#: ../../include/functions_snmp_browser.php:1662 +#: ../../include/functions_snmp_browser.php:1669 msgid "Select all" msgstr "Tout sélectionner" @@ -20367,15 +20494,18 @@ msgstr "Assistant du modèle" #: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:133 #: ../../enterprise/godmode/reporting/visual_console_template.php:136 #: ../../extensions/resource_exportation.php:459 +#: ../../godmode/users/configure_user.php:59 #: ../../godmode/users/user_management.php:38 #: ../../godmode/massive/massive_edit_users.php:274 -#: ../../godmode/reporting/visual_console_builder.php:869 +#: ../../godmode/reporting/visual_console_builder.php:877 #: ../../godmode/reporting/map_builder.php:133 #: ../../godmode/reporting/visual_console_favorite.php:130 +#: ../../include/auth/mysql.php:807 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:360 #: ../../operation/users/user_edit.php:469 -#: ../../operation/visual_console/view.php:251 ../../operation/menu.php:299 -#: ../../operation/menu.php:306 +#: ../../operation/visual_console/view.php:253 +#: ../../operation/visual_console/legacy_view.php:219 +#: ../../operation/menu.php:299 ../../operation/menu.php:306 msgid "Visual console" msgstr "Console visuelle" @@ -20476,7 +20606,7 @@ msgstr "Éditeur de modèle de graphique" #: ../../enterprise/godmode/reporting/graph_template_editor.php:155 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:61 #: ../../godmode/modules/manage_nc_groups.php:119 -#: ../../godmode/netflow/nf_edit_form.php:119 +#: ../../godmode/netflow/nf_edit_form.php:146 #: ../../godmode/events/event_edit_filter.php:232 msgid "Not updated. Blank name" msgstr "Erreur de mise à jour. Nom en blanc." @@ -20495,8 +20625,9 @@ msgstr "Erreur mise à jour du modèle" #: ../../godmode/reporting/visual_console_builder.wizard.php:173 #: ../../godmode/events/event_responses.editor.php:186 #: ../../include/functions_visual_map_editor.php:97 +#: ../../include/functions_visual_map_editor.php:698 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:475 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:930 #: ../../include/functions_reports.php:1267 msgid "Width" msgstr "Largeur" @@ -20505,18 +20636,18 @@ msgstr "Largeur" #: ../../godmode/setup/gis_step_2.php:399 #: ../../godmode/reporting/visual_console_builder.wizard.php:175 #: ../../godmode/events/event_responses.editor.php:198 -#: ../../include/functions_visual_map_editor.php:672 +#: ../../include/functions_visual_map_editor.php:712 #: ../../include/functions_reports.php:1283 #: ../../include/functions_reports.php:1383 msgid "Height" msgstr "Hauteur" #: ../../enterprise/godmode/reporting/graph_template_editor.php:235 -#: ../../enterprise/operation/log/log_viewer.php:672 +#: ../../enterprise/operation/log/log_viewer.php:670 #: ../../godmode/setup/performance.php:627 #: ../../godmode/reporting/create_container.php:418 #: ../../include/functions.php:2755 ../../include/functions.php:3423 -#: ../../include/ajax/module.php:221 ../../include/ajax/graph.ajax.php:146 +#: ../../include/ajax/module.php:244 ../../include/ajax/graph.ajax.php:146 #: ../../operation/gis_maps/render_view.php:157 msgid "1 hour" msgstr "1 heure" @@ -20531,19 +20662,19 @@ msgid "3 hours" msgstr "3 heures" #: ../../enterprise/godmode/reporting/graph_template_editor.php:238 -#: ../../include/ajax/module.php:222 +#: ../../include/ajax/module.php:245 msgid "6 hours" msgstr "6 heures" #: ../../enterprise/godmode/reporting/graph_template_editor.php:239 -#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:223 +#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:246 msgid "12 hours" msgstr "12 heures" #: ../../enterprise/godmode/reporting/graph_template_editor.php:240 -#: ../../enterprise/operation/log/log_viewer.php:676 +#: ../../enterprise/operation/log/log_viewer.php:674 #: ../../godmode/reporting/create_container.php:422 -#: ../../include/functions.php:2758 ../../include/ajax/module.php:224 +#: ../../include/functions.php:2758 ../../include/ajax/module.php:247 #: ../../include/ajax/graph.ajax.php:150 #: ../../include/class/AuditLog.class.php:211 msgid "1 day" @@ -20564,9 +20695,9 @@ msgid "Last week" msgstr "La semaine dernière" #: ../../enterprise/godmode/reporting/graph_template_editor.php:244 -#: ../../enterprise/operation/log/log_viewer.php:680 +#: ../../enterprise/operation/log/log_viewer.php:678 #: ../../godmode/reporting/create_container.php:426 -#: ../../include/functions.php:2760 ../../include/ajax/module.php:226 +#: ../../include/functions.php:2760 ../../include/ajax/module.php:249 #: ../../include/ajax/graph.ajax.php:154 #: ../../include/class/AuditLog.class.php:213 msgid "15 days" @@ -20582,12 +20713,12 @@ msgid "2 months" msgstr "2 mois" #: ../../enterprise/godmode/reporting/graph_template_editor.php:247 -#: ../../include/ajax/module.php:229 ../../include/class/AuditLog.class.php:216 +#: ../../include/ajax/module.php:252 ../../include/class/AuditLog.class.php:216 msgid "6 months" msgstr "6 mois" #: ../../enterprise/godmode/reporting/graph_template_editor.php:248 -#: ../../include/functions.php:2764 ../../include/ajax/module.php:230 +#: ../../include/functions.php:2764 ../../include/ajax/module.php:253 msgid "1 year" msgstr "1 an" @@ -20617,7 +20748,7 @@ msgstr "1 an" #: ../../godmode/reporting/visual_console_builder.elements.php:123 #: ../../godmode/reporting/visual_console_builder.wizard.php:246 #: ../../godmode/reporting/graph_builder.main.php:189 -#: ../../include/functions_visual_map_editor.php:786 +#: ../../include/functions_visual_map_editor.php:826 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:629 @@ -20650,7 +20781,7 @@ msgstr "Top N" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 #: ../../enterprise/include/functions_reporting_csv.php:950 #: ../../include/functions_reports.php:801 -#: ../../include/functions_reporting.php:3560 +#: ../../include/functions_reporting.php:3569 msgid "Exception" msgstr "Exception" @@ -20699,7 +20830,7 @@ msgstr "Dernière valeur" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1756 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:5074 #: ../../godmode/reporting/reporting_builder.item_editor.php:1419 -#: ../../godmode/reporting/reporting_builder.item_editor.php:7472 +#: ../../godmode/reporting/reporting_builder.item_editor.php:7477 msgid "" "Warning: period 0 reports cannot be used to show information back in time. " "Information contained in this kind of reports will be always reporting the " @@ -20720,13 +20851,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:247 #: ../../enterprise/include/functions_reporting_csv.php:1080 -#: ../../include/functions_reporting_html.php:5009 +#: ../../include/functions_reporting_html.php:5037 msgid "Sum" msgstr "Total" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:259 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:389 -#: ../../include/functions_reporting.php:10584 +#: ../../include/functions_reporting.php:10593 msgid "Rate" msgstr "Taux" @@ -20736,25 +20867,25 @@ msgstr "Taux" #: ../../enterprise/operation/services/services.list.php:764 #: ../../godmode/snmpconsole/snmp_alert.php:2159 #: ../../include/class/ModuleTemplates.class.php:943 -#: ../../operation/events/events.php:2548 +#: ../../operation/events/events.php:2602 msgid "Delete selected" msgstr "Effacer les éléments sélectionnés" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:310 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2368 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2491 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2500 msgid "Group by agent" msgstr "Regrouper par agent" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:322 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2418 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3196 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3205 msgid "Show in the same row" msgstr "Afficher dans la même rangée" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:323 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2420 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3207 msgid "Show one module per row with all its operations" msgstr "Afficher un module par rangée avec toutes ses opérations" @@ -20762,10 +20893,10 @@ msgstr "Afficher un module par rangée avec toutes ses opérations" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2438 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3015 -#: ../../enterprise/operation/log/log_viewer.php:570 +#: ../../enterprise/operation/log/log_viewer.php:568 #: ../../godmode/netflow/nf_item_list.php:173 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2505 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3219 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2514 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3228 #: ../../include/lib/Dashboard/Widgets/top_n.php:267 msgid "Order" msgstr "Ordre" @@ -20775,9 +20906,9 @@ msgstr "Ordre" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2441 -#: ../../enterprise/operation/log/log_viewer.php:566 +#: ../../enterprise/operation/log/log_viewer.php:564 #: ../../godmode/reporting/reporting_builder.item_editor.php:64 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2508 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2517 #: ../../include/lib/Dashboard/Widgets/top_n.php:261 msgid "Ascending" msgstr "Croissant" @@ -20787,9 +20918,9 @@ msgstr "Croissant" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2448 -#: ../../enterprise/operation/log/log_viewer.php:565 +#: ../../enterprise/operation/log/log_viewer.php:563 #: ../../godmode/reporting/reporting_builder.item_editor.php:65 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2515 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2524 #: ../../include/lib/Dashboard/Widgets/top_n.php:262 msgid "Descending" msgstr "Décroissant" @@ -20797,30 +20928,30 @@ msgstr "Décroissant" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:344 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:321 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2455 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2522 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2531 #: ../../include/lib/Dashboard/Widgets/top_n.php:263 msgid "By agent name" msgstr "Par nom d'agent" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:352 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2467 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2534 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2543 #: ../../include/lib/Dashboard/Widgets/top_n.php:249 msgid "Quantity (n)" msgstr "Quantité (n)" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:364 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2482 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2564 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2573 #: ../../include/lib/Dashboard/Widgets/top_n.php:286 -#: ../../operation/agentes/ver_agente.php:1646 +#: ../../operation/agentes/ver_agente.php:1642 msgid "Display" msgstr "Afficher" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:419 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2587 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2727 -#: ../../include/functions_reporting.php:3582 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2736 +#: ../../include/functions_reporting.php:3591 msgid "Everything" msgstr "Tout" @@ -20836,22 +20967,22 @@ msgstr "<" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:427 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2615 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2735 -#: ../../include/functions_reporting_html.php:3582 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2744 +#: ../../include/functions_reporting_html.php:3610 msgid "Not OK" msgstr "Pas OK" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:435 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:445 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2627 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2747 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2756 msgid "Show graph" msgstr "Afficher le graphique" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:447 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:336 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2740 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2857 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2866 msgid "Show resume" msgstr "Afficher le résumé" @@ -20868,7 +20999,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:801 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:465 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3428 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3641 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3650 msgid "Show item in landscape format (only PDF)" msgstr "Afficher l’élément au format paysage (uniquement PDF)" @@ -20876,7 +21007,7 @@ msgstr "Afficher l’élément au format paysage (uniquement PDF)" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:817 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:479 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3437 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3650 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3659 msgid "Page break at the end of the item (only PDF)" msgstr "Saut de page à la fin de l’article (UNIQUEMENT PDF)" @@ -20889,13 +21020,13 @@ msgid "Page orientation" msgstr "Orientation de la page" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:93 -#: ../../include/functions_visual_map_editor.php:841 +#: ../../include/functions_visual_map_editor.php:889 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:386 msgid "Vertical" msgstr "Vertical" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:100 -#: ../../include/functions_visual_map_editor.php:842 +#: ../../include/functions_visual_map_editor.php:890 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:385 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:413 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:510 @@ -20931,20 +21062,20 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:358 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2720 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2837 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2846 msgid "Show address instead module name" msgstr "Afficher adresse au lieu du nom du module" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:359 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2721 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2838 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2847 msgid "Show the main address of agent." msgstr "Afficher l'adresse principale de l'agent" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:428 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2294 #: ../../extensions/dbmanager.php:226 ../../extensions/dbmanager.php:227 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2385 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2394 #: ../../include/functions_reports.php:821 msgid "SQL query" msgstr "Requête SQL" @@ -20952,14 +21083,14 @@ msgstr "Requête SQL" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:452 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:391 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3081 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3275 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3284 msgid "Failover mode" msgstr "Mode de basculement" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:453 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:392 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3082 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3276 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3285 msgid "" "SLA calculation must be performed taking into account the failover modules " "assigned to the primary module" @@ -20970,72 +21101,72 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:470 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:405 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3101 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3295 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3304 msgid "Failover type" msgstr "Type de basculement" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:475 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:409 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3106 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3300 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3309 msgid "Failover normal" msgstr "Basculement normal" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:487 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:421 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3118 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3312 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3321 msgid "Failover simple" msgstr "Basculement simple" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:527 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2512 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2595 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2604 msgid "Graph render" msgstr "Rendu graphique" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:533 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2518 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2601 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2610 msgid "Avg, max & min" msgstr "Moyenne, max & min" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:534 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2519 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2602 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2611 msgid "Max only" msgstr "Max seulement" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:535 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2520 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2603 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2612 msgid "Min only" msgstr "Min seulement" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:536 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2521 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2604 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2613 msgid "Avg only" msgstr "Moy uniquement" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:547 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2688 -#: ../../mobile/operation/module_graph.php:436 -#: ../../operation/agentes/stat_win.php:369 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2697 +#: ../../mobile/operation/module_graph.php:437 +#: ../../operation/agentes/stat_win.php:377 msgid "Time compare (Overlapped)" msgstr "Comparaison de temps (chevauché)" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:563 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2534 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2651 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2660 msgid "Full resolution graph (TIP)" msgstr "Graphique en pleine résolution (TIP)" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:564 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2535 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2652 -#: ../../operation/agentes/stat_win.php:397 -#: ../../operation/agentes/interface_traffic_graph_win.php:242 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2661 +#: ../../operation/agentes/stat_win.php:405 +#: ../../operation/agentes/interface_traffic_graph_win.php:258 msgid "" "TIP mode charts do not support average - maximum - minimum series, you can " "only enable TIP or average, maximum or minimum series" @@ -21046,15 +21177,15 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:580 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2671 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2680 msgid "Show threshold" msgstr "Afficher le seuil" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:594 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2553 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2703 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2712 #: ../../godmode/reporting/graph_builder.main.php:250 -#: ../../include/functions.php:4189 ../../include/functions.php:4197 +#: ../../include/functions.php:4215 ../../include/functions.php:4223 msgid "Percentil" msgstr "Centile" @@ -21069,19 +21200,19 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:609 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2835 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2966 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2975 msgid "Show Summary group" msgstr "Afficher groupe récapitulatif" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:673 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2921 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3052 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3061 msgid "Event Status" msgstr "État de l'événement" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:699 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2948 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3113 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3122 #: ../../operation/agentes/tactical.php:276 msgid "Event graphs" msgstr "Graphiques d'événements" @@ -21120,37 +21251,37 @@ msgstr "Période de projection" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2258 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2412 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2421 msgid "Serialized header" msgstr "En-tête sérialisé" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2259 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2413 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2422 msgid "The separator character is |" msgstr "Le caractère séparateur est |" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2449 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2458 msgid "Field separator" msgstr "Champ séparateur" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2327 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2450 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2459 msgid "Separator for different fields in the serialized text chain" msgstr "Séparateur pour des champs différents dans la chaîne de texte en série" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2347 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2470 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2479 msgid "Line separator" msgstr "Séparateur de ligne" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2348 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2471 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2480 msgid "" "Separator in different lines (composed by fields) of the serialized text chain" msgstr "" @@ -21159,13 +21290,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:834 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3412 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3478 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3487 msgid "Uncompress module" msgstr "Décompresser le module" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:835 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3413 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3479 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3488 msgid "Use uncompressed module data." msgstr "Utiliser des données de module non compressées." @@ -21245,7 +21376,7 @@ msgstr "Inverse SLA" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3016 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3220 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3229 msgid "SLA items sorted by fulfillment value" msgstr "Éléments SLA classés par valeur d'accomplissement" @@ -21257,11 +21388,11 @@ msgstr "Affiche seulement des SLA erronés" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:451 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3134 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3328 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3337 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1439 -#: ../../include/functions_reporting_html.php:4845 -#: ../../include/functions_reporting_html.php:5117 -#: ../../include/functions_reporting_html.php:5273 +#: ../../include/functions_reporting_html.php:4873 +#: ../../include/functions_reporting_html.php:5145 +#: ../../include/functions_reporting_html.php:5301 #: ../../include/functions_netflow.php:1202 #: ../../include/lib/Dashboard/Widgets/tactical.php:299 msgid "Summary" @@ -21293,17 +21424,17 @@ msgstr "Modifier le modèle" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:148 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:215 -#: ../../enterprise/include/functions_reporting.php:8044 -#: ../../enterprise/include/functions_reporting.php:8110 -#: ../../godmode/reporting/reporting_builder.php:3642 +#: ../../enterprise/include/functions_reporting.php:8053 +#: ../../enterprise/include/functions_reporting.php:8119 +#: ../../godmode/reporting/reporting_builder.php:3659 #: ../../operation/reporting/reporting_viewer.php:156 msgid "Item editor" msgstr "Éditeur d'éléments" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:159 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:202 -#: ../../godmode/reporting/reporting_builder.php:3638 -#: ../../include/functions_menu.php:587 +#: ../../godmode/reporting/reporting_builder.php:3655 +#: ../../include/functions_menu.php:591 #: ../../operation/reporting/reporting_viewer.php:147 msgid "List items" msgstr "Liste d'éléments" @@ -21317,9 +21448,9 @@ msgstr "Liste de modèles" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:334 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:361 #: ../../godmode/reporting/reporting_builder.php:561 -#: ../../godmode/reporting/reporting_builder.php:3601 -#: ../../godmode/reporting/reporting_builder.php:3699 -#: ../../godmode/reporting/reporting_builder.php:3727 +#: ../../godmode/reporting/reporting_builder.php:3618 +#: ../../godmode/reporting/reporting_builder.php:3716 +#: ../../godmode/reporting/reporting_builder.php:3744 #: ../../operation/reporting/reporting_viewer.php:222 msgid "Custom reports" msgstr "Rapports personnalisés" @@ -21396,12 +21527,12 @@ msgid "Set start and end date" msgstr "Définir les dates de début et de fin" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:768 -#: ../../include/ajax/module.php:270 ../../operation/agentes/datos_agente.php:198 +#: ../../include/ajax/module.php:293 ../../operation/agentes/datos_agente.php:200 msgid "Timestamp from:" msgstr "Horodatage à partir de :" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:786 -#: ../../include/ajax/module.php:290 ../../operation/agentes/datos_agente.php:204 +#: ../../include/ajax/module.php:313 ../../operation/agentes/datos_agente.php:206 msgid "Timestamp to:" msgstr "Horodatage jusqu'à :" @@ -21444,9 +21575,9 @@ msgstr "Éditeur d’éléments de modèle de graphique" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:181 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244 -#: ../../godmode/reporting/graph_builder.graph_editor.php:215 -#: ../../godmode/reporting/graph_builder.graph_editor.php:389 -#: ../../include/functions.php:4049 +#: ../../godmode/reporting/graph_builder.graph_editor.php:314 +#: ../../godmode/reporting/graph_builder.graph_editor.php:348 +#: ../../include/functions.php:4075 msgid "Weight" msgstr "Poids" @@ -21458,7 +21589,7 @@ msgstr "Poids" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3881 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4319 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4464 -#: ../../enterprise/operation/log/log_viewer.php:540 +#: ../../enterprise/operation/log/log_viewer.php:538 msgid "Exact match" msgstr "Concordance exacte" @@ -21552,18 +21683,18 @@ msgstr "Aucune modification n’a été apportée" #: ../../enterprise/godmode/reporting/mysql_builder.php:244 #: ../../enterprise/include/functions_reporting_csv.php:1134 -#: ../../include/functions_reporting.php:7540 +#: ../../include/functions_reporting.php:7549 msgid "SQL" msgstr "SQL" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1647 -#: ../../godmode/reporting/reporting_builder.php:3749 +#: ../../godmode/reporting/reporting_builder.php:3766 msgid "Successfull action" msgstr "Action réussie" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1648 -#: ../../godmode/servers/modificar_server.php:285 -#: ../../godmode/servers/modificar_server.php:296 +#: ../../godmode/servers/modificar_server.php:307 +#: ../../godmode/servers/modificar_server.php:318 msgid "Unsuccessfull action" msgstr "Action échouée" @@ -21598,13 +21729,13 @@ msgstr "Sélectionner un serveur" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1997 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2016 -#: ../../godmode/reporting/reporting_builder.item_editor.php:204 +#: ../../godmode/reporting/reporting_builder.item_editor.php:205 #: ../../godmode/reporting/reporting_builder.item_editor.php:1264 msgid "Local metaconsole" msgstr "Métaconsole locale" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2075 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1169 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1171 #: ../../include/lib/Dashboard/Widgets/top_n.php:207 msgid "" "Case insensitive regular expression for agent name. For example: Network.* " @@ -21617,7 +21748,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2099 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3707 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3939 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1192 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1194 msgid "" "Case insensitive regular expression or string for module name. For example: if " "you use this field with \"Module exact match\" enabled then this field has to " @@ -21665,31 +21796,31 @@ msgstr "Cochez-le si vous ne souhaitez pas afficher les éléments sans données #: ../../godmode/reporting/create_container.php:571 #: ../../godmode/reporting/create_container.php:600 #: ../../godmode/reporting/create_container.php:741 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2236 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2245 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.elements.php:618 -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map_editor.php:400 +#: ../../include/functions_visual_map_editor.php:391 +#: ../../include/functions_visual_map_editor.php:394 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:615 #: ../../include/functions_reports.php:573 #: ../../include/functions_reports.php:660 #: ../../include/functions_reports.php:666 -#: ../../include/functions_reporting.php:10655 +#: ../../include/functions_reporting.php:10664 msgid "Custom graph" msgstr "Tableau personnalisé" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2241 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2400 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2409 msgid "Max items" msgstr "Nombre d'éléments maximum" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2274 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2365 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2374 msgid "Custom SQL template" msgstr "Modèle de SQL personnalisé" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2295 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2386 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2395 msgid "" "The entities of the fields that contain them must be included. Also is " "possible use macros like `_start_date_` or `_end_date_`." @@ -21703,157 +21834,157 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2473 #: ../../extensions/api_checker.php:365 #: ../../godmode/reporting/reporting_builder.item_editor.php:75 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2432 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2441 #: ../../godmode/events/event_responses.editor.php:229 #: ../../godmode/events/event_responses.editor.php:255 -#: ../../include/functions_reporting_html.php:1616 +#: ../../include/functions_reporting_html.php:1625 #: ../../operation/gis_maps/ajax.php:316 msgid "URL" msgstr "URL" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2320 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2443 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2452 msgid "Protocol must be specified in URL (e.g.: \"https://\")" msgstr "Le protocole doit être spécifié dans l’URL (par exemple: « https:// »)" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2384 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3606 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3615 msgid "Group by" msgstr "Regrouper par" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2499 #: ../../enterprise/include/functions_reporting_csv.php:1080 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2581 -#: ../../include/functions_reporting_html.php:5006 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2590 +#: ../../include/functions_reporting_html.php:5034 #: ../../include/functions_reporting.php:1545 msgid "Avg" msgstr "Moyenne" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2641 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2761 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2770 msgid "Select fields to show" msgstr "Sélectionner les champs à afficher" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2649 #: ../../enterprise/include/functions_reporting_csv.php:501 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2769 -#: ../../include/functions_reporting_html.php:4145 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2778 +#: ../../include/functions_reporting_html.php:4173 msgid "Total time" msgstr "Durée totale" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2657 #: ../../enterprise/include/functions_reporting_csv.php:505 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2777 -#: ../../include/functions_reporting_html.php:4151 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2786 +#: ../../include/functions_reporting_html.php:4179 msgid "Time failed" msgstr "Temps d'échec" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2665 #: ../../enterprise/include/functions_reporting_csv.php:509 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2785 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2794 msgid "Time in OK status" msgstr "Temps en état OK" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2673 #: ../../enterprise/include/functions_reporting_csv.php:513 #: ../../enterprise/include/functions_reporting.php:4990 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2793 -#: ../../include/functions_reporting_html.php:4163 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2802 +#: ../../include/functions_reporting_html.php:4191 msgid "Time in warning status" msgstr "Temps en état d'avertissement" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2681 #: ../../enterprise/include/functions_reporting_csv.php:517 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2801 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2810 msgid "Time in unknown status" msgstr "Temps en état inconnu" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2693 #: ../../enterprise/include/functions_reporting_csv.php:521 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2813 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2822 msgid "Time of not initialized module" msgstr "Temps de module non initialisé" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2705 #: ../../enterprise/include/functions_reporting_csv.php:525 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2825 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2834 msgid "Time of downtime" msgstr "Temps d'arrête" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2759 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2877 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2886 msgid "

Select fields to show

" msgstr "

Sélectionner les champs à afficher

" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2767 #: ../../enterprise/include/functions_reporting_csv.php:533 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2885 -#: ../../include/functions_reporting_html.php:4239 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2894 +#: ../../include/functions_reporting_html.php:4267 msgid "Total checks" msgstr "Vérifications totales" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2775 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2893 -#: ../../include/functions_reporting_html.php:4245 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2902 +#: ../../include/functions_reporting_html.php:4273 msgid "Checks failed" msgstr "Vérifications échouées" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2783 #: ../../enterprise/include/functions_reporting_csv.php:541 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2901 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2910 msgid "Checks in OK status" msgstr "Vérifications en état OK" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2795 #: ../../enterprise/include/functions_reporting_csv.php:545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2925 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2934 msgid "Unknown checks" msgstr "Vérifications inconnues" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2807 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2937 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2946 msgid "

Select fields to show

" msgstr "

Sélectionner les champs à afficher

" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2815 #: ../../enterprise/include/functions_reporting_csv.php:668 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2945 -#: ../../include/functions_reporting_html.php:4560 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2954 +#: ../../include/functions_reporting_html.php:4588 msgid "Agent max value" msgstr "Valeur maximale de l'agent" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2823 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2953 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2962 msgid "Agent min values" msgstr "Valeurs min de l’agent" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2852 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3589 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3598 msgid "Show Summary" msgstr "Voir le sommaire " #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2996 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3177 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3186 msgid "Height (dynamic graphs)" msgstr "Hauteur (graphiques dynamiques)" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3036 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3161 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3170 msgid "Query History Database" msgstr "Base de données de l'historique de requêtes" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3048 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3242 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3251 msgid "Priority mode" msgstr "Mode prioritaire" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3053 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3247 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3256 msgid "Priority ok mode" msgstr "Mode ok de priorité" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3065 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3259 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3268 msgid "Priority unknown mode" msgstr "Mode inconnu de priorité" @@ -21891,22 +22022,22 @@ msgstr "" "les modules de tous les agents." #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3305 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3367 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3376 msgid "Calculate for custom intervals" msgstr "Calculer pour les intervalles personnalisés" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3316 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3462 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3471 msgid "Use prefix notation" msgstr "Utiliser la notation de préfixe" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3328 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3379 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3388 msgid "Time lapse intervals" msgstr "Intervalles de temps" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3330 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3382 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3391 msgid "" "Lapses of time in which the period is divided to make more precise calculations" msgstr "" @@ -21914,17 +22045,17 @@ msgstr "" "calculs plus précis" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3375 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3423 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3432 msgid "Table only" msgstr "Seulement le tableau" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3385 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3434 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3443 msgid "Graph only" msgstr "Seulement le graphique" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3395 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3445 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3454 msgid "Graph and table" msgstr "Graphique et tableau" @@ -21945,28 +22076,28 @@ msgstr "Afficher les adresses IP non affectées à un agent" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3513 #: ../../godmode/netflow/nf_item_list.php:282 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4025 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4034 msgid "Create item" msgstr "Créer un élément" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3526 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4033 -#: ../../include/functions_visual_map_editor.php:1419 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4042 +#: ../../include/functions_visual_map_editor.php:1477 msgid "Update item" msgstr "Mettre à jour l'élément" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3584 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4123 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4132 msgid "SLA Min. (value)" msgstr "SLA min. (valeur)" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3589 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4128 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4137 msgid "SLA Max. (value)" msgstr "SLA max. (valeur)" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3594 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4133 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4142 msgid "SLA Limit (%)" msgstr "Limite SLA (%)" @@ -22002,13 +22133,13 @@ msgstr "Nom littéral du module forcé" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4005 #: ../../godmode/reporting/create_container.php:484 #: ../../godmode/reporting/reporting_builder.item_editor.php:1843 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4357 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4394 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4563 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4836 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4870 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4924 -#: ../../include/functions_ui.php:6311 ../../include/functions_html.php:5807 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4366 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4403 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4572 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4845 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4879 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4933 +#: ../../include/functions_ui.php:6386 ../../include/functions_html.php:5831 msgid "Select an Agent first" msgstr "Sélectionnez d'abord un agent" @@ -22024,17 +22155,17 @@ msgstr "Le nom et la limite SLA ne peuvent pas être vides" #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:151 #: ../../godmode/modules/module_list.php:98 -#: ../../godmode/groups/configure_group.php:145 -#: ../../godmode/groups/group_list.php:878 ../../godmode/setup/os.builder.php:77 +#: ../../godmode/groups/configure_group.php:164 +#: ../../godmode/groups/group_list.php:879 ../../godmode/setup/os.builder.php:77 #: ../../godmode/setup/os.list.php:65 #: ../../godmode/reporting/visual_console_builder.elements.php:321 #: ../../include/functions_visual_map_editor.php:68 -#: ../../include/functions_visual_map_editor.php:1393 -#: ../../include/functions_visual_map.php:4225 -#: ../../include/rest-api/models/VisualConsole/Item.php:2148 +#: ../../include/functions_visual_map_editor.php:1451 +#: ../../include/functions_visual_map.php:4234 +#: ../../include/rest-api/models/VisualConsole/Item.php:2151 #: ../../include/lib/Dashboard/Widgets/module_icon.php:428 #: ../../include/lib/Dashboard/Widgets/module_status.php:419 -#: ../../operation/visual_console/view.php:361 +#: ../../operation/visual_console/view.php:363 msgid "Icon" msgstr "Icône" @@ -22101,7 +22232,7 @@ msgstr "Déplacer vers le bas" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:412 #: ../../godmode/reporting/reporting_builder.list_items.php:447 -#: ../../include/functions_graph.php:1514 +#: ../../include/functions_graph.php:1518 msgid "No items." msgstr "Aucun élément" @@ -22165,14 +22296,14 @@ msgstr "Créer une nouvelle tâche de console" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:366 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:281 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:357 -#: ../../godmode/modules/manage_network_components_form.php:393 -#: ../../godmode/groups/configure_group.php:286 +#: ../../godmode/modules/manage_network_components_form.php:396 +#: ../../godmode/groups/configure_group.php:305 #: ../../godmode/reporting/graph_builder.main.php:312 #: ../../godmode/wizards/HostDevices.class.php:651 #: ../../godmode/wizards/HostDevices.class.php:754 #: ../../godmode/wizards/Wizard.main.php:416 #: ../../godmode/wizards/DiscoveryTaskList.class.php:184 -#: ../../include/functions_html.php:6615 +#: ../../include/functions_html.php:6643 #: ../../include/class/CustomNetScan.class.php:314 #: ../../include/class/CustomNetScan.class.php:425 #: ../../include/class/HTML.class.php:419 @@ -22198,10 +22329,10 @@ msgstr "Tâche de mise à jour de la console" #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:576 #: ../../enterprise/include/ajax/cron.ajax.php:183 #: ../../godmode/events/event_responses.editor.php:213 -#: ../../include/ajax/events.php:2168 ../../include/ajax/events.php:2684 +#: ../../include/ajax/events.php:2169 ../../include/ajax/events.php:2685 #: ../../include/class/ExternalTools.class.php:383 #: ../../include/lib/Dashboard/Widgets/events_list.php:640 -#: ../../operation/events/events.php:2627 +#: ../../operation/events/events.php:2681 msgid "Parameters" msgstr "Paramètres" @@ -22324,7 +22455,7 @@ msgstr "État du nœud SQL" #: ../../enterprise/godmode/servers/new_HA_cluster.php:140 #: ../../enterprise/godmode/servers/HA_cluster.php:172 #: ../../extensions/quick_shell.php:197 -#: ../../godmode/agentes/module_manager_editor_network.php:535 +#: ../../godmode/agentes/module_manager_editor_network.php:540 msgid "SSH" msgstr "SSH" @@ -22416,7 +22547,7 @@ msgstr "" #: ../../enterprise/godmode/servers/HA_cluster.php:168 #: ../../enterprise/include/functions_reporting_csv.php:2398 -#: ../../operation/tree.php:264 +#: ../../operation/tree.php:265 msgid "Agent status" msgstr "État de l'agent" @@ -22554,21 +22685,21 @@ msgid "Default value: " msgstr "Valeur par défaut : " #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:356 -#: ../../include/functions_servers.php:556 -#: ../../include/functions_servers.php:1221 ../../include/functions_ui.php:7271 +#: ../../include/functions_servers.php:564 +#: ../../include/functions_servers.php:1244 ../../include/functions_ui.php:7341 msgid "Data server" msgstr "Serveur de données" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:362 -#: ../../include/functions_servers.php:569 -#: ../../include/functions_servers.php:1224 ../../include/functions_ui.php:7276 +#: ../../include/functions_servers.php:577 +#: ../../include/functions_servers.php:1247 ../../include/functions_ui.php:7346 #: ../../include/class/AgentWizard.class.php:1382 msgid "Network server" msgstr "Serveur de réseau" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:368 -#: ../../include/functions_servers.php:855 -#: ../../include/functions_servers.php:1269 +#: ../../include/functions_servers.php:863 +#: ../../include/functions_servers.php:1292 msgid "Alert server" msgstr "Serveur d’alertes" @@ -22586,59 +22717,59 @@ msgstr "Serveur d’alertes" #: ../../enterprise/include/class/Oracle.app.php:463 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:468 #: ../../enterprise/tools/ipam/ipam_editor.php:200 -#: ../../godmode/wizards/HostDevices.class.php:849 -#: ../../include/functions_servers.php:595 -#: ../../include/functions_servers.php:1257 +#: ../../godmode/wizards/HostDevices.class.php:845 +#: ../../include/functions_servers.php:603 +#: ../../include/functions_servers.php:1280 #: ../../include/class/CustomNetScan.class.php:485 #: ../../general/first_task/recon_view.php:22 msgid "Discovery server" msgstr "Serveur Discovery" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:380 -#: ../../include/functions_servers.php:621 ../../include/functions_ui.php:7286 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:843 +#: ../../include/functions_servers.php:629 ../../include/functions_ui.php:7356 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:844 msgid "Prediction server" msgstr "Serveur de prédiction" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:386 -#: ../../include/functions_servers.php:608 -#: ../../include/functions_servers.php:1236 ../../include/functions_ui.php:7281 +#: ../../include/functions_servers.php:616 +#: ../../include/functions_servers.php:1259 ../../include/functions_ui.php:7351 #: ../../include/class/AgentWizard.class.php:1363 msgid "Plugin server" msgstr "Serveur de plugin" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:392 -#: ../../include/functions_menu.php:609 ../../operation/menu.php:243 +#: ../../include/functions_menu.php:613 ../../operation/menu.php:243 msgid "SNMP console" msgstr "Console SNMP" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:398 -#: ../../include/functions_servers.php:1227 +#: ../../include/functions_servers.php:1250 msgid "SNMP server" msgstr "Serveur SNMP" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:404 -#: ../../include/functions_servers.php:673 -#: ../../include/functions_servers.php:1245 +#: ../../include/functions_servers.php:681 +#: ../../include/functions_servers.php:1268 msgid "Web server" msgstr "Serveur web" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:410 -#: ../../include/functions_servers.php:660 -#: ../../include/functions_servers.php:1251 +#: ../../include/functions_servers.php:668 +#: ../../include/functions_servers.php:1274 msgid "Inventory server" msgstr "Serveur d'inventaire" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:416 #: ../../enterprise/godmode/servers/manage_export_form.php:111 -#: ../../include/functions_servers.php:647 -#: ../../include/functions_servers.php:1248 +#: ../../include/functions_servers.php:655 +#: ../../include/functions_servers.php:1271 msgid "Export server" msgstr "Exporter le serveur" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:422 -#: ../../include/functions_servers.php:686 -#: ../../include/functions_servers.php:1254 +#: ../../include/functions_servers.php:694 +#: ../../include/functions_servers.php:1277 msgid "Event server" msgstr "Serveur d'événements" @@ -22647,19 +22778,19 @@ msgid "ICMP server" msgstr "Serveur ICMP" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:434 -#: ../../include/functions_servers.php:1263 ../../include/functions_ui.php:7301 +#: ../../include/functions_servers.php:1286 ../../include/functions_ui.php:7371 msgid "WUX server" msgstr "Serveur WUX" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:440 -#: ../../include/functions_servers.php:816 -#: ../../include/functions_servers.php:1272 +#: ../../include/functions_servers.php:824 +#: ../../include/functions_servers.php:1295 msgid "NCM server" msgstr "serveur NCM" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 -#: ../../include/functions_servers.php:634 -#: ../../include/functions_servers.php:1242 ../../include/functions_ui.php:7291 +#: ../../include/functions_servers.php:642 +#: ../../include/functions_servers.php:1265 ../../include/functions_ui.php:7361 #: ../../include/class/AgentWizard.class.php:1373 msgid "WMI server" msgstr "Serveur WMI" @@ -23585,7 +23716,7 @@ msgid "Delete remote conf server files" msgstr "Supprimer les fichiers du serveur de configuration distant" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1388 -#: ../../godmode/agentes/agent_manager.php:853 +#: ../../godmode/agentes/agent_manager.php:861 msgid "Delete remote configuration file" msgstr "Effacer le fichier de configuration à distance" @@ -23644,8 +23775,8 @@ msgstr "Serveur Satellite" #: ../../enterprise/godmode/servers/list_satellite.php:41 #: ../../godmode/setup/license.php:261 #: ../../godmode/servers/modificar_server.php:75 -#: ../../include/functions_ui.php:961 -#: ../../include/class/Diagnostics.class.php:1207 +#: ../../include/functions_ui.php:987 +#: ../../include/class/Diagnostics.class.php:1211 msgid "Satellite" msgstr "Satellite" @@ -23658,16 +23789,16 @@ msgstr "Rapport à construire" #: ../../enterprise/include/functions_cron.php:186 #: ../../enterprise/include/functions_cron.php:236 -#: ../../enterprise/include/functions_reporting.php:8199 +#: ../../enterprise/include/functions_reporting.php:8208 #: ../../enterprise/operation/reporting/custom_reporting.php:153 msgid "Send to emails (separated by comma)" msgstr "Envoyer aux courriels (séparés par des virgules)" #: ../../enterprise/include/functions_cron.php:190 #: ../../enterprise/include/functions_cron.php:240 -#: ../../enterprise/include/functions_reporting.php:8207 +#: ../../enterprise/include/functions_reporting.php:8216 #: ../../enterprise/operation/reporting/custom_reporting.php:161 -#: ../../godmode/setup/news.php:200 ../../godmode/setup/news.php:349 +#: ../../godmode/setup/news.php:204 ../../godmode/setup/news.php:353 #: ../../operation/messages/message_list.php:195 #: ../../operation/messages/message_edit.php:376 msgid "Subject" @@ -23675,7 +23806,7 @@ msgstr "Objet" #: ../../enterprise/include/functions_cron.php:194 #: ../../enterprise/include/functions_cron.php:244 -#: ../../enterprise/include/functions_reporting.php:8225 +#: ../../enterprise/include/functions_reporting.php:8234 #: ../../enterprise/operation/reporting/custom_reporting.php:179 #: ../../operation/messages/message_edit.php:389 msgid "Message" @@ -23773,8 +23904,8 @@ msgstr "Annuellement" #: ../../enterprise/include/functions_cron.php:799 #: ../../enterprise/include/functions_cron.php:832 -#: ../../enterprise/include/functions_reporting.php:8219 -#: ../../enterprise/include/functions_reporting.php:8233 +#: ../../enterprise/include/functions_reporting.php:8228 +#: ../../enterprise/include/functions_reporting.php:8242 #: ../../enterprise/operation/reporting/custom_reporting.php:173 #: ../../enterprise/operation/reporting/custom_reporting.php:187 msgid "This is an optional field" @@ -23789,7 +23920,7 @@ msgid "Scheduled report had an attempt to send an email with some attachments." msgstr "Le rapport programmé a essayé d'envoyer un email avec des fichier joints" #: ../../enterprise/include/functions_cron.php:1801 -#: ../../include/functions_reporting.php:15834 +#: ../../include/functions_reporting.php:15911 msgid "Greetings" msgstr "Bonjour" @@ -23800,22 +23931,22 @@ msgstr "Ajouté à cet email il y a un fichier CSV des journaux" #: ../../enterprise/include/functions_cron.php:1805 #: ../../mobile/include/functions_web.php:84 #: ../../mobile/include/ui.class.php:327 -#: ../../include/functions_reporting.php:15840 +#: ../../include/functions_reporting.php:15917 msgid "Generated at" msgstr "Généré le" #: ../../enterprise/include/functions_cron.php:1807 -#: ../../include/functions_reporting.php:15842 +#: ../../include/functions_reporting.php:15919 msgid "Thanks for your time." msgstr "Merci pour votre temps." #: ../../enterprise/include/functions_cron.php:1809 -#: ../../include/functions_reporting.php:15844 +#: ../../include/functions_reporting.php:15921 msgid "Best regards, Pandora FMS" msgstr "Cordialement, Pandora FMS" #: ../../enterprise/include/functions_cron.php:1811 -#: ../../include/functions_reporting.php:15846 +#: ../../include/functions_reporting.php:15923 msgid "" "This is an automatically generated email from Pandora FMS, please do not reply." msgstr "" @@ -23903,8 +24034,8 @@ msgstr "Forcer l'exécution" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../enterprise/include/functions_reporting_csv.php:1424 #: ../../enterprise/include/functions_reporting_csv.php:1479 -#: ../../enterprise/include/functions_reporting.php:8142 -#: ../../enterprise/include/functions_reporting.php:8179 +#: ../../enterprise/include/functions_reporting.php:8151 +#: ../../enterprise/include/functions_reporting.php:8188 #: ../../enterprise/operation/reporting/custom_reporting.php:138 #: ../../include/functions_cron.php:612 ../../include/functions_cron.php:705 #: ../../include/functions_cron.php:829 @@ -23927,7 +24058,7 @@ msgstr "Rapport" #: ../../enterprise/include/functions_tasklist.php:464 #: ../../enterprise/include/class/ManageBackups.class.php:169 #: ../../include/functions_cron.php:787 ../../include/functions_cron.php:828 -#: ../../include/class/Diagnostics.class.php:2203 +#: ../../include/class/Diagnostics.class.php:2207 msgid "Path" msgstr "Chemin" @@ -23942,9 +24073,9 @@ msgstr "Tâche désactivée" #: ../../enterprise/tools/ipam/ipam_list.php:784 #: ../../enterprise/tools/ipam/ipam_ajax.php:505 ../../godmode/db/db_main.php:189 #: ../../godmode/snmpconsole/snmp_alert.php:1967 -#: ../../include/functions_cron.php:907 ../../include/functions_treeview.php:663 -#: ../../include/functions_ui.php:606 -#: ../../operation/agentes/estado_generalagente.php:431 +#: ../../include/functions_cron.php:907 ../../include/ajax/heatmap.ajax.php:479 +#: ../../include/functions_treeview.php:667 ../../include/functions_ui.php:606 +#: ../../operation/agentes/estado_generalagente.php:402 #: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362 #: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479 msgid "Never" @@ -23974,17 +24105,17 @@ msgid "avg" msgstr "moyenne" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:80 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4597 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4606 msgid "max" msgstr "max" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:81 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4598 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4607 msgid "min" msgstr "min" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:82 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4599 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4608 msgid "sum" msgstr "somme" @@ -24141,11 +24272,11 @@ msgstr "Super-réseau" #: ../../enterprise/tools/ipam/ipam_supernet_network.php:58 #: ../../enterprise/tools/ipam/ipam_supernet_network.php:83 #: ../../enterprise/tools/ipam/ipam_editor.php:127 -#: ../../godmode/wizards/HostDevices.class.php:917 +#: ../../godmode/wizards/HostDevices.class.php:913 #: ../../godmode/wizards/DiscoveryTaskList.class.php:602 -#: ../../include/functions_ui.php:973 +#: ../../include/functions_ui.php:1002 #: ../../operation/network/network_usage_map.php:52 -#: ../../operation/netflow/nf_live_view.php:143 +#: ../../operation/netflow/nf_live_view.php:148 #: ../../operation/netflow/netflow_explorer.php:59 ../../operation/menu.php:210 msgid "Network" msgstr "Réseau" @@ -24196,9 +24327,9 @@ msgstr "Option inconnue" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:296 #: ../../godmode/agentes/configure_field.php:79 -#: ../../include/functions_treeview.php:902 +#: ../../include/functions_treeview.php:906 #: ../../operation/agentes/agent_fields.php:44 -#: ../../operation/agentes/estado_generalagente.php:623 +#: ../../operation/agentes/estado_generalagente.php:592 msgid "Custom field" msgstr "Champ personnalisé" @@ -24230,7 +24361,7 @@ msgstr "Argument du script" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 #: ../../godmode/alerts/alert_list.list.php:774 -#: ../../godmode/alerts/alert_list.list.php:1307 +#: ../../godmode/alerts/alert_list.list.php:1306 msgid "Update action" msgstr "Mettre à jour l'action" @@ -24304,13 +24435,13 @@ msgstr "Temps global : " #: ../../enterprise/include/functions_reporting_csv.php:2837 #: ../../godmode/setup/setup_integria.php:396 #: ../../godmode/setup/setup_integria.php:529 ../../include/graphs/fgraph.php:879 -#: ../../include/functions_ui.php:7855 +#: ../../include/functions_ui.php:7950 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 -#: ../../include/class/TipsWindow.class.php:454 -#: ../../include/class/TipsWindow.class.php:722 -#: ../../include/class/TipsWindow.class.php:889 -#: ../../include/lib/Dashboard/Widget.php:564 -#: ../../operation/agentes/estado_generalagente.php:756 +#: ../../include/class/TipsWindow.class.php:466 +#: ../../include/class/TipsWindow.class.php:742 +#: ../../include/class/TipsWindow.class.php:909 +#: ../../include/lib/Dashboard/Widget.php:565 +#: ../../operation/agentes/estado_generalagente.php:725 #: ../../operation/incidents/integriaims_export_csv.php:81 #: ../../operation/incidents/configure_integriaims_incident.php:228 #: ../../operation/incidents/list_integriaims_incidents.php:587 @@ -24324,8 +24455,8 @@ msgstr "Capturer regexp" #: ../../enterprise/include/ajax/log_viewer.ajax.php:93 #: ../../enterprise/include/functions_reporting_pdf.php:548 #: ../../enterprise/include/functions_reporting_pdf.php:604 -#: ../../include/functions_reporting_html.php:3841 -#: ../../include/functions_reporting_html.php:3911 +#: ../../include/functions_reporting_html.php:3869 +#: ../../include/functions_reporting_html.php:3939 msgid "Average" msgstr "Moyenne" @@ -24338,51 +24469,51 @@ msgid "Curl Error: " msgstr "Erreur Curl : " #: ../../enterprise/include/ajax/log_viewer.ajax.php:323 -#: ../../include/ajax/audit_log.php:270 ../../include/ajax/module.php:2224 -#: ../../include/ajax/agent.php:571 ../../include/ajax/events.php:775 +#: ../../include/ajax/audit_log.php:271 ../../include/ajax/module.php:2253 +#: ../../include/ajax/agent.php:571 ../../include/ajax/events.php:776 msgid "New filter" msgstr "Nouveau filtre" #: ../../enterprise/include/ajax/log_viewer.ajax.php:331 #: ../../enterprise/include/ajax/log_viewer.ajax.php:427 -#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../godmode/netflow/nf_edit_form.php:80 #: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../include/ajax/audit_log.php:278 ../../include/ajax/audit_log.php:329 -#: ../../include/ajax/module.php:2340 ../../include/ajax/agent.php:699 -#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:783 -#: ../../include/ajax/events.php:881 +#: ../../include/ajax/audit_log.php:279 ../../include/ajax/audit_log.php:331 +#: ../../include/ajax/module.php:2369 ../../include/ajax/agent.php:699 +#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:784 +#: ../../include/ajax/events.php:882 msgid "Update filter" msgstr "Mettre à jour le filtre" #: ../../enterprise/include/ajax/log_viewer.ajax.php:347 -#: ../../godmode/events/event_edit_filter.php:282 -#: ../../include/ajax/audit_log.php:288 ../../include/ajax/module.php:2247 +#: ../../godmode/events/event_edit_filter.php:284 +#: ../../include/ajax/audit_log.php:289 ../../include/ajax/module.php:2276 #: ../../include/ajax/agent.php:594 ../../include/ajax/custom_fields.php:573 #: ../../include/ajax/custom_fields.php:620 -#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:799 +#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:800 msgid "Filter name" msgstr "Nom du filtre" #: ../../enterprise/include/ajax/log_viewer.ajax.php:350 -#: ../../include/ajax/module.php:2253 ../../include/ajax/agent.php:600 -#: ../../include/ajax/events.php:802 +#: ../../include/ajax/module.php:2282 ../../include/ajax/agent.php:600 +#: ../../include/ajax/events.php:803 msgid "Save in Group" msgstr "Enregistrer dans le groupe" #: ../../enterprise/include/ajax/log_viewer.ajax.php:386 -#: ../../include/ajax/audit_log.php:314 ../../include/ajax/module.php:2292 -#: ../../include/ajax/events.php:838 +#: ../../include/ajax/audit_log.php:316 ../../include/ajax/module.php:2321 +#: ../../include/ajax/events.php:839 msgid "Overwrite filter" msgstr "Écraser le filtre" #: ../../enterprise/include/ajax/log_viewer.ajax.php:482 -#: ../../include/ajax/audit_log.php:383 ../../include/ajax/module.php:2401 -#: ../../include/ajax/agent.php:761 ../../include/ajax/events.php:936 +#: ../../include/ajax/audit_log.php:386 ../../include/ajax/module.php:2430 +#: ../../include/ajax/agent.php:761 ../../include/ajax/events.php:937 msgid "Filter name cannot be left blank" msgstr "Le nom du filtre ne peut pas être laissé en blanc" #: ../../enterprise/include/ajax/log_viewer.ajax.php:525 -#: ../../include/ajax/audit_log.php:411 +#: ../../include/ajax/audit_log.php:414 msgid "Filter name already on use" msgstr "Nom du filtre déjà utilisé" @@ -24433,8 +24564,8 @@ msgid "File of collection is bigger than the limit (%s bytes)" msgstr "Le fichier de la collection est plus grand que la limite (%s bytes)" #: ../../enterprise/include/functions_reporting_pdf.php:75 -#: ../../include/class/Diagnostics.class.php:2158 -#: ../../include/class/Diagnostics.class.php:2276 +#: ../../include/class/Diagnostics.class.php:2162 +#: ../../include/class/Diagnostics.class.php:2280 #, php-format msgid "Automated %s report for user defined report" msgstr "Rapport %s automatisé pour le port défini par l'utilisateur" @@ -24446,24 +24577,24 @@ msgstr "Rapport %s automatisé pour le port défini par l'utilisateur" #: ../../enterprise/include/functions_reporting_pdf.php:618 #: ../../enterprise/include/functions_reporting_pdf.php:625 #: ../../enterprise/include/functions_reporting_csv.php:1340 -#: ../../include/functions_reporting_html.php:3824 -#: ../../include/functions_reporting_html.php:3853 -#: ../../include/functions_reporting_html.php:3896 -#: ../../include/functions_reporting_html.php:3919 -#: ../../include/functions_reporting_html.php:3922 -#: ../../include/functions_reporting_html.php:3929 -#: ../../include/functions_reporting.php:7334 -#: ../../include/functions_reporting.php:7357 -#: ../../include/functions_reporting.php:7372 -#: ../../include/functions_reporting.php:7388 -#: ../../include/functions_reporting.php:7403 +#: ../../include/functions_reporting_html.php:3852 +#: ../../include/functions_reporting_html.php:3881 +#: ../../include/functions_reporting_html.php:3924 +#: ../../include/functions_reporting_html.php:3947 +#: ../../include/functions_reporting_html.php:3950 +#: ../../include/functions_reporting_html.php:3957 +#: ../../include/functions_reporting.php:7343 +#: ../../include/functions_reporting.php:7366 +#: ../../include/functions_reporting.php:7381 +#: ../../include/functions_reporting.php:7397 +#: ../../include/functions_reporting.php:7412 msgid "Maximun" msgstr "Maximun" #: ../../enterprise/include/functions_reporting_pdf.php:540 #: ../../enterprise/include/functions_reporting_pdf.php:597 -#: ../../include/functions_reporting_html.php:3832 -#: ../../include/functions_reporting_html.php:3903 +#: ../../include/functions_reporting_html.php:3860 +#: ../../include/functions_reporting_html.php:3931 msgid "Minimun" msgstr "Minimum" @@ -24475,53 +24606,53 @@ msgstr "Minimum" #: ../../enterprise/include/functions_reporting_csv.php:1285 #: ../../enterprise/include/functions_reporting_csv.php:1340 #: ../../enterprise/include/functions_reporting_csv.php:1444 -#: ../../include/functions_reporting_html.php:3895 -#: ../../include/functions_reporting_html.php:3902 -#: ../../include/functions_reporting_html.php:3910 -#: ../../include/functions_reporting_html.php:3921 -#: ../../include/functions_reporting_html.php:3926 -#: ../../include/functions_reporting.php:7352 +#: ../../include/functions_reporting_html.php:3923 +#: ../../include/functions_reporting_html.php:3930 +#: ../../include/functions_reporting_html.php:3938 +#: ../../include/functions_reporting_html.php:3949 +#: ../../include/functions_reporting_html.php:3954 +#: ../../include/functions_reporting.php:7361 msgid "Lapse" msgstr "Intervalle" #: ../../enterprise/include/functions_reporting_pdf.php:972 -#: ../../include/functions_reporting_html.php:2256 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:517 +#: ../../include/functions_reporting_html.php:2277 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:530 #, php-format msgid "%s in %s : NORMAL" msgstr "%s en %s : NORMAL" #: ../../enterprise/include/functions_reporting_pdf.php:989 -#: ../../include/functions_reporting_html.php:2168 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:533 +#: ../../include/functions_reporting_html.php:2189 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:546 #, php-format msgid "%s in %s : CRITICAL" msgstr "%s en %s : CRITIQUE" #: ../../enterprise/include/functions_reporting_pdf.php:1006 -#: ../../include/functions_reporting_html.php:2185 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:549 +#: ../../include/functions_reporting_html.php:2206 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:562 #, php-format msgid "%s in %s : WARNING" msgstr "%s en %s : ALERTE" #: ../../enterprise/include/functions_reporting_pdf.php:1023 -#: ../../include/functions_reporting_html.php:2202 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:565 +#: ../../include/functions_reporting_html.php:2223 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:578 #, php-format msgid "%s in %s : UNKNOWN" msgstr "%s in %s : INCONNU" #: ../../enterprise/include/functions_reporting_pdf.php:1040 -#: ../../include/functions_reporting_html.php:2238 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:581 +#: ../../include/functions_reporting_html.php:2259 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:594 #, php-format msgid "%s in %s : Not initialize" msgstr "%s in %s : Non initialisées" #: ../../enterprise/include/functions_reporting_pdf.php:1057 -#: ../../include/functions_reporting_html.php:2221 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:598 +#: ../../include/functions_reporting_html.php:2242 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:611 #, php-format msgid "%s in %s : ALERTS FIRED" msgstr "%s in %s : ALERTES DÉCLENCHÉES" @@ -24537,7 +24668,7 @@ msgstr "Contenu" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../godmode/agentes/planned_downtime.list.php:331 #: ../../godmode/agentes/planned_downtime.editor.php:997 -#: ../../include/functions_reporting_html.php:4014 +#: ../../include/functions_reporting_html.php:4042 #: ../../include/functions_snmp.php:413 ../../include/functions_snmp.php:421 #: ../../include/rest-api/index.php:377 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460 @@ -24548,7 +24679,7 @@ msgstr "À" #: ../../enterprise/include/functions_reporting_pdf.php:1989 #: ../../include/functions_reporting_html.php:91 -#: ../../include/functions_reporting_html.php:5816 +#: ../../include/functions_reporting_html.php:5844 #: ../../include/functions_treeview.php:303 #: ../../operation/agentes/interface_view.functions.php:560 msgid "Last data" @@ -24688,7 +24819,7 @@ msgid "Trap status agent recovered" msgstr "Agent d'état de trap récupéré" #: ../../enterprise/include/functions_servicemap.php:80 -#: ../../enterprise/include/functions_servicemap.php:1203 +#: ../../enterprise/include/functions_servicemap.php:1215 msgid "Failed to retrieve service elements: " msgstr "Les éléments service n'ont pas pu être collectés : " @@ -24716,11 +24847,16 @@ msgstr "Il n’y a pas de métaconsole définie." #: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:236 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.wizard.php:148 -#: ../../include/functions_visual_map_editor.php:250 -#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175 +#: ../../mobile/operation/module_data.php:263 +#: ../../mobile/operation/server_status.php:282 +#: ../../mobile/operation/server_status.php:320 +#: ../../mobile/operation/server_status.php:350 +#: ../../mobile/operation/server_status.php:446 +#: ../../include/functions_visual_map_editor.php:246 +#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:180 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:344 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:524 -#: ../../include/functions_filemanager.php:681 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:670 +#: ../../include/functions_filemanager.php:696 msgid "Image" msgstr "Image" @@ -24739,8 +24875,8 @@ msgstr "Rapport d'événements de module" #: ../../enterprise/include/functions_reporting_csv.php:480 #: ../../enterprise/include/functions_reporting.php:1221 #: ../../include/functions_reports.php:842 -#: ../../include/functions_reporting.php:8898 -#: ../../include/functions_reporting.php:9293 +#: ../../include/functions_reporting.php:8907 +#: ../../include/functions_reporting.php:9302 msgid "Availability" msgstr "Disponibilité" @@ -24759,7 +24895,7 @@ msgid "Maximum value" msgstr "Valeur maximale" #: ../../enterprise/include/functions_reporting_csv.php:673 -#: ../../include/functions_reporting_html.php:4562 +#: ../../include/functions_reporting_html.php:4590 msgid "Agent min value" msgstr "Valeur minimale de l'agent" @@ -24778,7 +24914,8 @@ msgstr "inventaire d'agents" #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../enterprise/operation/agentes/tag_view.php:695 -#: ../../operation/agentes/estado_generalagente.php:464 +#: ../../include/ajax/heatmap.ajax.php:483 +#: ../../operation/agentes/estado_generalagente.php:435 #: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 msgid "Remote" msgstr "À distance" @@ -24801,7 +24938,7 @@ msgid "Agent groups" msgstr "Groupes d’agents" #: ../../enterprise/include/functions_reporting_csv.php:763 -#: ../../include/functions_reporting_html.php:1780 +#: ../../include/functions_reporting_html.php:1789 msgid "Agent secondary groups" msgstr "Groupes secondaires d’agents" @@ -24816,7 +24953,7 @@ msgid "Prediction date" msgstr "Date de prédiction" #: ../../enterprise/include/functions_reporting_csv.php:838 -#: ../../include/functions_reporting.php:6800 +#: ../../include/functions_reporting.php:6809 msgid "Projection Graph" msgstr "Graphique de projection" @@ -24837,19 +24974,19 @@ msgid "Top %d" msgstr "Top %d" #: ../../enterprise/include/functions_reporting_csv.php:1019 -#: ../../include/functions_reporting.php:4186 +#: ../../include/functions_reporting.php:4195 msgid "Group Report" msgstr "Rapport du groupe" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:289 -#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1082 -#: ../../mobile/operation/groups.php:147 -#: ../../include/functions_reporting_html.php:5896 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1094 +#: ../../mobile/operation/groups.php:186 +#: ../../include/functions_reporting_html.php:5924 #: ../../include/class/Diagnostics.class.php:583 -#: ../../include/functions_reporting.php:12308 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:697 -#: ../../include/functions_groups.php:2642 ../../operation/tree.php:501 +#: ../../include/functions_reporting.php:12381 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:690 +#: ../../include/functions_groups.php:2667 ../../operation/tree.php:503 msgid "Total agents" msgstr "Nombre total d'agents" @@ -24859,17 +24996,17 @@ msgstr "Agents inconnus" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:290 -#: ../../godmode/groups/group_list.php:1083 +#: ../../godmode/groups/group_list.php:1095 #: ../../godmode/module_library/module_library_view.php:159 #: ../../include/class/Diagnostics.class.php:587 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:698 -#: ../../operation/tree.php:502 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:691 +#: ../../operation/tree.php:504 msgid "Total modules" msgstr "Nombre total de modules" #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../include/functions_reporting.php:12155 -#: ../../include/functions_groups.php:2700 +#: ../../include/functions_reporting.php:12228 +#: ../../include/functions_groups.php:2725 msgid "Defined alerts" msgstr "Alertes definies" @@ -24877,18 +25014,21 @@ msgstr "Alertes definies" #: ../../enterprise/operation/services/services.treeview_services.php:294 #: ../../enterprise/operation/services/services.treeview_services.php:295 #: ../../enterprise/operation/services/services.treeview_services.php:296 -#: ../../godmode/groups/group_list.php:1087 -#: ../../godmode/groups/group_list.php:1088 -#: ../../godmode/groups/group_list.php:1089 -#: ../../include/functions_graph.php:2608 -#: ../../include/functions_reporting.php:12171 -#: ../../include/functions_reporting.php:12192 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:702 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:703 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:704 -#: ../../include/functions_groups.php:2718 -#: ../../include/functions_groups.php:2741 ../../operation/tree.php:506 -#: ../../operation/tree.php:507 ../../operation/tree.php:508 +#: ../../godmode/groups/group_list.php:1099 +#: ../../godmode/groups/group_list.php:1100 +#: ../../godmode/groups/group_list.php:1101 +#: ../../include/functions_graph.php:2618 +#: ../../include/functions_reporting.php:12244 +#: ../../include/functions_reporting.php:12265 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:407 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:442 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:695 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:696 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:697 +#: ../../include/functions_groups.php:2743 +#: ../../include/functions_groups.php:2766 ../../operation/tree.php:213 +#: ../../operation/tree.php:304 ../../operation/tree.php:508 +#: ../../operation/tree.php:509 ../../operation/tree.php:510 msgid "Fired alerts" msgstr "Alertes déclenchées" @@ -24925,8 +25065,8 @@ msgstr "Diagramme circulaire SQL" #: ../../enterprise/include/functions_reporting_csv.php:1238 #: ../../enterprise/include/functions_reporting_csv.php:1240 #: ../../include/functions_reports.php:766 -#: ../../include/functions_reporting.php:7106 -#: ../../include/functions_reporting.php:10571 +#: ../../include/functions_reporting.php:7115 +#: ../../include/functions_reporting.php:10580 msgid "Summatory" msgstr "Sommation" @@ -24938,7 +25078,7 @@ msgid "Minimum Value" msgstr "Valeur minimale" #: ../../enterprise/include/functions_reporting_csv.php:1285 -#: ../../include/functions_reporting.php:10575 +#: ../../include/functions_reporting.php:10584 msgid "Minimum" msgstr "Minimum" @@ -24953,37 +25093,37 @@ msgstr "Valeur maximale" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../enterprise/include/functions_reporting_csv.php:1379 #: ../../enterprise/include/functions_reporting_csv.php:1390 -#: ../../include/functions_reporting_html.php:4017 +#: ../../include/functions_reporting_html.php:4045 #: ../../include/functions_reports.php:774 -#: ../../include/functions_reporting.php:10031 +#: ../../include/functions_reporting.php:10040 msgid "Increment" msgstr "Incrément" #: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../include/functions_reporting_html.php:4015 +#: ../../include/functions_reporting_html.php:4043 msgid "From data" msgstr "À partir des données" #: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../include/functions_reporting_html.php:4016 +#: ../../include/functions_reporting_html.php:4044 msgid "To data" msgstr "Aux données" #: ../../enterprise/include/functions_reporting_csv.php:1381 #: ../../enterprise/include/functions_reporting_csv.php:1392 -#: ../../include/functions_reporting_html.php:4044 +#: ../../include/functions_reporting_html.php:4072 msgid "Negative increase: " msgstr "Croissance négative : " #: ../../enterprise/include/functions_reporting_csv.php:1383 #: ../../enterprise/include/functions_reporting_csv.php:1394 -#: ../../include/functions_reporting_html.php:4046 +#: ../../include/functions_reporting_html.php:4074 msgid "Positive increase: " msgstr "Croissance positive : " #: ../../enterprise/include/functions_reporting_csv.php:1385 #: ../../enterprise/include/functions_reporting_csv.php:1396 -#: ../../include/functions_reporting_html.php:4048 +#: ../../include/functions_reporting_html.php:4076 msgid "Neutral increase: " msgstr "Croissance neutre : " @@ -24992,7 +25132,7 @@ msgstr "Croissance neutre : " #: ../../enterprise/include/functions_reporting_csv.php:1431 #: ../../enterprise/include/functions_reporting_csv.php:1437 #: ../../enterprise/include/functions_reporting_csv.php:1439 -#: ../../include/functions_reporting.php:7111 +#: ../../include/functions_reporting.php:7120 msgid "AVG. Value" msgstr "Valeur moyenne" @@ -25003,7 +25143,7 @@ msgstr "Moyenne" #: ../../enterprise/include/functions_reporting_csv.php:1465 #: ../../enterprise/include/functions_reporting_csv.php:1483 #: ../../enterprise/include/functions_reporting_csv.php:1485 -#: ../../include/functions_reporting.php:6442 +#: ../../include/functions_reporting.php:6451 msgid "Monitor Report" msgstr "Rapport du moniteur" @@ -25120,8 +25260,8 @@ msgstr "État " #: ../../enterprise/include/functions_reporting.php:3988 #: ../../enterprise/include/functions_reporting.php:6182 #: ../../include/functions_reporting_html.php:670 -#: ../../include/functions_config.php:1337 -#: ../../include/functions_config.php:3541 +#: ../../include/functions_config.php:1353 +#: ../../include/functions_config.php:3565 msgid "Fail" msgstr "Échec" @@ -25302,7 +25442,7 @@ msgstr "État jour" #: ../../enterprise/include/functions_reporting_csv.php:1787 #: ../../enterprise/include/functions_reporting_csv.php:2095 -#: ../../include/functions_html.php:2322 +#: ../../include/functions_html.php:2337 msgid "Month" msgstr "Mois" @@ -25407,7 +25547,7 @@ msgstr "Réseaux IPAM" #: ../../enterprise/include/functions_reporting_csv.php:1984 #: ../../enterprise/include/functions_reporting.php:2336 #: ../../godmode/events/custom_events.php:94 -#: ../../include/functions_events.php:244 ../../operation/events/events.php:2665 +#: ../../include/functions_events.php:244 ../../operation/events/events.php:2719 msgid "Agent ID" msgstr "ID d'agent" @@ -25419,16 +25559,16 @@ msgstr "ID d'agent" #: ../../enterprise/tools/ipam/ipam_ajax.php:295 #: ../../enterprise/tools/ipam/ipam_ajax.php:482 #: ../../enterprise/tools/ipam/ipam_massive.php:105 -#: ../../godmode/users/configure_user.php:1218 -#: ../../godmode/users/user_management.php:684 -#: ../../mobile/operation/events.php:849 -#: ../../include/functions_reporting_html.php:6016 -#: ../../include/functions.php:3109 ../../include/ajax/events.php:1763 +#: ../../godmode/users/configure_user.php:1282 +#: ../../godmode/users/user_management.php:710 +#: ../../mobile/operation/events.php:878 +#: ../../include/functions_reporting_html.php:6050 +#: ../../include/functions.php:3109 ../../include/ajax/events.php:1764 #: ../../include/class/AuditLog.class.php:114 -#: ../../operation/users/user_edit.php:743 +#: ../../operation/users/user_edit.php:740 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:333 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:426 -#: ../../general/logon_ok.php:259 +#: ../../general/logon_ok.php:304 msgid "Comments" msgstr "Commentaires" @@ -25461,7 +25601,7 @@ msgstr "Temps total" #: ../../enterprise/include/functions_reporting_csv.php:2031 #: ../../enterprise/include/functions_reporting.php:4991 #: ../../include/functions_reporting_html.php:588 -#: ../../include/functions_reporting_html.php:4157 +#: ../../include/functions_reporting_html.php:4185 msgid "Time OK" msgstr "Temps OK" @@ -25472,7 +25612,7 @@ msgstr "Temps erreur" #: ../../enterprise/include/functions_reporting_csv.php:2033 #: ../../enterprise/include/functions_reporting.php:4992 #: ../../include/functions_reporting_html.php:589 -#: ../../include/functions_reporting_html.php:4169 +#: ../../include/functions_reporting_html.php:4197 msgid "Time Unknown" msgstr "Temps inconnu" @@ -25483,7 +25623,7 @@ msgid "Time Not Init" msgstr "Temps non initialisé" #: ../../enterprise/include/functions_reporting_csv.php:2035 -#: ../../include/functions_reporting_html.php:4181 +#: ../../include/functions_reporting_html.php:4209 msgid "Time Downtime" msgstr "Temps d'arrêt" @@ -25496,7 +25636,7 @@ msgstr "Vérifications totales" #: ../../enterprise/include/functions_reporting_csv.php:2037 #: ../../enterprise/include/functions_reporting.php:5086 #: ../../include/functions_reporting_html.php:622 -#: ../../include/functions_reporting_html.php:4251 +#: ../../include/functions_reporting_html.php:4279 msgid "Checks OK" msgstr "Vérifications OK" @@ -25663,17 +25803,17 @@ msgid "Custom Graph" msgstr "Graphique personnalisée" #: ../../enterprise/include/functions_reporting_csv.php:2493 -#: ../../include/functions_reporting.php:6150 +#: ../../include/functions_reporting.php:6159 msgid "Alert Report Module" msgstr "Module de rapport d'alerte" #: ../../enterprise/include/functions_reporting_csv.php:2495 -#: ../../include/functions_reporting.php:5983 +#: ../../include/functions_reporting.php:5992 msgid "Alert Report Agent" msgstr "Agent de rapport d'alerte" #: ../../enterprise/include/functions_reporting_csv.php:2497 -#: ../../include/functions_reporting.php:5803 +#: ../../include/functions_reporting.php:5812 msgid "Alert Report Group" msgstr "Rapport d'alertes de groupe" @@ -25692,20 +25832,20 @@ msgstr "Journal de rapport d'événement" #: ../../enterprise/include/functions_reporting_csv.php:2581 #: ../../include/functions_reports.php:951 #: ../../include/functions_reports.php:952 -#: ../../include/functions_reporting.php:5108 +#: ../../include/functions_reporting.php:5117 msgid "Permissions report" msgstr "Rapport de permissions" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../godmode/users/user_list.php:572 -#: ../../godmode/users/configure_user.php:1001 -#: ../../godmode/users/configure_user.php:1060 +#: ../../godmode/users/user_list.php:573 +#: ../../godmode/users/configure_user.php:1049 +#: ../../godmode/users/configure_user.php:1124 #: ../../godmode/users/user_management.php:143 #: ../../godmode/users/user_management.php:155 -#: ../../include/functions_reporting_html.php:5305 -#: ../../include/functions_reporting_html.php:6436 -#: ../../include/functions_reporting_html.php:6459 +#: ../../include/functions_reporting_html.php:5333 +#: ../../include/functions_reporting_html.php:6470 +#: ../../include/functions_reporting_html.php:6493 #: ../../include/class/SnmpConsole.class.php:278 #: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:291 msgid "User ID" @@ -25714,15 +25854,15 @@ msgstr "Identifiant de l'utilisateur" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 #: ../../godmode/users/user_management.php:166 -#: ../../include/functions_reporting_html.php:6437 -#: ../../include/functions_reporting_html.php:6460 +#: ../../include/functions_reporting_html.php:6471 +#: ../../include/functions_reporting_html.php:6494 msgid "Full name" msgstr "Nom complet" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../include/functions_reporting_html.php:6438 -#: ../../include/functions_reporting_html.php:6461 +#: ../../include/functions_reporting_html.php:6472 +#: ../../include/functions_reporting_html.php:6495 msgid "Permissions" msgstr "Permissions" @@ -25775,23 +25915,23 @@ msgid "Agent/module status" msgstr "État de l’agent/module" #: ../../enterprise/include/functions_reporting_csv.php:2792 -#: ../../include/functions_reporting_html.php:2358 +#: ../../include/functions_reporting_html.php:2379 msgid "Last time" msgstr "Dernière fois" #: ../../enterprise/include/functions_reporting_csv.php:2836 #: ../../include/functions_reports.php:938 -#: ../../include/functions_reporting.php:6597 +#: ../../include/functions_reporting.php:6606 msgid "Netflow top-N connections" msgstr "Connexions Netflow top-N" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../mobile/operation/tactical.php:351 -#: ../../include/functions_reporting_html.php:6015 +#: ../../mobile/operation/tactical.php:352 +#: ../../include/functions_reporting_html.php:6049 #: ../../include/functions.php:3109 ../../include/functions_netflow.php:347 #: ../../include/class/AuditLog.class.php:113 #: ../../operation/snmpconsole/snmp_statistics.php:183 -#: ../../general/logon_ok.php:258 +#: ../../general/logon_ok.php:303 msgid "Source IP" msgstr "Adresse IP source" @@ -25801,8 +25941,8 @@ msgid "Destination IP" msgstr "IP Destination" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../include/functions_config.php:1024 -#: ../../include/functions_config.php:3453 +#: ../../include/functions_config.php:1036 +#: ../../include/functions_config.php:3477 #: ../../include/functions_netflow.php:349 #: ../../operation/network/network_report.php:294 #: ../../operation/network/network_report.php:326 @@ -25873,6 +26013,8 @@ msgid "Public Key Authentication Failed" msgstr "Clé d'authentication publique échouée" #: ../../enterprise/include/functions_HA_cluster.php:268 +#: ../../godmode/setup/setup_ehorus.php:136 +#: ../../godmode/setup/setup_integria.php:666 msgid "Connection failed" msgstr "La connexion a échoué" @@ -25885,7 +26027,7 @@ msgid "Register new node" msgstr "Enregistrer nouveau noeud" #: ../../enterprise/include/functions_HA_cluster.php:496 -#: ../../include/class/NetworkMap.class.php:3156 +#: ../../include/class/NetworkMap.class.php:3162 msgid "Update node" msgstr "Mettre à jour le nœud" @@ -25948,7 +26090,7 @@ msgstr "Accès pas autorisé" #: ../../enterprise/include/class/Google.cloud.php:762 #: ../../enterprise/include/class/Oracle.app.php:452 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:457 -#: ../../godmode/wizards/HostDevices.class.php:839 +#: ../../godmode/wizards/HostDevices.class.php:835 #: ../../godmode/wizards/DiscoveryTaskList.class.php:593 #: ../../include/class/CustomNetScan.class.php:452 msgid "Task name" @@ -26005,27 +26147,27 @@ msgstr "Résumée de la performance du réseau" #: ../../enterprise/include/class/VMware.app.php:1040 #: ../../enterprise/include/class/DB2.app.php:888 #: ../../enterprise/include/class/Aws.S3.php:665 -#: ../../enterprise/include/class/SAP.app.php:950 +#: ../../enterprise/include/class/SAP.app.php:951 #: ../../enterprise/include/class/Aws.cloud.php:1621 #: ../../enterprise/include/class/MySQL.app.php:963 #: ../../enterprise/include/class/Google.cloud.php:955 #: ../../enterprise/include/class/Oracle.app.php:995 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:850 #: ../../godmode/wizards/HostDevices.class.php:1637 -#: ../../include/class/CustomNetScan.class.php:775 +#: ../../include/class/CustomNetScan.class.php:774 msgid "Task configured." msgstr "Tache configurée." #: ../../enterprise/include/class/Azure.cloud.php:997 #: ../../enterprise/include/class/VMware.app.php:1044 #: ../../enterprise/include/class/DB2.app.php:892 -#: ../../enterprise/include/class/SAP.app.php:954 +#: ../../enterprise/include/class/SAP.app.php:955 #: ../../enterprise/include/class/MySQL.app.php:967 #: ../../enterprise/include/class/Google.cloud.php:959 #: ../../enterprise/include/class/Oracle.app.php:999 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:854 #: ../../godmode/wizards/HostDevices.class.php:1641 -#: ../../include/class/CustomNetScan.class.php:779 +#: ../../include/class/CustomNetScan.class.php:778 msgid "Wizard failed. Cannot configure task." msgstr "Échec de l'assistant. La tache ne peut pas se configurer." @@ -26113,8 +26255,8 @@ msgstr "Application" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:587 #: ../../godmode/setup/setup_integria.php:736 #: ../../godmode/wizards/HostDevices.class.php:782 -#: ../../include/class/CustomNetScan.class.php:559 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1240 +#: ../../include/class/CustomNetScan.class.php:558 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1241 msgid "Update and continue" msgstr "Mettre à jour et continuer" @@ -26136,7 +26278,7 @@ msgstr "" #: ../../enterprise/include/class/MySQL.app.php:462 #: ../../enterprise/include/class/Oracle.app.php:464 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:469 -#: ../../godmode/wizards/HostDevices.class.php:850 +#: ../../godmode/wizards/HostDevices.class.php:846 #: ../../include/class/CustomNetScan.class.php:486 msgid "" "You must select a Discovery Server to run the Task, otherwise the Recon Task " @@ -26174,8 +26316,8 @@ msgstr "" #: ../../enterprise/include/class/Oracle.app.php:561 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:565 #: ../../godmode/wizards/HostDevices.class.php:807 -#: ../../include/functions_reporting_html.php:2590 -#: ../../include/class/CustomNetScan.class.php:534 +#: ../../include/functions_reporting_html.php:2611 +#: ../../include/class/CustomNetScan.class.php:536 msgid "Defined" msgstr "Défini" @@ -26202,7 +26344,7 @@ msgstr "Chiffrer les mots de passe" #: ../../enterprise/include/class/VMware.app.php:762 #: ../../enterprise/include/class/DB2.app.php:478 #: ../../enterprise/include/class/Aws.S3.php:442 -#: ../../enterprise/include/class/SAP.app.php:635 +#: ../../enterprise/include/class/SAP.app.php:636 #: ../../enterprise/include/class/Aws.cloud.php:1253 #: ../../enterprise/include/class/MySQL.app.php:483 #: ../../enterprise/include/class/Oracle.app.php:485 @@ -26482,16 +26624,16 @@ msgstr "Réseau programmé à être scanné. Voyez le progrès chez %s" #: ../../enterprise/include/class/DeploymentCenter.class.php:1296 #: ../../enterprise/include/class/SAP.app.php:593 #: ../../enterprise/include/class/SAP.app.php:596 -#: ../../godmode/wizards/HostDevices.class.php:1472 -#: ../../godmode/wizards/HostDevices.class.php:1475 +#: ../../godmode/wizards/HostDevices.class.php:1468 +#: ../../godmode/wizards/HostDevices.class.php:1471 msgid "No credentials available" msgstr "Pas d'identifiants disponibles" #: ../../enterprise/include/class/DeploymentCenter.class.php:1160 #: ../../enterprise/include/class/DeploymentCenter.class.php:1294 #: ../../enterprise/include/class/SAP.app.php:594 -#: ../../godmode/agentes/module_manager_editor_network.php:525 -#: ../../godmode/wizards/HostDevices.class.php:1473 +#: ../../godmode/agentes/module_manager_editor_network.php:530 +#: ../../godmode/wizards/HostDevices.class.php:1469 msgid "Manage credentials" msgstr "Gérer des identifiants" @@ -26504,7 +26646,7 @@ msgid "Scan from" msgstr "Scanner depuis" #: ../../enterprise/include/class/DeploymentCenter.class.php:1202 -#: ../../godmode/wizards/HostDevices.class.php:1485 +#: ../../godmode/wizards/HostDevices.class.php:1481 msgid "Credentials to try with" msgstr "Identifiants avec lesquels essayer" @@ -26608,13 +26750,14 @@ msgstr "Programmé correctement" #: ../../enterprise/tools/ipam/ipam_ajax.php:422 #: ../../enterprise/tools/ipam/ipam_massive.php:140 #: ../../godmode/modules/manage_network_components_form_wizard.php:247 -#: ../../godmode/groups/group_list.php:942 -#: ../../godmode/agentes/module_manager_editor_common.php:698 -#: ../../godmode/agentes/module_manager_editor_common.php:708 -#: ../../godmode/massive/massive_edit_agents.php:1137 +#: ../../godmode/groups/group_list.php:954 +#: ../../godmode/agentes/module_manager_editor_common.php:703 +#: ../../godmode/agentes/module_manager_editor_common.php:706 +#: ../../godmode/agentes/module_manager_editor_common.php:717 +#: ../../godmode/massive/massive_edit_agents.php:1153 #: ../../godmode/alerts/configure_alert_template.php:919 -#: ../../include/functions_visual_map_editor.php:823 -#: ../../include/functions_reporting_html.php:3674 +#: ../../include/functions_visual_map_editor.php:871 +#: ../../include/functions_reporting_html.php:3702 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:406 #: ../../operation/agentes/estado_generalagente.php:314 msgid "Enabled" @@ -26853,8 +26996,8 @@ msgstr "Modèle mis à jour" #: ../../enterprise/include/lib/Metaconsole/Node.php:1454 #: ../../include/class/CalendarManager.class.php:570 #: ../../include/class/CalendarManager.class.php:946 -#: ../../include/functions_reporting.php:5462 -#: ../../include/functions_reporting.php:5490 +#: ../../include/functions_reporting.php:5471 +#: ../../include/functions_reporting.php:5499 #, php-format msgid "Error: %s" msgstr "Erreur : %s" @@ -27306,7 +27449,7 @@ msgid "Log monitoring is disabled. %s" msgstr "La supervision de journaux est désactivée. %s" #: ../../enterprise/include/class/LogSource.class.php:658 -#: ../../enterprise/include/class/LogSource.class.php:825 +#: ../../enterprise/include/class/LogSource.class.php:822 msgid "Add log source" msgstr "Ajouter source de journal" @@ -27314,7 +27457,7 @@ msgstr "Ajouter source de journal" msgid "Source name" msgstr "Nom de la source" -#: ../../enterprise/include/class/LogSource.class.php:829 +#: ../../enterprise/include/class/LogSource.class.php:826 msgid "Update log source" msgstr "Mettre à jour la source de journal" @@ -27631,90 +27774,90 @@ msgid "SAP System Number" msgstr "Número de système SAP" #: ../../enterprise/include/class/SAP.app.php:606 -#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/SAP.app.php:621 msgid "SAP Credentials" msgstr "Identifiants SAP" #: ../../enterprise/include/class/SAP.app.php:606 -#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/SAP.app.php:621 msgid "Optional" msgstr "Optionnel" -#: ../../enterprise/include/class/SAP.app.php:651 +#: ../../enterprise/include/class/SAP.app.php:652 msgid "SAP License" msgstr "Licence SAP" -#: ../../enterprise/include/class/SAP.app.php:747 +#: ../../enterprise/include/class/SAP.app.php:748 #: ../../include/functions_agents.php:4095 msgid "SAP Login OK" msgstr "Connexion SAP OK" -#: ../../enterprise/include/class/SAP.app.php:748 +#: ../../enterprise/include/class/SAP.app.php:749 #: ../../include/functions_agents.php:4096 msgid "SAP Dumps" msgstr "Vidage SAP" -#: ../../enterprise/include/class/SAP.app.php:749 +#: ../../enterprise/include/class/SAP.app.php:750 #: ../../include/functions_agents.php:4097 msgid "SAP lock entry list" msgstr "Liste des entrées de verrouillage SAP" -#: ../../enterprise/include/class/SAP.app.php:750 +#: ../../enterprise/include/class/SAP.app.php:751 #: ../../include/functions_agents.php:4098 msgid "SAP canceled Jobs" msgstr "Travaux SAP annulés" -#: ../../enterprise/include/class/SAP.app.php:751 +#: ../../enterprise/include/class/SAP.app.php:752 #: ../../include/functions_agents.php:4099 msgid "SAP Batch inputs erroneous" msgstr "Entrées par lot SAP erronées" -#: ../../enterprise/include/class/SAP.app.php:752 +#: ../../enterprise/include/class/SAP.app.php:753 #: ../../include/functions_agents.php:4100 msgid "SAP IDOC erroneous" msgstr "IDOC SAP erroné" -#: ../../enterprise/include/class/SAP.app.php:753 +#: ../../enterprise/include/class/SAP.app.php:754 #: ../../include/functions_agents.php:4101 msgid "SAP IDOC OK" msgstr "IDOC SAP OK" -#: ../../enterprise/include/class/SAP.app.php:754 +#: ../../enterprise/include/class/SAP.app.php:755 #: ../../include/functions_agents.php:4102 msgid "SAP WP without active restart" msgstr "SAP WB sans redémarrage active" -#: ../../enterprise/include/class/SAP.app.php:755 +#: ../../enterprise/include/class/SAP.app.php:756 #: ../../include/functions_agents.php:4103 msgid "SAP WP stopped" msgstr "SAP WP arrêté" -#: ../../enterprise/include/class/SAP.app.php:756 +#: ../../enterprise/include/class/SAP.app.php:757 #: ../../include/functions_agents.php:4104 msgid "Average time of SAPGUI response" msgstr "Moyenne de temps de réponse de SAPGUI" -#: ../../enterprise/include/class/SAP.app.php:757 +#: ../../enterprise/include/class/SAP.app.php:758 #: ../../include/functions_agents.php:4106 msgid "Dialog Logged users" msgstr "Utilisateurs connectés de dialogue" -#: ../../enterprise/include/class/SAP.app.php:758 +#: ../../enterprise/include/class/SAP.app.php:759 #: ../../include/functions_agents.php:4107 msgid "TRFC in error" msgstr "TRFC en erreur" -#: ../../enterprise/include/class/SAP.app.php:759 +#: ../../enterprise/include/class/SAP.app.php:760 #: ../../include/functions_agents.php:4108 msgid "QRFC in error SMQ2" msgstr "QRFC en erreur SMQ2" -#: ../../enterprise/include/class/SAP.app.php:760 +#: ../../enterprise/include/class/SAP.app.php:761 #: ../../include/functions_agents.php:4109 msgid "Number of Update WPs in error" msgstr "Nombre de WPs de mise à jour en erreur" -#: ../../enterprise/include/class/SAP.app.php:784 +#: ../../enterprise/include/class/SAP.app.php:785 #, php-format msgid "" "Module 180 must be customized before being used, please use advanced options " @@ -27723,40 +27866,40 @@ msgstr "" "Le module 180 doit être personnalisée avant de l'utiliser, veuillez utiliser " "les options avancées pour définir la documentation suivante :
%s" -#: ../../enterprise/include/class/SAP.app.php:805 +#: ../../enterprise/include/class/SAP.app.php:806 #: ../../godmode/agentes/planned_downtime.editor.php:1257 msgid "Available modules" msgstr "Modules disponibles" -#: ../../enterprise/include/class/SAP.app.php:829 +#: ../../enterprise/include/class/SAP.app.php:830 msgid "Add monitors" msgstr "Ajouter des moniteurs" -#: ../../enterprise/include/class/SAP.app.php:842 +#: ../../enterprise/include/class/SAP.app.php:843 msgid "Remove monitors" msgstr "Éliminer des moniteurs" -#: ../../enterprise/include/class/SAP.app.php:853 -#: ../../enterprise/operation/services/massive/services.create.php:1321 +#: ../../enterprise/include/class/SAP.app.php:854 +#: ../../enterprise/operation/services/massive/services.create.php:1333 #: ../../enterprise/operation/services/massive/service.delete.elements.php:278 #: ../../enterprise/operation/services/massive/service.create.elements.php:626 #: ../../enterprise/operation/services/massive/service.edit.elements.php:385 msgid "Selected modules" msgstr "Modules sélectionnes" -#: ../../enterprise/include/class/SAP.app.php:893 +#: ../../enterprise/include/class/SAP.app.php:894 msgid "Define your custom SAP modules." msgstr "Définissez vos modules SAP personnalisés." -#: ../../enterprise/include/class/SAP.app.php:892 +#: ../../enterprise/include/class/SAP.app.php:893 msgid "Advanced module configuration" msgstr "Configuration de module avancée" -#: ../../enterprise/include/class/SAP.app.php:902 +#: ../../enterprise/include/class/SAP.app.php:903 msgid "Custom module definitions" msgstr "Définitions des modules personnalisés" -#: ../../enterprise/include/class/SAP.app.php:903 +#: ../../enterprise/include/class/SAP.app.php:904 msgid "" "Each line is a module definition using following format: module name ; " "module_type ; SAP check definition." @@ -28321,7 +28464,7 @@ msgid "Remove item" msgstr "Supprimer l’élément" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1979 -#: ../../operation/agentes/estado_monitores.php:639 +#: ../../operation/agentes/estado_monitores.php:631 msgid "Reset" msgstr "Réinitialiser" @@ -28456,9 +28599,10 @@ msgid "Fields used on execution when the alert is fired" msgstr "Champs utilisés lors de l'exécution lorsque l'alerte est déclenchée" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2802 +#: ../../godmode/users/configure_user.php:63 #: ../../godmode/users/user_management.php:42 #: ../../godmode/massive/massive_edit_users.php:278 -#: ../../operation/users/user_edit.php:473 +#: ../../include/auth/mysql.php:811 ../../operation/users/user_edit.php:473 #: ../../operation/agentes/alerts_status.php:189 ../../operation/menu.php:194 msgid "Alert detail" msgstr "Détail des alertes" @@ -28486,9 +28630,9 @@ msgstr "Correspondu" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3011 #: ../../godmode/alerts/alert_list.list.php:170 #: ../../mobile/operation/alerts.php:66 -#: ../../include/functions_reporting_html.php:2591 -#: ../../include/functions_reporting_html.php:3451 -#: ../../include/functions_reporting_html.php:3452 +#: ../../include/functions_reporting_html.php:2612 +#: ../../include/functions_reporting_html.php:3479 +#: ../../include/functions_reporting_html.php:3480 #: ../../operation/agentes/alerts_status.functions.php:99 msgid "Fired" msgstr "Déclenché" @@ -28538,7 +28682,7 @@ msgstr "Êtes-vous sûr que vous voulez stand-by l'alerte" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3385 #: ../../enterprise/operation/agentes/policy_view.php:293 #: ../../godmode/alerts/alert_list.list.php:192 -#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1274 +#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1311 #: ../../operation/agentes/alerts_status.functions.php:104 msgid "Standby on" msgstr "Mode veille actif" @@ -28605,7 +28749,7 @@ msgstr "" #: ../../enterprise/include/class/CommandCenter.class.php:171 #: ../../enterprise/include/functions_groups.php:49 -#: ../../include/ajax/module.php:1834 +#: ../../include/ajax/module.php:1862 msgid "Metaconsole" msgstr "Métaconsole" @@ -28655,7 +28799,7 @@ msgid "Please restore your backups" msgstr "Veuillez rétablir vos sauvegardes" #: ../../enterprise/include/class/CommandCenter.class.php:454 -#: ../../include/functions_ui.php:7102 +#: ../../include/functions_ui.php:7174 msgid "Query" msgstr "Requête" @@ -28665,8 +28809,8 @@ msgid "Table" msgstr "Table" #: ../../enterprise/include/class/CommandCenter.class.php:456 -#: ../../include/class/Heatmap.class.php:1302 -#: ../../general/reporting_console_node.php:65 +#: ../../include/class/Heatmap.class.php:1358 +#: ../../general/reporting_console_node.php:70 msgid "Info" msgstr "Information" @@ -28698,8 +28842,8 @@ msgstr "Le processus a été complété correctement" #: ../../enterprise/include/class/CommandCenter.class.php:463 #: ../../enterprise/include/functions_login.php:213 -#: ../../include/functions_menu.php:883 -#: ../../include/class/Diagnostics.class.php:1846 +#: ../../include/functions_menu.php:888 +#: ../../include/class/Diagnostics.class.php:1850 msgid "Successfully" msgstr "Correctement" @@ -28874,12 +29018,12 @@ msgstr "" #: ../../extensions/files_repo/files_repo_list.php:57 #: ../../godmode/events/event_responses.editor.php:175 #: ../../include/functions_visual_map_editor.php:125 -#: ../../include/functions_visual_map_editor.php:178 -#: ../../include/functions_visual_map_editor.php:836 -#: ../../include/functions_visual_map_editor.php:931 +#: ../../include/functions_visual_map_editor.php:174 +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/functions_visual_map_editor.php:979 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:214 -#: ../../include/rest-api/models/VisualConsole/Item.php:1992 -#: ../../include/functions_filemanager.php:646 +#: ../../include/rest-api/models/VisualConsole/Item.php:1995 +#: ../../include/functions_filemanager.php:661 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:135 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:266 msgid "Size" @@ -28918,7 +29062,7 @@ msgid "Missed id parameter." msgstr "Paramètre ID manqué." #: ../../enterprise/include/class/ManageBackups.class.php:433 -#: ../../include/class/AuditLog.class.php:412 +#: ../../include/class/AuditLog.class.php:424 msgid "There is no additional information to display" msgstr "Il n’y a pas d’informations supplémentaires à afficher" @@ -28934,11 +29078,11 @@ msgstr "" msgid "Do you like perform a database restoration?" msgstr "Aimez-vous effectuer une restauration de base de données?" -#: ../../enterprise/include/functions_enterprise.php:451 +#: ../../enterprise/include/functions_enterprise.php:461 msgid "Tree view by tags" msgstr "Arborescence par étiquettes" -#: ../../enterprise/include/functions_enterprise.php:481 +#: ../../enterprise/include/functions_enterprise.php:491 msgid "" "If the interval of days until events data purge is shorter than the events " "data history storage interval, data will be lost. It is recommended that the " @@ -28949,14 +29093,14 @@ msgstr "" "perdues. Nous vous recommandons que la fréquence de stockage soit plus haute " "que la fréquence d'épurage." -#: ../../enterprise/include/functions_enterprise.php:483 +#: ../../enterprise/include/functions_enterprise.php:493 msgid "" "Problems with event days purge and event days that pass data to history DB." msgstr "" "Problèmes avec la date de nettoyage d'événements et la date de passage de " "données à l'historique de la BD." -#: ../../enterprise/include/functions_enterprise.php:494 +#: ../../enterprise/include/functions_enterprise.php:504 msgid "" "If days purge is less than history days pass to history db, you will have a " "problems and you lost data. Recommended that days purge will more taller than " @@ -28967,7 +29111,7 @@ msgstr "" "configurer la date de nettoyage à un niveau supérieur à la date de passage de " "l'historique de la BD." -#: ../../enterprise/include/functions_enterprise.php:496 +#: ../../enterprise/include/functions_enterprise.php:506 msgid "Problems with days purge and days that pass data to history DB" msgstr "" "Problèmes avec la date de nettoyage et la date de passage de données à " @@ -29020,7 +29164,7 @@ msgstr "Conformité SLA" #: ../../enterprise/include/functions_reporting.php:4223 #: ../../enterprise/include/functions_reporting.php:4874 #: ../../include/functions_reporting_html.php:877 -#: ../../include/functions_reporting_html.php:4881 +#: ../../include/functions_reporting_html.php:4909 msgid "Not Init" msgstr "Non initialisées" @@ -29066,7 +29210,7 @@ msgstr "Journal" #: ../../enterprise/include/functions_reporting.php:3458 #: ../../enterprise/include/functions_reporting.php:4434 #: ../../include/functions_reporting.php:1011 -#: ../../include/functions_reporting.php:9335 +#: ../../include/functions_reporting.php:9344 msgid "There are no SLAs defined" msgstr "Aucun SLA défini" @@ -29074,7 +29218,7 @@ msgstr "Aucun SLA défini" #: ../../enterprise/include/functions_reporting.php:3511 #: ../../enterprise/include/functions_reporting.php:4487 #: ../../include/functions_reporting.php:1086 -#: ../../include/functions_reporting.php:9713 +#: ../../include/functions_reporting.php:9722 msgid "Inverse" msgstr "Inverse" @@ -29123,7 +29267,7 @@ msgstr "SLA %" #: ../../enterprise/include/functions_reporting.php:6224 #: ../../enterprise/include/functions_services.php:1453 #: ../../include/functions_reporting_html.php:872 -#: ../../include/functions_reporting_html.php:4876 +#: ../../include/functions_reporting_html.php:4904 msgid "Unknow" msgstr "Inconnu" @@ -29131,7 +29275,7 @@ msgstr "Inconnu" #: ../../enterprise/include/functions_reporting.php:4228 #: ../../enterprise/include/functions_reporting.php:6229 #: ../../include/functions_reporting_html.php:882 -#: ../../include/functions_reporting_html.php:4886 +#: ../../include/functions_reporting_html.php:4914 msgid "Downtimes" msgstr "Arrêts" @@ -29165,8 +29309,8 @@ msgstr "% temps ok" #: ../../include/functions_reporting_html.php:680 #: ../../include/functions_reporting_html.php:751 #: ../../include/functions_reporting_html.php:829 -#: ../../include/functions_reporting_html.php:4333 -#: ../../include/functions_reporting_html.php:4480 +#: ../../include/functions_reporting_html.php:4361 +#: ../../include/functions_reporting_html.php:4508 msgid "24 x 7" msgstr "24h/24 7j/7" @@ -29189,17 +29333,17 @@ msgid "Checks Critical" msgstr "Vérifications critiques" #: ../../enterprise/include/functions_reporting.php:5085 -#: ../../include/functions_reporting_html.php:4257 +#: ../../include/functions_reporting_html.php:4285 msgid "Checks Warning" msgstr "Vérifications avertissement" #: ../../enterprise/include/functions_reporting.php:5168 #: ../../include/functions_reporting_html.php:809 -#: ../../include/functions_reporting_html.php:4523 -#: ../../include/functions_reporting_html.php:5075 -#: ../../include/functions_reporting_html.php:5078 +#: ../../include/functions_reporting_html.php:4551 +#: ../../include/functions_reporting_html.php:5103 +#: ../../include/functions_reporting_html.php:5106 #: ../../include/functions_reporting.php:1656 -#: ../../include/functions_reporting.php:3735 +#: ../../include/functions_reporting.php:3744 msgid "There are no Agent/Modules defined" msgstr "Aucun Agent/Module défini" @@ -29223,51 +29367,51 @@ msgid "Scheduled shutdow" msgstr "Temps d'arrête programé" #: ../../enterprise/include/functions_reporting.php:6600 -#: ../../enterprise/include/functions_reporting.php:7490 +#: ../../enterprise/include/functions_reporting.php:7499 #, php-format msgid "Graph agents(%s) - %s" msgstr "Agents de graphiques(%s) - %s" -#: ../../enterprise/include/functions_reporting.php:7398 +#: ../../enterprise/include/functions_reporting.php:7407 #, php-format msgid "Graph agent(%s) - %s" msgstr "Agent de graphiques(%s) - %s" -#: ../../enterprise/include/functions_reporting.php:7845 +#: ../../enterprise/include/functions_reporting.php:7854 msgid "There is not data for the selected conditions" msgstr "Il n'y a pas des données pour les conditions sélectionnées" -#: ../../enterprise/include/functions_reporting.php:8039 -#: ../../enterprise/include/functions_reporting.php:8105 +#: ../../enterprise/include/functions_reporting.php:8048 +#: ../../enterprise/include/functions_reporting.php:8114 msgid "Template editor" msgstr "Éditeur de modèle" -#: ../../enterprise/include/functions_reporting.php:8171 +#: ../../enterprise/include/functions_reporting.php:8180 #: ../../enterprise/operation/reporting/custom_reporting.php:130 msgid "ID Report" msgstr "Rapport ID" -#: ../../enterprise/include/functions_reporting.php:8239 +#: ../../enterprise/include/functions_reporting.php:8248 #: ../../enterprise/operation/reporting/custom_reporting.php:116 #: ../../enterprise/operation/reporting/custom_reporting.php:193 msgid "Send by email" msgstr "Envoyer par courriel" -#: ../../enterprise/include/functions_reporting.php:8327 +#: ../../enterprise/include/functions_reporting.php:8336 #: ../../enterprise/operation/reporting/custom_reporting.php:229 msgid "Send by email " msgstr "Envoyer par courriel " -#: ../../enterprise/include/functions_reporting.php:8368 +#: ../../enterprise/include/functions_reporting.php:8377 #: ../../include/functions_reports.php:655 msgid "Simple baseline graph" msgstr "Graphique simple de référence" -#: ../../enterprise/include/functions_reporting.php:8538 +#: ../../enterprise/include/functions_reporting.php:8547 msgid "Configuration changes" msgstr "Changements de configuration" -#: ../../enterprise/include/functions_reporting.php:8555 +#: ../../enterprise/include/functions_reporting.php:8564 msgid "No NCM capabilities detected" msgstr "Aucune fonctionnalité NCM détectée" @@ -29432,40 +29576,52 @@ msgstr "Poids OK" #: ../../enterprise/include/functions_services.php:1672 #: ../../enterprise/include/functions_services.php:1717 #: ../../enterprise/include/functions_services.php:1785 +#: ../../mobile/operation/services.php:231 +#: ../../mobile/operation/services.php:272 +#: ../../mobile/operation/services.php:338 msgid "Nonexistent. This element should be deleted" msgstr "Inexistant. Cet élément doit être supprimé." #: ../../enterprise/include/functions_services.php:1700 #: ../../enterprise/include/functions_services.php:1767 #: ../../enterprise/include/functions_services.php:1813 +#: ../../mobile/operation/services.php:255 +#: ../../mobile/operation/services.php:320 +#: ../../mobile/operation/services.php:363 msgid "This element does not affect service weigth because is disabled." msgstr "Cet élément n'affecte pas le poids du service parce qu'il est désactivé." #: ../../enterprise/include/functions_services.php:1828 +#: ../../mobile/operation/services.php:386 #, php-format msgid "Dynamic element (%d) '%s' does not match any target" msgstr "L'élément dynamique (%d) '%s' ne correspond avec aucun cible" #: ../../enterprise/include/functions_services.php:1837 +#: ../../mobile/operation/services.php:395 #, php-format msgid "Dynamic element (%d) '%s' causes an error: %s" msgstr "Élément dynamique (%d) '%s' cause une erreur : %s" #: ../../enterprise/include/functions_services.php:1849 +#: ../../mobile/operation/services.php:377 msgid "Dynamic element" msgstr "Élément dynamique" #: ../../enterprise/include/functions_services.php:1855 +#: ../../mobile/operation/services.php:405 #, php-format msgid "agents like \"%s\"" msgstr "agents comme « %s »" #: ../../enterprise/include/functions_services.php:1860 +#: ../../mobile/operation/services.php:410 #, php-format msgid "modules like \"%s\"" msgstr "modules comme « %s »" #: ../../enterprise/include/functions_services.php:1995 +#: ../../mobile/operation/services.php:450 msgid "NOT INITIALIZED" msgstr "NON INITIALISÉ" @@ -29562,46 +29718,46 @@ msgstr "Le mot de passe doit contenir des symboles." msgid "Invalid old password" msgstr "Mot de passe ancien invalide" -#: ../../enterprise/include/functions_login.php:451 +#: ../../enterprise/include/functions_login.php:455 msgid "Password confirm does not match" msgstr "Les mots de passe ne concordent pas." -#: ../../enterprise/include/functions_login.php:458 +#: ../../enterprise/include/functions_login.php:462 msgid "Password empty" msgstr "Mot de passe vide" -#: ../../enterprise/include/functions_login.php:577 -#: ../../godmode/users/configure_user.php:2065 -#: ../../godmode/users/configure_user.php:2134 -#: ../../godmode/users/configure_user.php:2205 +#: ../../enterprise/include/functions_login.php:581 +#: ../../godmode/users/configure_user.php:2117 +#: ../../godmode/users/configure_user.php:2186 +#: ../../godmode/users/configure_user.php:2257 #: ../../include/ajax/double_auth.ajax.php:267 #: ../../include/ajax/double_auth.ajax.php:365 #: ../../include/ajax/double_auth.ajax.php:411 #: ../../include/ajax/double_auth.ajax.php:527 -#: ../../operation/users/user_edit.php:1238 -#: ../../operation/users/user_edit.php:1304 -#: ../../operation/users/user_edit.php:1375 ../../general/register.php:165 +#: ../../operation/users/user_edit.php:1235 +#: ../../operation/users/user_edit.php:1301 +#: ../../operation/users/user_edit.php:1372 ../../general/register.php:165 #: ../../general/logon_failed.php:18 msgid "Authentication error" msgstr "Erreur d'authentification" -#: ../../enterprise/include/functions_login.php:584 -#: ../../godmode/users/configure_user.php:2071 -#: ../../godmode/users/configure_user.php:2140 +#: ../../enterprise/include/functions_login.php:588 +#: ../../godmode/users/configure_user.php:2123 +#: ../../godmode/users/configure_user.php:2192 #: ../../include/ajax/double_auth.ajax.php:274 #: ../../include/ajax/double_auth.ajax.php:372 #: ../../include/ajax/double_auth.ajax.php:418 #: ../../include/ajax/double_auth.ajax.php:535 -#: ../../operation/users/user_edit.php:1245 -#: ../../operation/users/user_edit.php:1311 ../../general/register.php:172 +#: ../../operation/users/user_edit.php:1242 +#: ../../operation/users/user_edit.php:1308 ../../general/register.php:172 msgid "There was an error loading the data" msgstr "Erreur de chargement des données" -#: ../../enterprise/include/functions_login.php:593 -#: ../../godmode/users/configure_user.php:2148 -#: ../../godmode/users/configure_user.php:2224 -#: ../../operation/users/user_edit.php:1319 -#: ../../operation/users/user_edit.php:1395 ../../general/register.php:181 +#: ../../enterprise/include/functions_login.php:597 +#: ../../godmode/users/configure_user.php:2200 +#: ../../godmode/users/configure_user.php:2276 +#: ../../operation/users/user_edit.php:1316 +#: ../../operation/users/user_edit.php:1392 ../../general/register.php:181 msgid "Double authentication activation" msgstr "Activation de la double authentification" @@ -29649,10 +29805,11 @@ msgid "Invalid plugin definition" msgstr "Définition de plugin non valide" #: ../../enterprise/include/lib/NetworkManager.php:82 -#: ../../godmode/setup/setup_ehorus.php:139 -#: ../../godmode/setup/setup_integria.php:652 -#: ../../operation/users/user_edit.php:872 -#: ../../operation/users/user_edit.php:925 +#: ../../godmode/setup/setup_ehorus.php:141 +#: ../../godmode/setup/setup_websocket_engine.php:91 +#: ../../godmode/setup/setup_integria.php:654 +#: ../../operation/users/user_edit.php:869 +#: ../../operation/users/user_edit.php:922 msgid "Test" msgstr "Test" @@ -29743,7 +29900,7 @@ msgstr "Récursif du group d'événement" #: ../../enterprise/include/lib/AlertCorrelation.class.php:1130 #: ../../include/functions_reporting_html.php:1057 #: ../../include/functions_reporting_html.php:1309 -#: ../../include/functions_reporting_html.php:2640 +#: ../../include/functions_reporting_html.php:2659 #: ../../include/class/SnmpConsole.class.php:276 msgid "Count" msgstr "Nombre" @@ -30482,22 +30639,22 @@ msgstr "Politique déjà définie : « %s »" #: ../../enterprise/include/functions_events.php:40 #: ../../godmode/events/event_filter.php:147 -#: ../../godmode/events/event_edit_filter.php:391 +#: ../../godmode/events/event_edit_filter.php:393 #: ../../include/lib/Dashboard/Widgets/events_list.php:389 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:305 -#: ../../operation/events/events.php:1763 ../../operation/events/events.php:2385 +#: ../../operation/events/events.php:1817 ../../operation/events/events.php:2439 msgid "Event status" msgstr "État des événements" #: ../../enterprise/include/functions_events.php:101 -#: ../../godmode/events/event_edit_filter.php:501 -#: ../../operation/events/events.php:2008 +#: ../../godmode/events/event_edit_filter.php:503 +#: ../../operation/events/events.php:2062 msgid "User ack." msgstr "Confirmation de l'utilisateur" #: ../../enterprise/include/functions_events.php:111 -#: ../../godmode/events/event_edit_filter.php:558 -#: ../../godmode/events/event_edit_filter.php:574 +#: ../../godmode/events/event_edit_filter.php:560 +#: ../../godmode/events/event_edit_filter.php:576 msgid "Date from" msgstr "Date de début" @@ -30506,15 +30663,15 @@ msgid "Date to" msgstr "Date de fin" #: ../../enterprise/include/functions_events.php:131 -#: ../../godmode/events/event_edit_filter.php:542 -#: ../../mobile/operation/events.php:816 ../../include/functions_events.php:4968 -#: ../../operation/events/events.php:1795 +#: ../../godmode/events/event_edit_filter.php:544 +#: ../../mobile/operation/events.php:845 ../../include/functions_events.php:4973 +#: ../../operation/events/events.php:1849 msgid "Repeated" msgstr "Répété" #: ../../enterprise/include/functions_events.php:141 -#: ../../godmode/events/event_edit_filter.php:759 -#: ../../operation/events/events.php:2054 +#: ../../godmode/events/event_edit_filter.php:761 +#: ../../operation/events/events.php:2108 msgid "Alert events" msgstr "Événements d'alerte" @@ -30523,15 +30680,15 @@ msgid "Id source events" msgstr "Événements de source d'ID" #: ../../enterprise/include/functions_events.php:162 -#: ../../godmode/events/event_edit_filter.php:475 -#: ../../mobile/operation/events.php:997 ../../include/functions_snmp.php:401 +#: ../../godmode/events/event_edit_filter.php:477 +#: ../../mobile/operation/events.php:1041 ../../include/functions_snmp.php:401 #: ../../include/class/SnmpConsole.class.php:407 #: ../../include/class/AuditLog.class.php:204 #: ../../include/lib/Dashboard/Widgets/events_list.php:347 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:286 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270 -#: ../../operation/events/events.php:1776 ../../operation/events/events.php:2415 +#: ../../operation/events/events.php:1830 ../../operation/events/events.php:2469 msgid "Max. hours old" msgstr "Heures maximales" @@ -30541,14 +30698,14 @@ msgid "More than 5 tags" msgstr "Plus de 5 étiquettes" #: ../../enterprise/include/functions_events.php:184 -#: ../../godmode/events/event_edit_filter.php:629 -#: ../../operation/events/events.php:2255 ../../operation/events/events.php:2258 +#: ../../godmode/events/event_edit_filter.php:631 +#: ../../operation/events/events.php:2309 ../../operation/events/events.php:2312 msgid "Events with following tags" msgstr "Événements avec les étiquettes suivantes" #: ../../enterprise/include/functions_events.php:206 -#: ../../godmode/events/event_edit_filter.php:694 -#: ../../operation/events/events.php:2256 ../../operation/events/events.php:2259 +#: ../../godmode/events/event_edit_filter.php:696 +#: ../../operation/events/events.php:2310 ../../operation/events/events.php:2313 msgid "Events without following tags" msgstr "Événements sans les étiquettes suivantes" @@ -30620,8 +30777,8 @@ msgid "Subscription" msgstr "Abonnement" #: ../../enterprise/include/functions_license.php:120 -#: ../../include/functions_menu.php:956 -#: ../../include/class/Diagnostics.class.php:1179 +#: ../../include/functions_menu.php:961 +#: ../../include/class/Diagnostics.class.php:1183 msgid "Support expires" msgstr "Le support expire" @@ -30643,7 +30800,7 @@ msgstr "Suivante IP disponible" #: ../../enterprise/include/functions_ipam.php:1343 #: ../../enterprise/tools/ipam/ipam_ajax.php:486 -#: ../../include/ajax/events.php:1753 +#: ../../include/ajax/events.php:1754 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:73 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:394 msgid "Details" @@ -30651,12 +30808,12 @@ msgstr "Détails" #: ../../enterprise/include/functions_ipam.php:1388 #: ../../enterprise/operation/services/services.list.php:677 -#: ../../godmode/agentes/inventory_manager.php:270 +#: ../../godmode/agentes/inventory_manager.php:271 #: ../../godmode/wizards/DiscoveryTaskList.class.php:589 #: ../../godmode/wizards/DiscoveryTaskList.class.php:679 -#: ../../operation/visual_console/view.php:424 -#: ../../operation/agentes/group_view.php:239 -#: ../../operation/agentes/group_view.php:302 +#: ../../operation/visual_console/view.php:426 +#: ../../operation/agentes/group_view.php:242 +#: ../../operation/agentes/group_view.php:305 msgid "Force" msgstr "Forcer" @@ -31063,7 +31220,7 @@ msgstr "Copie de" #: ../../enterprise/operation/agentes/ux_console_view.php:297 #: ../../enterprise/operation/agentes/ux_console_view.php:384 #: ../../enterprise/operation/agentes/wux_console_view.php:337 -#: ../../include/functions_ui.php:6749 +#: ../../include/functions_ui.php:6824 msgid "Snapshot view" msgstr "Vue de l'instantané" @@ -31074,9 +31231,11 @@ msgstr "Impossible de récupérer les données du module d'inventaire" #: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 #: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 #: ../../godmode/reporting/visual_console_builder.wizard.php:589 -#: ../../mobile/operation/agents.php:463 ../../mobile/operation/modules.php:799 -#: ../../mobile/operation/module_graph.php:477 -#: ../../mobile/operation/events.php:1150 ../../mobile/operation/tactical.php:239 +#: ../../mobile/operation/agents.php:471 ../../mobile/operation/modules.php:823 +#: ../../mobile/operation/module_graph.php:478 +#: ../../mobile/operation/events.php:1197 +#: ../../mobile/operation/server_status.php:389 +#: ../../mobile/operation/tactical.php:240 msgid "Loading..." msgstr "Chargement en cours..." @@ -31128,8 +31287,8 @@ msgstr "Afficher l'alerte" #: ../../enterprise/operation/agentes/policy_view.php:346 #: ../../godmode/alerts/alert_list.list.php:645 #: ../../godmode/alerts/alert_view.php:111 ../../mobile/operation/alerts.php:324 -#: ../../include/functions_ui.php:1417 -#: ../../include/class/AgentsAlerts.class.php:956 +#: ../../include/functions_ui.php:1460 +#: ../../include/class/AgentsAlerts.class.php:957 msgid "time(s)" msgstr "foi(s)" @@ -31137,10 +31296,10 @@ msgstr "foi(s)" #: ../../godmode/alerts/alert_list.list.php:651 #: ../../godmode/alerts/alert_view.php:117 ../../mobile/operation/alerts.php:330 #: ../../include/functions_agents.php:3000 -#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1423 -#: ../../include/class/AgentsAlerts.class.php:962 -#: ../../include/class/SnmpConsole.class.php:843 -#: ../../include/functions_reporting.php:13066 +#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1466 +#: ../../include/class/AgentsAlerts.class.php:963 +#: ../../include/class/SnmpConsole.class.php:845 +#: ../../include/functions_reporting.php:13139 msgid "Alert not fired" msgstr "Alerte non déclenchée" @@ -31174,7 +31333,7 @@ msgid "(Adopted) (Unlinked)" msgstr "(Adoptés) (Non liés)" #: ../../enterprise/operation/agentes/policy_view.php:458 -#: ../../godmode/agentes/module_manager.php:881 +#: ../../godmode/agentes/module_manager.php:895 msgid "Non initialized module" msgstr "Module non initialisé" @@ -31188,22 +31347,22 @@ msgstr "Module non initialisé" #: ../../enterprise/operation/agentes/tag_view.php:1169 #: ../../enterprise/operation/agentes/tag_view.php:1175 #: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634 -#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650 +#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/modules.php:653 ../../mobile/operation/modules.php:661 #: ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:2919 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:142 ../../operation/search_modules.php:150 -#: ../../operation/search_modules.php:158 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:145 ../../operation/search_modules.php:153 +#: ../../operation/search_modules.php:161 msgid "Last status" msgstr "Dernier état" @@ -31213,114 +31372,115 @@ msgid "Tag view" msgstr "Vue des étiquettes" #: ../../enterprise/operation/agentes/tag_view.php:54 -#: ../../extensions/agents_modules.php:556 ../../extensions/module_groups.php:264 +#: ../../extensions/agents_modules.php:564 ../../extensions/module_groups.php:264 #: ../../extensions/realtime_graphs.php:71 +#: ../../godmode/agentes/status_monitor_custom_fields.php:48 #: ../../include/class/AgentsAlerts.class.php:755 ../../operation/heatmap.php:144 #: ../../operation/agentes/alerts_status.php:202 #: ../../operation/agentes/estado_agente.php:250 #: ../../operation/agentes/interface_view.php:76 -#: ../../operation/agentes/status_monitor.php:340 +#: ../../operation/agentes/status_monitor.php:339 #: ../../operation/agentes/group_view.php:102 #: ../../operation/agentes/tactical.php:85 ../../operation/menu.php:165 msgid "Views" msgstr "Vues" #: ../../enterprise/operation/agentes/tag_view.php:139 -#: ../../operation/agentes/status_monitor.php:884 +#: ../../operation/agentes/status_monitor.php:883 msgid "Monitor status" msgstr "État du moniteur" #: ../../enterprise/operation/agentes/tag_view.php:241 -#: ../../operation/agentes/status_monitor.php:609 +#: ../../operation/agentes/status_monitor.php:608 #: ../../operation/agentes/alerts_status.functions.php:146 msgid "Only it is show tags in use." msgstr "Afficher seulement les étiquettes utilisées" #: ../../enterprise/operation/agentes/tag_view.php:288 #: ../../godmode/agentes/module_manager_editor_data.php:15 -#: ../../operation/agentes/status_monitor.php:655 +#: ../../operation/agentes/status_monitor.php:654 msgid "Data server module" msgstr "Module de serveur de données" #: ../../enterprise/operation/agentes/tag_view.php:290 -#: ../../godmode/agentes/module_manager_editor_network.php:78 -#: ../../operation/agentes/status_monitor.php:657 +#: ../../godmode/agentes/module_manager_editor_network.php:79 +#: ../../operation/agentes/status_monitor.php:656 msgid "Network server module" msgstr "Module de serveur de réseau" #: ../../enterprise/operation/agentes/tag_view.php:294 #: ../../godmode/agentes/module_manager_editor_plugin.php:46 -#: ../../operation/agentes/status_monitor.php:661 +#: ../../operation/agentes/status_monitor.php:660 msgid "Plugin server module" msgstr "Module du serveur plugin" #: ../../enterprise/operation/agentes/tag_view.php:298 #: ../../godmode/agentes/module_manager_editor_wmi.php:33 -#: ../../operation/agentes/status_monitor.php:665 +#: ../../operation/agentes/status_monitor.php:664 msgid "WMI server module" msgstr "Module serveur WMI" #: ../../enterprise/operation/agentes/tag_view.php:302 #: ../../godmode/agentes/module_manager_editor_prediction.php:117 -#: ../../operation/agentes/status_monitor.php:669 +#: ../../operation/agentes/status_monitor.php:668 msgid "Prediction server module" msgstr "Module de prédiction du serveur" #: ../../enterprise/operation/agentes/tag_view.php:306 #: ../../godmode/agentes/module_manager_editor_web.php:57 -#: ../../operation/agentes/status_monitor.php:673 +#: ../../operation/agentes/status_monitor.php:672 msgid "Web server module" msgstr "Module du serveur web" #: ../../enterprise/operation/agentes/tag_view.php:310 #: ../../enterprise/operation/agentes/tag_view.php:783 -#: ../../godmode/agentes/status_monitor_custom_fields.php:89 -#: ../../godmode/agentes/status_monitor_custom_fields.php:144 -#: ../../operation/agentes/status_monitor.php:935 -#: ../../operation/agentes/status_monitor.php:1553 +#: ../../godmode/agentes/status_monitor_custom_fields.php:109 +#: ../../godmode/agentes/status_monitor_custom_fields.php:164 +#: ../../operation/agentes/status_monitor.php:937 +#: ../../operation/agentes/status_monitor.php:1555 msgid "Server type" msgstr "Type de serveur" #: ../../enterprise/operation/agentes/tag_view.php:329 #: ../../godmode/agentes/modificar_agente.php:290 -#: ../../operation/agentes/status_monitor.php:681 +#: ../../operation/agentes/status_monitor.php:680 msgid "Only enabled" msgstr "Activés seulement" #: ../../enterprise/operation/agentes/tag_view.php:330 #: ../../godmode/agentes/modificar_agente.php:289 #: ../../include/class/SatelliteAgent.class.php:153 -#: ../../operation/agentes/status_monitor.php:682 +#: ../../operation/agentes/status_monitor.php:681 msgid "Only disabled" msgstr "Désactivés seulement" #: ../../enterprise/operation/agentes/tag_view.php:334 -#: ../../operation/agentes/status_monitor.php:953 +#: ../../operation/agentes/status_monitor.php:955 msgid "Show monitors..." msgstr "Afficher les moniteurs" #: ../../enterprise/operation/agentes/tag_view.php:358 #: ../../enterprise/operation/agentes/tag_view.php:782 -#: ../../godmode/agentes/status_monitor_custom_fields.php:81 -#: ../../godmode/agentes/status_monitor_custom_fields.php:142 -#: ../../operation/agentes/status_monitor.php:976 +#: ../../godmode/agentes/status_monitor_custom_fields.php:101 +#: ../../godmode/agentes/status_monitor_custom_fields.php:162 +#: ../../operation/agentes/status_monitor.php:978 msgid "Data type" msgstr "Type de données" #: ../../enterprise/operation/agentes/tag_view.php:503 #: ../../operation/agentes/estado_agente.php:431 #: ../../operation/agentes/agent_fields.php:37 -#: ../../operation/agentes/status_monitor.php:1007 +#: ../../operation/agentes/status_monitor.php:1009 msgid "Agent custom fields" msgstr "Champs d'agent personnalisés" #: ../../enterprise/operation/agentes/tag_view.php:672 -#: ../../operation/agentes/status_monitor.php:2280 +#: ../../operation/agentes/status_monitor.php:2282 msgid "Sorry no search parameters" msgstr "Pas de paramètres de recherche" #: ../../enterprise/operation/agentes/tag_view.php:748 -#: ../../operation/agentes/estado_agente.php:1206 +#: ../../operation/agentes/estado_agente.php:1215 msgid "Remote config" msgstr "Configuration à distance" @@ -31328,67 +31488,68 @@ msgstr "Configuration à distance" #: ../../enterprise/operation/services/services.service.php:121 #: ../../enterprise/operation/services/services.list.php:547 #: ../../extensions/realtime_graphs.php:112 -#: ../../godmode/agentes/status_monitor_custom_fields.php:105 -#: ../../godmode/agentes/status_monitor_custom_fields.php:148 +#: ../../godmode/agentes/status_monitor_custom_fields.php:125 +#: ../../godmode/agentes/status_monitor_custom_fields.php:168 +#: ../../mobile/operation/modules.php:856 #: ../../include/functions_visual_map_editor.php:58 -#: ../../include/class/NetworkMap.class.php:3065 +#: ../../include/class/NetworkMap.class.php:3071 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:340 -#: ../../include/functions_events.php:4508 +#: ../../include/functions_events.php:4513 #: ../../operation/agentes/interface_view.functions.php:558 -#: ../../operation/agentes/status_monitor.php:1579 -#: ../../operation/search_modules.php:37 +#: ../../operation/agentes/status_monitor.php:1581 +#: ../../operation/search_modules.php:40 msgid "Graph" msgstr "Graphique" #: ../../enterprise/operation/agentes/tag_view.php:786 -#: ../../godmode/agentes/status_monitor_custom_fields.php:109 -#: ../../godmode/agentes/status_monitor_custom_fields.php:149 +#: ../../godmode/agentes/status_monitor_custom_fields.php:129 +#: ../../godmode/agentes/status_monitor_custom_fields.php:169 #: ../../godmode/agentes/module_manager.php:646 msgid "Warn" msgstr "Alerte" #: ../../enterprise/operation/agentes/tag_view.php:1083 -#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605 +#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:616 #: ../../include/functions_modules.php:2896 #: ../../include/functions_modules.php:4251 ../../include/functions_events.php:70 -#: ../../operation/agentes/status_monitor.php:1784 -#: ../../operation/search_modules.php:109 ../../operation/events/events.php:746 +#: ../../operation/agentes/status_monitor.php:1786 +#: ../../operation/search_modules.php:112 ../../operation/events/events.php:751 msgid "NOT INIT" msgstr "NON INITIALISÉ" #: ../../enterprise/operation/agentes/tag_view.php:1223 -#: ../../include/functions_reporting.php:13188 -#: ../../include/functions_reporting.php:13197 +#: ../../include/functions_reporting.php:13261 +#: ../../include/functions_reporting.php:13270 #, php-format msgid "%d Total modules" msgstr "%d modules au total" #: ../../enterprise/operation/agentes/tag_view.php:1224 -#: ../../include/functions_reporting.php:13189 +#: ../../include/functions_reporting.php:13262 #, php-format msgid "%d Modules in normal status" msgstr "%d modules en état normal" #: ../../enterprise/operation/agentes/tag_view.php:1225 -#: ../../include/functions_reporting.php:13190 +#: ../../include/functions_reporting.php:13263 #, php-format msgid "%d Modules in critical status" msgstr "%d modules en état critique" #: ../../enterprise/operation/agentes/tag_view.php:1226 -#: ../../include/functions_reporting.php:13191 +#: ../../include/functions_reporting.php:13264 #, php-format msgid "%d Modules in warning status" msgstr "%d modules en état d'alerte" #: ../../enterprise/operation/agentes/tag_view.php:1227 -#: ../../include/functions_reporting.php:13192 +#: ../../include/functions_reporting.php:13265 #, php-format msgid "%d Modules in unknown status" msgstr "%d modules en état inconnu" #: ../../enterprise/operation/agentes/tag_view.php:1228 -#: ../../include/functions_reporting.php:13193 +#: ../../include/functions_reporting.php:13266 #, php-format msgid "%d Modules in not init status" msgstr "%d modules en état non initialisés" @@ -31399,7 +31560,7 @@ msgid "Main IP" msgstr "Adresse IP principale" #: ../../enterprise/operation/agentes/ver_agente.php:96 -#: ../../include/functions_events.php:4435 +#: ../../godmode/groups/tactical.php:182 ../../include/functions_events.php:4440 #: ../../operation/agentes/ver_agente.php:1047 msgid "Last remote contact" msgstr "Dernier contact à distance" @@ -31410,24 +31571,24 @@ msgid "Monitors down" msgstr "Moniteurs hors service" #: ../../enterprise/operation/agentes/ver_agente.php:182 -#: ../../mobile/operation/groups.php:174 +#: ../../mobile/operation/groups.php:213 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:600 #: ../../operation/agentes/ver_agente.php:1133 msgid "Alerts fired" msgstr "Alertes déclenchées" #: ../../enterprise/operation/agentes/ver_agente.php:297 -#: ../../operation/agentes/ver_agente.php:1877 +#: ../../operation/agentes/ver_agente.php:1873 msgid "URL Route Analyzer" msgstr "Analyseur d’itinéraire d’URL" #: ../../enterprise/operation/agentes/ver_agente.php:316 -#: ../../operation/agentes/ver_agente.php:1868 +#: ../../operation/agentes/ver_agente.php:1864 msgid "UX Console" msgstr "Console UX" #: ../../enterprise/operation/agentes/ver_agente.php:335 -#: ../../operation/agentes/ver_agente.php:1872 +#: ../../operation/agentes/ver_agente.php:1868 msgid "WUX Console" msgstr "Console WUX" @@ -31527,10 +31688,10 @@ msgid "View all stats" msgstr "Voir toutes les statistiques" #: ../../enterprise/operation/agentes/wux_console_view.php:570 -#: ../../include/class/SnmpConsole.class.php:893 -#: ../../include/class/SnmpConsole.class.php:894 ../../operation/menu.php:379 -#: ../../operation/menu.php:381 ../../operation/events/events.php:590 -#: ../../operation/events/events.php:855 +#: ../../include/class/SnmpConsole.class.php:895 +#: ../../include/class/SnmpConsole.class.php:896 ../../operation/menu.php:379 +#: ../../operation/menu.php:381 ../../operation/events/events.php:595 +#: ../../operation/events/events.php:860 msgid "Show more" msgstr "Afficher plus" @@ -31540,7 +31701,7 @@ msgstr "Transaction invalide." #: ../../enterprise/operation/log/elasticsearch_interface.php:37 #: ../../enterprise/operation/log/elasticsearch_interface.php:50 -#: ../../enterprise/operation/log/log_viewer.php:413 +#: ../../enterprise/operation/log/log_viewer.php:411 #: ../../enterprise/operation/menu.php:192 msgid "Elasticsearch Interface" msgstr "Interface Elasticsearch" @@ -31560,50 +31721,50 @@ msgstr "" "Cette vue est destinée à être utilisée uniquement par les utilisateurs ayant " "une connaissance d’Elasticsearch" -#: ../../enterprise/operation/log/log_viewer.php:427 -#: ../../enterprise/operation/log/log_viewer.php:445 -#: ../../enterprise/operation/log/log_viewer.php:455 +#: ../../enterprise/operation/log/log_viewer.php:425 +#: ../../enterprise/operation/log/log_viewer.php:443 +#: ../../enterprise/operation/log/log_viewer.php:453 msgid "Log sources" msgstr "Sources de journaux" -#: ../../enterprise/operation/log/log_viewer.php:519 +#: ../../enterprise/operation/log/log_viewer.php:517 #: ../../godmode/modules/manage_inventory_modules.php:83 #: ../../godmode/modules/manage_inventory_modules_form.php:57 #: ../../godmode/netflow/nf_edit.php:70 -#: ../../operation/netflow/nf_live_view.php:150 +#: ../../operation/netflow/nf_live_view.php:155 msgid "Not supported in Windows systems" msgstr "Pas pris en charge sur Windows" -#: ../../enterprise/operation/log/log_viewer.php:541 +#: ../../enterprise/operation/log/log_viewer.php:539 msgid "All words" msgstr "Tous les mots" -#: ../../enterprise/operation/log/log_viewer.php:542 +#: ../../enterprise/operation/log/log_viewer.php:540 msgid "Any word" msgstr "N'importe quel mot" -#: ../../enterprise/operation/log/log_viewer.php:547 +#: ../../enterprise/operation/log/log_viewer.php:545 msgid "Search mode" msgstr "Mode recherche" -#: ../../enterprise/operation/log/log_viewer.php:607 +#: ../../enterprise/operation/log/log_viewer.php:605 #: ../../godmode/reporting/reporting_builder.item_editor.php:1325 msgid "Full context" msgstr "Contexte complet" -#: ../../enterprise/operation/log/log_viewer.php:660 +#: ../../enterprise/operation/log/log_viewer.php:658 msgid "Select dates by range" msgstr "Sélectionner des dates par plage" -#: ../../enterprise/operation/log/log_viewer.php:671 +#: ../../enterprise/operation/log/log_viewer.php:669 #: ../../godmode/reporting/create_container.php:417 #: ../../include/functions.php:2744 msgid "custom" msgstr "personnalisé" +#: ../../enterprise/operation/log/log_viewer.php:671 +#: ../../enterprise/operation/log/log_viewer.php:672 #: ../../enterprise/operation/log/log_viewer.php:673 -#: ../../enterprise/operation/log/log_viewer.php:674 -#: ../../enterprise/operation/log/log_viewer.php:675 #: ../../godmode/reporting/create_container.php:419 #: ../../godmode/reporting/create_container.php:420 #: ../../godmode/reporting/create_container.php:421 @@ -31614,8 +31775,8 @@ msgstr "personnalisé" msgid "%s hours" msgstr "%s heures" -#: ../../enterprise/operation/log/log_viewer.php:677 -#: ../../enterprise/operation/log/log_viewer.php:678 +#: ../../enterprise/operation/log/log_viewer.php:675 +#: ../../enterprise/operation/log/log_viewer.php:676 #: ../../godmode/reporting/create_container.php:423 #: ../../godmode/reporting/create_container.php:424 #: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152 @@ -31623,81 +31784,81 @@ msgstr "%s heures" msgid "%s days" msgstr "%s jours" -#: ../../enterprise/operation/log/log_viewer.php:679 +#: ../../enterprise/operation/log/log_viewer.php:677 #: ../../godmode/reporting/create_container.php:425 -#: ../../include/functions.php:2759 ../../include/ajax/module.php:225 +#: ../../include/functions.php:2759 ../../include/ajax/module.php:248 #: ../../include/ajax/graph.ajax.php:153 msgid "1 week" msgstr "1 semaine" -#: ../../enterprise/operation/log/log_viewer.php:681 +#: ../../enterprise/operation/log/log_viewer.php:679 #: ../../godmode/reporting/create_container.php:427 -#: ../../include/functions.php:2761 ../../include/ajax/module.php:227 +#: ../../include/functions.php:2761 ../../include/ajax/module.php:250 #: ../../include/ajax/graph.ajax.php:155 #: ../../include/class/AuditLog.class.php:214 msgid "1 month" msgstr "1 mois" -#: ../../enterprise/operation/log/log_viewer.php:684 -#: ../../enterprise/operation/log/log_viewer.php:704 +#: ../../enterprise/operation/log/log_viewer.php:682 +#: ../../enterprise/operation/log/log_viewer.php:702 #: ../../operation/network/network_report.php:114 #: ../../operation/network/network_usage_map.php:128 -#: ../../operation/netflow/nf_live_view.php:403 +#: ../../operation/netflow/nf_live_view.php:476 msgid "Start date" msgstr "Date du démarrage" -#: ../../enterprise/operation/log/log_viewer.php:736 +#: ../../enterprise/operation/log/log_viewer.php:734 #: ../../operation/agentes/exportdata.php:427 #: ../../operation/network/network_report.php:157 #: ../../operation/network/network_usage_map.php:161 -#: ../../operation/netflow/nf_live_view.php:436 +#: ../../operation/netflow/nf_live_view.php:509 msgid "End date" msgstr "Date de fin" -#: ../../enterprise/operation/log/log_viewer.php:806 -#: ../../enterprise/operation/log/log_viewer.php:807 +#: ../../enterprise/operation/log/log_viewer.php:804 +#: ../../enterprise/operation/log/log_viewer.php:805 msgid "Edit sources" msgstr "Modifier les sources" -#: ../../enterprise/operation/log/log_viewer.php:853 +#: ../../enterprise/operation/log/log_viewer.php:851 msgid "Show log entries" msgstr "Afficher les entrées de journal" -#: ../../enterprise/operation/log/log_viewer.php:854 +#: ../../enterprise/operation/log/log_viewer.php:852 msgid "Graph log results" msgstr "Résultats du journal graphique" -#: ../../enterprise/operation/log/log_viewer.php:857 +#: ../../enterprise/operation/log/log_viewer.php:855 msgid "Display mode" msgstr "Mode d'affichage" -#: ../../enterprise/operation/log/log_viewer.php:875 +#: ../../enterprise/operation/log/log_viewer.php:873 msgid "Use capture model" msgstr "Utiliser le modèle de capture" -#: ../../enterprise/operation/log/log_viewer.php:910 +#: ../../enterprise/operation/log/log_viewer.php:908 msgid "Create new model" msgstr "Créez un nouveau modèle" -#: ../../enterprise/operation/log/log_viewer.php:918 +#: ../../enterprise/operation/log/log_viewer.php:916 #: ../../godmode/reporting/graph_builder.main.php:214 msgid "Horizontal bars" msgstr "Barres horizontales" -#: ../../enterprise/operation/log/log_viewer.php:919 +#: ../../enterprise/operation/log/log_viewer.php:917 #: ../../godmode/reporting/graph_builder.main.php:215 msgid "Vertical bars" msgstr "Barres verticales" -#: ../../enterprise/operation/log/log_viewer.php:922 +#: ../../enterprise/operation/log/log_viewer.php:920 msgid "Graph type" msgstr "Type de graphique" -#: ../../enterprise/operation/log/log_viewer.php:942 +#: ../../enterprise/operation/log/log_viewer.php:940 msgid "Advanced options " msgstr "Options avancées" -#: ../../enterprise/operation/log/log_viewer.php:1101 +#: ../../enterprise/operation/log/log_viewer.php:1099 msgid "" "The maximum limit of rows has been exceeded. Please enter an email to send the " "csv file" @@ -31705,11 +31866,11 @@ msgstr "" "La limite maximale de lignes a été dépassée. Veuillez entrer un e-mail pour " "envoyer le fichier csv" -#: ../../enterprise/operation/log/log_viewer.php:1103 +#: ../../enterprise/operation/log/log_viewer.php:1101 msgid "e-mail address" msgstr "adresse e-mail" -#: ../../enterprise/operation/log/log_viewer.php:1106 +#: ../../enterprise/operation/log/log_viewer.php:1104 msgid "" "WARNING: If your email size exceeds your mail attachment size limit, the file " "will be saved in the local attachment folder." @@ -31718,27 +31879,27 @@ msgstr "" "votre attachement, le fichier sera enregistré dans le dossier des attachements " "local." -#: ../../enterprise/operation/log/log_viewer.php:1239 +#: ../../enterprise/operation/log/log_viewer.php:1237 msgid "The start date cannot be greater than the end date" msgstr "La date de début ne peut pas être supérieure à la date de fin." -#: ../../enterprise/operation/log/log_viewer.php:1676 +#: ../../enterprise/operation/log/log_viewer.php:1674 msgid "Add new capture model" msgstr "Ajouter un nouveau modèle de capture" -#: ../../enterprise/operation/log/log_viewer.php:1679 +#: ../../enterprise/operation/log/log_viewer.php:1677 msgid "Edit capture model" msgstr "Modifier le modèle de capture" -#: ../../enterprise/operation/log/log_viewer.php:1762 +#: ../../enterprise/operation/log/log_viewer.php:1760 msgid "Error create new model" msgstr "Erreur lors de la création d’un nouveau modèle" -#: ../../enterprise/operation/log/log_viewer.php:1789 +#: ../../enterprise/operation/log/log_viewer.php:1787 msgid "Error delete model" msgstr "Erreur en supprimant le modèle" -#: ../../enterprise/operation/log/log_viewer.php:1835 +#: ../../enterprise/operation/log/log_viewer.php:1833 msgid "Error update model" msgstr "Erreur lors de la mise à jour du modèle" @@ -31751,8 +31912,8 @@ msgid "AWS view" msgstr "Vue AWS" #: ../../enterprise/operation/menu.php:48 -#: ../../operation/agentes/ver_agente.php:1698 -#: ../../operation/agentes/ver_agente.php:1905 +#: ../../operation/agentes/ver_agente.php:1694 +#: ../../operation/agentes/ver_agente.php:1901 msgid "SAP view" msgstr "Vue SAP" @@ -31887,7 +32048,7 @@ msgstr "Définition d’élément(s)" msgid "Add selected" msgstr "Ajouter la sélection" -#: ../../enterprise/operation/services/massive/services.create.php:1170 +#: ../../enterprise/operation/services/massive/services.create.php:1182 msgid "" "Weights configured are common for every item added to the service, if you want " "to customize them, please edit the service." @@ -31895,49 +32056,49 @@ msgstr "" "Les poids configurés sont communs pour chaque article ajouté au service, si " "vous souhaitez les personnaliser, veuillez modifier le service." -#: ../../enterprise/operation/services/massive/services.create.php:1174 +#: ../../enterprise/operation/services/massive/services.create.php:1186 #: ../../enterprise/operation/services/massive/service.delete.elements.php:209 #: ../../enterprise/operation/services/massive/service.create.elements.php:532 #: ../../enterprise/operation/services/massive/service.edit.elements.php:290 msgid "Service items summary" msgstr "Résumé des éléments de service" -#: ../../enterprise/operation/services/massive/services.create.php:1181 +#: ../../enterprise/operation/services/massive/services.create.php:1193 #: ../../enterprise/operation/services/massive/service.create.elements.php:539 #: ../../enterprise/operation/services/massive/service.edit.elements.php:298 -#: ../../include/functions_visual_map_editor.php:1146 -#: ../../include/rest-api/models/VisualConsole/Item.php:2528 +#: ../../include/functions_visual_map_editor.php:1198 +#: ../../include/rest-api/models/VisualConsole/Item.php:2531 msgid "Critical weight" msgstr "Poids critique" -#: ../../enterprise/operation/services/massive/services.create.php:1193 +#: ../../enterprise/operation/services/massive/services.create.php:1205 #: ../../enterprise/operation/services/massive/service.create.elements.php:552 #: ../../enterprise/operation/services/massive/service.edit.elements.php:311 -#: ../../include/functions_visual_map_editor.php:1172 -#: ../../include/rest-api/models/VisualConsole/Item.php:2542 +#: ../../include/functions_visual_map_editor.php:1224 +#: ../../include/rest-api/models/VisualConsole/Item.php:2545 msgid "Warning weight" msgstr "Poids d'alerte" -#: ../../enterprise/operation/services/massive/services.create.php:1205 +#: ../../enterprise/operation/services/massive/services.create.php:1217 #: ../../enterprise/operation/services/massive/service.create.elements.php:565 #: ../../enterprise/operation/services/massive/service.edit.elements.php:324 msgid "Unknown weight" msgstr "Poids inconnu" -#: ../../enterprise/operation/services/massive/services.create.php:1217 +#: ../../enterprise/operation/services/massive/services.create.php:1229 #: ../../enterprise/operation/services/massive/service.create.elements.php:578 #: ../../enterprise/operation/services/massive/service.edit.elements.php:337 msgid "Normal weight" msgstr "Poids normal" -#: ../../enterprise/operation/services/massive/services.create.php:1289 +#: ../../enterprise/operation/services/massive/services.create.php:1301 #: ../../enterprise/operation/services/massive/service.delete.elements.php:246 #: ../../enterprise/operation/services/massive/service.create.elements.php:594 #: ../../enterprise/operation/services/massive/service.edit.elements.php:353 msgid "Selected services" msgstr "Services sélectionnés" -#: ../../enterprise/operation/services/massive/services.create.php:1370 +#: ../../enterprise/operation/services/massive/services.create.php:1382 msgid "Create service" msgstr "Créer un service" @@ -32060,10 +32221,10 @@ msgid "Show sunburst" msgstr "Afficher sunburst" #: ../../enterprise/operation/services/services.service_map.php:129 -#: ../../extensions/agents_modules.php:1043 +#: ../../extensions/agents_modules.php:1067 #: ../../extensions/module_groups.php:464 #: ../../godmode/snmpconsole/snmp_alert.php:2203 -#: ../../include/functions_reporting_html.php:2281 +#: ../../include/functions_reporting_html.php:2302 #: ../../include/class/SnmpConsole.class.php:522 msgid "Legend" msgstr "Légende" @@ -32102,23 +32263,24 @@ msgstr "Créer un service" #: ../../enterprise/operation/services/services.treeview_services.php:281 #: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:89 -#: ../../godmode/groups/group_list.php:1074 -#: ../../include/functions_inventory.php:301 -#: ../../include/class/Heatmap.class.php:1234 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:694 -#: ../../operation/tree.php:463 ../../operation/tree.php:493 +#: ../../godmode/groups/group_list.php:1086 +#: ../../include/functions_inventory.php:310 +#: ../../include/class/Heatmap.class.php:1272 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:687 +#: ../../operation/tree.php:465 ../../operation/tree.php:495 #: ../../operation/network/network_report.php:391 msgid "No data found" msgstr "Aucune donnée disponible" #: ../../enterprise/operation/services/services.treeview_services.php:282 -#: ../../godmode/groups/group_list.php:1075 +#: ../../godmode/groups/group_list.php:1087 msgid "Found groups" msgstr "Groupes trouvés" #: ../../enterprise/operation/services/services.treeview_services.php:376 -#: ../../operation/tree.php:591 ../../operation/agentes/status_monitor.php:2419 -#: ../../operation/agentes/estado_monitores.php:430 +#: ../../operation/tree.php:593 ../../operation/agentes/status_monitor.php:2421 +#: ../../operation/agentes/estado_monitores.php:427 +#: ../../operation/search_modules.php:302 msgid "Module: " msgstr "Module : " @@ -32523,8 +32685,8 @@ msgstr "Éliminer du super-réseau" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1515 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:990 -#: ../../include/functions_visual_map_editor.php:791 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564 +#: ../../include/functions_visual_map_editor.php:831 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:727 msgid "Show statistics" msgstr "Afficher les statistiques" @@ -32588,7 +32750,7 @@ msgstr "Supprimer le réseau" #: ../../operation/agentes/interface_view.functions.php:97 #: ../../operation/agentes/interface_view.functions.php:150 #: ../../operation/agentes/ver_agente.php:1419 -#: ../../operation/agentes/ver_agente.php:1844 +#: ../../operation/agentes/ver_agente.php:1840 msgid "Interfaces" msgstr "Interfaces" @@ -32613,7 +32775,7 @@ msgid "Please enter adress, for search vlans" msgstr "Veuillez entrer l'adresse pour chercher des vlans" #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:435 -#: ../../godmode/wizards/HostDevices.class.php:1287 +#: ../../godmode/wizards/HostDevices.class.php:1283 msgid "Context" msgstr "Contexte" @@ -32656,13 +32818,13 @@ msgid "Network name already exists in supernet %s (%s)" msgstr "Nom du réseau existe déjà dans le super-réseau %s (%s)" #: ../../enterprise/tools/ipam/ipam_action.php:445 -#: ../../operation/agentes/pandora_networkmap.view.php:1689 +#: ../../operation/agentes/pandora_networkmap.view.php:1690 msgid "Could not be updated." msgstr "Erreur de mise à jour" #: ../../enterprise/tools/ipam/ipam_action.php:451 #: ../../update_manager_client/views/offline.php:78 -#: ../../update_manager_client/views/online.php:94 +#: ../../update_manager_client/views/online.php:96 msgid "Successfully updated." msgstr "Mis à jour correctement" @@ -32678,8 +32840,8 @@ msgstr "Erreur de création : nom en blanc." #: ../../enterprise/tools/ipam/ipam_network_location_config.php:72 #: ../../godmode/modules/manage_nc_groups.php:143 -#: ../../godmode/netflow/nf_edit_form.php:141 ../../godmode/setup/news.php:125 -#: ../../godmode/events/event_edit_filter.php:243 +#: ../../godmode/netflow/nf_edit_form.php:173 ../../godmode/setup/news.php:125 +#: ../../godmode/events/event_edit_filter.php:245 msgid "Not updated. Error updating data" msgstr "Erreur de mise à jour des données" @@ -32749,7 +32911,7 @@ msgid "leased expiration" msgstr "expiration loué" #: ../../enterprise/tools/ipam/ipam_ajax.php:476 -#: ../../include/class/NetworkMap.class.php:3067 +#: ../../include/class/NetworkMap.class.php:3073 msgid "MAC" msgstr "MAC" @@ -32771,7 +32933,7 @@ msgid "Executing command: %s" msgstr "Exécution de la commande : %s" #: ../../enterprise/tools/ipam/ipam_ajax.php:554 -#: ../../include/functions_events.php:5965 +#: ../../include/functions_events.php:5970 msgid "Execute again" msgstr "Exécuter à nouveau" @@ -33018,8 +33180,8 @@ msgid "Click on the file below to begin." msgstr "Cliquez sur le fichier ci-dessous pour commencer." #: ../../update_manager_client/views/offline.php:70 -#: ../../update_manager_client/views/online.php:123 -#: ../../update_manager_client/views/online.php:164 +#: ../../update_manager_client/views/online.php:125 +#: ../../update_manager_client/views/online.php:166 msgid "This action will upgrade this console to version " msgstr "Cette action mettra à niveau cette console vers la version" @@ -33028,27 +33190,27 @@ msgid "This action will upgrade all servers to version " msgstr "Cette action mettra à niveau tous les serveurs vers la version" #: ../../update_manager_client/views/offline.php:73 -#: ../../update_manager_client/views/online.php:89 +#: ../../update_manager_client/views/online.php:91 msgid "Updating to" msgstr "Mise à jour vers" #: ../../update_manager_client/views/offline.php:74 -#: ../../update_manager_client/views/online.php:90 +#: ../../update_manager_client/views/online.php:92 msgid "Do you really want to leave our brilliant application?" msgstr "Voulez-vous vraiment quitter notre brillante application ?" #: ../../update_manager_client/views/offline.php:75 -#: ../../update_manager_client/views/online.php:91 +#: ../../update_manager_client/views/online.php:93 msgid "There are no updates available" msgstr "Il n’y a pas de mises à jour disponibles." #: ../../update_manager_client/views/offline.php:76 -#: ../../update_manager_client/views/online.php:92 +#: ../../update_manager_client/views/online.php:94 msgid "Searching for updates..." msgstr "Recherche des mises à jour..." #: ../../update_manager_client/views/offline.php:77 -#: ../../update_manager_client/views/online.php:93 +#: ../../update_manager_client/views/online.php:95 msgid "Package" msgstr "Package" @@ -33128,16 +33290,16 @@ msgstr "" "pas installée à moins que les correctifs ne soient autorisés. Veuillez activer " "les correctifs dans les paramètres du gestionnaire de mises à jour." -#: ../../update_manager_client/views/register.php:47 +#: ../../update_manager_client/views/register.php:48 msgid "Register to Warp Update" msgstr "S’inscrire à Warp Update" -#: ../../update_manager_client/views/register.php:54 +#: ../../update_manager_client/views/register.php:55 #, php-format msgid "Keep this %s console up to date with latest updates." msgstr "Gardez cette %s console à jour avec les dernières mises à jour." -#: ../../update_manager_client/views/register.php:61 +#: ../../update_manager_client/views/register.php:62 #, php-format msgid "" "When you subscribe to the Warp update service for %s, you accept that we\n" @@ -33155,24 +33317,24 @@ msgstr "" " ladite base de données à tout moment depuis les options de Update " "Manager." -#: ../../update_manager_client/views/register.php:74 +#: ../../update_manager_client/views/register.php:75 msgid "Visit our privacy policy for more information" msgstr "Visitez notre politique de confidentialité pour plus d'informations" -#: ../../update_manager_client/views/register.php:78 -#: ../../include/class/Diagnostics.class.php:1938 +#: ../../update_manager_client/views/register.php:79 +#: ../../include/class/Diagnostics.class.php:1942 msgid "Your email" msgstr "Votre email" -#: ../../update_manager_client/views/register.php:97 +#: ../../update_manager_client/views/register.php:98 msgid "OK!" msgstr "OK !" -#: ../../update_manager_client/views/register.php:112 +#: ../../update_manager_client/views/register.php:113 msgid "Are you sure you don't want to use Warp update?" msgstr "Êtes-vous sûr de ne pas vouloir utiliser Warp Update?" -#: ../../update_manager_client/views/register.php:116 +#: ../../update_manager_client/views/register.php:117 msgid "" "You will need to update your system manually, through source code or RPM\n" " packages to be up to date with latest updates." @@ -33180,11 +33342,11 @@ msgstr "" "Vous devrez mettre à jour votre système manuellement, via le code source ou " "RPM packages pour être à jour avec les dernières mises à jour." -#: ../../update_manager_client/views/register.php:208 +#: ../../update_manager_client/views/register.php:209 msgid "Unsuccessful subscription" msgstr "Abonnement infructueux" -#: ../../update_manager_client/views/register.php:213 +#: ../../update_manager_client/views/register.php:214 msgid "Pandora successfully subscribed with UID: " msgstr "Pandora FMS abonné correctement avec UID : " @@ -33192,25 +33354,25 @@ msgstr "Pandora FMS abonné correctement avec UID : " msgid "The latest version of package installed is" msgstr "La dernière version du paquet installé est" -#: ../../update_manager_client/views/online.php:64 +#: ../../update_manager_client/views/online.php:65 msgid "Update to next version" msgstr "Mettre à jour vers la prochaine version" -#: ../../update_manager_client/views/online.php:65 +#: ../../update_manager_client/views/online.php:66 msgid "Update to latest version" msgstr "Mise à jour vers la dernière version" -#: ../../update_manager_client/views/online.php:124 -#: ../../update_manager_client/views/online.php:165 +#: ../../update_manager_client/views/online.php:126 +#: ../../update_manager_client/views/online.php:167 msgid "Update to" msgstr "Mettre à jour vers" -#: ../../update_manager_client/views/online.php:145 -#: ../../update_manager_client/views/online.php:149 +#: ../../update_manager_client/views/online.php:147 +#: ../../update_manager_client/views/online.php:151 msgid "Failed to update to " msgstr "Échec lors de la mise à jour" -#: ../../update_manager_client/views/online.php:188 +#: ../../update_manager_client/views/online.php:190 msgid "Failed to update:" msgstr "Échec lors de la mise à jour :" @@ -33239,25 +33401,25 @@ msgstr "Échec de la création du répertoire temporaire." msgid "Failed storing uploaded file." msgstr "Échec du stockage du fichier téléchargé." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:648 #, php-format msgid "Invalid extension. The package needs to be in `%s` or `%s` format." msgstr "Extension invalide. Le package doit être au format `%s` ou `%s`." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:657 msgid "Failed uploading file." msgstr "Échec du téléchargement du fichier." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:692 msgid "Signatures does not match." msgstr "Les signatures ne correspondent pas." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:751 #, php-format msgid "Update %s successfully installed." msgstr "Mise à jour %s installée correctement." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:754 #, php-format msgid "Failed while updating: %s" msgstr "Échec lors de la mise à jour : %s" @@ -33329,6 +33491,7 @@ msgid "Matrix events" msgstr "Événements de la matrice" #: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:251 +#: ../../godmode/setup/setup_websocket_engine.php:162 msgid "WebService engine has not been started, please check documentation." msgstr "Le moteur WebService n'a pas été démarré, vérifiez la documentation" @@ -33565,7 +33728,7 @@ msgstr "Enregistrement de ressource" #: ../../godmode/netflow/nf_edit.php:59 ../../godmode/menu.php:132 #: ../../godmode/category/category.php:81 #: ../../godmode/category/edit_category.php:92 -#: ../../operation/agentes/ver_agente.php:1934 +#: ../../operation/agentes/ver_agente.php:1930 msgid "Resources" msgstr "Ressources" @@ -33621,8 +33784,8 @@ msgid "%s Console URL" msgstr "%s URL de la console" #: ../../extensions/api_checker.php:243 -#: ../../godmode/users/configure_user.php:1006 -#: ../../godmode/users/configure_user.php:1029 +#: ../../godmode/users/configure_user.php:1054 +#: ../../godmode/users/configure_user.php:1077 #: ../../operation/users/user_edit.php:299 #: ../../operation/users/user_edit.php:338 msgid "API Token" @@ -33683,7 +33846,7 @@ msgid "Show URL" msgstr "Afficher URL" #: ../../extensions/db_status.php:25 ../../extensions/db_status.php:520 -#: ../../godmode/menu.php:478 +#: ../../godmode/menu.php:476 msgid "DB Schema check" msgstr "Vérifier Schéma BD" @@ -33869,86 +34032,86 @@ msgstr "Exécuter SQL" msgid "Error querying database node" msgstr "Erreur lors de l’interrogation du nœud de base de données" -#: ../../extensions/agents_modules.php:396 +#: ../../extensions/agents_modules.php:404 #: ../../godmode/reporting/reporting_builder.item_editor.php:2000 #: ../../include/lib/Dashboard/Widgets/agent_module.php:255 msgid "Show module status" msgstr "Afficher l’état du module" -#: ../../extensions/agents_modules.php:397 +#: ../../extensions/agents_modules.php:405 #: ../../godmode/reporting/reporting_builder.item_editor.php:2001 #: ../../include/lib/Dashboard/Widgets/agent_module.php:256 msgid "Show module data" msgstr "Afficher les données du module" -#: ../../extensions/agents_modules.php:401 +#: ../../extensions/agents_modules.php:409 #: ../../godmode/reporting/reporting_builder.item_editor.php:1996 #: ../../include/lib/Dashboard/Widgets/agent_module.php:265 msgid "Information to be shown" msgstr "Informations à afficher" -#: ../../extensions/agents_modules.php:543 +#: ../../extensions/agents_modules.php:551 #: ../../include/functions_reports.php:807 msgid "Agents/Modules" msgstr "Agents/Modules" -#: ../../extensions/agents_modules.php:636 +#: ../../extensions/agents_modules.php:644 msgid "Agent/module view" msgstr "Afficher agent/module" -#: ../../extensions/agents_modules.php:681 +#: ../../extensions/agents_modules.php:690 msgid "Filters " msgstr "Filtres " -#: ../../extensions/agents_modules.php:681 +#: ../../extensions/agents_modules.php:690 msgid "Secondary groups and agent subgroups will be taken into account." msgstr "" "Les groupes secondaires et les sous-groupes d'agents seront pris en compte." -#: ../../extensions/agents_modules.php:833 -#: ../../include/functions_reporting.php:3376 +#: ../../extensions/agents_modules.php:857 +#: ../../include/functions_reporting.php:3385 msgid "There are no agents with modules" msgstr "Aucun agent avec des modules" -#: ../../extensions/agents_modules.php:848 +#: ../../extensions/agents_modules.php:872 msgid "Previous modules" msgstr "Modules précédents" -#: ../../extensions/agents_modules.php:874 +#: ../../extensions/agents_modules.php:898 msgid "More modules" msgstr "Plus de modules" -#: ../../extensions/agents_modules.php:1030 -#: ../../include/functions_reporting_html.php:2282 +#: ../../extensions/agents_modules.php:1054 +#: ../../include/functions_reporting_html.php:2303 msgid "Orange cell when the module has fired alerts" msgstr "Cellule orange quand le module contient des alertes déclenchées" -#: ../../extensions/agents_modules.php:1032 -#: ../../include/functions_reporting_html.php:2283 +#: ../../extensions/agents_modules.php:1056 +#: ../../include/functions_reporting_html.php:2304 msgid "Red cell when the module has a critical status" msgstr "Cellule rouge quand le module se trouve en état critique" -#: ../../extensions/agents_modules.php:1035 -#: ../../include/functions_reporting_html.php:2284 +#: ../../extensions/agents_modules.php:1059 +#: ../../include/functions_reporting_html.php:2305 msgid "Yellow cell when the module has a warning status" msgstr "Cellule jaune quand le module se trouve en état d'alerte" -#: ../../extensions/agents_modules.php:1037 -#: ../../include/functions_reporting_html.php:2285 +#: ../../extensions/agents_modules.php:1061 +#: ../../include/functions_reporting_html.php:2306 msgid "Green cell when the module has a normal status" msgstr "Cellule verte quand le module se trouve en état normal" -#: ../../extensions/agents_modules.php:1039 -#: ../../include/functions_reporting_html.php:2286 +#: ../../extensions/agents_modules.php:1063 +#: ../../include/functions_reporting_html.php:2307 msgid "Grey cell when the module has an unknown status" msgstr "Cellule grise quand le module se trouve en état inconnu" -#: ../../extensions/agents_modules.php:1041 +#: ../../extensions/agents_modules.php:1065 msgid "Cell turns blue when the module is in 'not initialize' status" msgstr "" "Cellule devient bleue quand le module se trouve en état « non initialisé »" -#: ../../extensions/agents_modules.php:1055 +#: ../../extensions/agents_modules.php:1079 msgid "Agents/Modules view" msgstr "Afficher agents/modules" @@ -34048,7 +34211,7 @@ msgid "Public link" msgstr "Lien publique" #: ../../extensions/files_repo/files_repo_list.php:58 -#: ../../include/functions_filemanager.php:645 +#: ../../include/functions_filemanager.php:660 msgid "Last modification" msgstr "Dernière modification" @@ -34057,8 +34220,8 @@ msgid "Copy to clipboard" msgstr "Copier dans le presse-papier" #: ../../extensions/files_repo/files_repo_list.php:167 -#: ../../include/functions_reporting_html.php:2314 -#: ../../include/functions_reporting_html.php:2318 +#: ../../include/functions_reporting_html.php:2335 +#: ../../include/functions_reporting_html.php:2339 msgid "No items" msgstr "Aucun élément" @@ -34177,7 +34340,7 @@ msgid "Save agent (%s), module (%s) data xml." msgstr "Sauvegarder l'agent (%s), module (%s) de donnés xml" #: ../../extensions/realtime_graphs.php:58 -#: ../../extensions/realtime_graphs.php:295 +#: ../../extensions/realtime_graphs.php:301 msgid "Realtime graphs" msgstr "Graphiques en temps réel" @@ -34224,12 +34387,12 @@ msgstr "Intervalle d'actualisation" msgid "Incremental" msgstr "Croissant" -#: ../../extensions/realtime_graphs.php:203 +#: ../../extensions/realtime_graphs.php:199 msgid "Clear graph" msgstr "Supprimer le graphique" -#: ../../extensions/realtime_graphs.php:276 -#: ../../godmode/agentes/module_manager_editor_network.php:44 +#: ../../extensions/realtime_graphs.php:282 +#: ../../godmode/agentes/module_manager_editor_network.php:45 msgid "Use this OID" msgstr "Utiliser cet OID" @@ -34318,8 +34481,8 @@ msgid "No modules for this profile" msgstr "Aucun module pour ce profil" #: ../../godmode/modules/manage_network_templates_form.php:260 -#: ../../operation/snmpconsole/snmp_browser.php:155 -#: ../../operation/snmpconsole/snmp_browser.php:175 +#: ../../operation/snmpconsole/snmp_browser.php:160 +#: ../../operation/snmpconsole/snmp_browser.php:180 msgid "Add modules" msgstr "Ajouter des modules" @@ -34396,15 +34559,15 @@ msgid "You can find more information at:" msgstr "Vous trouverez plus d’informations sur :" #: ../../godmode/modules/manage_network_components_form_common.php:723 -#: ../../godmode/agentes/module_manager_editor_common.php:2270 +#: ../../godmode/agentes/module_manager_editor_common.php:2280 msgid "Please introduce a positive percentage value" msgstr "Veuillez introduire une valeur de pourcentage positive" -#: ../../godmode/modules/manage_network_components_form_network.php:72 +#: ../../godmode/modules/manage_network_components_form_network.php:98 msgid "SNMP Enterprise String" msgstr "Chaîne SNMP Enterprise" -#: ../../godmode/modules/manage_network_components_form_network.php:191 +#: ../../godmode/modules/manage_network_components_form_network.php:193 #: ../../godmode/modules/manage_network_components_form_wizard.php:315 msgid "Name OID" msgstr "Nom OID" @@ -34412,23 +34575,23 @@ msgstr "Nom OID" #: ../../godmode/modules/manage_network_components_form_wmi.php:41 #: ../../godmode/agentes/module_manager_editor_wmi.php:106 #: ../../include/class/CredentialStore.class.php:1009 -#: ../../include/class/CredentialStore.class.php:1347 +#: ../../include/class/CredentialStore.class.php:1353 msgid "Namespace" msgstr "Espace de noms" -#: ../../godmode/modules/manage_network_components_form.php:358 +#: ../../godmode/modules/manage_network_components_form.php:361 msgid "Update Network Component" msgstr "Mettre à jour le composant de réseau" -#: ../../godmode/modules/manage_network_components_form.php:360 +#: ../../godmode/modules/manage_network_components_form.php:363 msgid "Create Network Component" msgstr "Créer un composant de réseau" -#: ../../godmode/modules/manage_network_components.php:289 +#: ../../godmode/modules/manage_network_components.php:290 msgid "Remote component management" msgstr "Gestion des composants à distance" -#: ../../godmode/modules/manage_network_components.php:321 +#: ../../godmode/modules/manage_network_components.php:322 #, php-format msgid "" "This node is configured with centralized mode. All remote components are read " @@ -34437,37 +34600,37 @@ msgstr "" "Ce nœud est configuré en mode centralisé. Tous les composants distants sont en " "lecture seule. Accédez à %s pour les gérer." -#: ../../godmode/modules/manage_network_components.php:433 +#: ../../godmode/modules/manage_network_components.php:435 msgid "Could not be created because the component exists" msgstr "Impossible de créer car le composant existe" -#: ../../godmode/modules/manage_network_components.php:686 +#: ../../godmode/modules/manage_network_components.php:689 msgid "Search by name, description, tcp send or tcp rcv, list matches." msgstr "" "Rechercher par nom, description, TCP envoyé ou TCP reçu, concordances de " "listes." -#: ../../godmode/modules/manage_network_components.php:779 +#: ../../godmode/modules/manage_network_components.php:782 msgid "Max/Min" msgstr "Max/Min" -#: ../../godmode/modules/manage_network_components.php:888 +#: ../../godmode/modules/manage_network_components.php:891 msgid "There are no defined network components" msgstr "Aucun composant de réseau défini" -#: ../../godmode/modules/manage_network_components.php:921 +#: ../../godmode/modules/manage_network_components.php:924 msgid "Create a new network component" msgstr "Créer un nouveau composant de réseau" -#: ../../godmode/modules/manage_network_components.php:922 +#: ../../godmode/modules/manage_network_components.php:925 msgid "Create a new plugin component" msgstr "Créer un nouveau composant de plugin" -#: ../../godmode/modules/manage_network_components.php:923 +#: ../../godmode/modules/manage_network_components.php:926 msgid "Create a new WMI component" msgstr "Créer un nouveau composant de WMI" -#: ../../godmode/modules/manage_network_components.php:924 +#: ../../godmode/modules/manage_network_components.php:927 msgid "Create a new wizard component" msgstr "Créer un nouveau composant d'assistant" @@ -34582,6 +34745,7 @@ msgstr "Laissé en blanc pour les modules d'inventaire LOCAUX" #: ../../godmode/massive/massive_enable_disable_alerts.php:196 #: ../../godmode/massive/massive_enable_disable_alerts.php:231 #: ../../include/class/ModuleTemplates.class.php:1184 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:491 msgid "Format" msgstr "Format" @@ -34665,7 +34829,7 @@ msgid "Database size stats" msgstr "Statistiques sur la taille de la base de données" #: ../../godmode/db/db_main.php:108 ../../include/class/Diagnostics.class.php:603 -#: ../../include/functions_reporting.php:14740 +#: ../../include/functions_reporting.php:14813 msgid "Total events" msgstr "Nombre total d'événements" @@ -34722,7 +34886,7 @@ msgid "Update group" msgstr "Mettre à jour le groupe" #: ../../godmode/groups/configure_group.php:95 -#: ../../godmode/groups/group_list.php:1006 +#: ../../godmode/groups/group_list.php:1018 msgid "Create group" msgstr "Créer un groupe" @@ -34731,44 +34895,44 @@ msgstr "Créer un groupe" msgid "Manage agents group" msgstr "Gérer le groupe d'agents" -#: ../../godmode/groups/configure_group.php:160 +#: ../../godmode/groups/configure_group.php:179 msgid "You have not access to the parent." msgstr "Vous n'avez pas accès au parent" -#: ../../godmode/groups/configure_group.php:218 +#: ../../godmode/groups/configure_group.php:237 msgid "Group Password" msgstr "Mot de passe du groupe" -#: ../../godmode/groups/configure_group.php:224 +#: ../../godmode/groups/configure_group.php:243 msgid "Enable alert use in this group." msgstr "Activer l'utilisation des alertes dans ce groupe." -#: ../../godmode/groups/configure_group.php:229 +#: ../../godmode/groups/configure_group.php:248 msgid "Propagate ACL" msgstr "Propager ACL" -#: ../../godmode/groups/configure_group.php:229 +#: ../../godmode/groups/configure_group.php:248 msgid "Propagate the same ACL security into the child subgroups." msgstr "Propager la même sécurité de l'ACL dans les sous-groupes enfants." -#: ../../godmode/groups/configure_group.php:244 -#: ../../include/functions_events.php:5068 +#: ../../godmode/groups/configure_group.php:263 +#: ../../include/functions_events.php:5073 msgid "Contact" msgstr "Contact" -#: ../../godmode/groups/configure_group.php:244 +#: ../../godmode/groups/configure_group.php:263 msgid "Contact information accessible through the _groupcontact_ macro" msgstr "Information de contact accessible via la _groupcontact_ macro" -#: ../../godmode/groups/configure_group.php:249 +#: ../../godmode/groups/configure_group.php:268 msgid "Information accessible through the _group_other_ macro" msgstr "Information accessible par la _group_other_ macro" -#: ../../godmode/groups/configure_group.php:254 +#: ../../godmode/groups/configure_group.php:273 msgid "Max agents allowed" msgstr "Nombre maximum d'agents autorisés" -#: ../../godmode/groups/configure_group.php:254 +#: ../../godmode/groups/configure_group.php:273 msgid "Set the maximum of agents allowed for this group. 0 is unlimited." msgstr "" "Définissez le nombre maximum d'agents autorisés pour ce groupe. 0 est illimité." @@ -34787,8 +34951,8 @@ msgid "Groups defined in %s" msgstr "Groupes définis dans %s" #: ../../godmode/groups/group_list.php:352 -#: ../../godmode/agentes/module_manager_editor_network.php:172 -#: ../../godmode/menu.php:226 ../../include/class/AgentWizard.class.php:723 +#: ../../godmode/agentes/module_manager_editor_network.php:173 +#: ../../godmode/menu.php:225 ../../include/class/AgentWizard.class.php:723 #: ../../include/class/AgentWizard.class.php:779 msgid "Credential store" msgstr "Entrepôt d’identifiants" @@ -34813,32 +34977,32 @@ msgid "There was a problem creating group" msgstr "Erreur de création du groupe" #: ../../godmode/groups/group_list.php:470 -#: ../../godmode/groups/group_list.php:542 +#: ../../godmode/groups/group_list.php:543 msgid "Each group must have a different name" msgstr "Chaque groupe doit avoir un nom différent" #: ../../godmode/groups/group_list.php:473 -#: ../../godmode/groups/group_list.php:545 +#: ../../godmode/groups/group_list.php:546 msgid "Group must have a name" msgstr "Le groupe doit avoir un nom" -#: ../../godmode/groups/group_list.php:537 +#: ../../godmode/groups/group_list.php:538 #: ../../godmode/groups/modu_group_list.php:165 msgid "Group successfully updated" msgstr "Groupe mis à jour correctement" -#: ../../godmode/groups/group_list.php:539 +#: ../../godmode/groups/group_list.php:540 #: ../../godmode/groups/modu_group_list.php:168 msgid "There was a problem modifying group" msgstr "Erreur de modification du groupe" -#: ../../godmode/groups/group_list.php:602 +#: ../../godmode/groups/group_list.php:603 #, php-format msgid "The group %s could not be deleted because it is not empty in the nodes" msgstr "" "Le groupe %s n'a pas pu être supprimé car il n'est pas vide dans les nœuds" -#: ../../godmode/groups/group_list.php:676 +#: ../../godmode/groups/group_list.php:677 msgid "" "The group has not been deleted in the metaconsole due to an error in the node " "database" @@ -34846,42 +35010,42 @@ msgstr "" "Le groupe n'a pas été supprimé dans la Métaconsole en raison d'une erreur dans " "la base de données des nœuds" -#: ../../godmode/groups/group_list.php:685 +#: ../../godmode/groups/group_list.php:686 #, php-format msgid "The group %s has been deleted in the nodes" msgstr "Le groupe %s a été supprimé dans les nœuds" -#: ../../godmode/groups/group_list.php:725 +#: ../../godmode/groups/group_list.php:726 #: ../../godmode/groups/modu_group_list.php:238 msgid "Group successfully deleted" msgstr "Groupe supprimé correctement" -#: ../../godmode/groups/group_list.php:728 +#: ../../godmode/groups/group_list.php:729 #: ../../godmode/groups/modu_group_list.php:239 msgid "There was a problem deleting group" msgstr "Erreur de suppression du groupe" -#: ../../godmode/groups/group_list.php:735 +#: ../../godmode/groups/group_list.php:736 #, php-format msgid "The group is not empty. It is use in %s." msgstr "Le groupe n'est pas vide. Il est en service sur %s" -#: ../../godmode/groups/group_list.php:774 -#: ../../godmode/groups/group_list.php:994 +#: ../../godmode/groups/group_list.php:775 +#: ../../godmode/groups/group_list.php:1006 msgid "There are no defined groups" msgstr "Aucun groupe défini" -#: ../../godmode/groups/group_list.php:832 +#: ../../godmode/groups/group_list.php:833 msgid "Edit or delete groups can cause problems with synchronization" msgstr "" "Modifier ou supprimer des groupes peut provoquer des problèmes avec la " "synchronisation" -#: ../../godmode/groups/group_list.php:958 +#: ../../godmode/groups/group_list.php:970 msgid "Are you sure? This group will also be deleted in all the nodes." msgstr "Es-tu sûr ? Ce groupe sera également supprimé dans tous les nœuds." -#: ../../godmode/groups/group_list.php:964 +#: ../../godmode/groups/group_list.php:976 msgid "" "The child groups will be updated to use the parent id of the deleted group" msgstr "" @@ -34931,24 +35095,20 @@ msgstr "Créer un groupe de modules" msgid "Tactical group view" msgstr "Vue de groupe tactique" -#: ../../godmode/groups/tactical.php:115 +#: ../../godmode/groups/tactical.php:114 msgid "Distribution by os" msgstr "Distribution par système d’exploitation" -#: ../../godmode/groups/tactical.php:146 +#: ../../godmode/groups/tactical.php:145 #: ../../include/functions_reporting_html.php:1204 -#: ../../include/functions_reporting_html.php:1419 +#: ../../include/functions_reporting_html.php:1428 msgid "Events by agent" msgstr "Événements par agent" -#: ../../godmode/groups/tactical.php:155 +#: ../../godmode/groups/tactical.php:154 msgid "Alerts and events" msgstr "Alertes et événements" -#: ../../godmode/groups/tactical.php:182 -msgid "Ultimo contacto remoto" -msgstr "Dernier contact à distance" - #: ../../godmode/extensions.php:46 msgid "Defined extensions" msgstr "Extensions définies" @@ -35093,7 +35253,7 @@ msgstr "Gestion des profils utilisateur" #: ../../godmode/users/configure_profile.php:90 #: ../../godmode/users/configure_profile.php:389 #: ../../godmode/users/user_list.php:301 -#: ../../godmode/users/configure_user.php:280 +#: ../../godmode/users/configure_user.php:218 msgid "Manage users" msgstr "Gérer les utilisateurs" @@ -35246,7 +35406,7 @@ msgid "Create Profile" msgstr "Créer un profil" #: ../../godmode/users/configure_profile.php:283 -#: ../../operation/agentes/ver_agente.php:1938 +#: ../../operation/agentes/ver_agente.php:1934 msgid "View agents" msgstr "Afficher les agents" @@ -35267,7 +35427,7 @@ msgid "Edit events" msgstr "Modifier les événements" #: ../../godmode/users/configure_profile.php:317 -#: ../../operation/events/events.php:1545 +#: ../../operation/events/events.php:1599 msgid "Manage events" msgstr "Gérer les événements" @@ -35296,7 +35456,7 @@ msgid "Manage network maps" msgstr "Gérer les cartes de réseau" #: ../../godmode/users/configure_profile.php:354 -#: ../../include/functions_menu.php:571 +#: ../../include/functions_menu.php:573 msgid "View visual console" msgstr "Afficher la console visuelle" @@ -35326,36 +35486,36 @@ msgid "Profile name already on use, please, change the name before save" msgstr "Nom du profil déjà utilisé, veuillez changer le nom avant de sauvegarder" #: ../../godmode/users/user_list.php:351 -#: ../../godmode/users/configure_user.php:115 +#: ../../godmode/users/configure_user.php:885 #, php-format msgid "Deleted user %s" msgstr "Supprimer l'utilisateur %s" #: ../../godmode/users/user_list.php:358 ../../godmode/users/user_list.php:400 -#: ../../godmode/users/configure_user.php:122 +#: ../../godmode/users/configure_user.php:892 msgid "There was a problem deleting the user" msgstr "Erreur de suppression de l'utilisateur" #: ../../godmode/users/user_list.php:376 -#: ../../godmode/users/configure_user.php:137 +#: ../../godmode/users/configure_user.php:907 #, php-format msgid "Deleted user %s from metaconsole" msgstr "Supprimer l'utilisateur %s de la Métaconsole" #: ../../godmode/users/user_list.php:388 -#: ../../godmode/users/configure_user.php:149 +#: ../../godmode/users/configure_user.php:919 #, php-format msgid "Deleted user %s from %s" msgstr "Supprimer l'utilisateur %s de %s" #: ../../godmode/users/user_list.php:394 -#: ../../godmode/users/configure_user.php:158 +#: ../../godmode/users/configure_user.php:928 #, php-format msgid "Successfully deleted from %s" msgstr "Supprimé de %s correctement" #: ../../godmode/users/user_list.php:395 -#: ../../godmode/users/configure_user.php:159 +#: ../../godmode/users/configure_user.php:929 #, php-format msgid "There was a problem deleting the user from %s" msgstr "Erreur de suppression de l'utilisateur de %s" @@ -35364,15 +35524,15 @@ msgstr "Erreur de suppression de l'utilisateur de %s" msgid "ID user cannot be empty" msgstr "L'identifiant de l'utilisateur ne peut pas être vide." -#: ../../godmode/users/user_list.php:443 +#: ../../godmode/users/user_list.php:444 msgid "There was a problem disabling user" msgstr "Erreur de désactivation de l'utilisateur" -#: ../../godmode/users/user_list.php:449 +#: ../../godmode/users/user_list.php:450 msgid "There was a problem enabling user" msgstr "Erreur d'activation de l'utilisateur" -#: ../../godmode/users/user_list.php:544 ../../operation/users/user_edit.php:284 +#: ../../godmode/users/user_list.php:545 ../../operation/users/user_edit.php:284 #, php-format msgid "" "This node is configured with centralized mode. All users information is read " @@ -35381,23 +35541,23 @@ msgstr "" "Ce nœud est configuré en mode centralisé. Toutes les informations des " "utilisateurs sont en lecture seule. Allez vers %s pour le gérer." -#: ../../godmode/users/user_list.php:580 +#: ../../godmode/users/user_list.php:581 msgid "Profile / Group" msgstr "Profil/Groupe" -#: ../../godmode/users/user_list.php:768 ../../operation/search_users.php:63 +#: ../../godmode/users/user_list.php:769 ../../operation/search_users.php:63 msgid "Administrator" msgstr "Administrateur" -#: ../../godmode/users/user_list.php:794 +#: ../../godmode/users/user_list.php:795 msgid "Show profiles" msgstr "Afficher les profils" -#: ../../godmode/users/user_list.php:812 +#: ../../godmode/users/user_list.php:813 msgid "Other profiles are also assigned." msgstr "D'autres profils sont également attribués." -#: ../../godmode/users/user_list.php:814 +#: ../../godmode/users/user_list.php:815 msgid "" "Other profiles you cannot manage are also assigned. These profiles are not " "shown. You cannot enable/disable or delete this user." @@ -35406,65 +35566,82 @@ msgstr "" "profils ne sont pas affichés. Vous ne pouvez pas activer/désactiver ou " "supprimer cet utilisateur." -#: ../../godmode/users/user_list.php:823 -#: ../../include/functions_reporting.php:5140 -#: ../../include/functions_reporting.php:5187 ../../operation/search_users.php:87 +#: ../../godmode/users/user_list.php:824 +#: ../../include/functions_reporting.php:5149 +#: ../../include/functions_reporting.php:5196 ../../operation/search_users.php:87 msgid "The user doesn't have any assigned profile/group" msgstr "Aucun profil/groupe assigné à cet utilisateur" -#: ../../godmode/users/user_list.php:935 +#: ../../godmode/users/user_list.php:936 #: ../../operation/users/user_edit_header.php:129 msgid "Edit user" msgstr "Editer l'utilisateur" -#: ../../godmode/users/user_list.php:1032 +#: ../../godmode/users/user_list.php:1034 msgid "Create user" msgstr "Créer un utilisateur" -#: ../../godmode/users/user_list.php:1046 -#: ../../godmode/users/configure_user.php:357 +#: ../../godmode/users/user_list.php:1048 +#: ../../godmode/users/configure_user.php:295 #, php-format msgid "The current authentication scheme doesn't support creating users on %s" msgstr "" "Le schéma d'authentification actuel ne prend pas en charge la création " "d'utilisateurs sur %s" -#: ../../godmode/users/configure_user.php:267 +#: ../../godmode/users/configure_user.php:60 +#: ../../godmode/users/user_management.php:39 +#: ../../godmode/massive/massive_edit_users.php:275 +#: ../../godmode/events/events.php:56 ../../include/auth/mysql.php:808 +#: ../../operation/users/user_edit.php:470 ../../operation/events/events.php:1525 +msgid "Event list" +msgstr "Liste d'événements" + +#: ../../godmode/users/configure_user.php:64 +#: ../../godmode/users/user_management.php:43 ../../include/auth/mysql.php:812 +msgid "External link" +msgstr "Lien externe" + +#: ../../godmode/users/configure_user.php:205 msgid "Update User" msgstr "Mettre à jour l'utilisateur" -#: ../../godmode/users/configure_user.php:267 +#: ../../godmode/users/configure_user.php:205 msgid "Create User" msgstr "Créer un utilisateur" -#: ../../godmode/users/configure_user.php:284 +#: ../../godmode/users/configure_user.php:222 msgid "User Detail Editor" msgstr "Éditeur d'information sur l'utilisateur" -#: ../../godmode/users/configure_user.php:449 +#: ../../godmode/users/configure_user.php:391 msgid "User ID cannot be empty" msgstr "L'identifiant de l'utilisateur ne peut pas être vide." -#: ../../godmode/users/configure_user.php:456 +#: ../../godmode/users/configure_user.php:399 +msgid "User ID already exists" +msgstr "La ID de cette utilisateur existe déjà" + +#: ../../godmode/users/configure_user.php:405 msgid "Invalid user ID: leading or trailing blank spaces not allowed" msgstr "" "ID utilisateur non valide : les espaces vides de début ou de fin ne sont pas " "autorisés" -#: ../../godmode/users/configure_user.php:464 +#: ../../godmode/users/configure_user.php:413 msgid "Passwords cannot be empty" msgstr "Les mots de passe ne peuvent pas être vides." -#: ../../godmode/users/configure_user.php:471 +#: ../../godmode/users/configure_user.php:420 msgid "Passwords didn't match" msgstr "Les mots de passe saisis ne sont pas identiques." -#: ../../godmode/users/configure_user.php:478 +#: ../../godmode/users/configure_user.php:427 msgid "The password provided is not valid. Please set another one." msgstr "" "Le mot de passe fourni n’est pas valide. S’il vous plaît, entrez-en un autre." -#: ../../godmode/users/configure_user.php:540 +#: ../../godmode/users/configure_user.php:489 msgid "" "Strict ACL is not recommended for admin users because performance could be " "affected." @@ -35472,62 +35649,62 @@ msgstr "" "Les ACL strictes ne sont pas recommandées pour les administrateur parce que " "cela pourrait affecter la performance." -#: ../../godmode/users/configure_user.php:624 -#: ../../godmode/users/configure_user.php:963 +#: ../../godmode/users/configure_user.php:573 +#: ../../godmode/users/configure_user.php:1011 msgid "Profile added successfully" msgstr "Profil ajouté correctement" -#: ../../godmode/users/configure_user.php:625 -#: ../../godmode/users/configure_user.php:964 +#: ../../godmode/users/configure_user.php:574 +#: ../../godmode/users/configure_user.php:1012 msgid "Profile cannot be added" msgstr "Impossible d'ajouter le profil" -#: ../../godmode/users/configure_user.php:754 -#: ../../godmode/users/configure_user.php:778 -#: ../../godmode/users/configure_user.php:852 -#: ../../godmode/users/configure_user.php:859 -#: ../../godmode/users/configure_user.php:891 +#: ../../godmode/users/configure_user.php:715 +#: ../../godmode/users/configure_user.php:743 +#: ../../godmode/users/configure_user.php:817 +#: ../../godmode/users/configure_user.php:824 +#: ../../godmode/users/configure_user.php:939 #: ../../operation/users/user_edit.php:216 #: ../../operation/users/user_edit.php:262 msgid "User info successfully updated" msgstr "L'information de l'utilisateur a été mise à jour correctement." -#: ../../godmode/users/configure_user.php:755 -#: ../../godmode/users/configure_user.php:779 -#: ../../godmode/users/configure_user.php:853 -#: ../../godmode/users/configure_user.php:860 -#: ../../godmode/users/configure_user.php:892 +#: ../../godmode/users/configure_user.php:716 +#: ../../godmode/users/configure_user.php:744 +#: ../../godmode/users/configure_user.php:818 +#: ../../godmode/users/configure_user.php:825 +#: ../../godmode/users/configure_user.php:940 msgid "Error updating user info (no change?)" msgstr "" "Erreur de mise à jour de l'information de l'utilisateur (aucun changement ?)" -#: ../../godmode/users/configure_user.php:784 +#: ../../godmode/users/configure_user.php:749 msgid "Password of the active user is required to perform password change" msgstr "" "Le mot de passe de l'utilisateur actif est requis pour effectuer le changement " "de mot de passe" -#: ../../godmode/users/configure_user.php:786 +#: ../../godmode/users/configure_user.php:751 msgid "Password of active user is not correct" msgstr "Le mot de passe de l'utilisateur actif n'est pas correct" -#: ../../godmode/users/configure_user.php:802 +#: ../../godmode/users/configure_user.php:767 msgid "Passwords does not match" msgstr "Les mots de passe ne concordent pas" -#: ../../godmode/users/configure_user.php:852 +#: ../../godmode/users/configure_user.php:817 #: ../../operation/users/user_edit.php:214 msgid "You have generated a new API Token." msgstr "Vous avez généré un nouveau jeton API." -#: ../../godmode/users/configure_user.php:881 +#: ../../godmode/users/configure_user.php:846 msgid "" "Strict ACL is not recommended for this user. Performance could be affected." msgstr "" "Les ACL strictes ne sont pas recommandées pour ces utilisateurs. La " "performance pourrait être affectée." -#: ../../godmode/users/configure_user.php:1014 +#: ../../godmode/users/configure_user.php:1062 #: ../../operation/users/user_edit.php:306 msgid "" "The API token will be renewed. After this action, the last token you were " @@ -35536,67 +35713,67 @@ msgstr "" "Le jeton API sera renouvelé. Après cette action, le dernier jeton que vous " "utilisiez ne fonctionnera pas. Êtes-vous sûr?" -#: ../../godmode/users/configure_user.php:1030 +#: ../../godmode/users/configure_user.php:1078 #: ../../operation/users/user_edit.php:339 msgid "Your API Token is:" msgstr "Votre jeton API est :" -#: ../../godmode/users/configure_user.php:1030 +#: ../../godmode/users/configure_user.php:1078 #: ../../operation/users/user_edit.php:339 msgid "Please, avoid share this string with others." msgstr "S’il vous plaît, évitez de partager cette chaîne avec d’autres." -#: ../../godmode/users/configure_user.php:1091 +#: ../../godmode/users/configure_user.php:1155 #: ../../godmode/users/user_management.php:178 #: ../../operation/users/user_edit.php:384 msgid "Full (display) name" msgstr "Nom complet (affiché)" -#: ../../godmode/users/configure_user.php:1109 -#: ../../godmode/users/user_management.php:664 +#: ../../godmode/users/configure_user.php:1173 +#: ../../godmode/users/user_management.php:690 #: ../../godmode/massive/massive_edit_users.php:469 -#: ../../operation/users/user_edit.php:537 +#: ../../operation/users/user_edit.php:530 msgid "The timezone must be that of the associated server." msgstr "Le fuseau horaire doit être celui du serveur associé." -#: ../../godmode/users/configure_user.php:1142 +#: ../../godmode/users/configure_user.php:1206 #: ../../godmode/users/user_management.php:299 #: ../../operation/users/user_edit.php:411 msgid "Password confirmation" msgstr "Confirmation du mot de passe" -#: ../../godmode/users/configure_user.php:1160 +#: ../../godmode/users/configure_user.php:1224 #: ../../godmode/users/user_management.php:319 msgid "Own password confirmation" msgstr "Confirmation propre du mot de passe" -#: ../../godmode/users/configure_user.php:1170 +#: ../../godmode/users/configure_user.php:1234 #: ../../godmode/users/user_management.php:233 msgid "Administrator user" msgstr "Utilisateur administrateur" -#: ../../godmode/users/configure_user.php:1197 +#: ../../godmode/users/configure_user.php:1261 #: ../../godmode/users/user_management.php:198 #: ../../operation/users/user_edit.php:404 msgid "E-mail" msgstr "Courriel" -#: ../../godmode/users/configure_user.php:1213 +#: ../../godmode/users/configure_user.php:1277 #: ../../godmode/users/user_management.php:206 #: ../../godmode/users/user_management.php:218 #: ../../operation/users/user_edit.php:406 msgid "Phone number" msgstr "Numéro de téléphone" -#: ../../godmode/users/configure_user.php:1229 -#: ../../godmode/users/user_management.php:695 -#: ../../operation/users/user_edit.php:755 +#: ../../godmode/users/configure_user.php:1293 +#: ../../godmode/users/user_management.php:721 +#: ../../operation/users/user_edit.php:752 msgid "Login allowed IP list" msgstr "Liste d’adresses IP autorisées pour la connexion" -#: ../../godmode/users/configure_user.php:1230 -#: ../../godmode/users/user_management.php:712 -#: ../../operation/users/user_edit.php:756 +#: ../../godmode/users/configure_user.php:1294 +#: ../../godmode/users/user_management.php:738 +#: ../../operation/users/user_edit.php:753 msgid "" "Add the source IPs that will allow console access. Each IP must be separated " "only by comma. * allows all." @@ -35604,31 +35781,31 @@ msgstr "" "Ajoutez les adresses IP source qui autoriseront l’accès à la console. Chaque " "adresse IP doit être séparée uniquement par une virgule. * permet tout." -#: ../../godmode/users/configure_user.php:1269 +#: ../../godmode/users/configure_user.php:1333 msgid "Skin" msgstr "Thème" -#: ../../godmode/users/configure_user.php:1280 +#: ../../godmode/users/configure_user.php:1344 msgid "Search custom field view" msgstr "Vue de recherche d’un champ personnalisé" -#: ../../godmode/users/configure_user.php:1294 +#: ../../godmode/users/configure_user.php:1358 msgid "Load by default the selected view in custom field view" msgstr "" "Charger par défaut la vue sélectionnée dans la vue de champ personnalisée" -#: ../../godmode/users/configure_user.php:1300 +#: ../../godmode/users/configure_user.php:1364 msgid "Use global conf" msgstr "Utiliser configuration générale" -#: ../../godmode/users/configure_user.php:1305 -#: ../../godmode/users/user_management.php:614 +#: ../../godmode/users/configure_user.php:1369 +#: ../../godmode/users/user_management.php:629 #: ../../godmode/massive/massive_edit_users.php:270 #: ../../operation/users/user_edit.php:466 msgid "Home screen" msgstr "Page d'accueil" -#: ../../godmode/users/configure_user.php:1306 +#: ../../godmode/users/configure_user.php:1370 #: ../../godmode/massive/massive_edit_users.php:270 #: ../../operation/users/user_edit.php:466 msgid "" @@ -35641,72 +35818,72 @@ msgstr "" "sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 pour afficher la vue " "détaillée de l'agent" -#: ../../godmode/users/configure_user.php:1410 +#: ../../godmode/users/configure_user.php:1459 msgid "Metaconsole access" msgstr "Accès à la Métaconsole" -#: ../../godmode/users/configure_user.php:1442 +#: ../../godmode/users/configure_user.php:1495 msgid "Default event filter" msgstr "Filtre d'événement par défaut" -#: ../../godmode/users/configure_user.php:1456 +#: ../../godmode/users/configure_user.php:1509 msgid "eHorus user access enabled" msgstr "Accès utilisateur eHorus activé" -#: ../../godmode/users/configure_user.php:1464 -#: ../../include/functions_config.php:1820 +#: ../../godmode/users/configure_user.php:1517 +#: ../../include/functions_config.php:1832 msgid "eHorus user" msgstr "Utilisateur eHorus" -#: ../../godmode/users/configure_user.php:1473 -#: ../../include/functions_config.php:1824 +#: ../../godmode/users/configure_user.php:1526 +#: ../../include/functions_config.php:1836 msgid "eHorus password" msgstr "Mot de passe eHorus" -#: ../../godmode/users/configure_user.php:1502 +#: ../../godmode/users/configure_user.php:1555 msgid "User must be created before activating double authentication." msgstr "L'utilisateur doit être créé avant d'activer la double authentification." -#: ../../godmode/users/configure_user.php:1529 -#: ../../operation/users/user_edit.php:559 +#: ../../godmode/users/configure_user.php:1582 +#: ../../operation/users/user_edit.php:552 msgid "Show information" msgstr "Afficher l'information" -#: ../../godmode/users/configure_user.php:1608 +#: ../../godmode/users/configure_user.php:1662 msgid "Enable agents managment" msgstr "Activer la gestion d'agents" -#: ../../godmode/users/configure_user.php:1616 +#: ../../godmode/users/configure_user.php:1670 msgid "Enable node access" msgstr "Activer l'accès au nœud" -#: ../../godmode/users/configure_user.php:1617 +#: ../../godmode/users/configure_user.php:1671 msgid "With this option enabled, the user will can access to nodes console" msgstr "" "Si cette option est activée, l'utilisateur pourra accéder à la console de nœuds" -#: ../../godmode/users/configure_user.php:1849 +#: ../../godmode/users/configure_user.php:1901 msgid "yes" msgstr "Oui" -#: ../../godmode/users/configure_user.php:1852 +#: ../../godmode/users/configure_user.php:1904 msgid "no" msgstr "Non" -#: ../../godmode/users/configure_user.php:1856 +#: ../../godmode/users/configure_user.php:1908 msgid "Please select profile and group" msgstr "Veuillez sélectionner le profil et le groupe" -#: ../../godmode/users/configure_user.php:1870 -#: ../../godmode/users/configure_user.php:1921 +#: ../../godmode/users/configure_user.php:1922 +#: ../../godmode/users/configure_user.php:1973 msgid "This profile is already defined" msgstr "Ce profil est déjà défini" -#: ../../godmode/users/configure_user.php:1935 +#: ../../godmode/users/configure_user.php:1987 msgid "Deleting last profile will delete this user" msgstr "La suppression du dernier profil supprimera cet utilisateur" -#: ../../godmode/users/configure_user.php:1975 +#: ../../godmode/users/configure_user.php:2027 msgid "" "User will be created without profiles assigned and won't be able to log in, " "are you sure?" @@ -35714,44 +35891,33 @@ msgstr "" "L'utilisateur sera créé sans profils attribués et ne pourra pas se connecter, " "êtes-vous sûr ?" -#: ../../godmode/users/configure_user.php:2082 -#: ../../operation/users/user_edit.php:1256 +#: ../../godmode/users/configure_user.php:2134 +#: ../../operation/users/user_edit.php:1253 msgid "Double autentication information" msgstr "Information d'authentification double" -#: ../../godmode/users/configure_user.php:2171 -#: ../../operation/users/user_edit.php:1345 +#: ../../godmode/users/configure_user.php:2223 +#: ../../operation/users/user_edit.php:1342 msgid "The double authentication will be deactivated" msgstr "La double authentification sera désactivée." -#: ../../godmode/users/configure_user.php:2172 -#: ../../operation/users/user_edit.php:1346 +#: ../../godmode/users/configure_user.php:2224 +#: ../../operation/users/user_edit.php:1343 msgid "Deactivate" msgstr "Désactiver" -#: ../../godmode/users/configure_user.php:2207 -#: ../../operation/users/user_edit.php:1378 +#: ../../godmode/users/configure_user.php:2259 +#: ../../operation/users/user_edit.php:1375 msgid "The double autentication was deactivated successfully" msgstr "La double authentification a été désactivée correctement." -#: ../../godmode/users/configure_user.php:2210 -#: ../../godmode/users/configure_user.php:2214 -#: ../../operation/users/user_edit.php:1381 -#: ../../operation/users/user_edit.php:1385 +#: ../../godmode/users/configure_user.php:2262 +#: ../../godmode/users/configure_user.php:2266 +#: ../../operation/users/user_edit.php:1378 +#: ../../operation/users/user_edit.php:1382 msgid "There was an error deactivating the double autentication" msgstr "Erreur de désactivation de la double authentification" -#: ../../godmode/users/user_management.php:39 -#: ../../godmode/massive/massive_edit_users.php:275 -#: ../../godmode/events/events.php:56 ../../operation/users/user_edit.php:470 -#: ../../operation/events/events.php:1471 -msgid "Event list" -msgstr "Liste d'événements" - -#: ../../godmode/users/user_management.php:43 -msgid "External link" -msgstr "Lien externe" - #: ../../godmode/users/user_management.php:136 msgid "Profile information" msgstr "Informations du profil" @@ -35793,11 +35959,11 @@ msgstr "" "L’utilisateur dont l’authentification locale est activée utilisera toujours " "l’authentification locale." -#: ../../godmode/users/user_management.php:384 +#: ../../godmode/users/user_management.php:390 msgid "Session time" msgstr "Durée de la session" -#: ../../godmode/users/user_management.php:394 +#: ../../godmode/users/user_management.php:400 msgid "" "This is defined in minutes, If you wish a permanent session should putting -1 " "in this field." @@ -35805,55 +35971,55 @@ msgstr "" "Défini en minutes ; si vous souhaitez établir une session permanente, " "introduisez -1 dans ce champ." -#: ../../godmode/users/user_management.php:399 +#: ../../godmode/users/user_management.php:405 #: ../../godmode/massive/massive_edit_users.php:378 -#: ../../operation/users/user_edit.php:645 +#: ../../operation/users/user_edit.php:642 msgid "Autorefresh" msgstr "Rafraîchissement automatique" -#: ../../godmode/users/user_management.php:434 +#: ../../godmode/users/user_management.php:440 #: ../../godmode/massive/massive_edit_users.php:418 -#: ../../operation/users/user_edit.php:681 +#: ../../operation/users/user_edit.php:678 msgid "Full list of pages" msgstr "Liste complète de pages" -#: ../../godmode/users/user_management.php:445 +#: ../../godmode/users/user_management.php:451 msgid "Pages with autorefresh" msgstr "Pages avec rafraîchissement automatique" -#: ../../godmode/users/user_management.php:466 -#: ../../godmode/users/user_management.php:467 +#: ../../godmode/users/user_management.php:472 +#: ../../godmode/users/user_management.php:473 #: ../../godmode/massive/massive_edit_users.php:427 #: ../../godmode/massive/massive_edit_users.php:428 -#: ../../include/functions_html.php:1381 ../../include/functions_html.php:1382 -#: ../../operation/users/user_edit.php:690 -#: ../../operation/users/user_edit.php:691 +#: ../../include/functions_html.php:1386 ../../include/functions_html.php:1387 +#: ../../operation/users/user_edit.php:687 +#: ../../operation/users/user_edit.php:688 msgid "Push selected pages into autorefresh list" msgstr "" "Ajouter les pages sélectionnées à la liste de rafraîchissement automatique." -#: ../../godmode/users/user_management.php:483 -#: ../../godmode/users/user_management.php:484 +#: ../../godmode/users/user_management.php:489 +#: ../../godmode/users/user_management.php:490 #: ../../godmode/massive/massive_edit_users.php:437 #: ../../godmode/massive/massive_edit_users.php:438 -#: ../../include/functions_html.php:1393 ../../include/functions_html.php:1394 -#: ../../operation/users/user_edit.php:699 -#: ../../operation/users/user_edit.php:700 +#: ../../include/functions_html.php:1398 ../../include/functions_html.php:1399 +#: ../../operation/users/user_edit.php:696 +#: ../../operation/users/user_edit.php:697 msgid "Pop selected pages out of autorefresh list" msgstr "" "Supprimer les pages sélectionnées de la liste de rafraîchissement automatique" -#: ../../godmode/users/user_management.php:530 +#: ../../godmode/users/user_management.php:536 msgid "Autorefresh pages" msgstr "Rafraîchissement automatique des pages" -#: ../../godmode/users/user_management.php:536 +#: ../../godmode/users/user_management.php:542 msgid "Time for autorefresh" msgstr "Temps de rafraîchissement automatique" -#: ../../godmode/users/user_management.php:549 +#: ../../godmode/users/user_management.php:555 #: ../../godmode/massive/massive_edit_users.php:454 -#: ../../operation/users/user_edit.php:716 +#: ../../operation/users/user_edit.php:713 msgid "" "Interval of autorefresh of the elements, by default they are 30 seconds, " "needing to enable the autorefresh first" @@ -35861,40 +36027,36 @@ msgstr "" "Intervalle de rafraîchissement automatique des éléments, par défaut ils sont " "de 30 secondes, il faut d'abord activer le rafraîchissement automatique" -#: ../../godmode/users/user_management.php:554 +#: ../../godmode/users/user_management.php:560 msgid "Language and Appearance" msgstr "Langage et apparence" -#: ../../godmode/users/user_management.php:576 +#: ../../godmode/users/user_management.php:582 msgid "User color scheme" msgstr "Jeu de couleurs utilisateur" -#: ../../godmode/users/user_management.php:593 +#: ../../godmode/users/user_management.php:603 #: ../../godmode/massive/massive_edit_users.php:340 -#: ../../operation/users/user_edit.php:574 +#: ../../operation/users/user_edit.php:571 msgid "Event filter" msgstr "Filtre d'événements" -#: ../../godmode/users/user_management.php:661 -#: ../../include/functions_visual_map_editor.php:313 +#: ../../godmode/users/user_management.php:687 +#: ../../include/functions_visual_map_editor.php:309 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302 msgid "Time zone" msgstr "Fuseau horaire" -#: ../../godmode/users/user_management.php:678 +#: ../../godmode/users/user_management.php:704 msgid "Additional settings" msgstr "Réglages supplémentaires" -#: ../../godmode/users/user_management.php:717 +#: ../../godmode/users/user_management.php:743 msgid "Allow all IPs" msgstr "Autoriser toutes les adresses IP" -#: ../../godmode/users/user_management.php:749 -msgid "Generated automatically with the information provided for the user" -msgstr "Généré automatiquement avec les informations fournies à l’utilisateur" - #: ../../godmode/agentes/agent_template.php:83 -#: ../../include/functions_api.php:15092 +#: ../../include/functions_api.php:15103 msgid "Created by template " msgstr "Créé par modèle " @@ -35907,14 +36069,14 @@ msgid "Error adding modules. The following errors already exists: " msgstr "Erreur d'ajout de modules. Les erreurs suivantes existent déjà : " #: ../../godmode/agentes/agent_template.php:179 -#: ../../include/functions_api.php:15186 +#: ../../include/functions_api.php:15197 msgid "Modules successfully added" msgstr "Modules ajoutés correctement" #: ../../godmode/agentes/agent_template.php:204 #: ../../godmode/agentes/configurar_agente.php:456 #: ../../godmode/agentes/configurar_agente.php:749 ../../godmode/menu.php:177 -#: ../../godmode/wizards/HostDevices.class.php:1098 +#: ../../godmode/wizards/HostDevices.class.php:1094 msgid "Module templates" msgstr "Modèles de modules" @@ -35925,7 +36087,7 @@ msgid "Assign" msgstr "Attribuer" #: ../../godmode/agentes/agent_template.php:317 -#: ../../mobile/operation/modules.php:772 +#: ../../mobile/operation/modules.php:804 msgid "No modules" msgstr "Pas de modules" @@ -35946,70 +36108,75 @@ msgid "Column number to retrieve from the WQL query result (starting from zero). msgstr "" "Numéro de colonne à extraire du résultat de la requête WQL (à partir de zéro)." -#: ../../godmode/agentes/module_manager_editor_web.php:161 +#: ../../godmode/agentes/module_manager_editor_web.php:164 msgid "Debug remotely this module" msgstr "Déboguer à distance ce module" -#: ../../godmode/agentes/module_manager_editor_web.php:164 +#: ../../godmode/agentes/module_manager_editor_web.php:167 msgid "Debug this module once it has been initialized" msgstr "Déboguez ce module une fois qu'il a été initialisé" -#: ../../godmode/agentes/module_manager_editor_web.php:190 +#: ../../godmode/agentes/module_manager_editor_web.php:193 #: ../../include/class/WebServerModuleDebug.class.php:325 msgid "Debug" msgstr "Débogage" -#: ../../godmode/agentes/module_manager_editor_web.php:219 +#: ../../godmode/agentes/module_manager_editor_web.php:222 msgid "Requests" msgstr "Requêtes" -#: ../../godmode/agentes/module_manager_editor_web.php:222 +#: ../../godmode/agentes/module_manager_editor_web.php:225 msgid "Agent browser id" msgstr "Identifiant du navigateur (Agent browser)" -#: ../../godmode/agentes/module_manager_editor_web.php:228 +#: ../../godmode/agentes/module_manager_editor_web.php:231 msgid "HTTP auth (login)" msgstr "Authentification HTTP (connexion)" -#: ../../godmode/agentes/module_manager_editor_web.php:231 +#: ../../godmode/agentes/module_manager_editor_web.php:234 msgid "HTTP auth (password)" msgstr "Authentification HTTP (mot de passe)" -#: ../../godmode/agentes/module_manager_editor_web.php:245 +#: ../../godmode/agentes/module_manager_editor_web.php:248 msgid "Proxy auth (login)" msgstr "Authentification du proxy (connexion)" -#: ../../godmode/agentes/module_manager_editor_web.php:249 +#: ../../godmode/agentes/module_manager_editor_web.php:252 msgid "Proxy auth (pass)" msgstr "Authentification du proxy (mot de passe)" -#: ../../godmode/agentes/module_manager_editor_web.php:256 +#: ../../godmode/agentes/module_manager_editor_web.php:259 msgid "Proxy auth (server)" msgstr "Authentification du proxy (serveur)" -#: ../../godmode/agentes/module_manager_editor_web.php:260 +#: ../../godmode/agentes/module_manager_editor_web.php:263 msgid "Proxy auth (realm)" msgstr "Authentification du proxy (realm)" -#: ../../godmode/agentes/module_manager_editor_web.php:272 +#: ../../godmode/agentes/module_manager_editor_web.php:275 msgid "There isn't get or post" msgstr "Impossible d'obtenir ou de publier" -#: ../../godmode/agentes/status_monitor_custom_fields.php:101 -#: ../../godmode/agentes/status_monitor_custom_fields.php:147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4011 -#: ../../include/functions_reporting_html.php:1784 +#: ../../godmode/agentes/status_monitor_custom_fields.php:35 +#: ../../operation/agentes/status_monitor.php:326 ../../operation/menu.php:186 +msgid "Monitor detail" +msgstr "Détail des moniteurs" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:121 +#: ../../godmode/agentes/status_monitor_custom_fields.php:167 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4020 +#: ../../mobile/operation/agents.php:100 ../../mobile/operation/agents.php:426 +#: ../../include/functions_reporting_html.php:1793 #: ../../include/functions_treeview.php:310 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560 -#: ../../operation/agentes/status_monitor.php:1572 -#: ../../operation/agentes/estado_generalagente.php:529 -#: ../../operation/inventory/inventory.php:1008 -#: ../../operation/inventory/inventory.php:1302 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561 +#: ../../operation/agentes/status_monitor.php:1574 +#: ../../operation/agentes/estado_generalagente.php:500 +#: ../../operation/inventory/inventory.php:1254 msgid "Last status change" msgstr "Dernier changement d’état" -#: ../../godmode/agentes/status_monitor_custom_fields.php:165 +#: ../../godmode/agentes/status_monitor_custom_fields.php:185 msgid "Show monitor detail fields" msgstr "Afficher les champs de détail du moniteur" @@ -36033,15 +36200,15 @@ msgid "Could not be created, because IP already exists" msgstr "Impossible de créer, car l'IP existe déjà" #: ../../godmode/agentes/configurar_agente.php:536 -#: ../../operation/agentes/ver_agente.php:1523 -#: ../../operation/agentes/ver_agente.php:1827 +#: ../../operation/agentes/ver_agente.php:1519 +#: ../../operation/agentes/ver_agente.php:1823 msgid "GIS data" msgstr "Données GIS" #: ../../godmode/agentes/configurar_agente.php:605 #: ../../godmode/agentes/configurar_agente.php:758 -#: ../../operation/agentes/ver_agente.php:1538 -#: ../../operation/agentes/ver_agente.php:1885 ../../operation/menu.php:657 +#: ../../operation/agentes/ver_agente.php:1534 +#: ../../operation/agentes/ver_agente.php:1881 ../../operation/menu.php:657 #: ../../general/first_task/incidents.php:28 msgid "Incidents" msgstr "Incidents" @@ -36071,12 +36238,12 @@ msgid "Manage agents" msgstr "Gérer les agents" #: ../../godmode/agentes/configurar_agente.php:874 -#: ../../godmode/servers/modificar_server.php:350 +#: ../../godmode/servers/modificar_server.php:372 msgid "Conf file deleted successfully" msgstr "Le fichier de configuration a été supprimé correctement" #: ../../godmode/agentes/configurar_agente.php:875 -#: ../../godmode/servers/modificar_server.php:351 +#: ../../godmode/servers/modificar_server.php:373 msgid "Could not delete conf file" msgstr "Erreur de suppression du fichier de configuration" @@ -36120,11 +36287,11 @@ msgstr "Dupliquer l’adresse IP principale" msgid "There was a problem updating the agent" msgstr "Problème de mise à jour de l'agent" -#: ../../godmode/agentes/configurar_agente.php:1227 +#: ../../godmode/agentes/configurar_agente.php:1243 msgid "There was a problem loading the agent" msgstr "Problème de chargement de l'agent" -#: ../../godmode/agentes/configurar_agente.php:1736 +#: ../../godmode/agentes/configurar_agente.php:1797 msgid "" "There was a problem updating module. Another module already exists with the " "same name." @@ -36132,75 +36299,75 @@ msgstr "" "Problème de mise à jour du module. Un autre module avec le même nom existe " "déjà." -#: ../../godmode/agentes/configurar_agente.php:1740 +#: ../../godmode/agentes/configurar_agente.php:1801 msgid "" "There was a problem updating module. Some required fields are missed: (name)" msgstr "" "Problème de mise à jour du module. Certains champs obligatoires sont " "manquants : (nom)" -#: ../../godmode/agentes/configurar_agente.php:1744 +#: ../../godmode/agentes/configurar_agente.php:1805 msgid "There was a problem updating module. \"No change\"" msgstr "Problème de mise à jour du module. « Aucun changement »" -#: ../../godmode/agentes/configurar_agente.php:1750 +#: ../../godmode/agentes/configurar_agente.php:1811 msgid "There was a problem updating module. Processing error" msgstr "Problème de mise à jour du module. Erreur de traitement" -#: ../../godmode/agentes/configurar_agente.php:1779 +#: ../../godmode/agentes/configurar_agente.php:1840 msgid "Module successfully updated" msgstr "Module mis à jour correctement" -#: ../../godmode/agentes/configurar_agente.php:1913 +#: ../../godmode/agentes/configurar_agente.php:1974 msgid "" "There was a problem adding module. Another module already exists with the same " "name." msgstr "" "Problème d'ajout de module. Un autre module avec le même nom existe déjà." -#: ../../godmode/agentes/configurar_agente.php:1917 +#: ../../godmode/agentes/configurar_agente.php:1978 msgid "" "There was a problem adding module. Some required fields are missed : (name)" msgstr "" "Problème d'ajout de module. Certains champs obligatoires sont manquants : (nom)" -#: ../../godmode/agentes/configurar_agente.php:1923 +#: ../../godmode/agentes/configurar_agente.php:1984 msgid "There was a problem adding module. Processing error" msgstr "Problème d'ajout de module. Erreur de traitement" -#: ../../godmode/agentes/configurar_agente.php:1952 +#: ../../godmode/agentes/configurar_agente.php:2013 #: ../../godmode/reporting/graph_builder.php:392 msgid "Module added successfully" msgstr "Module ajouté correctement" -#: ../../godmode/agentes/configurar_agente.php:2106 +#: ../../godmode/agentes/configurar_agente.php:2169 msgid "There was a problem deleting the module" msgstr "Problème de suppression du module" -#: ../../godmode/agentes/configurar_agente.php:2110 +#: ../../godmode/agentes/configurar_agente.php:2173 msgid "Module deleted succesfully" msgstr "Module supprimé correctement" -#: ../../godmode/agentes/configurar_agente.php:2249 -#: ../../include/functions_api.php:11217 +#: ../../godmode/agentes/configurar_agente.php:2312 +#: ../../include/functions_api.php:11220 #, php-format msgid "Save by %s Console" msgstr "Enregistrer par Console %s" -#: ../../godmode/agentes/configurar_agente.php:2267 -#: ../../include/functions_api.php:11218 +#: ../../godmode/agentes/configurar_agente.php:2330 +#: ../../include/functions_api.php:11221 #, php-format msgid "Update by %s Console" msgstr "Mise à jour par Console %s" -#: ../../godmode/agentes/configurar_agente.php:2283 -#: ../../include/functions_api.php:11219 +#: ../../godmode/agentes/configurar_agente.php:2346 +#: ../../include/functions_api.php:11222 #, php-format msgid "Insert by %s Console" msgstr "Insérer par Console %s" -#: ../../godmode/agentes/configurar_agente.php:2356 -#: ../../godmode/agentes/configurar_agente.php:2372 +#: ../../godmode/agentes/configurar_agente.php:2419 +#: ../../godmode/agentes/configurar_agente.php:2435 msgid "Invalid tab specified" msgstr "Onglet non valide" @@ -36288,7 +36455,7 @@ msgid "Error forcing inventory module" msgstr "Erreur : module d'inventaire non forcé" #: ../../godmode/agentes/inventory_manager.php:235 -#: ../../include/functions_ui.php:7438 +#: ../../include/functions_ui.php:7515 msgid "Target" msgstr "Cible" @@ -36340,49 +36507,54 @@ msgstr "" "Rechercher filtre par alias, nom, description, adresse IP ou contenu de champs " "personnalisés" -#: ../../godmode/agentes/modificar_agente.php:692 +#: ../../godmode/agentes/modificar_agente.php:702 msgid "Remote agent configuration" msgstr "Configuration de l'agent à distance" -#: ../../godmode/agentes/modificar_agente.php:692 +#: ../../godmode/agentes/modificar_agente.php:702 msgid "R" msgstr "R" -#: ../../godmode/agentes/modificar_agente.php:772 -#: ../../godmode/agentes/module_manager.php:788 +#: ../../godmode/agentes/modificar_agente.php:784 +#: ../../godmode/agentes/module_manager.php:798 msgid "Module in scheduled downtime" msgstr "Module en temps d’arrêt planifié" -#: ../../godmode/agentes/modificar_agente.php:858 +#: ../../godmode/agentes/modificar_agente.php:870 msgid "Edit remote config" msgstr "Éditer la configuration à distance" -#: ../../godmode/agentes/modificar_agente.php:905 +#: ../../godmode/agentes/modificar_agente.php:917 msgid "Enable agent" msgstr "Activer l'agent" -#: ../../godmode/agentes/modificar_agente.php:907 +#: ../../godmode/agentes/modificar_agente.php:919 msgid "You are going to enable a cluster agent. Are you sure?" msgstr "Vous allez activer un agent de grappe. Êtes-vous sûr ?" -#: ../../godmode/agentes/modificar_agente.php:910 +#: ../../godmode/agentes/modificar_agente.php:922 msgid "Disable agent" msgstr "Désactiver l'agent" -#: ../../godmode/agentes/modificar_agente.php:912 +#: ../../godmode/agentes/modificar_agente.php:924 msgid "You are going to disable a cluster agent. Are you sure?" msgstr "Vous allez désactiver un agent de grappe. Êtes-vous sûr ?" -#: ../../godmode/agentes/modificar_agente.php:943 +#: ../../godmode/agentes/modificar_agente.php:955 msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" msgstr "ATTENTION! - Vous allez supprimer un agent de grappe. Êtes-vous sûr ?" -#: ../../godmode/agentes/modificar_agente.php:965 -#: ../../godmode/agentes/agent_manager.php:1067 -#: ../../godmode/agentes/agent_manager.php:1120 +#: ../../godmode/agentes/modificar_agente.php:977 +#: ../../godmode/agentes/agent_manager.php:1073 +#: ../../godmode/agentes/agent_manager.php:1126 msgid "Delete agent" msgstr "Supprimer l'agent" +#: ../../godmode/agentes/modificar_agente.php:1046 +#: ../../include/class/AgentDeployWizard.class.php:706 +msgid "Deploy agent" +msgstr "Déployer des agents" + #: ../../godmode/agentes/agent_conf_gis.php:38 #: ../../operation/agentes/gis_view.php:59 msgid "There is no default map. Please go to the setup for to set a default map." @@ -36437,7 +36609,7 @@ msgstr "Tous les modules" #: ../../godmode/agentes/planned_downtime.editor.php:66 #: ../../godmode/agentes/planned_downtime.editor.php:79 #: ../../include/functions_reporting_html.php:887 -#: ../../include/functions_reporting_html.php:4891 +#: ../../include/functions_reporting_html.php:4919 msgid "Scheduled Downtime" msgstr "Temps d'arrêt programmé" @@ -36534,7 +36706,7 @@ msgstr "Voulez-vous migrer automatiquement les éléments incorrects ?" #: ../../godmode/agentes/planned_downtime.editor.php:229 #: ../../godmode/agentes/planned_downtime.editor.php:1574 -#: ../../godmode/agentes/planned_downtime.editor.php:1777 +#: ../../godmode/agentes/planned_downtime.editor.php:1775 msgid "This elements cannot be modified while the downtime is being executed" msgstr "" "Cet élément ne peut pas être modifié lorsque le temps d'arrêt est en exécution." @@ -36691,12 +36863,12 @@ msgid "Type Periodicity" msgstr "Type de périodicité :" #: ../../godmode/agentes/planned_downtime.editor.php:1069 -#: ../../include/functions_reporting.php:14923 +#: ../../include/functions_reporting.php:14996 msgid "From day" msgstr "À partir du jour" #: ../../godmode/agentes/planned_downtime.editor.php:1085 -#: ../../include/functions_reporting.php:14924 +#: ../../include/functions_reporting.php:14997 msgid "To day" msgstr "Jusqu'au jour" @@ -36713,14 +36885,14 @@ msgid "To hour" msgstr "Jusqu'à l'heure :" #: ../../godmode/agentes/planned_downtime.editor.php:1152 -#: ../../godmode/agentes/module_manager_editor_common.php:1085 -#: ../../godmode/agentes/module_manager_editor_common.php:1091 +#: ../../godmode/agentes/module_manager_editor_common.php:1095 +#: ../../godmode/agentes/module_manager_editor_common.php:1101 msgid "Cron from" msgstr "Cron à partir de" #: ../../godmode/agentes/planned_downtime.editor.php:1155 -#: ../../godmode/agentes/module_manager_editor_common.php:1088 -#: ../../godmode/agentes/module_manager_editor_common.php:1094 +#: ../../godmode/agentes/module_manager_editor_common.php:1098 +#: ../../godmode/agentes/module_manager_editor_common.php:1104 msgid "Cron to" msgstr "Cron à" @@ -36764,12 +36936,12 @@ msgstr "Quelques modules" msgid "Add Module:" msgstr "Ajouter un module :" -#: ../../godmode/agentes/planned_downtime.editor.php:1907 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4939 +#: ../../godmode/agentes/planned_downtime.editor.php:1903 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4948 msgid "Please select a module." msgstr "Veuillez sélectionner un module." -#: ../../godmode/agentes/planned_downtime.editor.php:2046 +#: ../../godmode/agentes/planned_downtime.editor.php:2042 msgid "" "WARNING: If you edit this scheduled downtime, the data of future SLA reports " "may be altered" @@ -36830,12 +37002,12 @@ msgstr "" msgid "Create field" msgstr "Créer un champ" -#: ../../godmode/agentes/module_manager_editor_network.php:310 +#: ../../godmode/agentes/module_manager_editor_network.php:311 #: ../../include/class/AgentWizard.class.php:584 msgid "SNMP Walk" msgstr "Chemin SNMP" -#: ../../godmode/agentes/module_manager_editor_network.php:477 +#: ../../godmode/agentes/module_manager_editor_network.php:482 msgid "" "Please use single quotation marks when necessary. \n" "\n" @@ -36846,13 +37018,13 @@ msgstr "" "guillemets doubles sont nécessaires, veuillez les échapper avec une barre " "oblique inverse (\\\")" -#: ../../godmode/agentes/module_manager_editor_network.php:536 +#: ../../godmode/agentes/module_manager_editor_network.php:541 msgid "Windows remote" msgstr "Télécommande Windows" #: ../../godmode/agentes/agent_manager.php:329 -#: ../../godmode/agentes/agent_manager.php:744 -#: ../../godmode/massive/massive_edit_agents.php:1014 +#: ../../godmode/agentes/agent_manager.php:748 +#: ../../godmode/massive/massive_edit_agents.php:1031 msgid "Agent icon" msgstr "Icône de l'agent" @@ -36862,7 +37034,7 @@ msgstr "Utiliser alias comme nom" #: ../../godmode/agentes/agent_manager.php:407 #: ../../godmode/setup/setup_general.php:649 -#: ../../include/functions_config.php:390 +#: ../../include/functions_config.php:398 msgid "Unique IP" msgstr "IP unique" @@ -36889,64 +37061,64 @@ msgstr "Liste d’adresses IP" msgid "Primary group" msgstr "Groupe primaire" -#: ../../godmode/agentes/agent_manager.php:673 +#: ../../godmode/agentes/agent_manager.php:677 msgid "Cascade protection modules" msgstr "Modules de protection en cascade" -#: ../../godmode/agentes/agent_manager.php:689 -#: ../../godmode/massive/massive_edit_agents.php:891 +#: ../../godmode/agentes/agent_manager.php:693 +#: ../../godmode/massive/massive_edit_agents.php:908 msgid "Learning mode" msgstr "Mode d'apprentissage" -#: ../../godmode/agentes/agent_manager.php:699 -#: ../../godmode/massive/massive_edit_agents.php:902 +#: ../../godmode/agentes/agent_manager.php:703 +#: ../../godmode/massive/massive_edit_agents.php:919 msgid "Normal mode" msgstr "Mode normal" -#: ../../godmode/agentes/agent_manager.php:709 -#: ../../godmode/massive/massive_edit_agents.php:913 +#: ../../godmode/agentes/agent_manager.php:713 +#: ../../godmode/massive/massive_edit_agents.php:930 msgid "Autodisable mode" msgstr "Mode désactivation automatique" -#: ../../godmode/agentes/agent_manager.php:718 -#: ../../godmode/massive/massive_edit_agents.php:879 +#: ../../godmode/agentes/agent_manager.php:722 +#: ../../godmode/massive/massive_edit_agents.php:896 msgid "Module definition" msgstr "Définition des modules" -#: ../../godmode/agentes/agent_manager.php:730 +#: ../../godmode/agentes/agent_manager.php:734 msgid "Cascade protection services" msgstr "Services de protection en cascade" -#: ../../godmode/agentes/agent_manager.php:737 +#: ../../godmode/agentes/agent_manager.php:741 msgid "Update new GIS data" msgstr "Mettre à jour les nouvelles données SIG" -#: ../../godmode/agentes/agent_manager.php:809 +#: ../../godmode/agentes/agent_manager.php:817 msgid "URL Address" msgstr "Adresse URL" -#: ../../godmode/agentes/agent_manager.php:815 +#: ../../godmode/agentes/agent_manager.php:823 msgid "Disabled mode" msgstr "Mode désactivé" -#: ../../godmode/agentes/agent_manager.php:892 -#: ../../godmode/massive/massive_edit_agents.php:1128 +#: ../../godmode/agentes/agent_manager.php:900 +#: ../../godmode/massive/massive_edit_agents.php:1144 msgid "Safe operation mode" msgstr "Mode d'opération sécurisé" -#: ../../godmode/agentes/agent_manager.php:969 +#: ../../godmode/agentes/agent_manager.php:975 msgid "Link text:" msgstr "Texte du lien :" -#: ../../godmode/agentes/agent_manager.php:980 +#: ../../godmode/agentes/agent_manager.php:986 msgid "Link URL:" msgstr "URL du lien :" -#: ../../godmode/agentes/agent_manager.php:1121 +#: ../../godmode/agentes/agent_manager.php:1127 msgid "This action is not reversible. Are you sure" msgstr "Cette action n’est pas réversible. Êtes-vous sûr ?" -#: ../../godmode/agentes/agent_manager.php:1182 +#: ../../godmode/agentes/agent_manager.php:1188 msgid "Secondary group cannot be primary too." msgstr "Le groupe secondaire ne peut pas non plus être principal." @@ -37051,86 +37223,86 @@ msgid "Warning threshold" msgstr "Seuil d’avertissement" #: ../../godmode/agentes/module_manager_editor_common.php:448 -#: ../../godmode/agentes/module_manager_editor_common.php:531 +#: ../../godmode/agentes/module_manager_editor_common.php:536 msgid "Min / Max" msgstr "Min / Max" -#: ../../godmode/agentes/module_manager_editor_common.php:530 +#: ../../godmode/agentes/module_manager_editor_common.php:535 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:435 msgid "Critical threshold" msgstr "Seuil critique" -#: ../../godmode/agentes/module_manager_editor_common.php:741 +#: ../../godmode/agentes/module_manager_editor_common.php:751 msgid "Identification and Categorization" msgstr "Identification et catégorisation" -#: ../../godmode/agentes/module_manager_editor_common.php:944 +#: ../../godmode/agentes/module_manager_editor_common.php:954 msgid "Module parent" msgstr "Parent de module" -#: ../../godmode/agentes/module_manager_editor_common.php:994 +#: ../../godmode/agentes/module_manager_editor_common.php:1004 msgid "Tags from policy" msgstr "Étiquettes de la politique" -#: ../../godmode/agentes/module_manager_editor_common.php:1065 +#: ../../godmode/agentes/module_manager_editor_common.php:1075 msgid "Execution interval" msgstr "Intervalle d’exécution" -#: ../../godmode/agentes/module_manager_editor_common.php:1101 +#: ../../godmode/agentes/module_manager_editor_common.php:1111 msgid "Thresholds and state changes" msgstr "Seuils et changements d’état" -#: ../../godmode/agentes/module_manager_editor_common.php:1119 +#: ../../godmode/agentes/module_manager_editor_common.php:1129 msgid "Dynamic Threshold Interval" msgstr "Intervalle de seuil dynamique" -#: ../../godmode/agentes/module_manager_editor_common.php:1172 +#: ../../godmode/agentes/module_manager_editor_common.php:1182 msgid "Two Tailed" msgstr "Deux queues" -#: ../../godmode/agentes/module_manager_editor_common.php:1323 +#: ../../godmode/agentes/module_manager_editor_common.php:1333 msgid "Data and their processing" msgstr "Les données et leur traitement" -#: ../../godmode/agentes/module_manager_editor_common.php:1353 +#: ../../godmode/agentes/module_manager_editor_common.php:1363 msgid "Notifications and alerts" msgstr "Notifications et alertes" -#: ../../godmode/agentes/module_manager_editor_common.php:1357 +#: ../../godmode/agentes/module_manager_editor_common.php:1367 msgid "Not needed" msgstr "Pas nécessaire" -#: ../../godmode/agentes/module_manager_editor_common.php:1403 +#: ../../godmode/agentes/module_manager_editor_common.php:1413 msgid "Cascade Protection Services" msgstr "Services de protection en cascade" -#: ../../godmode/agentes/module_manager_editor_common.php:1486 -#: ../../godmode/agentes/module_manager_editor_common.php:1620 +#: ../../godmode/agentes/module_manager_editor_common.php:1496 +#: ../../godmode/agentes/module_manager_editor_common.php:1630 msgid "Direct" msgstr "Direct" -#: ../../godmode/agentes/module_manager_editor_common.php:1487 -#: ../../godmode/agentes/module_manager_editor_common.php:1620 -#: ../../include/functions_reporting_html.php:4132 -#: ../../include/functions_reporting_html.php:4226 -#: ../../include/functions_reporting_html.php:4306 -#: ../../include/functions_reporting_html.php:4315 -#: ../../include/functions_reporting_html.php:4453 -#: ../../include/functions_reporting_html.php:4462 -#: ../../include/functions_reporting_html.php:4788 -#: ../../include/functions_reporting_html.php:4794 +#: ../../godmode/agentes/module_manager_editor_common.php:1497 +#: ../../godmode/agentes/module_manager_editor_common.php:1630 +#: ../../include/functions_reporting_html.php:4160 +#: ../../include/functions_reporting_html.php:4254 +#: ../../include/functions_reporting_html.php:4334 +#: ../../include/functions_reporting_html.php:4343 +#: ../../include/functions_reporting_html.php:4481 +#: ../../include/functions_reporting_html.php:4490 +#: ../../include/functions_reporting_html.php:4816 +#: ../../include/functions_reporting_html.php:4822 msgid "Failover" msgstr "Basculement" -#: ../../godmode/agentes/module_manager_editor_common.php:1489 +#: ../../godmode/agentes/module_manager_editor_common.php:1499 msgid "Rel. type" msgstr "Type de relations" -#: ../../godmode/agentes/module_manager_editor_common.php:1511 +#: ../../godmode/agentes/module_manager_editor_common.php:1521 msgid "Add relationship" msgstr "Ajouter une relation" -#: ../../godmode/agentes/module_manager_editor_common.php:1537 +#: ../../godmode/agentes/module_manager_editor_common.php:1547 msgid "Changes" msgstr "Changements" @@ -37162,7 +37334,8 @@ msgstr "" "Un problème est survenu lors de l'exécution de l'opération. Appliqué aux " "modules %d/%d." -#: ../../godmode/agentes/module_manager.php:619 ../../include/ajax/module.php:999 +#: ../../godmode/agentes/module_manager.php:619 +#: ../../include/ajax/module.php:1022 msgid "P" msgstr "P" @@ -37170,42 +37343,42 @@ msgstr "P" msgid "S" msgstr "S" -#: ../../godmode/agentes/module_manager.php:836 -#: ../../godmode/agentes/module_manager.php:844 -#: ../../include/ajax/module.php:1064 ../../include/ajax/module.php:1072 +#: ../../godmode/agentes/module_manager.php:846 +#: ../../godmode/agentes/module_manager.php:854 +#: ../../include/ajax/module.php:1087 ../../include/ajax/module.php:1095 msgid "Adopted" msgstr "Adopté" -#: ../../godmode/agentes/module_manager.php:972 +#: ../../godmode/agentes/module_manager.php:986 msgid "Normalize" msgstr "Normaliser" -#: ../../godmode/agentes/module_manager.php:985 +#: ../../godmode/agentes/module_manager.php:999 #: ../../include/functions_snmp_browser.php:638 msgid "Create network component" msgstr "Créer un composant de réseau" -#: ../../godmode/agentes/module_manager.php:1020 +#: ../../godmode/agentes/module_manager.php:1034 #: ../../godmode/reporting/map_builder.php:485 -#: ../../godmode/reporting/map_builder.php:502 -#: ../../operation/agentes/datos_agente.php:295 +#: ../../godmode/reporting/map_builder.php:502 ../../include/ajax/module.php:609 +#: ../../operation/agentes/datos_agente.php:297 msgid "No available data to show" msgstr "Aucune donnée disponible" -#: ../../godmode/agentes/module_manager.php:1037 +#: ../../godmode/agentes/module_manager.php:1051 #: ../../include/class/SatelliteAgent.class.php:233 msgid "Execute action" msgstr "Exécuter l'action" -#: ../../godmode/agentes/module_manager.php:1081 +#: ../../godmode/agentes/module_manager.php:1095 msgid "Select module type" msgstr "Sélectionner le type de module" -#: ../../godmode/agentes/module_manager.php:1104 +#: ../../godmode/agentes/module_manager.php:1119 msgid "Get more modules on Monitoring Library" msgstr "Obtenez plus de modules sur Monitoring Library" -#: ../../godmode/agentes/module_manager.php:1239 +#: ../../godmode/agentes/module_manager.php:1260 msgid "" "This module has children modules.The following modules will also be deleted: " msgstr "" @@ -37235,7 +37408,7 @@ msgid "Item list" msgstr "Liste d'éléments" #: ../../godmode/netflow/nf_item_list.php:176 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2549 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2558 msgid "Max. values" msgstr "Valeurs maximales" @@ -37261,49 +37434,49 @@ msgstr "Filtres Netflow" msgid "There are no defined filters" msgstr "Aucun filtre défini" -#: ../../godmode/netflow/nf_edit_form.php:66 ../../godmode/events/events.php:69 +#: ../../godmode/netflow/nf_edit_form.php:77 ../../godmode/events/events.php:69 msgid "Filter list" msgstr "Filtrer la liste" -#: ../../godmode/netflow/nf_edit_form.php:67 +#: ../../godmode/netflow/nf_edit_form.php:78 msgid "Add filter" msgstr "Ajouter un filtre" -#: ../../godmode/netflow/nf_edit_form.php:181 -#: ../../operation/netflow/nf_live_view.php:261 +#: ../../godmode/netflow/nf_edit_form.php:224 +#: ../../operation/netflow/nf_live_view.php:270 msgid "Src Ip Address" msgstr "Adresse IP source" -#: ../../godmode/netflow/nf_edit_form.php:182 -#: ../../operation/netflow/nf_live_view.php:262 +#: ../../godmode/netflow/nf_edit_form.php:225 +#: ../../operation/netflow/nf_live_view.php:271 msgid "Dst Ip Address" msgstr "Adresse IP de destination" -#: ../../godmode/netflow/nf_edit_form.php:183 -#: ../../godmode/netflow/nf_edit_form.php:314 -#: ../../operation/netflow/nf_live_view.php:263 -#: ../../operation/netflow/nf_live_view.php:321 +#: ../../godmode/netflow/nf_edit_form.php:226 +#: ../../godmode/netflow/nf_edit_form.php:359 +#: ../../operation/netflow/nf_live_view.php:272 +#: ../../operation/netflow/nf_live_view.php:330 msgid "Src Port" msgstr "Port source" -#: ../../godmode/netflow/nf_edit_form.php:184 -#: ../../godmode/netflow/nf_edit_form.php:302 -#: ../../operation/netflow/nf_live_view.php:264 -#: ../../operation/netflow/nf_live_view.php:313 +#: ../../godmode/netflow/nf_edit_form.php:227 +#: ../../godmode/netflow/nf_edit_form.php:347 +#: ../../operation/netflow/nf_live_view.php:273 +#: ../../operation/netflow/nf_live_view.php:322 msgid "Dst Port" msgstr "Port de destination" -#: ../../godmode/netflow/nf_edit_form.php:261 +#: ../../godmode/netflow/nf_edit_form.php:306 msgid "Aggregate by" msgstr "Regrouper par" -#: ../../godmode/netflow/nf_edit_form.php:278 -#: ../../operation/netflow/nf_live_view.php:294 +#: ../../godmode/netflow/nf_edit_form.php:323 +#: ../../operation/netflow/nf_live_view.php:303 msgid "Dst Ip" msgstr "Adresse IP de destination" -#: ../../godmode/netflow/nf_edit_form.php:286 -#: ../../operation/netflow/nf_live_view.php:294 +#: ../../godmode/netflow/nf_edit_form.php:331 +#: ../../operation/netflow/nf_live_view.php:303 msgid "" "Destination IP. A comma separated list of destination ip. If we leave the " "field blank, will show all ip. Example filter by ip:" @@ -37313,13 +37486,13 @@ msgstr "" "destination. Si le champ est laissé vide, toutes les adresses IP seront " "affichées. Exemple de filtre par IP :
25.46.157.214,160.253.135.249" -#: ../../godmode/netflow/nf_edit_form.php:290 -#: ../../operation/netflow/nf_live_view.php:302 +#: ../../godmode/netflow/nf_edit_form.php:335 +#: ../../operation/netflow/nf_live_view.php:311 msgid "Src Ip" msgstr "Adresse IP source" -#: ../../godmode/netflow/nf_edit_form.php:298 -#: ../../operation/netflow/nf_live_view.php:302 +#: ../../godmode/netflow/nf_edit_form.php:343 +#: ../../operation/netflow/nf_live_view.php:311 msgid "" "Source IP. A comma separated list of source ip. If we leave the field blank, " "will show all ip. Example filter by ip:
25.46.157.214,160.253.135.249" @@ -37328,8 +37501,8 @@ msgstr "" "champ est laissé vide, toutes les adresses IP seront affichées. Exemple de " "filtre par IP :
25.46.157.214,160.253.135.249" -#: ../../godmode/netflow/nf_edit_form.php:310 -#: ../../operation/netflow/nf_live_view.php:313 +#: ../../godmode/netflow/nf_edit_form.php:355 +#: ../../operation/netflow/nf_live_view.php:322 msgid "" "Destination port. A comma separated list of destination ports. If we leave the " "field blank, will show all ports. Example filter by ports 80 and 22:
80,22" @@ -37338,8 +37511,8 @@ msgstr "" "le champ est laissé vide, tous les ports seront affichés. Exemple de filtre " "par ports 80 et 22 :
80,22" -#: ../../godmode/netflow/nf_edit_form.php:322 -#: ../../operation/netflow/nf_live_view.php:321 +#: ../../godmode/netflow/nf_edit_form.php:367 +#: ../../operation/netflow/nf_live_view.php:330 msgid "" "Source port. A comma separated list of source ports. If we leave the field " "blank, will show all ports. Example filter by ports 80 and 22:
80,22" @@ -37348,21 +37521,88 @@ msgstr "" "laissé vide, touts les ports seront affichés. Exemple de filtre par ports 80 " "et 22 :
80,22" -#: ../../godmode/netflow/nf_edit_form.php:327 +#: ../../godmode/netflow/nf_edit_form.php:372 msgid "Advanced filters" msgstr "Filtres avancés" +#: ../../godmode/netflow/nf_edit_form.php:380 +#: ../../operation/netflow/nf_live_view.php:377 +msgid "Enable Netflow monitoring" +msgstr "Activer la supervision Netflow" + +#: ../../godmode/netflow/nf_edit_form.php:389 +#: ../../operation/netflow/nf_live_view.php:377 +msgid "" +"Allows you to create an agent that monitors the traffic volume of this filter. " +"It also creates a module that measures if the traffic of any IP of this filter " +"exceeds a certain threshold. A text type module will be created with the " +"traffic rate for each IP within this filter every five minutes (the 10 IP's " +"with the most traffic). Only available for Enterprise version." +msgstr "" +"Il vous permet de créer un agent qui supervise le volume de traffic de ce " +"filtre. Il crée aussi un module qui mesure si le traffic de n’importe quelle " +"IP de ce filtre dépasse un certain seuil. Un module de type texte sera créé " +"avec le taux du traffic pour chaque IP dans ce filtre tous les cinq minutes " +"(les 10 IP avec plus de traffic). Seulement disponible dans la version " +"Enterprise." + +#: ../../godmode/netflow/nf_edit_form.php:395 +#: ../../operation/netflow/nf_live_view.php:391 +msgid "Netflow monitoring interval" +msgstr "Intervalle de supervision Netflow" + +#: ../../godmode/netflow/nf_edit_form.php:403 +#: ../../operation/netflow/nf_live_view.php:391 +msgid "Netflow monitoring interval in secs." +msgstr "Intervalle de supervision Netflow en secondes." + +#: ../../godmode/netflow/nf_edit_form.php:407 +#: ../../operation/netflow/nf_live_view.php:401 +msgid "Maximum traffic value of the filter" +msgstr "Valeur du traffic maximale du filtre" + +#: ../../godmode/netflow/nf_edit_form.php:415 +#: ../../operation/netflow/nf_live_view.php:401 +#, php-format +msgid "" +"Specifies the maximum rate (in bytes/sec) of traffic in the filter. It is then " +"used to calculate the % of maximum traffic per IP." +msgstr "" +"Il spécifique le taux maximale (en bytes/sec) du traffic dans le filtre. Il " +"est après utilisé pour calculer le % du traffic maximale par IP." + +#: ../../godmode/netflow/nf_edit_form.php:421 +#: ../../operation/netflow/nf_live_view.php:415 +#, php-format +msgid "CRITICAL threshold for the maximum % of traffic for an IP." +msgstr "Seuil CRITIQUE pour le maximum % du traffic pour une IP." + +#: ../../godmode/netflow/nf_edit_form.php:431 +#: ../../operation/netflow/nf_live_view.php:415 +msgid "" +"If this % is exceeded by any IP within the filter, a CRITICAL status will be " +"generated." +msgstr "" +"Si ce % est dépassé par une IP dans le filtre, un état critique sera généré." + +#: ../../godmode/netflow/nf_edit_form.php:435 +#, php-format +msgid "WARNING threshold for the maximum % of traffic for an IP." +msgstr "Seuil d’AVERTISSEMENT pour le maximum % de traffic pour une IP." + +#: ../../godmode/netflow/nf_edit_form.php:445 +#: ../../operation/netflow/nf_live_view.php:425 +msgid "" +"If this % is exceeded by any IP within the filter, a WARNING status will be " +"generated." +msgstr "" +"Si ce % est dépasse par n’importe quelle IP dans le filtre, un état " +"d’AVERTISSEMENT sera généré." + #: ../../godmode/snmpconsole/snmp_trap_generator.php:38 msgid "SNMP Trap generator" msgstr "Générateur de déroutements SNMP" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 -#: ../../godmode/snmpconsole/snmp_filters.php:59 -#: ../../operation/snmpconsole/snmp_browser.php:90 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 -msgid "SMNP" -msgstr "SMNP" - #: ../../godmode/snmpconsole/snmp_trap_generator.php:68 msgid "Empty parameters" msgstr "Paramètres vides" @@ -37481,9 +37721,9 @@ msgid "Custom Value/Enterprise String" msgstr "Valeur personnalisée/Chaîne Enterprise" #: ../../godmode/snmpconsole/snmp_alert.php:1908 -#: ../../include/functions_reporting_html.php:5373 -#: ../../include/functions_reporting_html.php:5495 -#: ../../include/functions_treeview.php:441 +#: ../../include/functions_reporting_html.php:5401 +#: ../../include/functions_reporting_html.php:5523 +#: ../../include/functions_treeview.php:445 msgid "Times fired" msgstr "Nombre de fois déclenchée" @@ -37503,7 +37743,7 @@ msgstr "Voulez-vous supprimer cette alerte ?" msgid "Do you want delete the selected alerts?" msgstr "Voulez-vous supprimer les alertes sélectionnées ?" -#: ../../godmode/snmpconsole/snmp_alert.php:2355 +#: ../../godmode/snmpconsole/snmp_alert.php:2343 msgid "Add action " msgstr "Ajouter une action " @@ -37592,147 +37832,147 @@ msgstr "Gérer les groupes d'agents" msgid "Private Enterprise Numbers" msgstr "Numéros d'entreprise privée" -#: ../../godmode/menu.php:183 +#: ../../godmode/menu.php:182 msgid "Remote components" msgstr "Composants distants" -#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:246 +#: ../../godmode/menu.php:208 ../../godmode/massive/massive_operations.php:246 msgid "Agents operations" msgstr "Opérations des agents" -#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:258 +#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:258 msgid "Modules operations" msgstr "Opérations des modules" -#: ../../godmode/menu.php:211 ../../godmode/massive/massive_operations.php:270 +#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:270 msgid "Plugins operations" msgstr "Opérations des plugins" -#: ../../godmode/menu.php:213 ../../godmode/massive/massive_operations.php:234 +#: ../../godmode/menu.php:212 ../../godmode/massive/massive_operations.php:234 msgid "Users operations" msgstr "Opérations des utilisateurs" -#: ../../godmode/menu.php:216 ../../godmode/massive/massive_operations.php:222 +#: ../../godmode/menu.php:215 ../../godmode/massive/massive_operations.php:222 msgid "Alerts operations" msgstr "Opérations d'alertes" -#: ../../godmode/menu.php:234 +#: ../../godmode/menu.php:233 msgid "Event filters" msgstr "Filtres d'événements" -#: ../../godmode/menu.php:239 ../../godmode/events/events.php:95 +#: ../../godmode/menu.php:238 ../../godmode/events/events.php:95 #: ../../godmode/events/events.php:110 msgid "Custom columns" msgstr "Colonnes personnalisées" -#: ../../godmode/menu.php:270 +#: ../../godmode/menu.php:268 msgid "List of Alerts" msgstr "Liste d'alertes" -#: ../../godmode/menu.php:285 +#: ../../godmode/menu.php:283 msgid "Special days list" msgstr "Liste de jours spéciaux" -#: ../../godmode/menu.php:290 +#: ../../godmode/menu.php:288 ../../include/functions_groups.php:267 msgid "SNMP alerts" msgstr "Alertes SNMP" -#: ../../godmode/menu.php:307 +#: ../../godmode/menu.php:305 msgid "Manage servers" msgstr "Gérer les serveurs" -#: ../../godmode/menu.php:314 +#: ../../godmode/menu.php:312 msgid "Manage consoles" msgstr "Gérer les consoles" -#: ../../godmode/menu.php:325 +#: ../../godmode/menu.php:323 msgid "Register Plugin" msgstr "Enregistrer Plugin" -#: ../../godmode/menu.php:351 ../../include/class/OrderInterpreter.class.php:141 +#: ../../godmode/menu.php:349 ../../include/class/OrderInterpreter.class.php:141 msgid "General Setup" msgstr "Configuration générale" -#: ../../godmode/menu.php:376 ../../godmode/setup/setup.php:165 +#: ../../godmode/menu.php:374 ../../godmode/setup/setup.php:165 #: ../../godmode/setup/setup.php:296 msgid "Sflow" msgstr "Sflow" -#: ../../godmode/menu.php:381 ../../godmode/setup/setup.php:191 -#: ../../godmode/setup/setup.php:302 ../../operation/agentes/ver_agente.php:1623 -#: ../../operation/agentes/ver_agente.php:1897 +#: ../../godmode/menu.php:379 ../../godmode/setup/setup.php:191 +#: ../../godmode/setup/setup.php:302 ../../operation/agentes/ver_agente.php:1619 +#: ../../operation/agentes/ver_agente.php:1893 msgid "eHorus" msgstr "eHorus" -#: ../../godmode/menu.php:384 ../../godmode/setup/setup.php:179 +#: ../../godmode/menu.php:382 ../../godmode/setup/setup.php:179 #: ../../godmode/setup/setup.php:308 ../../godmode/setup/setup_integria.php:681 msgid "Integria IMS" msgstr "Integria IMS" -#: ../../godmode/menu.php:392 +#: ../../godmode/menu.php:390 msgid "Websocket Engine" msgstr "Moteur de Websocket" -#: ../../godmode/menu.php:395 ../../godmode/setup/setup.php:238 -#: ../../godmode/setup/setup.php:336 ../../operation/agentes/ver_agente.php:1713 -#: ../../operation/agentes/ver_agente.php:1914 +#: ../../godmode/menu.php:393 ../../godmode/setup/setup.php:238 +#: ../../godmode/setup/setup.php:336 ../../operation/agentes/ver_agente.php:1709 +#: ../../operation/agentes/ver_agente.php:1910 msgid "External Tools" msgstr "Outils externes" -#: ../../godmode/menu.php:398 +#: ../../godmode/menu.php:396 msgid "Welcome Tips" msgstr "Astuces de bienvenue" -#: ../../godmode/menu.php:402 ../../godmode/setup/setup.php:320 +#: ../../godmode/menu.php:400 ../../godmode/setup/setup.php:320 msgid "Map conections GIS" msgstr "Connexions de cartes GIS" -#: ../../godmode/menu.php:430 +#: ../../godmode/menu.php:428 msgid "Diagnostic info" msgstr "Information de diagnostic" -#: ../../godmode/menu.php:435 ../../godmode/setup/news.php:43 +#: ../../godmode/menu.php:433 ../../godmode/setup/news.php:43 msgid "Site news" msgstr "Nouveautés du site" -#: ../../godmode/menu.php:444 +#: ../../godmode/menu.php:442 msgid "DB Schema Check" msgstr "Vérifier schéma de la BD" -#: ../../godmode/menu.php:447 +#: ../../godmode/menu.php:445 msgid "DB Interface" msgstr "Interface de la BD" -#: ../../godmode/menu.php:456 ../../include/class/EventSound.class.php:230 -msgid "Accoustic console setup" +#: ../../godmode/menu.php:454 ../../include/class/EventSound.class.php:230 +msgid "Acoustic console setup" msgstr "Configuration de la console acoustique" -#: ../../godmode/menu.php:533 +#: ../../godmode/menu.php:531 msgid "Extension manager view" msgstr "Afficher le gestionnaire d'extension" -#: ../../godmode/menu.php:569 ../../include/class/OrderInterpreter.class.php:339 +#: ../../godmode/menu.php:567 ../../include/class/OrderInterpreter.class.php:339 msgid "Warp Update" msgstr "Warp Update" -#: ../../godmode/menu.php:574 +#: ../../godmode/menu.php:572 msgid "Update offline" msgstr "Mise à jour hors ligne" -#: ../../godmode/menu.php:577 +#: ../../godmode/menu.php:575 msgid "Update online" msgstr "Mise à jour en ligne" -#: ../../godmode/menu.php:583 +#: ../../godmode/menu.php:581 msgid "Warp journal" msgstr "Journal de Warp" -#: ../../godmode/menu.php:592 +#: ../../godmode/menu.php:590 #: ../../godmode/module_library/module_library_view.php:81 msgid "Module library" msgstr "Bibliothèque de modules" -#: ../../godmode/menu.php:599 +#: ../../godmode/menu.php:597 #: ../../godmode/module_library/module_library_view.php:54 #: ../../godmode/module_library/module_library_view.php:68 #: ../../godmode/module_library/module_library_view.php:104 @@ -38034,10 +38274,10 @@ msgstr "Agents avec des modèles" #: ../../godmode/massive/massive_delete_action_alerts.php:240 #: ../../godmode/massive/massive_add_action_alerts.php:219 -#: ../../godmode/alerts/alert_templates.php:139 -#: ../../godmode/alerts/alert_templates.php:188 -#: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/alerts/alert_templates.php:142 +#: ../../godmode/alerts/alert_templates.php:192 +#: ../../godmode/alerts/alert_templates.php:215 +#: ../../godmode/alerts/alert_templates.php:236 msgid "Alert templates" msgstr "Modèles d'alertes" @@ -38059,7 +38299,7 @@ msgstr "Aucun module sélectionné" #: ../../godmode/massive/massive_delete_alerts.php:113 #: ../../godmode/massive/massive_add_action_alerts.php:75 #: ../../include/functions_visual_map.php:2568 -#: ../../include/functions_visual_map.php:2914 +#: ../../include/functions_visual_map.php:2917 msgid "No agents selected" msgstr "Aucun agent sélectionné" @@ -38148,29 +38388,29 @@ msgstr "Les utilisateurs ne peuvent pas être mis à jour (%s)" #: ../../godmode/massive/massive_edit_users.php:209 #: ../../godmode/massive/massive_delete_profiles.php:154 #: ../../godmode/massive/massive_add_profiles.php:204 -#: ../../include/functions_reporting.php:12397 +#: ../../include/functions_reporting.php:12470 #: ../../operation/search_results.php:94 msgid "Users" msgstr "Utilisateurs" #: ../../godmode/massive/massive_edit_users.php:379 -#: ../../operation/users/user_edit.php:646 +#: ../../operation/users/user_edit.php:643 msgid "This will activate autorefresh in selected pages" msgstr "Le rafraîchissement automatique sera activé sur les pages sélectionnées." #: ../../godmode/massive/massive_edit_users.php:443 -#: ../../operation/users/user_edit.php:705 +#: ../../operation/users/user_edit.php:702 msgid "List of pages with autorefresh" msgstr "Liste de pages avec le rafraîchissement automatique" #: ../../godmode/massive/massive_edit_users.php:452 -#: ../../operation/users/user_edit.php:714 +#: ../../operation/users/user_edit.php:711 msgid "Time autorefresh" msgstr "Temps de rafraîchissement" #: ../../godmode/massive/massive_add_alerts.php:105 #: ../../godmode/massive/massive_delete_alerts.php:108 -#: ../../operation/agentes/alerts_status.php:566 +#: ../../operation/agentes/alerts_status.php:576 #: ../../operation/agentes/alerts_status.functions.php:54 msgid "No alert selected" msgstr "Aucune alerte sélectionnée" @@ -38288,33 +38528,33 @@ msgstr "Fichiers de configuration supprimés correctement" msgid "Configuration files cannot be deleted" msgstr "Erreur de suppression des fichiers de configuration" -#: ../../godmode/massive/massive_edit_agents.php:382 +#: ../../godmode/massive/massive_edit_agents.php:399 #, php-format msgid "Agents updated successfully (%d)" msgstr "Agents mis à jour correctement (%d)" -#: ../../godmode/massive/massive_edit_agents.php:397 +#: ../../godmode/massive/massive_edit_agents.php:414 #, php-format msgid "Agents cannot be updated (%d), ids (%s)" msgstr "Les agents ne peuvent pas être mis à jour (%d), ids (%s)" -#: ../../godmode/massive/massive_edit_agents.php:412 +#: ../../godmode/massive/massive_edit_agents.php:429 #, php-format msgid "Agent ID: %s cannot be updated custom fields (%s)" msgstr "" "ID de l’agent : %s ne peut pas être mis à jour des champs personnalisés (%s)" -#: ../../godmode/massive/massive_edit_agents.php:432 +#: ../../godmode/massive/massive_edit_agents.php:449 #, php-format msgid "Agent ID: %s cannot be updated %s secondary groups (%s)" msgstr "" "ID de l’agent : %s ne peut pas être mis à jour %s groupes secondaires (%s)" -#: ../../godmode/massive/massive_edit_agents.php:668 +#: ../../godmode/massive/massive_edit_agents.php:685 msgid "Cascade protection" msgstr "Protection en cascade" -#: ../../godmode/massive/massive_edit_agents.php:940 +#: ../../godmode/massive/massive_edit_agents.php:957 msgid "" "If the remote configuration is enabled, it will also go into standby mode when " "disabling it." @@ -38322,34 +38562,34 @@ msgstr "" "Si la configuration à distance est activée, elle passera également en mode " "veille lors de sa désactivation." -#: ../../godmode/massive/massive_edit_agents.php:953 +#: ../../godmode/massive/massive_edit_agents.php:970 #: ../../include/class/EventSound.class.php:344 msgid "Active" msgstr "Activé" -#: ../../godmode/massive/massive_edit_agents.php:969 +#: ../../godmode/massive/massive_edit_agents.php:986 msgid "Delete available remote configurations" msgstr "Supprimer les configurations à distance disponibles" -#: ../../godmode/massive/massive_edit_agents.php:1025 +#: ../../godmode/massive/massive_edit_agents.php:1042 msgid "Without status" msgstr "Sans état" -#: ../../godmode/massive/massive_edit_agents.php:1052 +#: ../../godmode/massive/massive_edit_agents.php:1069 #: ../../include/lib/Dashboard/Widgets/maps_status.php:371 msgid "Bad" msgstr "Mauvais" -#: ../../godmode/massive/massive_edit_agents.php:1072 +#: ../../godmode/massive/massive_edit_agents.php:1089 msgid "Ignore new GIS data:" msgstr "Ignorer les nouvelles données GIS :" -#: ../../godmode/massive/massive_edit_agents.php:1110 +#: ../../godmode/massive/massive_edit_agents.php:1127 msgid "The agent still runs but the alerts and events will be stop" msgstr "" "L'agent fonctionne toujours mais les alertes et les événements seront arrêtés" -#: ../../godmode/massive/massive_edit_agents.php:1130 +#: ../../godmode/massive/massive_edit_agents.php:1146 #, php-format msgid "" "This mode allow %s to disable all modules of this agent while the selected " @@ -38401,15 +38641,11 @@ msgstr "" "mettre à jour)" #: ../../godmode/massive/massive_edit_modules.php:506 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:419 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:423 msgid "Filter agents" msgstr "Filtrer les agents" -#: ../../godmode/massive/massive_edit_modules.php:811 -msgid "SMNP community" -msgstr "Communauté SNMP" - -#: ../../godmode/consoles/consoles.php:59 +#: ../../godmode/consoles/consoles.php:67 msgid "" "If you want to have your consoles registered, you must define them by editing " "config.php in each individual console and wait for cron to run in order to be " @@ -38452,7 +38688,7 @@ msgid "Hide" msgstr "Cacher" #: ../../godmode/alerts/alert_actions.php:79 -#: ../../include/functions_reporting.php:3226 +#: ../../include/functions_reporting.php:3235 msgid "Alert actions" msgstr "Actions d'alerte" @@ -38515,12 +38751,12 @@ msgstr "" "Les actions par défaut seront exécutées chaque fois que l'alerte est " "déclenchée et qu'aucune autre action est exécutée." -#: ../../godmode/alerts/alert_list.list.php:1061 +#: ../../godmode/alerts/alert_list.list.php:1060 msgid "View alert advanced details" msgstr "Afficher les informations avancées des alertes" -#: ../../godmode/alerts/alert_list.list.php:1081 -#: ../../include/functions_reporting_html.php:3441 +#: ../../godmode/alerts/alert_list.list.php:1080 +#: ../../include/functions_reporting_html.php:3469 msgid "No alerts defined" msgstr "Aucune alerte définie" @@ -38565,12 +38801,12 @@ msgid "Alert commands" msgstr "Commandes d'alertes" #: ../../godmode/alerts/alert_commands.php:657 -#: ../../include/functions_alerts.php:2659 +#: ../../include/functions_alerts.php:2660 msgid "No name specified" msgstr "Aucun nom indiqué" #: ../../godmode/alerts/alert_commands.php:661 -#: ../../include/functions_alerts.php:2654 +#: ../../include/functions_alerts.php:2655 msgid "No command specified" msgstr "Aucune commande spécifiée." @@ -38582,7 +38818,7 @@ msgstr " (copie)" msgid "No alert commands configured" msgstr "Aucune commande d'alerte configurée" -#: ../../godmode/alerts/alert_templates.php:273 +#: ../../godmode/alerts/alert_templates.php:277 #, php-format msgid "" "This node is configured with centralized mode. All alert templates information " @@ -38591,7 +38827,7 @@ msgstr "" "Ce nœud est configuré en mode centralisé. Toutes les informations sur les " "modèles d'alerte sont en lecture seule. Allez vers %s pour le gérer." -#: ../../godmode/alerts/alert_templates.php:438 +#: ../../godmode/alerts/alert_templates.php:442 msgid "" "You cannot edit this alert template, You don't have the permission to edit All " "group." @@ -38599,7 +38835,7 @@ msgstr "" "Vous ne pouvez pas modifier ce modèle d'alerte, vous n'êtes pas autorisé à " "modifier le groupe Tous." -#: ../../godmode/alerts/alert_templates.php:505 +#: ../../godmode/alerts/alert_templates.php:509 msgid "No alert templates defined" msgstr "Aucun modèle d'alerte défini" @@ -38616,6 +38852,14 @@ msgstr "Cette action peut cesser de fonctionner si vous modifiez son nom." msgid "Create Command" msgstr "Créer une commande" +#: ../../godmode/alerts/configure_alert_action.php:287 +msgid "" +"An alert action is executed only once within this time interval, regardless of " +"how many times the alert is triggered." +msgstr "" +"Une action d’alerte est exécutée seulement une fois dans cet intervalle de " +"temps, n’importe combien de fois l’alerte est déclenchée." + #: ../../godmode/alerts/configure_alert_action.php:320 msgid "Triggering" msgstr "Déclenchement" @@ -38645,7 +38889,7 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:104 #: ../../godmode/alerts/configure_alert_template.php:135 #: ../../godmode/alerts/configure_alert_template.php:174 -#: ../../include/functions_menu.php:569 +#: ../../include/functions_menu.php:571 msgid "Configure alert template" msgstr "Configurer le modèle d'alerte" @@ -38672,6 +38916,14 @@ msgstr "" msgid "No template name specified" msgstr "Aucun nom de modèle spécifié" +#: ../../godmode/alerts/configure_alert_template.php:691 +msgid "" +"Reset the alert counter within the configured period if there is no manual " +"recovery or validation of the alert." +msgstr "" +"Remettre le compteur d’alertes dans la période configurée s’il n’y a pas de " +"récupération manuelle ou validation de l’alerte." + #: ../../godmode/alerts/configure_alert_template.php:722 msgid "" "Unless they're left blank, the fields from the action will override those set " @@ -38718,7 +38970,7 @@ msgid "No wizard" msgstr "Pas d'assistant logiciel" #: ../../godmode/alerts/configure_alert_template.php:1266 -#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1504 +#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1547 msgid "The alert would fire when the value matches " msgstr "" "L'alerte est déclenchée lorsque la valeur concorde avec " msgstr "L'alerte est déclenchée lorsque la valeur est " #: ../../godmode/alerts/configure_alert_template.php:1269 -#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1498 +#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1541 msgid "The alert would fire when the value is not " msgstr "" "L'alerte est déclenchée lorsque la valeur n'est pas " #: ../../godmode/alerts/configure_alert_template.php:1270 -#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1516 +#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1559 msgid "" "The alert would fire when the value is between and " "" @@ -38772,12 +39024,12 @@ msgstr "" "" #: ../../godmode/alerts/configure_alert_template.php:1274 -#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1535 +#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1578 msgid "The alert would fire when the module is in warning status" msgstr "L'alerte est déclenchée lorsque le module se trouve en état d'alerte" #: ../../godmode/alerts/configure_alert_template.php:1275 -#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1540 +#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1583 msgid "The alert would fire when the module is in critical status" msgstr "L'alerte est déclenchée lorsque le module se trouve en état critique" @@ -38827,14 +39079,14 @@ msgstr "Liste d'alertes" msgid "Stand by" msgstr "Veuillez patientez" -#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1507 +#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1550 msgid "" "The alert would fire when the value doesn't match " msgstr "" "L'alerte est déclenchée lorsque la valeur ne concorde pas avec " -#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1519 +#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1562 msgid "" "The alert would fire when the value is not between " "and " @@ -38921,6 +39173,10 @@ msgstr "Créer une action" msgid "Create Template" msgstr "Créer un modèle" +#: ../../godmode/alerts/alert_list.builder.php:169 +msgid "It takes precedence over the action's threshold configuration." +msgstr "Il a de la priorité sur la configuration du seuil de l’action." + #: ../../godmode/alerts/alert_list.builder.php:199 msgid "Finish and view cluster" msgstr "Terminer et afficher la grappe" @@ -38954,12 +39210,12 @@ msgid "Licence" msgstr "Licence" #: ../../godmode/setup/license.php:158 -#: ../../include/class/Diagnostics.class.php:1175 +#: ../../include/class/Diagnostics.class.php:1179 msgid "Customer key" msgstr "Mot de passe du client" #: ../../godmode/setup/license.php:183 -#: ../../include/class/Diagnostics.class.php:1183 +#: ../../include/class/Diagnostics.class.php:1187 msgid "Platform Limit" msgstr "Limite de la plateforme" @@ -38975,22 +39231,22 @@ msgid "modules" msgstr "modules" #: ../../godmode/setup/license.php:196 -#: ../../include/class/Diagnostics.class.php:1187 +#: ../../include/class/Diagnostics.class.php:1191 msgid "Current Platform Count" msgstr "Nombre de plateformes actuelles" #: ../../godmode/setup/license.php:209 -#: ../../include/class/Diagnostics.class.php:1191 +#: ../../include/class/Diagnostics.class.php:1195 msgid "Current Platform Count (enabled: items)" msgstr "Nombre de plateformes actuelles (activés : éléments)" #: ../../godmode/setup/license.php:222 -#: ../../include/class/Diagnostics.class.php:1195 +#: ../../include/class/Diagnostics.class.php:1199 msgid "Current Platform Count (disabled: items)" msgstr "Nombre de plateformes actuelles (désactivés : éléments)" #: ../../godmode/setup/license.php:235 -#: ../../include/class/Diagnostics.class.php:1199 +#: ../../include/class/Diagnostics.class.php:1203 msgid "License Mode" msgstr "Mode licence" @@ -38999,7 +39255,7 @@ msgid "NMS" msgstr "NMS" #: ../../godmode/setup/license.php:274 -#: ../../include/class/Diagnostics.class.php:1211 +#: ../../include/class/Diagnostics.class.php:1215 msgid "Licensed to" msgstr "Sous licence pour" @@ -39057,40 +39313,44 @@ msgstr "" msgid "Site news management" msgstr "Gérer les nouveautés du site" -#: ../../godmode/setup/news.php:169 ../../godmode/setup/links.php:105 +#: ../../godmode/setup/news.php:173 ../../godmode/setup/links.php:105 msgid "Name error" msgstr "Erreur de nom" -#: ../../godmode/setup/news.php:234 +#: ../../godmode/setup/news.php:238 msgid "Modal screen" msgstr "Écran modal" -#: ../../godmode/setup/news.php:247 +#: ../../godmode/setup/news.php:251 msgid "Expire" msgstr "Expire le" -#: ../../godmode/setup/news.php:260 ../../godmode/setup/news.php:353 +#: ../../godmode/setup/news.php:264 ../../godmode/setup/news.php:357 msgid "Expiration" msgstr "Expiration" -#: ../../godmode/setup/news.php:344 +#: ../../godmode/setup/news.php:348 msgid "There are no defined news" msgstr "Aucune nouvelle définie" -#: ../../godmode/setup/news.php:351 -#: ../../operation/agentes/estado_generalagente.php:749 +#: ../../godmode/setup/news.php:355 +#: ../../operation/agentes/estado_generalagente.php:718 msgid "Author" msgstr "Auteur" -#: ../../godmode/setup/news.php:371 +#: ../../godmode/setup/news.php:364 ../../general/logon_ok.php:216 +msgid "Welcome to Pandora FMS Console" +msgstr "Bienvenue à la console web Pandora FMS" + +#: ../../godmode/setup/news.php:370 msgid "Modal" msgstr "Modal" -#: ../../godmode/setup/news.php:373 +#: ../../godmode/setup/news.php:372 msgid "Board" msgstr "Panneau" -#: ../../godmode/setup/news.php:384 +#: ../../godmode/setup/news.php:383 msgid "Expired" msgstr "Expiré" @@ -39118,7 +39378,7 @@ msgstr "Connexion à la carte SIG" msgid "Pandora Websocket Engine" msgstr "Moteur de Websocket Pandora FMS" -#: ../../godmode/setup/setup.php:344 ../../include/class/TipsWindow.class.php:493 +#: ../../godmode/setup/setup.php:344 ../../include/class/TipsWindow.class.php:505 msgid "Create tip" msgstr "Créer une astuce" @@ -39135,7 +39395,7 @@ msgid "Correct update the setup options" msgstr "Corrigez la mise à jour des options de configuration" #: ../../godmode/setup/setup_ehorus.php:67 -#: ../../include/functions_config.php:1812 +#: ../../include/functions_config.php:1824 msgid "Enable eHorus" msgstr "Activer eHorus" @@ -39156,6 +39416,17 @@ msgstr "Port API" msgid "Request timeout" msgstr "Demande expirée" +#: ../../godmode/setup/setup_ehorus.php:135 +#: ../../godmode/setup/setup_integria.php:665 +msgid "Connection its OK" +msgstr "Connexion correcte" + +#: ../../godmode/setup/setup_ehorus.php:139 +#: ../../godmode/setup/setup_websocket_engine.php:89 +#: ../../godmode/setup/setup_integria.php:652 +msgid "Test connection" +msgstr "Tester la connexion" + #: ../../godmode/setup/setup_ehorus.php:175 msgid "Remote Management System" msgstr "Système de Gestion à Distance" @@ -39197,24 +39468,24 @@ msgstr "Dépassement du délai de connexion" #: ../../godmode/setup/setup_ehorus.php:297 #: ../../godmode/setup/setup_integria.php:825 #: ../../godmode/setup/setup_integria.php:906 -#: ../../operation/users/user_edit.php:1420 -#: ../../operation/users/user_edit.php:1498 +#: ../../operation/users/user_edit.php:1417 +#: ../../operation/users/user_edit.php:1495 msgid "Empty user or password" msgstr "Utilisateur ou mot de passe vide" #: ../../godmode/setup/setup_ehorus.php:298 #: ../../godmode/setup/setup_integria.php:826 #: ../../godmode/setup/setup_integria.php:907 -#: ../../operation/users/user_edit.php:1421 -#: ../../operation/users/user_edit.php:1499 +#: ../../operation/users/user_edit.php:1418 +#: ../../operation/users/user_edit.php:1496 msgid "User not found" msgstr "Utilisateur introuvable" #: ../../godmode/setup/setup_ehorus.php:299 #: ../../godmode/setup/setup_integria.php:827 #: ../../godmode/setup/setup_integria.php:908 -#: ../../operation/users/user_edit.php:1422 -#: ../../operation/users/user_edit.php:1500 +#: ../../operation/users/user_edit.php:1419 +#: ../../operation/users/user_edit.php:1497 msgid "Invalid password" msgstr "Mot de passe incorrect" @@ -39223,55 +39494,52 @@ msgstr "Mot de passe incorrect" msgid "Data storage path" msgstr "Chemin de stockage de données" -#: ../../godmode/setup/setup_sflow.php:50 -#: ../../godmode/setup/setup_netflow.php:50 -#: ../../include/functions_config.php:1540 -#: ../../include/functions_config.php:1583 +#: ../../godmode/setup/setup_sflow.php:50 ../../include/functions_config.php:1595 msgid "Daemon interval" msgstr "Intervalle de démon" #: ../../godmode/setup/setup_sflow.php:55 -#: ../../godmode/setup/setup_netflow.php:55 -#: ../../include/functions_config.php:1544 -#: ../../include/functions_config.php:1587 +#: ../../godmode/setup/setup_netflow.php:51 +#: ../../include/functions_config.php:1556 +#: ../../include/functions_config.php:1599 msgid "Daemon binary path" msgstr "Chemin binaire démon" #: ../../godmode/setup/setup_sflow.php:60 -#: ../../godmode/setup/setup_netflow.php:60 -#: ../../include/functions_config.php:1548 -#: ../../include/functions_config.php:1591 +#: ../../godmode/setup/setup_netflow.php:56 +#: ../../include/functions_config.php:1560 +#: ../../include/functions_config.php:1603 msgid "Nfdump binary path" msgstr "Chemin binaire nfdump" #: ../../godmode/setup/setup_sflow.php:65 -#: ../../godmode/setup/setup_netflow.php:65 -#: ../../include/functions_config.php:1552 -#: ../../include/functions_config.php:1595 +#: ../../godmode/setup/setup_netflow.php:61 +#: ../../include/functions_config.php:1564 +#: ../../include/functions_config.php:1607 msgid "Nfexpire binary path" msgstr "Chemin binaire Nfexpire" #: ../../godmode/setup/setup_sflow.php:70 -#: ../../godmode/setup/setup_netflow.php:70 -#: ../../include/functions_config.php:1556 -#: ../../include/functions_config.php:1599 +#: ../../godmode/setup/setup_netflow.php:66 +#: ../../include/functions_config.php:1568 +#: ../../include/functions_config.php:1611 msgid "Maximum chart resolution" msgstr "Résolution maximale du graphique" -#: ../../godmode/setup/setup_sflow.php:80 ../../include/functions_config.php:1607 +#: ../../godmode/setup/setup_sflow.php:80 ../../include/functions_config.php:1619 msgid "Sflow max lifetime" msgstr "Durée de vie maximale de Sflow" #: ../../godmode/setup/setup_sflow.php:84 -#: ../../godmode/setup/setup_netflow.php:84 -#: ../../operation/netflow/nf_live_view.php:339 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../operation/netflow/nf_live_view.php:348 msgid "IP address resolution can take a lot of time" msgstr "La résolution de l'adresse IP peut prendre du temps" #: ../../godmode/setup/setup_sflow.php:86 -#: ../../godmode/setup/setup_netflow.php:86 -#: ../../include/functions_config.php:1568 -#: ../../include/functions_config.php:1611 +#: ../../godmode/setup/setup_netflow.php:82 +#: ../../include/functions_config.php:1580 +#: ../../include/functions_config.php:1623 msgid "Name resolution for IP address" msgstr "Résolution du nom pour l'adresse IP" @@ -39288,7 +39556,7 @@ msgid "Bind port" msgstr "Lier le port" #: ../../godmode/setup/setup_websocket_engine.php:71 -#: ../../include/functions_config.php:1964 +#: ../../include/functions_config.php:1976 msgid "WebSocket proxy url" msgstr "URL du proxy WebSocket" @@ -39301,11 +39569,11 @@ msgstr "" "Ce nœud est configuré en mode centralisé. Toutes les définitions de système " "d'exploitation sont en lecture seule. Accédez à %s pour les gérer." -#: ../../godmode/setup/os.list.php:163 +#: ../../godmode/setup/os.list.php:162 msgid "There are no defined operating systems" msgstr "Aucun système d'exploitation défini" -#: ../../godmode/setup/os.list.php:170 +#: ../../godmode/setup/os.list.php:169 msgid "Create OS" msgstr "Définir système d'exploitation" @@ -39391,9 +39659,9 @@ msgstr "Google Maps" #: ../../godmode/setup/gis_step_2.php:254 #: ../../godmode/reporting/visual_console_builder.elements.php:199 -#: ../../include/functions_visual_map_editor.php:1385 -#: ../../include/functions_visual_map.php:4200 -#: ../../operation/visual_console/view.php:316 +#: ../../include/functions_visual_map_editor.php:1443 +#: ../../include/functions_visual_map.php:4209 +#: ../../operation/visual_console/view.php:318 msgid "Static Image" msgstr "Image statique" @@ -39442,24 +39710,24 @@ msgid "Corners of the area of the image" msgstr "Coins qui délimitent la surface de l'image" #: ../../godmode/setup/gis_step_2.php:364 -#: ../../include/rest-api/models/VisualConsole/Item.php:1961 +#: ../../include/rest-api/models/VisualConsole/Item.php:1964 msgid "Left" msgstr "Gauche" #: ../../godmode/setup/gis_step_2.php:371 -#: ../../include/rest-api/models/VisualConsole/Item.php:1958 +#: ../../include/rest-api/models/VisualConsole/Item.php:1961 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317 msgid "Bottom" msgstr "En bas" #: ../../godmode/setup/gis_step_2.php:378 -#: ../../include/rest-api/models/VisualConsole/Item.php:1960 +#: ../../include/rest-api/models/VisualConsole/Item.php:1963 msgid "Right" msgstr "Droite" #: ../../godmode/setup/gis_step_2.php:385 -#: ../../include/rest-api/models/VisualConsole/Item.php:1959 +#: ../../include/rest-api/models/VisualConsole/Item.php:1962 msgid "Top" msgstr "En haut" @@ -39555,7 +39823,7 @@ msgid "Integria IMS API is not reachable" msgstr "L'API Integria IMS n'est pas accessible" #: ../../godmode/setup/setup_integria.php:262 -#: ../../include/functions_config.php:1850 +#: ../../include/functions_config.php:1862 msgid "Enable Integria IMS" msgstr "Activer Integria IMS" @@ -39628,183 +39896,183 @@ msgstr "Erreur d'enregistrement de la traduction SNMP" msgid "Unsucessful save the snmp translation." msgstr "Erreur d'enregistrement de la traduction SNMP" -#: ../../godmode/setup/setup_netflow.php:80 -#: ../../include/functions_config.php:1564 +#: ../../godmode/setup/setup_netflow.php:76 +#: ../../include/functions_config.php:1576 msgid "Netflow max lifetime" msgstr "Durée de vie maximale du Netflow" -#: ../../godmode/setup/setup_visuals.php:108 +#: ../../godmode/setup/setup_visuals.php:112 msgid "Click to display lateral menus" msgstr "Cliquer pour afficher les menus latéraux" -#: ../../godmode/setup/setup_visuals.php:120 +#: ../../godmode/setup/setup_visuals.php:124 msgid "Paginated module view" msgstr "Vue paginée du module" -#: ../../godmode/setup/setup_visuals.php:152 -#: ../../include/functions_config.php:1347 +#: ../../godmode/setup/setup_visuals.php:156 +#: ../../include/functions_config.php:1363 msgid "Service label font size" msgstr "Taille de la police de l'étiquette de service" -#: ../../godmode/setup/setup_visuals.php:156 +#: ../../godmode/setup/setup_visuals.php:160 msgid "Space between items in Service maps" msgstr "Espace entre les éléments sur les cartes de service" -#: ../../godmode/setup/setup_visuals.php:235 +#: ../../godmode/setup/setup_visuals.php:239 msgid "Colors" msgstr "Couleurs" -#: ../../godmode/setup/setup_visuals.php:236 +#: ../../godmode/setup/setup_visuals.php:240 msgid "Faces" msgstr "Apparence" -#: ../../godmode/setup/setup_visuals.php:237 +#: ../../godmode/setup/setup_visuals.php:241 msgid "Colors and text" msgstr "Couleurs et texte" -#: ../../godmode/setup/setup_visuals.php:339 -#: ../../include/functions_config.php:1038 +#: ../../godmode/setup/setup_visuals.php:343 +#: ../../include/functions_config.php:1050 msgid "Style template" msgstr "Modèle de style" -#: ../../godmode/setup/setup_visuals.php:357 -#: ../../include/functions_config.php:1058 +#: ../../godmode/setup/setup_visuals.php:361 +#: ../../include/functions_config.php:1070 msgid "Status icon set" msgstr "Définir icône d'état" -#: ../../godmode/setup/setup_visuals.php:602 -#: ../../include/functions_config.php:1094 +#: ../../godmode/setup/setup_visuals.php:606 +#: ../../include/functions_config.php:1106 msgid "Custom documentation logo" msgstr "Logo de documentation personnalisé" -#: ../../godmode/setup/setup_visuals.php:642 -#: ../../include/functions_config.php:1098 +#: ../../godmode/setup/setup_visuals.php:646 +#: ../../include/functions_config.php:1110 msgid "Custom support logo" msgstr "Logo d'assistance personnalisé" -#: ../../godmode/setup/setup_visuals.php:680 -#: ../../include/functions_config.php:1102 -#: ../../include/functions_config.php:1106 +#: ../../godmode/setup/setup_visuals.php:684 +#: ../../include/functions_config.php:1114 +#: ../../include/functions_config.php:1118 msgid "Custom networkmap center logo" msgstr "Logo du centre de carte réseau personnalisé" -#: ../../godmode/setup/setup_visuals.php:720 +#: ../../godmode/setup/setup_visuals.php:724 msgid "Custom mobile console icon" msgstr "Icône de console mobile personnalisée" -#: ../../godmode/setup/setup_visuals.php:814 +#: ../../godmode/setup/setup_visuals.php:818 msgid "Disable logo in graphs" msgstr "Désactiver logo sur les graphiques" -#: ../../godmode/setup/setup_visuals.php:832 +#: ../../godmode/setup/setup_visuals.php:836 msgid "Disable helps" msgstr "Désactiver les aides" -#: ../../godmode/setup/setup_visuals.php:842 -#: ../../include/functions_config.php:1286 +#: ../../godmode/setup/setup_visuals.php:846 +#: ../../include/functions_config.php:1302 msgid "Fixed header" msgstr "En-tête fixe" -#: ../../godmode/setup/setup_visuals.php:854 +#: ../../godmode/setup/setup_visuals.php:858 msgid "Automatically hide submenu" msgstr "Masquer automatiquement le sous-menu" -#: ../../godmode/setup/setup_visuals.php:901 -#: ../../include/functions_config.php:1250 +#: ../../godmode/setup/setup_visuals.php:905 +#: ../../include/functions_config.php:1266 msgid "GIS Labels" msgstr "Étiquettes GIS" -#: ../../godmode/setup/setup_visuals.php:911 -#: ../../include/functions_config.php:1258 +#: ../../godmode/setup/setup_visuals.php:915 +#: ../../include/functions_config.php:1274 msgid "Default icon in GIS" msgstr "Icône par défaut sur GIS" -#: ../../godmode/setup/setup_visuals.php:920 +#: ../../godmode/setup/setup_visuals.php:924 msgid "Agent icon group" msgstr "Icône du groupe de l'agent" -#: ../../godmode/setup/setup_visuals.php:970 +#: ../../godmode/setup/setup_visuals.php:974 msgid "Graphs font size" msgstr "Taille de police des graphiques" -#: ../../godmode/setup/setup_visuals.php:989 +#: ../../godmode/setup/setup_visuals.php:993 msgid "Show unit along with value in reports" msgstr "Afficher l'unité et la valeur dans les rapports" -#: ../../godmode/setup/setup_visuals.php:1000 -#: ../../include/functions_config.php:1226 -#: ../../include/functions_config.php:1230 +#: ../../godmode/setup/setup_visuals.php:1004 +#: ../../include/functions_config.php:1242 +#: ../../include/functions_config.php:1246 msgid "Agent size text" msgstr "Taille du texte de l'agent" -#: ../../godmode/setup/setup_visuals.php:1007 -#: ../../godmode/setup/setup_visuals.php:1029 +#: ../../godmode/setup/setup_visuals.php:1011 +#: ../../godmode/setup/setup_visuals.php:1033 msgid "Small" msgstr "Petit" -#: ../../godmode/setup/setup_visuals.php:1022 -#: ../../include/functions_config.php:1234 +#: ../../godmode/setup/setup_visuals.php:1026 +#: ../../include/functions_config.php:1250 msgid "Module size text" msgstr "Taille du texte du module" -#: ../../godmode/setup/setup_visuals.php:1046 -#: ../../include/functions_config.php:1238 -#: ../../include/functions_config.php:1242 +#: ../../godmode/setup/setup_visuals.php:1050 +#: ../../include/functions_config.php:1254 +#: ../../include/functions_config.php:1258 msgid "Description size text" msgstr "Taille du texte de description" -#: ../../godmode/setup/setup_visuals.php:1057 -#: ../../include/functions_config.php:1246 +#: ../../godmode/setup/setup_visuals.php:1061 +#: ../../include/functions_config.php:1262 msgid "Item title size text" msgstr "Taille du texte du titre de l'élément" -#: ../../godmode/setup/setup_visuals.php:1109 +#: ../../godmode/setup/setup_visuals.php:1113 msgid "Graph color #" msgstr "Couleur du graphique #" -#: ../../godmode/setup/setup_visuals.php:1123 +#: ../../godmode/setup/setup_visuals.php:1127 msgid "Data precision" msgstr "Précision des données" -#: ../../godmode/setup/setup_visuals.php:1141 +#: ../../godmode/setup/setup_visuals.php:1145 msgid "Data precision in graphs" msgstr "Précision de données sur les graphiques" -#: ../../godmode/setup/setup_visuals.php:1172 -#: ../../include/functions_config.php:1314 +#: ../../godmode/setup/setup_visuals.php:1176 +#: ../../include/functions_config.php:1330 msgid "Default line thickness for the Custom Graph." msgstr "Épaisseur de ligne par défaut pour le graphique personnalisé" -#: ../../godmode/setup/setup_visuals.php:1299 +#: ../../godmode/setup/setup_visuals.php:1303 msgid "Zoom graphs" msgstr "Zoomer les graphiques" -#: ../../godmode/setup/setup_visuals.php:1328 +#: ../../godmode/setup/setup_visuals.php:1332 msgid "Classic view" msgstr "Affichage classique" -#: ../../godmode/setup/setup_visuals.php:1329 +#: ../../godmode/setup/setup_visuals.php:1333 msgid "View of favorites" msgstr "Vue des favoris" -#: ../../godmode/setup/setup_visuals.php:1384 +#: ../../godmode/setup/setup_visuals.php:1388 msgid "Type of view of visual consoles" msgstr "Type d'affichage des consoles visuelles" -#: ../../godmode/setup/setup_visuals.php:1398 +#: ../../godmode/setup/setup_visuals.php:1402 msgid "Number of favorite visual consoles to show in the menu" msgstr "Nombre de consoles visuelles préférées à afficher dans le menu" -#: ../../godmode/setup/setup_visuals.php:1403 -#: ../../include/functions_config.php:1214 +#: ../../godmode/setup/setup_visuals.php:1407 +#: ../../include/functions_config.php:1226 msgid "Default line thickness for the Visual Console" msgstr "Épaisseur de ligne par défaut pour la console visuelle" -#: ../../godmode/setup/setup_visuals.php:1437 +#: ../../godmode/setup/setup_visuals.php:1452 msgid "Number of favorite services to show in the menu" msgstr "Nombre de services favoris à afficher dans le menu" -#: ../../godmode/setup/setup_visuals.php:1535 +#: ../../godmode/setup/setup_visuals.php:1550 msgid "" "The dir of custom logos is in your www Console in 'images/custom_logo'. You " "can upload more files (ONLY JPEG AND PNG) in upload tool in console." @@ -39813,90 +40081,90 @@ msgstr "" "'images/custom_logo'. Vous pouvez télécharger plus de fichiers (SEULEMENT JPEG " "ET PNG) dans l'outil de téléchargement de la console." -#: ../../godmode/setup/setup_visuals.php:1724 -#: ../../include/functions_config.php:1298 +#: ../../godmode/setup/setup_visuals.php:1739 +#: ../../include/functions_config.php:1314 msgid "Networkmap max width" msgstr "Largeur maximale de la carte de réseau" -#: ../../godmode/setup/setup_visuals.php:1747 +#: ../../godmode/setup/setup_visuals.php:1762 msgid "Show empty groups in group view" msgstr "Afficher les groupes vides dans la vue de groupe" -#: ../../godmode/setup/setup_visuals.php:1773 -#: ../../include/functions_config.php:1520 +#: ../../godmode/setup/setup_visuals.php:1788 +#: ../../include/functions_config.php:1536 msgid "Decimal separator" msgstr "Séparateur décimal" -#: ../../godmode/setup/setup_visuals.php:1788 +#: ../../godmode/setup/setup_visuals.php:1803 msgid "Visible time of successful notifiations" -msgstr "Heure visible des notifications réussies" +msgstr "Temps visible des notifications réussies" -#: ../../godmode/setup/setup_visuals.php:1816 +#: ../../godmode/setup/setup_visuals.php:1831 msgid "Custom values post process" msgstr "Valeurs personnalisées pour post-traitement" -#: ../../godmode/setup/setup_visuals.php:1856 -#: ../../godmode/setup/setup_visuals.php:2023 +#: ../../godmode/setup/setup_visuals.php:1871 +#: ../../godmode/setup/setup_visuals.php:2038 msgid "Delete custom values" msgstr "Supprimer les valeurs personnalisées" -#: ../../godmode/setup/setup_visuals.php:1906 +#: ../../godmode/setup/setup_visuals.php:1921 msgid "Interval values" msgstr "Valeurs d'intervalle" -#: ../../godmode/setup/setup_visuals.php:1945 +#: ../../godmode/setup/setup_visuals.php:1960 msgid "Delete interval values" msgstr "Supprimer des valeurs d’intervalle" -#: ../../godmode/setup/setup_visuals.php:1988 +#: ../../godmode/setup/setup_visuals.php:2003 msgid "Module units" msgstr "Unités du module" -#: ../../godmode/setup/setup_visuals.php:2084 +#: ../../godmode/setup/setup_visuals.php:2099 msgid "Behaviour configuration" msgstr "Configuration de comportement" -#: ../../godmode/setup/setup_visuals.php:2089 +#: ../../godmode/setup/setup_visuals.php:2104 msgid "GIS configuration" msgstr "Configuration GIS" -#: ../../godmode/setup/setup_visuals.php:2094 +#: ../../godmode/setup/setup_visuals.php:2109 msgid "Style configuration" msgstr "Configuration du style" -#: ../../godmode/setup/setup_visuals.php:2099 +#: ../../godmode/setup/setup_visuals.php:2114 msgid "Charts configuration" msgstr "Configuration de graphiques" -#: ../../godmode/setup/setup_visuals.php:2104 +#: ../../godmode/setup/setup_visuals.php:2119 msgid "Font and Text configuration" msgstr "Configuration de la police et du texte" -#: ../../godmode/setup/setup_visuals.php:2109 +#: ../../godmode/setup/setup_visuals.php:2124 msgid "Visual consoles configuration" msgstr "Configuration des consoles visuelles" -#: ../../godmode/setup/setup_visuals.php:2114 +#: ../../godmode/setup/setup_visuals.php:2129 msgid "Reports configuration " msgstr "Configuration des rapports" -#: ../../godmode/setup/setup_visuals.php:2119 +#: ../../godmode/setup/setup_visuals.php:2134 msgid "Services configuration" msgstr "Configuration des services" -#: ../../godmode/setup/setup_visuals.php:2124 +#: ../../godmode/setup/setup_visuals.php:2139 msgid "Other configuration" msgstr "Autre configuration" -#: ../../godmode/setup/setup_visuals.php:2405 +#: ../../godmode/setup/setup_visuals.php:2425 msgid "Mobile console logo preview" msgstr "Aperçu du logo de la console mobile" -#: ../../godmode/setup/setup_visuals.php:2441 +#: ../../godmode/setup/setup_visuals.php:2461 msgid "Gis icons preview" msgstr "Aperçu des icônes GIS" -#: ../../godmode/setup/setup_visuals.php:2507 +#: ../../godmode/setup/setup_visuals.php:2527 msgid "Status set preview" msgstr "Aperçu de l'état" @@ -39980,8 +40248,12 @@ msgstr "Activer Sflow" msgid "General network path" msgstr "Chemin réseau général" +#: ../../godmode/setup/setup_general.php:434 +msgid "Server timezone setup" +msgstr "Configuration du fuseau horaire du serveur" + #: ../../godmode/setup/setup_general.php:515 -#: ../../include/functions_config.php:423 +#: ../../include/functions_config.php:431 msgid "Inventory changes blacklist" msgstr "Liste noire des changements d'inventaire" @@ -40046,11 +40318,11 @@ msgstr "Utile pour les intégrations" msgid "Log location" msgstr "Emplacement du journal" -#: ../../godmode/setup/setup_general.php:710 +#: ../../godmode/setup/setup_general.php:736 msgid "General options" msgstr "Options générales" -#: ../../godmode/setup/setup_general.php:729 +#: ../../godmode/setup/setup_general.php:755 msgid "" "Please notice that some providers like Gmail or Office365 need to setup/enable " "manually external connections using SMTP and you need to use STARTTLS on port " @@ -40066,29 +40338,29 @@ msgstr "" "Si vous avez des paramètres manuels dans votre pandora_server.conf, veuillez " "noter que ces paramètres ignoreront cette configuration de la console." -#: ../../godmode/setup/setup_general.php:744 +#: ../../godmode/setup/setup_general.php:770 msgid "From address" msgstr "De l'adresse" -#: ../../godmode/setup/setup_general.php:768 +#: ../../godmode/setup/setup_general.php:794 msgid "SMTP Server" msgstr "Serveur SMTP" -#: ../../godmode/setup/setup_general.php:780 +#: ../../godmode/setup/setup_general.php:806 msgid "SMTP Port" msgstr "Port SMTP" -#: ../../godmode/setup/setup_general.php:847 +#: ../../godmode/setup/setup_general.php:873 msgid "Email test" msgstr "Test d'un email" -#: ../../godmode/setup/setup_general.php:896 -#: ../../include/class/TipsWindow.class.php:767 -#: ../../include/class/TipsWindow.class.php:934 ../../general/header.php:833 +#: ../../godmode/setup/setup_general.php:922 +#: ../../include/class/TipsWindow.class.php:787 +#: ../../include/class/TipsWindow.class.php:954 ../../general/header.php:833 msgid "Send" msgstr "Envoyer" -#: ../../godmode/setup/setup_general.php:910 +#: ../../godmode/setup/setup_general.php:936 msgid "Check mail configuration" msgstr "Vérifier la configuration de la messagerie" @@ -40100,29 +40372,29 @@ msgstr "Pandora_db s'exécutant dans la base de données historique." msgid "not executed" msgstr "Non exécuté" -#: ../../godmode/setup/performance.php:278 ../../include/functions_config.php:834 +#: ../../godmode/setup/performance.php:278 ../../include/functions_config.php:846 msgid "Max. days before delete traps" msgstr "Nombre de jours maximum avant la suppression de déroutements" #: ../../godmode/setup/performance.php:308 -#: ../../godmode/setup/performance.php:518 ../../include/functions_config.php:838 +#: ../../godmode/setup/performance.php:518 ../../include/functions_config.php:850 msgid "Max. days before delete string data" msgstr "Nombre de jours maximum avant la suppression de chaînes de données" -#: ../../godmode/setup/performance.php:323 ../../include/functions_config.php:846 +#: ../../godmode/setup/performance.php:323 ../../include/functions_config.php:858 msgid "Max. days before delete GIS data" msgstr "Nombre de jours maximum avant la suppression de données GIS" #: ../../godmode/setup/performance.php:353 -#: ../../godmode/setup/performance.php:482 ../../include/functions_config.php:862 +#: ../../godmode/setup/performance.php:482 ../../include/functions_config.php:874 msgid "Max. days before compact data" msgstr "Nombre de jours maximum avant la compression de données" -#: ../../godmode/setup/performance.php:368 ../../include/functions_config.php:854 +#: ../../godmode/setup/performance.php:368 ../../include/functions_config.php:866 msgid "Max. days before delete unknown modules" msgstr "Nombre de jours maximum avant la suppression de modules inconnus" -#: ../../godmode/setup/performance.php:383 ../../include/functions_config.php:858 +#: ../../godmode/setup/performance.php:383 ../../include/functions_config.php:870 msgid "Max. days before delete not initialized modules" msgstr "Nombre de jours maximum avant la suppression de modules non initialisés" @@ -40132,24 +40404,24 @@ msgstr "" "Nombre de jours maximum avant la suppression d'agents à désactivation " "automatique" -#: ../../godmode/setup/performance.php:413 ../../include/functions_config.php:914 +#: ../../godmode/setup/performance.php:413 ../../include/functions_config.php:926 msgid "Retention period of past special days" msgstr "Période de rétention de jours spéciaux passés" #: ../../godmode/setup/performance.php:494 -#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:878 +#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:890 msgid "Compact interpolation in hours (1 Fine-20 bad)" msgstr "Interpolation de compression en heures (1 Optimale-20 Mauvaise)" -#: ../../godmode/setup/performance.php:537 ../../include/functions_config.php:928 +#: ../../godmode/setup/performance.php:537 ../../include/functions_config.php:940 msgid "Max. days before delete old messages" msgstr "Max. jours avant de supprimer les anciens messages" -#: ../../godmode/setup/performance.php:549 ../../include/functions_config.php:932 +#: ../../godmode/setup/performance.php:549 ../../include/functions_config.php:944 msgid "Max. days before delete old network matrix data" msgstr "Max. jours avant de supprimer les anciennes données de la matrice réseau" -#: ../../godmode/setup/performance.php:565 ../../include/functions_config.php:923 +#: ../../godmode/setup/performance.php:565 ../../include/functions_config.php:935 msgid "Max. days before delete inventory data" msgstr "Nombre de jours maximum avant la suppression de données d'inventaire" @@ -40169,20 +40441,20 @@ msgstr "10 jours" msgid "2 weeks" msgstr "2 semaines" -#: ../../godmode/setup/performance.php:652 ../../include/functions_config.php:886 +#: ../../godmode/setup/performance.php:652 ../../include/functions_config.php:898 msgid "Use realtime statistics" msgstr "Utiliser des statistiques en temps réel" -#: ../../godmode/setup/performance.php:662 ../../include/functions_config.php:890 +#: ../../godmode/setup/performance.php:662 ../../include/functions_config.php:902 msgid "Batch statistics period (secs)" msgstr "Période de statistiques par lot (en secondes)" -#: ../../godmode/setup/performance.php:685 ../../include/functions_config.php:898 +#: ../../godmode/setup/performance.php:685 ../../include/functions_config.php:910 msgid "Max. recommended number of files in attachment directory" msgstr "" "Nombre maximum de fichiers recommandé dans le répertoire des pièces jointes" -#: ../../godmode/setup/performance.php:697 ../../include/functions_config.php:902 +#: ../../godmode/setup/performance.php:697 ../../include/functions_config.php:914 msgid "Delete not init modules" msgstr "Supprimer les modules non initialisés" @@ -40190,11 +40462,11 @@ msgstr "Supprimer les modules non initialisés" msgid "Big Operation Step to purge old data" msgstr "Étape majeure pour nettoyer les données anciennes" -#: ../../godmode/setup/performance.php:722 ../../include/functions_config.php:910 +#: ../../godmode/setup/performance.php:722 ../../include/functions_config.php:922 msgid "Small Operation Step to purge old data" msgstr "Étape mineure pour nettoyer les données anciennes" -#: ../../godmode/setup/performance.php:737 ../../include/functions_config.php:936 +#: ../../godmode/setup/performance.php:737 ../../include/functions_config.php:948 msgid "Graph container - Max. Items" msgstr "Conteneur de graphiques - Nombre maximal d'éléments" @@ -40237,7 +40509,7 @@ msgstr "Options de maintenance de la base de données historique" #: ../../godmode/setup/performance.php:868 ../../include/graphs/fgraph.php:404 #: ../../include/functions_netflow.php:2097 -#: ../../include/functions_reporting.php:4063 +#: ../../include/functions_reporting.php:4072 msgid "Others" msgstr "Autres" @@ -40246,7 +40518,7 @@ msgid "Agent SNMP Interface Wizard defaults" msgstr "Paramètres par défaut de l’Assistant de l’interface SNMP de l’agent" #: ../../godmode/setup/file_manager.php:83 -#: ../../include/functions_filemanager.php:630 +#: ../../include/functions_filemanager.php:645 #, php-format msgid "Index of %s" msgstr "Index de %s" @@ -40286,8 +40558,8 @@ msgstr "Créer une console visuelle" #: ../../godmode/reporting/visual_console_builder.data.php:182 #: ../../godmode/reporting/visual_console_builder.elements.php:167 #: ../../include/functions_visual_map_editor.php:55 -#: ../../include/functions_visual_map_editor.php:632 -#: ../../include/lib/Dashboard/Widget.php:575 +#: ../../include/functions_visual_map_editor.php:626 +#: ../../include/lib/Dashboard/Widget.php:576 msgid "Background" msgstr "Fond d'écran" @@ -40296,10 +40568,10 @@ msgid "Background image" msgstr "Image de fond" #: ../../godmode/reporting/visual_console_builder.data.php:227 -#: ../../include/functions_visual_map_editor.php:347 +#: ../../include/functions_visual_map_editor.php:343 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:372 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:514 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:250 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:247 msgid "Background color" msgstr "Couleur de fond" @@ -40348,107 +40620,107 @@ msgstr "Le fichier n'a pas une extension d'image." msgid "Problems with move file to target." msgstr "Problèmes de déplacement du fichier à la cible" -#: ../../godmode/reporting/visual_console_builder.php:303 +#: ../../godmode/reporting/visual_console_builder.php:304 msgid "Successfully update." msgstr "Mis à jour correctement" -#: ../../godmode/reporting/visual_console_builder.php:322 +#: ../../godmode/reporting/visual_console_builder.php:323 msgid "Could not be update." msgstr "Mise à jour échouée" -#: ../../godmode/reporting/visual_console_builder.php:342 +#: ../../godmode/reporting/visual_console_builder.php:343 msgid "Successfully created." msgstr "Créé correctement" -#: ../../godmode/reporting/visual_console_builder.php:361 +#: ../../godmode/reporting/visual_console_builder.php:362 msgid "Could not be created." msgstr "Erreur de création" -#: ../../godmode/reporting/visual_console_builder.php:409 +#: ../../godmode/reporting/visual_console_builder.php:410 msgid "Successfully multiple delete." msgstr "Suppression multiple réussie" -#: ../../godmode/reporting/visual_console_builder.php:410 +#: ../../godmode/reporting/visual_console_builder.php:411 msgid "Unsuccessful multiple delete." msgstr "Suppression multiple échouée" -#: ../../godmode/reporting/visual_console_builder.php:530 +#: ../../godmode/reporting/visual_console_builder.php:531 msgid "Successfully delete." msgstr "Supprimé correctement" -#: ../../godmode/reporting/visual_console_builder.php:801 -#: ../../operation/visual_console/view.php:130 +#: ../../godmode/reporting/visual_console_builder.php:809 +#: ../../operation/visual_console/view.php:132 #: ../../operation/visual_console/legacy_view.php:117 msgid "Visual consoles list" msgstr "Liste de consoles visuelles" -#: ../../godmode/reporting/visual_console_builder.php:810 -#: ../../operation/visual_console/view.php:164 +#: ../../godmode/reporting/visual_console_builder.php:818 +#: ../../operation/visual_console/view.php:166 #: ../../operation/visual_console/legacy_view.php:133 msgid "Show link to public Visual Console" msgstr "Afficher lien vers console visuelle publique" -#: ../../godmode/reporting/visual_console_builder.php:814 +#: ../../godmode/reporting/visual_console_builder.php:822 #: ../../godmode/reporting/graph_builder.php:304 -#: ../../godmode/reporting/reporting_builder.php:3634 -#: ../../operation/visual_console/view.php:174 +#: ../../godmode/reporting/reporting_builder.php:3651 +#: ../../operation/visual_console/view.php:176 #: ../../operation/visual_console/legacy_view.php:143 #: ../../operation/reporting/reporting_viewer.php:138 #: ../../operation/reporting/graph_viewer.php:193 msgid "Main data" msgstr "Données principales" -#: ../../godmode/reporting/visual_console_builder.php:818 -#: ../../operation/visual_console/view.php:182 +#: ../../godmode/reporting/visual_console_builder.php:826 +#: ../../operation/visual_console/view.php:184 #: ../../operation/visual_console/legacy_view.php:151 msgid "List elements" msgstr "Liste d'éléments" -#: ../../godmode/reporting/visual_console_builder.php:824 -#: ../../operation/visual_console/view.php:192 +#: ../../godmode/reporting/visual_console_builder.php:832 +#: ../../operation/visual_console/view.php:194 #: ../../operation/visual_console/legacy_view.php:161 msgid "Services wizard" msgstr "Assistant de services" -#: ../../godmode/reporting/visual_console_builder.php:849 +#: ../../godmode/reporting/visual_console_builder.php:857 msgid "New visual console" msgstr "Nouvelle console visuelle" -#: ../../godmode/reporting/reporting_builder.list_items.php:701 +#: ../../godmode/reporting/reporting_builder.list_items.php:702 msgid "Sort selected items from position: " msgstr "Classer les éléments sélectionnés à partir de la position : " -#: ../../godmode/reporting/reporting_builder.list_items.php:704 +#: ../../godmode/reporting/reporting_builder.list_items.php:705 msgid "Move before to" msgstr "Déplacer avant" -#: ../../godmode/reporting/reporting_builder.list_items.php:705 +#: ../../godmode/reporting/reporting_builder.list_items.php:706 msgid "Move after to" msgstr "Déplacer après" -#: ../../godmode/reporting/reporting_builder.list_items.php:754 -#: ../../godmode/reporting/graph_builder.graph_editor.php:301 -#: ../../godmode/reporting/graph_builder.graph_editor.php:369 +#: ../../godmode/reporting/reporting_builder.list_items.php:755 +#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/graph_builder.graph_editor.php:284 msgid "Sort items" msgstr "Classer les éléments" -#: ../../godmode/reporting/reporting_builder.list_items.php:763 +#: ../../godmode/reporting/reporting_builder.list_items.php:764 msgid "Delete selected items from position: " msgstr "Supprimer les éléments sélectionnés à partir de la position : " -#: ../../godmode/reporting/reporting_builder.list_items.php:766 +#: ../../godmode/reporting/reporting_builder.list_items.php:767 msgid "Delete above to" msgstr "Supprimer ce qui se trouve au-dessus de" -#: ../../godmode/reporting/reporting_builder.list_items.php:767 +#: ../../godmode/reporting/reporting_builder.list_items.php:768 msgid "Delete below to" msgstr "Supprimer ce qui se trouve au-dessous de" -#: ../../godmode/reporting/reporting_builder.list_items.php:779 +#: ../../godmode/reporting/reporting_builder.list_items.php:780 msgid "Poisition" msgstr "Position" -#: ../../godmode/reporting/reporting_builder.list_items.php:845 +#: ../../godmode/reporting/reporting_builder.list_items.php:846 msgid "" "Are you sure to sort the items into the report?\\n. This action change the " "sorting of items into data base." @@ -40456,16 +40728,16 @@ msgstr "" "Êtes-vous sûr de trier les éléments dans le rapport ?\\n. Cette action modifie " "le tri des éléments dans la base de données." -#: ../../godmode/reporting/reporting_builder.list_items.php:867 -#: ../../godmode/reporting/graph_builder.graph_editor.php:463 +#: ../../godmode/reporting/reporting_builder.list_items.php:868 +#: ../../godmode/reporting/graph_builder.graph_editor.php:478 msgid "Please select any item to order" msgstr "Veuillez sélectionner un élément à organiser" -#: ../../godmode/reporting/reporting_builder.list_items.php:897 +#: ../../godmode/reporting/reporting_builder.list_items.php:898 msgid "Are you sure to delete the items into the report?\\n" msgstr "Êtes-vous sûr(e) de vouloir supprimer les éléments dans le rapport ?\\n" -#: ../../godmode/reporting/reporting_builder.list_items.php:925 +#: ../../godmode/reporting/reporting_builder.list_items.php:926 msgid "Please select any item to delete" msgstr "Veuillez sélectionner un élément à supprimer" @@ -40517,7 +40789,7 @@ msgstr "" #: ../../godmode/reporting/create_container.php:498 #: ../../godmode/reporting/create_container.php:686 #: ../../godmode/reporting/graph_builder.main.php:219 -#: ../../include/functions_visual_map_editor.php:554 +#: ../../include/functions_visual_map_editor.php:548 msgid "Type of graph" msgstr "Type de graphique" @@ -40525,8 +40797,8 @@ msgstr "Type de graphique" #: ../../godmode/reporting/create_container.php:576 #: ../../godmode/reporting/create_container.php:691 #: ../../godmode/reporting/graph_builder.main.php:290 -#: ../../operation/agentes/stat_win.php:395 -#: ../../operation/agentes/interface_traffic_graph_win.php:240 +#: ../../operation/agentes/stat_win.php:403 +#: ../../operation/agentes/interface_traffic_graph_win.php:256 msgid "Show full scale graph (TIP)" msgstr "Afficher graphique à pleine échelle (TIP)" @@ -40542,7 +40814,7 @@ msgstr "Graphique de module simple" #: ../../godmode/reporting/create_container.php:715 msgid "Dynamic rules for simple module graph" -msgstr "Règles dynamiques pour un graphique de module simple" +msgstr "Règles dynamiques pour le graphique du module simple" #: ../../godmode/reporting/create_container.php:731 msgid "There are no items in this container." @@ -40584,7 +40856,7 @@ msgid "Graph editor" msgstr "Éditeur de graphique" #: ../../godmode/reporting/graph_builder.php:326 -#: ../../include/functions_events.php:4542 +#: ../../include/functions_events.php:4547 #: ../../operation/reporting/graph_viewer.php:223 msgid "View graph" msgstr "Afficher graphique" @@ -40671,23 +40943,23 @@ msgstr "" "Le nombre maximal d'éléments dans un graphique est %d. Vous avez %d éléments, " "seul le premier %d sera affiché." -#: ../../godmode/reporting/graph_builder.graph_editor.php:315 +#: ../../godmode/reporting/graph_builder.graph_editor.php:228 msgid "Sort selected items" msgstr "Classer les éléments sélectionnés" -#: ../../godmode/reporting/graph_builder.graph_editor.php:318 +#: ../../godmode/reporting/graph_builder.graph_editor.php:231 msgid "before to" msgstr "avant" -#: ../../godmode/reporting/graph_builder.graph_editor.php:319 +#: ../../godmode/reporting/graph_builder.graph_editor.php:232 msgid "after to" msgstr "après" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1067 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1069 msgid "Not valid" msgstr "Non valide" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1075 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1077 msgid "" "This type of report brings a lot of data loading, it is recommended to use it " "for scheduled reports and not for real-time view." @@ -40722,55 +40994,55 @@ msgstr "" msgid "Show modules" msgstr "Afficher les modules" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2221 -#: ../../include/functions_ui.php:2494 -#: ../../operation/inventory/inventory.php:687 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2230 +#: ../../include/functions_ui.php:2537 +#: ../../operation/inventory/inventory.php:688 msgid "Last" msgstr "Dernier" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2300 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2309 msgid "Target server" msgstr "Serveur cible" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2618 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2627 msgid "Macros definition" msgstr "Définition des macros" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2629 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2638 msgid "Render definition" msgstr "Définition du rendu" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2630 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2639 msgid "Please note that not all CSS styles are supported by PDF reports." msgstr "" "Veuillez noter que tous les styles CSS ne sont pas pris en charge par les " "rapports PDF." -#: ../../godmode/reporting/reporting_builder.item_editor.php:2728 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2737 msgid "Greater or equal (>=)" msgstr "Supérieur ou égal (>=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2729 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2738 msgid "Less or equal (<=)" msgstr "Inférieur ou égal (<=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2730 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2739 msgid "Less (<)" msgstr "Inférieur (<)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2731 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2740 msgid "Greater (>)" msgstr "Supérieur (>)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2732 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2741 msgid "Equal (=)" msgstr "Égal (=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2733 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2742 msgid "Not equal (!=)" msgstr "Pas égal (!=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2858 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2867 msgid "" "Show a summary chart with max, min and average number of total modules at the " "end of the report and Checks." @@ -40778,39 +41050,39 @@ msgstr "" "Afficher un graphique récapitulatif avec le nombre maximum, minimum, moyen de " "modules au total à la fin du rapport et des vérifications." -#: ../../godmode/reporting/reporting_builder.item_editor.php:2913 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2922 msgid "Checks in Warning status" msgstr "Vérifie dans l'état d'avertissement" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2983 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2992 msgid "Only data" msgstr "Données uniquement" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3081 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3090 msgid "Include extended events" msgstr "Inclure les événements prolongés" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3098 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3107 msgid "Show custom data" msgstr "Afficher les données personnalisées" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3117 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3126 msgid "By agent " msgstr "Par agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3127 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3136 msgid "By user validator " msgstr "Par validateur d’utilisateur" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3137 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3146 msgid "By criticity " msgstr "Par criticité" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3156 msgid "Validated vs unvalidated " msgstr "Validé vs non validé" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3162 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3171 msgid "" "With the token enabled the query will affect the Historical Database, which " "may mean a small drop in performance." @@ -40818,20 +41090,20 @@ msgstr "" "Avec le jeton activé, la requête affectera la base de données historique, ce " "qui peut signifier une petite baisse des performances." -#: ../../godmode/reporting/reporting_builder.item_editor.php:3347 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3356 msgid "Include filter" msgstr "Inclure Filtre" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3351 #: ../../godmode/reporting/reporting_builder.item_editor.php:3360 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3369 msgid "Free text string search on event description" msgstr "Recherche de chaîne de texte libre sur la description de l'événement" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3356 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3365 msgid "Exclude filter" msgstr "Exclure le filtre" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3464 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3473 msgid "" "Use prefix notation for numeric values (example: 20,8Kbytes/sec), otherwise " "full value will be displayed (example: 20.742 bytes/sec)" @@ -40840,88 +41112,88 @@ msgstr "" "20,8Koctets/s), sinon la valeur complète sera affichée (exemple : 20,742 " "octets/s)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3502 -#: ../../include/functions_reporting.php:5163 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3511 +#: ../../include/functions_reporting.php:5172 msgid "Unassigned group" msgstr "Groupe non affecté" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3548 -#: ../../include/functions_reporting.php:5157 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3557 +#: ../../include/functions_reporting.php:5166 msgid "Unnasigned group" msgstr "Groupe non affecté" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3571 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3580 msgid "Select by group" msgstr "Sélectionner par groupe" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3659 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3668 msgid "Display options" msgstr "Afficher les options" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3717 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3726 msgid "Agent group filter" msgstr "Filtre de groupe d'agents" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3752 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3761 msgid "Agent OS filter" msgstr "Filtre du système d'exploitation de l'agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3778 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3787 msgid "Agent custom field" msgstr "Champ personnalisé de l'agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3800 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3809 msgid "Agent custom field filter" msgstr "Filtre de champ personnalisé de l'agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3824 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3833 msgid "Agent status filter" msgstr "Filtre d'état de l'agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3862 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3871 msgid "Agent version filter" msgstr "Filtre de version d'agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3886 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3895 msgid "Agent has remote configuration" msgstr "L'agent a une configuration à distance" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3887 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3896 msgid "Filter agents by remote configuration enabled." msgstr "Filtrer les agents par configuration à distance activée." -#: ../../godmode/reporting/reporting_builder.item_editor.php:3898 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3907 msgid "Agent module filter" msgstr "Filtre de module d'agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3922 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3931 msgid "Module group filter" msgstr "Filtre de groupe de modules" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3952 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3961 msgid "Search module name" msgstr "Rechercher nom de module" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4105 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4620 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4114 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4629 msgid "Agent Failover" msgstr "Basculement d'agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4110 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4623 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4119 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4632 msgid "Module Failover" msgstr "Basculement de module" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4150 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4159 msgid "Please save the item before adding entries to this list." msgstr "" "Veuillez enregistrer l’élément avant d’ajouter des entrées à cette liste." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4596 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4605 msgid "rate" msgstr "taux" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4644 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4653 msgid "" "Please be careful, when the module have diferent intervals in their life, the " "summatory maybe get bad result." @@ -40929,46 +41201,46 @@ msgstr "" "Veuillez faire attention lorsque le module présente des intervalles " "différents ; la sommation pourrait obtenir des résultats erronés." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4664 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4673 msgid "Please save the report to start adding items into the list." msgstr "Veuillez sauvegarder le rapport pour ajouter des éléments à la liste." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4930 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4934 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4938 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4942 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4946 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4950 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4954 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4958 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4939 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4943 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4947 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4951 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4955 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4959 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4963 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4967 msgid "Item Editor Information" msgstr "Informations sur l'éditeur d’éléments" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4931 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4940 msgid "Please select a name." msgstr "Veuillez sélectionner un nom." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4935 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4944 msgid "Please select an agent." msgstr "Veuillez sélectionner un agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4943 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4952 msgid "Please insert a SQL query." msgstr "Veuillez insérer une requête SQL." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4947 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4956 msgid "Please insert a URL." msgstr "Veuillez insérer une URL." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4951 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4960 msgid "Please checked a custom interval option." msgstr "Veuillez cocher une option d'intervalle personnalisé." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4955 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4964 msgid "Please select a user." msgstr "Veuillez sélectionner un utilisateur." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4959 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4968 msgid "Please select a group." msgstr "Sélectionnez un groupe." @@ -40989,26 +41261,26 @@ msgid "Percentile Bubble" msgstr "Bulle de centile" #: ../../godmode/reporting/visual_console_builder.elements.php:244 -#: ../../mobile/operation/events.php:837 -#: ../../include/functions_visual_map_editor.php:1387 +#: ../../mobile/operation/events.php:866 +#: ../../include/functions_visual_map_editor.php:1445 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:545 -#: ../../operation/visual_console/view.php:326 +#: ../../operation/visual_console/view.php:328 msgid "Module Graph" msgstr "Graphique de module" #: ../../godmode/reporting/visual_console_builder.elements.php:255 #: ../../include/functions_visual_map_editor.php:59 -#: ../../include/functions_visual_map_editor.php:1390 -#: ../../include/functions_visual_map.php:4180 -#: ../../operation/visual_console/view.php:346 +#: ../../include/functions_visual_map_editor.php:1448 +#: ../../include/functions_visual_map.php:4189 +#: ../../operation/visual_console/view.php:348 msgid "Event history graph" msgstr "Graphique de l'historique des événements" #: ../../godmode/reporting/visual_console_builder.elements.php:266 -#: ../../include/functions_visual_map_editor.php:1391 -#: ../../include/functions_visual_map.php:4205 -#: ../../include/rest-api/models/VisualConsole/Item.php:2132 -#: ../../operation/visual_console/view.php:351 +#: ../../include/functions_visual_map_editor.php:1449 +#: ../../include/functions_visual_map.php:4214 +#: ../../include/rest-api/models/VisualConsole/Item.php:2135 +#: ../../operation/visual_console/view.php:353 msgid "Simple Value" msgstr "Valeur simple" @@ -41026,52 +41298,54 @@ msgstr "Valeur simple (processus moyen)" #: ../../godmode/reporting/visual_console_builder.elements.php:332 #: ../../include/functions_visual_map_editor.php:71 -#: ../../include/functions_visual_map_editor.php:1396 -#: ../../include/functions_visual_map.php:4160 -#: ../../operation/visual_console/view.php:376 +#: ../../include/functions_visual_map_editor.php:1454 +#: ../../include/functions_visual_map.php:4169 +#: ../../operation/visual_console/view.php:378 msgid "Box" msgstr "Boîte" #: ../../godmode/reporting/visual_console_builder.elements.php:354 -#: ../../include/functions_visual_map_editor.php:1403 -#: ../../operation/visual_console/view.php:391 +#: ../../include/functions_visual_map_editor.php:1461 +#: ../../operation/visual_console/view.php:393 msgid "Network link" msgstr "Lien réseau" #: ../../godmode/reporting/visual_console_builder.elements.php:376 #: ../../include/functions_visual_map_editor.php:73 -#: ../../include/functions_visual_map_editor.php:1398 -#: ../../include/functions_visual_map.php:4220 -#: ../../include/rest-api/models/VisualConsole/Item.php:2144 -#: ../../operation/visual_console/view.php:386 +#: ../../include/functions_visual_map_editor.php:1456 +#: ../../include/functions_visual_map.php:4229 +#: ../../include/rest-api/models/VisualConsole/Item.php:2147 +#: ../../operation/visual_console/view.php:388 msgid "Color cloud" msgstr "Nuage de couleur" #: ../../godmode/reporting/visual_console_builder.elements.php:387 -#: ../../include/rest-api/models/VisualConsole/Item.php:2156 -#: ../../operation/visual_console/view.php:331 +#: ../../include/rest-api/models/VisualConsole/Item.php:2159 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:172 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:653 +#: ../../operation/visual_console/view.php:333 msgid "Basic chart" msgstr "Graphique de base" #: ../../godmode/reporting/visual_console_builder.elements.php:398 -#: ../../include/rest-api/models/VisualConsole/Item.php:2152 -#: ../../operation/visual_console/view.php:396 +#: ../../include/rest-api/models/VisualConsole/Item.php:2155 +#: ../../operation/visual_console/view.php:398 msgid "Odometer" msgstr "Odomètre" #: ../../godmode/reporting/visual_console_builder.elements.php:409 #: ../../include/functions_visual_map_editor.php:69 -#: ../../include/functions_visual_map_editor.php:1394 -#: ../../include/functions_visual_map.php:4170 -#: ../../include/rest-api/models/VisualConsole/Item.php:2104 +#: ../../include/functions_visual_map_editor.php:1452 +#: ../../include/functions_visual_map.php:4179 +#: ../../include/rest-api/models/VisualConsole/Item.php:2107 #: ../../include/lib/Dashboard/Widgets/clock.php:158 #: ../../include/lib/Dashboard/Widgets/clock.php:310 -#: ../../operation/visual_console/view.php:366 +#: ../../operation/visual_console/view.php:368 msgid "Clock" msgstr "Horloge" #: ../../godmode/reporting/visual_console_builder.elements.php:438 -#: ../../godmode/reporting/visual_console_builder.elements.php:910 +#: ../../godmode/reporting/visual_console_builder.elements.php:895 msgid "Edit label" msgstr "Modifier les étiquettes" @@ -41114,14 +41388,14 @@ msgid "An error has ocurred" msgstr "Une erreur est survenue" #: ../../godmode/reporting/reporting_builder.php:515 -#: ../../godmode/reporting/reporting_builder.php:3560 -#: ../../godmode/reporting/reporting_builder.php:3627 -#: ../../godmode/reporting/reporting_builder.php:3675 +#: ../../godmode/reporting/reporting_builder.php:3577 +#: ../../godmode/reporting/reporting_builder.php:3644 +#: ../../godmode/reporting/reporting_builder.php:3692 msgid "Reports list" msgstr "Liste de rapports" #: ../../godmode/reporting/reporting_builder.php:531 -#: ../../godmode/reporting/reporting_builder.php:3571 +#: ../../godmode/reporting/reporting_builder.php:3588 #: ../../operation/menu.php:457 ../../operation/reporting/custom_reporting.php:23 msgid "Custom reporting" msgstr "Rapports personnalisés" @@ -41144,16 +41418,16 @@ msgstr "" msgid "Create report" msgstr "Créer un rapport" -#: ../../godmode/reporting/reporting_builder.php:3659 +#: ../../godmode/reporting/reporting_builder.php:3676 #: ../../operation/reporting/reporting_viewer.php:172 msgid "View report" msgstr "Afficher le rapport" -#: ../../godmode/reporting/reporting_builder.php:3678 +#: ../../godmode/reporting/reporting_builder.php:3695 msgid "Create Custom Report" msgstr "Créez un rapport personnalisé." -#: ../../godmode/reporting/reporting_builder.php:3750 +#: ../../godmode/reporting/reporting_builder.php:3767 msgid "Unsuccessful action

" msgstr "Action échouée

" @@ -41164,16 +41438,16 @@ msgstr "Graphique statique" #: ../../godmode/reporting/visual_console_builder.wizard.php:124 #: ../../include/functions_visual_map_editor.php:57 -#: ../../include/functions_visual_map_editor.php:1386 -#: ../../operation/visual_console/view.php:321 +#: ../../include/functions_visual_map_editor.php:1444 +#: ../../operation/visual_console/view.php:323 msgid "Percentile Item" msgstr "Élément centile" #: ../../godmode/reporting/visual_console_builder.wizard.php:125 -#: ../../mobile/operation/home.php:102 -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map.php:4165 -#: ../../include/rest-api/models/VisualConsole/Item.php:2100 +#: ../../mobile/operation/home.php:118 +#: ../../include/functions_visual_map_editor.php:391 +#: ../../include/functions_visual_map.php:4174 +#: ../../include/rest-api/models/VisualConsole/Item.php:2103 msgid "Module graph" msgstr "Graphique de module" @@ -41191,30 +41465,30 @@ msgid "Size (px)" msgstr "Taille (px)" #: ../../godmode/reporting/visual_console_builder.wizard.php:232 -#: ../../include/functions_config.php:1066 +#: ../../include/functions_config.php:1078 msgid "Font size" msgstr "Taille de la police" #: ../../godmode/reporting/visual_console_builder.wizard.php:260 -#: ../../include/functions_visual_map_editor.php:612 +#: ../../include/functions_visual_map_editor.php:606 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371 msgid "Process" msgstr "Processus" #: ../../godmode/reporting/visual_console_builder.wizard.php:263 -#: ../../include/functions_visual_map_editor.php:615 +#: ../../include/functions_visual_map_editor.php:609 msgid "Min value" msgstr "Valeur minimale" #: ../../godmode/reporting/visual_console_builder.wizard.php:264 #: ../../godmode/reporting/visual_console_builder.wizard.php:284 -#: ../../include/functions_visual_map_editor.php:616 -#: ../../include/functions_visual_map_editor.php:680 +#: ../../include/functions_visual_map_editor.php:610 +#: ../../include/functions_visual_map_editor.php:730 msgid "Max value" msgstr "Valeur maximale" #: ../../godmode/reporting/visual_console_builder.wizard.php:265 -#: ../../include/functions_visual_map_editor.php:617 +#: ../../include/functions_visual_map_editor.php:611 msgid "Avg value" msgstr "Valeur moyenne" @@ -41223,20 +41497,20 @@ msgid "Width (px)" msgstr "Largeur (px)" #: ../../godmode/reporting/visual_console_builder.wizard.php:300 -#: ../../include/functions_visual_map_editor.php:685 +#: ../../include/functions_visual_map_editor.php:735 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459 msgid "Bubble" msgstr "Bulle" #: ../../godmode/reporting/visual_console_builder.wizard.php:319 -#: ../../include/functions_visual_map_editor.php:690 +#: ../../include/functions_visual_map_editor.php:740 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504 msgid "Percent" msgstr "Pourcentage" #: ../../godmode/reporting/visual_console_builder.wizard.php:345 -#: ../../include/functions_visual_map_editor.php:709 -#: ../../include/functions_visual_map_editor.php:727 +#: ../../include/functions_visual_map_editor.php:759 +#: ../../include/functions_visual_map_editor.php:777 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509 msgid "Value to show" msgstr "Valeur à afficher" @@ -41293,7 +41567,7 @@ msgstr "La taille minimale autorisée est 1024x768" #: ../../godmode/reporting/visual_console_builder.editor.php:177 #: ../../godmode/reporting/visual_console_builder.editor.php:179 #: ../../godmode/reporting/visual_console_builder.editor.php:181 -#: ../../operation/snmpconsole/snmp_browser.php:225 +#: ../../operation/snmpconsole/snmp_browser.php:230 msgid "Action in progress" msgstr "Action en cours" @@ -41445,88 +41719,88 @@ msgstr "" "Si elle est activée, la commande sera affichée à tout utilisateur pouvant " "exécuter cette réponse d’événement" -#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_edit_filter.php:306 msgid "Save in group" msgstr "Enregistrer dans le groupe" -#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_edit_filter.php:306 msgid "" "This group will be use to restrict the visibility of this filter with ACLs" msgstr "" "Ce groupe sera utilisé pour limiter la visibilité de ce filtre avec les ACL." -#: ../../godmode/events/event_edit_filter.php:502 +#: ../../godmode/events/event_edit_filter.php:504 msgid "Choose between the users who have validated an event. " msgstr "Choisissez parmi les utilisateurs ayant validé un événement. " -#: ../../godmode/events/event_edit_filter.php:520 +#: ../../godmode/events/event_edit_filter.php:522 msgid "Owner." msgstr "Propriétaire." -#: ../../godmode/events/event_edit_filter.php:535 -#: ../../operation/events/events.php:1783 +#: ../../godmode/events/event_edit_filter.php:537 +#: ../../operation/events/events.php:1837 msgid "All events" msgstr "Tous les événements" -#: ../../godmode/events/event_edit_filter.php:536 -#: ../../operation/events/events.php:1784 ../../operation/events/events.php:2435 +#: ../../godmode/events/event_edit_filter.php:538 +#: ../../operation/events/events.php:1838 ../../operation/events/events.php:2489 msgid "Group events" msgstr "Événements du groupe" -#: ../../godmode/events/event_edit_filter.php:537 -#: ../../include/ajax/heatmap.ajax.php:80 +#: ../../godmode/events/event_edit_filter.php:539 +#: ../../include/ajax/heatmap.ajax.php:99 #: ../../include/lib/Dashboard/Widgets/heatmap.php:252 -#: ../../operation/events/events.php:1785 +#: ../../operation/events/events.php:1839 msgid "Group agents" msgstr "Groupes d'agents" -#: ../../godmode/events/event_edit_filter.php:538 -#: ../../operation/events/events.php:1786 +#: ../../godmode/events/event_edit_filter.php:540 +#: ../../operation/events/events.php:1840 msgid "Group extra id" msgstr "ID supplémentaire de groupe" -#: ../../godmode/events/event_edit_filter.php:763 -#: ../../operation/events/events.php:2033 +#: ../../godmode/events/event_edit_filter.php:765 +#: ../../operation/events/events.php:2087 msgid "Filter alert events" msgstr "Filtrer les événements d'alerte" -#: ../../godmode/events/event_edit_filter.php:764 -#: ../../operation/events/events.php:2034 +#: ../../godmode/events/event_edit_filter.php:766 +#: ../../operation/events/events.php:2088 msgid "Only alert events" msgstr "Seulement les événements d'alerte" -#: ../../godmode/events/event_edit_filter.php:813 -#: ../../operation/events/events.php:1893 +#: ../../godmode/events/event_edit_filter.php:815 +#: ../../operation/events/events.php:1947 msgid "Extra ID" msgstr "Identifiant supplémentaire" -#: ../../godmode/events/event_edit_filter.php:845 +#: ../../godmode/events/event_edit_filter.php:847 msgid "Custom data filter type" msgstr "Type de filtre de données personnalisé" -#: ../../godmode/events/event_edit_filter.php:848 +#: ../../godmode/events/event_edit_filter.php:850 msgid "Filter custom data by name field" msgstr "Filtrer les données personnalisées par champ de nom" -#: ../../godmode/events/event_edit_filter.php:849 +#: ../../godmode/events/event_edit_filter.php:851 msgid "Filter custom data by value field" msgstr "Filtrer les données personnalisées par champ de valeur" -#: ../../godmode/events/event_edit_filter.php:864 +#: ../../godmode/events/event_edit_filter.php:866 #: ../../godmode/events/custom_events.php:117 #: ../../include/functions_reporting_html.php:1074 #: ../../include/functions_reporting_html.php:1322 -#: ../../include/functions_reporting_html.php:2648 -#: ../../include/ajax/events.php:1798 ../../include/functions_events.php:221 +#: ../../include/functions_reporting_html.php:2667 +#: ../../include/ajax/events.php:1799 ../../include/functions_events.php:221 #: ../../include/functions_events.php:323 msgid "Custom data" msgstr "Données personnalisées" -#: ../../godmode/events/event_edit_filter.php:881 +#: ../../godmode/events/event_edit_filter.php:883 msgid "Id souce event" msgstr "Id source d'événement" -#: ../../godmode/events/event_edit_filter.php:911 +#: ../../godmode/events/event_edit_filter.php:913 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:313 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:358 #: ../../operation/events/events.php:265 @@ -41598,7 +41872,7 @@ msgid "Severity mini" msgstr "Sévérité mini" #: ../../godmode/events/custom_events.php:116 -#: ../../include/functions_events.php:307 ../../include/functions_events.php:5103 +#: ../../include/functions_events.php:307 ../../include/functions_events.php:5108 msgid "Module custom ID" msgstr "ID personnalisé du module" @@ -41689,24 +41963,19 @@ msgstr "Erreur interne, veuillez réexécuter cet assistant." msgid "Manual interval means that it will be executed only On-demand" msgstr "Avec l'intervalle manuel il sera exécuté uniquement sur demande" -#: ../../godmode/wizards/HostDevices.class.php:814 -#: ../../include/class/CustomNetScan.class.php:551 -msgid "The minimum recomended interval for Recon Task is 5 minutes" -msgstr "L'intervalle minimal conseillé pour les tâches Recon est de 5 minutes." - -#: ../../godmode/wizards/HostDevices.class.php:869 +#: ../../godmode/wizards/HostDevices.class.php:865 msgid "Use CSV file definition" msgstr "Utiliser la définition de fichier CSV" -#: ../../godmode/wizards/HostDevices.class.php:870 +#: ../../godmode/wizards/HostDevices.class.php:866 msgid "Define targets using csv o network definition." msgstr "Définissez des cibles à l'aide de la définition de réseau csv ou." -#: ../../godmode/wizards/HostDevices.class.php:888 +#: ../../godmode/wizards/HostDevices.class.php:884 msgid "Networks (csv)" msgstr "Réseaux (csv)" -#: ../../godmode/wizards/HostDevices.class.php:889 +#: ../../godmode/wizards/HostDevices.class.php:885 msgid "" "You can upload a CSV file. Each line must contain a network in IP/MASK format. " "For instance: 192.168.1.1/32" @@ -41714,15 +41983,15 @@ msgstr "" "Vous pouvez télécharger un fichier CSV. Chaque ligne doit contenir un réseau " "au format IP/MASK. Par exemple : 192.168.1.1/32" -#: ../../godmode/wizards/HostDevices.class.php:901 +#: ../../godmode/wizards/HostDevices.class.php:897 msgid "Networks (current)" msgstr "Réseaux (actuels)" -#: ../../godmode/wizards/HostDevices.class.php:902 +#: ../../godmode/wizards/HostDevices.class.php:898 msgid "Please upload a new file to overwrite this content." msgstr "Veuillez télécharger un nouveau fichier pour écraser ce contenu." -#: ../../godmode/wizards/HostDevices.class.php:918 +#: ../../godmode/wizards/HostDevices.class.php:914 msgid "" "You can specify networks or fully qualified domain names of a specific host, " "separated by commas, for example: 192.168.50.0/24,192.168.60.0/24, hostname." @@ -41732,11 +42001,11 @@ msgstr "" "spécifique, séparés par des virgules, par exemple : " "192.168.50.0/24,192.168.60.0/24, hostname.artica.es" -#: ../../godmode/wizards/HostDevices.class.php:1068 +#: ../../godmode/wizards/HostDevices.class.php:1064 msgid "Filter by opened ports" msgstr "Filtrer par ports ouverts" -#: ../../godmode/wizards/HostDevices.class.php:1070 +#: ../../godmode/wizards/HostDevices.class.php:1066 msgid "" "Targets will be scanned if at least one of defined ports (comma separated) is " "open." @@ -41744,11 +42013,11 @@ msgstr "" "Les cibles seront analysées si au moins un des ports définis (séparés par des " "virgules) est ouvert." -#: ../../godmode/wizards/HostDevices.class.php:1083 +#: ../../godmode/wizards/HostDevices.class.php:1079 msgid "Auto discover known hardware" msgstr "Découverte automatique du matériel connu" -#: ../../godmode/wizards/HostDevices.class.php:1085 +#: ../../godmode/wizards/HostDevices.class.php:1081 msgid "" "Targets will be monitorized based on its Private Enterprise Number. " "Requires SNMP." @@ -41756,12 +42025,12 @@ msgstr "" "Les cibles seront surveillées en fonction de son numéro d'entreprise " "privée . Nécessite SNMP." -#: ../../godmode/wizards/HostDevices.class.php:1100 +#: ../../godmode/wizards/HostDevices.class.php:1096 msgid "Module Host Alive will be added to discovered agents by default." msgstr "" "Le module Host Alive sera ajouté par défaut aux agents découverts." -#: ../../godmode/wizards/HostDevices.class.php:1148 +#: ../../godmode/wizards/HostDevices.class.php:1144 #, php-format msgid "" "Configured networks could generate %d agents, your license only allows %d, " @@ -41770,21 +42039,21 @@ msgstr "" "Les réseaux configurés peuvent générer %d agents, votre licence n'autorise que " "%d, « revoir les résultats » est obligatoire." -#: ../../godmode/wizards/HostDevices.class.php:1156 +#: ../../godmode/wizards/HostDevices.class.php:1152 #: ../../godmode/wizards/DiscoveryTaskList.class.php:917 msgid "Review results" msgstr "Réviser les résultats" -#: ../../godmode/wizards/HostDevices.class.php:1158 +#: ../../godmode/wizards/HostDevices.class.php:1154 msgid "Targets must be validated by user before create agents." msgstr "" "Les cibles doivent être validées par l'utilisateur avant de créer des agents." -#: ../../godmode/wizards/HostDevices.class.php:1184 +#: ../../godmode/wizards/HostDevices.class.php:1180 msgid "Apply autoconfiguration rules" msgstr "Appliquer les règles de configuration automatique" -#: ../../godmode/wizards/HostDevices.class.php:1186 +#: ../../godmode/wizards/HostDevices.class.php:1182 msgid "" "System is able to auto configure detected host & devices by applying your " "defined configuration rules." @@ -41792,19 +42061,19 @@ msgstr "" "Le système est capable de configurer automatiquement l'hôte et les " "périphériques détectés en appliquant vos règles de configuration définies." -#: ../../godmode/wizards/HostDevices.class.php:1202 +#: ../../godmode/wizards/HostDevices.class.php:1198 msgid "SNMP enabled" msgstr "SNMP activé" -#: ../../godmode/wizards/HostDevices.class.php:1243 +#: ../../godmode/wizards/HostDevices.class.php:1239 msgid "Skip non-enabled interfaces" msgstr "Ignorer les interfaces non activées" -#: ../../godmode/wizards/HostDevices.class.php:1262 +#: ../../godmode/wizards/HostDevices.class.php:1258 msgid "SNMP communities to try with" msgstr "Communautés SNMP à essayer avec" -#: ../../godmode/wizards/HostDevices.class.php:1264 +#: ../../godmode/wizards/HostDevices.class.php:1260 msgid "" "You can specify several values, separated by commas, for example: public," "mysecret,1234" @@ -41812,30 +42081,35 @@ msgstr "" "Vous pouvez définir plusieurs valeurs séparées par des virgules. Par exemple : " "public,mysecret,1234" -#: ../../godmode/wizards/HostDevices.class.php:1391 +#: ../../godmode/wizards/HostDevices.class.php:1387 msgid "OS detection" msgstr "Détection du système d'exploitation" -#: ../../godmode/wizards/HostDevices.class.php:1403 +#: ../../godmode/wizards/HostDevices.class.php:1399 msgid "Name resolution" msgstr "Résolution du nom" -#: ../../godmode/wizards/HostDevices.class.php:1414 +#: ../../godmode/wizards/HostDevices.class.php:1410 msgid "Parent detection" msgstr "Détection de parents" -#: ../../godmode/wizards/HostDevices.class.php:1425 +#: ../../godmode/wizards/HostDevices.class.php:1421 msgid "Parent recursion" msgstr "Récursion de parents" -#: ../../godmode/wizards/HostDevices.class.php:1436 +#: ../../godmode/wizards/HostDevices.class.php:1432 msgid "VLAN enabled" msgstr "VLAN activé" -#: ../../godmode/wizards/HostDevices.class.php:1447 +#: ../../godmode/wizards/HostDevices.class.php:1443 msgid "WMI enabled" msgstr "WMI activé" +#: ../../godmode/wizards/HostDevices.class.php:1590 +#: ../../include/functions_html.php:648 ../../include/functions_html.php:6387 +msgid "Please select..." +msgstr "Veuillez sélectionner..." + #: ../../godmode/wizards/DiscoveryTaskList.class.php:259 msgid "Task successfully deleted" msgstr "Tâche supprimée correctement" @@ -42147,6 +42421,7 @@ msgstr "" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1865 #: ../../include/help/clippy/operation_agentes_ver_agente.php:40 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 +#: ../../include/class/AgentDeployWizard.class.php:558 msgid "Done" msgstr "Terminé" @@ -42159,47 +42434,42 @@ msgstr "Non démarré" msgid "Searching" msgstr "Recherche" -#: ../../godmode/servers/servers.build_table.php:122 +#: ../../godmode/servers/servers.build_table.php:124 +#: ../../mobile/operation/server_status.php:269 +#: ../../mobile/operation/server_status.php:307 +#: ../../mobile/operation/server_status.php:337 msgid "Server has crashed." msgstr "Le serveur a échoué." -#: ../../godmode/servers/servers.build_table.php:130 +#: ../../godmode/servers/servers.build_table.php:132 +#: ../../mobile/operation/server_status.php:275 +#: ../../mobile/operation/server_status.php:313 +#: ../../mobile/operation/server_status.php:343 msgid "Server is stopped." msgstr "Le serveur est arrêté." -#: ../../godmode/servers/servers.build_table.php:142 +#: ../../godmode/servers/servers.build_table.php:144 msgid "Exec server enabled" msgstr "Serveur d'exécution activé" -#: ../../godmode/servers/servers.build_table.php:200 +#: ../../godmode/servers/servers.build_table.php:213 msgid "Manage Discovery tasks" msgstr "Gérer les tâches de découverte" -#: ../../godmode/servers/servers.build_table.php:214 +#: ../../godmode/servers/servers.build_table.php:227 msgid "Reset module status and fired alert counts" msgstr "Réinitialiser l'état du module et le nombre d'alertes déclenchées" -#: ../../godmode/servers/servers.build_table.php:225 +#: ../../godmode/servers/servers.build_table.php:238 msgid "Claim back SNMP modules" msgstr "Réclamer les modules SNMP" -#: ../../godmode/servers/servers.build_table.php:249 -msgid "Manage satellite hosts" -msgstr "Gérer les hôtes satellites" - #: ../../godmode/servers/modificar_server.php:50 msgid "Update Server" msgstr "Mettre à jour le serveur" -#: ../../godmode/servers/modificar_server.php:63 -#: ../../godmode/servers/modificar_server.php:222 -#: ../../godmode/servers/modificar_server.php:262 -#, php-format -msgid "%s servers" -msgstr "Serveurs %s" - #: ../../godmode/servers/modificar_server.php:73 -#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1080 +#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1072 #: ../../include/ajax/consoles.ajax.php:61 msgid "Standard" msgstr "Standard" @@ -42228,34 +42498,35 @@ msgstr "Editeur standard" msgid "Advanced editor" msgstr "Éditeur avancé" -#: ../../godmode/servers/modificar_server.php:209 +#: ../../godmode/servers/modificar_server.php:210 +#: ../../godmode/servers/modificar_server.php:229 msgid "Remote Configuration" msgstr "Configuration à distance" -#: ../../godmode/servers/modificar_server.php:235 +#: ../../godmode/servers/modificar_server.php:257 msgid "Dynamic search" msgstr "Recherche dynamique" -#: ../../godmode/servers/modificar_server.php:275 +#: ../../godmode/servers/modificar_server.php:297 #: ../../include/class/OrderInterpreter.class.php:247 msgid "Manage Servers" msgstr "Gérer les serveurs" -#: ../../godmode/servers/modificar_server.php:287 -#: ../../godmode/servers/modificar_server.php:298 +#: ../../godmode/servers/modificar_server.php:309 +#: ../../godmode/servers/modificar_server.php:320 msgid "Successfully action" msgstr "Action réussie" -#: ../../godmode/servers/modificar_server.php:329 +#: ../../godmode/servers/modificar_server.php:351 msgid "Server updated successfully" msgstr "Serveur mis à jour correctement" -#: ../../godmode/servers/modificar_server.php:331 +#: ../../godmode/servers/modificar_server.php:353 msgid "There was a problem updating the server" msgstr "Problème de mise à jour du serveur" #: ../../godmode/servers/plugin_registration.php:58 -#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:751 +#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:743 msgid "To manage plugin you must activate centralized management" msgstr "Pour gérer le plugin d’inventaire, activez la gestion centralisée" @@ -42276,55 +42547,66 @@ msgstr "" "Cette console n'est pas gestionnaire de cet environnement, veuillez gérer " "cette fonctionnalité à partir de la fonctionnalité de %s." -#: ../../godmode/servers/plugin_registration.php:105 +#: ../../godmode/servers/plugin_registration.php:101 msgid "Plugin Registration" msgstr "Enregistrement du plugin" -#: ../../godmode/servers/plugin_registration.php:113 +#: ../../godmode/servers/plugin_registration.php:107 +msgid "" +"This extension makes registering server plugins an easier task. Here you can " +"upload a server plugin in .pspz zipped format. Please refer to the official " +"documentation on how to obtain and use Server Plugins." +msgstr "" +"Cet extension fait l’enregistrement du plugins du serveur plus facile. Ici " +"vous pouvez télécharger un plugin du serveur dans le format comprimé .pspz. " +"Veuillez lire la documentation pour obtenir et utiliser les plugins du serveur " +"de Pandora FMS." + +#: ../../godmode/servers/plugin_registration.php:109 msgid "You can get more plugins in our" msgstr "Vous pouvez obtenir plus de plugins dans notre" -#: ../../godmode/servers/plugin_registration.php:115 +#: ../../godmode/servers/plugin_registration.php:111 msgid "Public Resource Library" msgstr "Bibliothèque publique de ressources" -#: ../../godmode/servers/plugin_registration.php:143 +#: ../../godmode/servers/plugin_registration.php:139 msgid "Failed to create temporary directory" msgstr "Impossible de créer un répertoire temporaire" -#: ../../godmode/servers/plugin_registration.php:162 +#: ../../godmode/servers/plugin_registration.php:158 msgid "Cannot load INI file" msgstr "Erreur de chargement du fichier INI" -#: ../../godmode/servers/plugin_registration.php:187 +#: ../../godmode/servers/plugin_registration.php:183 msgid "Plugin exec not found. Aborting!" msgstr "Plugin d'exécution introuvable. Annulation en cours !" -#: ../../godmode/servers/plugin_registration.php:198 +#: ../../godmode/servers/plugin_registration.php:194 msgid "Plugin already registered. Aborting!" msgstr "Plugin déjà enregistré. Annulation en cours !" -#: ../../godmode/servers/plugin_registration.php:365 +#: ../../godmode/servers/plugin_registration.php:361 msgid "Plug-in Remote Registered unsuccessfull" msgstr "Erreur d'enregistrement du plugin à distance" -#: ../../godmode/servers/plugin_registration.php:368 +#: ../../godmode/servers/plugin_registration.php:364 msgid "Please check the syntax of file \"plugin_definition.ini\"" msgstr "Veuillez vérifier la syntaxe du fichier « plugin_definition.ini »" -#: ../../godmode/servers/plugin_registration.php:508 +#: ../../godmode/servers/plugin_registration.php:504 msgid "Module plugin registered" msgstr "Plugin du module enregistré" -#: ../../godmode/servers/plugin_registration.php:513 +#: ../../godmode/servers/plugin_registration.php:509 msgid "Registered successfully" msgstr "Enregistré correctement" -#: ../../godmode/servers/plugin_registration.php:526 +#: ../../godmode/servers/plugin_registration.php:522 msgid "Unable to uncompress uploaded file" msgstr "Impossible de décompresser le fichier" -#: ../../godmode/servers/plugin_registration.php:544 +#: ../../godmode/servers/plugin_registration.php:540 #, php-format msgid "Cannot move uploaded file to %s." msgstr "Impossible de déplacer le fichier téléchargé vers %s" @@ -42333,15 +42615,15 @@ msgstr "Impossible de déplacer le fichier téléchargé vers %s" msgid "Network Components" msgstr "Composants de réseau" -#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:775 +#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:767 msgid "Attachments" msgstr "Pièces jointes" -#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:785 +#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:777 msgid "Index of attachment/plugin" msgstr "Index de la pièce jointe/plug-in" -#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:788 +#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:780 #, php-format msgid "Plug-ins registered on %s" msgstr "Plugins enregistrés sur %s" @@ -42350,7 +42632,7 @@ msgstr "Plugins enregistrés sur %s" msgid "Plugin update" msgstr "Mise à jour du plugin" -#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:815 +#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:807 msgid "" "This console is not manager of this environment,\n" " \t\tplease manage this feature from centralized manager console " @@ -42360,7 +42642,7 @@ msgstr "" " \t\tveuillez gérer cette fonctionnalité à partir de la console de " "gestion centralisée (Metaconsole)." -#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1080 +#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1072 msgid "Nagios" msgstr "Nagios" @@ -42405,74 +42687,78 @@ msgstr "" msgid "Plug-in parameters" msgstr "Paramètres des plugins" -#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:689 +#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:681 msgid "Parameters macros" msgstr "Macros des paramètres" #: ../../godmode/servers/plugin.php:585 -#: ../../include/class/ManageNetScanScripts.class.php:675 +#: ../../include/class/ManageNetScanScripts.class.php:671 msgid "Hide value" msgstr "Cacher la valeur" #: ../../godmode/servers/plugin.php:596 -#: ../../include/class/ManageNetScanScripts.class.php:677 +#: ../../include/class/ManageNetScanScripts.class.php:673 msgid "This field will show up as dots like a password" msgstr "Ce champ sera affiché sous forme de points, comme un mot de passe" -#: ../../godmode/servers/plugin.php:824 +#: ../../godmode/servers/plugin.php:655 +msgid "Remove macro" +msgstr "Supprimer la macro" + +#: ../../godmode/servers/plugin.php:816 msgid "You need to create your own plugins with Windows compatibility" msgstr "Vous devez créer vos propres plugins compatibles avec Windows" -#: ../../godmode/servers/plugin.php:890 +#: ../../godmode/servers/plugin.php:882 msgid "Problem updating plugin" msgstr "Problème de mise à jour du plugin" -#: ../../godmode/servers/plugin.php:892 +#: ../../godmode/servers/plugin.php:884 msgid "Plugin updated successfully" msgstr "Plugin mis à jour correctement" -#: ../../godmode/servers/plugin.php:950 +#: ../../godmode/servers/plugin.php:942 msgid "Problem creating plugin" msgstr "Problème de création du plugin" -#: ../../godmode/servers/plugin.php:952 +#: ../../godmode/servers/plugin.php:944 msgid "Plugin created successfully" msgstr "Plugin créé correctement" -#: ../../godmode/servers/plugin.php:964 +#: ../../godmode/servers/plugin.php:956 msgid "Problem deleting plugin" msgstr "Problème de suppression du plugin" -#: ../../godmode/servers/plugin.php:966 ../../godmode/servers/plugin.php:978 +#: ../../godmode/servers/plugin.php:958 ../../godmode/servers/plugin.php:970 msgid "Plugin deleted successfully" msgstr "Plugin supprimé correctement" -#: ../../godmode/servers/plugin.php:1034 +#: ../../godmode/servers/plugin.php:1026 msgid "Lock" msgstr "Verrouillage" -#: ../../godmode/servers/plugin.php:1062 +#: ../../godmode/servers/plugin.php:1054 msgid "All the modules that are using this plugin will be deleted" msgstr "Tous les modules qui utilisent ce plugin seront supprimés" -#: ../../godmode/servers/plugin.php:1096 +#: ../../godmode/servers/plugin.php:1088 msgid "There are no plugins in the system" msgstr "Aucun plugin dans le système" -#: ../../godmode/servers/plugin.php:1104 +#: ../../godmode/servers/plugin.php:1096 msgid "Add plugin" msgstr "Ajouter un plugin" -#: ../../godmode/servers/plugin.php:1117 +#: ../../godmode/servers/plugin.php:1109 #, php-format msgid "List of modules and components created by \"%s\" " msgstr "Liste de modules et composants créés par « %s » " -#: ../../godmode/servers/plugin.php:1221 +#: ../../godmode/servers/plugin.php:1213 msgid "Some modules or components are using the plugin" msgstr "Certains modules ou composants utilisent le plugin." -#: ../../godmode/servers/plugin.php:1222 +#: ../../godmode/servers/plugin.php:1214 msgid "" "The modules or components should be updated manually or using the bulk " "operations for plugins after this change" @@ -42480,11 +42766,11 @@ msgstr "" "Les modules ou composants doivent être mis à jour manuellement ou en utilisant " "les opérations massives pour les plugins après ce changement." -#: ../../godmode/servers/plugin.php:1224 +#: ../../godmode/servers/plugin.php:1216 msgid "Are you sure you want to perform this action?" msgstr "Êtes-vous sûr(e) de vouloir effectuer cette action ?" -#: ../../godmode/servers/plugin.php:1233 +#: ../../godmode/servers/plugin.php:1225 msgid "" "The plugin macros cannot be updated because some modules or components are " "using the plugin" @@ -42529,37 +42815,37 @@ msgstr "" "Ce nœud est configuré en mode centralisé. Toutes les informations des balises " "sont en lecture seule. Allez vers %s pour le gérer." -#: ../../godmode/tag/tag.php:302 +#: ../../godmode/tag/tag.php:303 msgid "Tag name" msgstr "Nom de l'étiquette" -#: ../../godmode/tag/tag.php:304 +#: ../../godmode/tag/tag.php:305 msgid "Detail information" msgstr "Information detaillée" -#: ../../godmode/tag/tag.php:305 +#: ../../godmode/tag/tag.php:306 msgid "Number of modules affected" msgstr "Nombre de modules affectés" -#: ../../godmode/tag/tag.php:307 ../../godmode/tag/edit_tag.php:233 +#: ../../godmode/tag/tag.php:308 ../../godmode/tag/edit_tag.php:237 msgid "Phone" msgstr "Téléphone" -#: ../../godmode/tag/tag.php:336 +#: ../../godmode/tag/tag.php:337 msgid "Tag details" msgstr "Détails de l'étiquette" -#: ../../godmode/tag/tag.php:369 +#: ../../godmode/tag/tag.php:370 #, php-format msgid "Emails for the tag: %s" msgstr "Courriels pour l'étiquette : %s" -#: ../../godmode/tag/tag.php:392 +#: ../../godmode/tag/tag.php:393 #, php-format msgid "Phones for the tag: %s" msgstr "Numéros de téléphone pour l'étiquette : %s" -#: ../../godmode/tag/tag.php:455 +#: ../../godmode/tag/tag.php:456 msgid "Create tag" msgstr "Créer une étiquette" @@ -42575,25 +42861,25 @@ msgstr "Étiquette mise a jour correctement" msgid "Error updating tag" msgstr "Erreur de mise à jour de l'étiquette" -#: ../../godmode/tag/edit_tag.php:160 +#: ../../godmode/tag/edit_tag.php:163 msgid "Successfully created tag" msgstr "Étiquette créée correctement" -#: ../../godmode/tag/edit_tag.php:161 +#: ../../godmode/tag/edit_tag.php:164 msgid "Error creating tag" msgstr "Erreur de création de l'étiquette" -#: ../../godmode/tag/edit_tag.php:213 +#: ../../godmode/tag/edit_tag.php:217 msgid "Hyperlink to help information that has to exist previously." msgstr "Hyperlien pour information qui doit exister préalablement" -#: ../../godmode/tag/edit_tag.php:225 +#: ../../godmode/tag/edit_tag.php:229 msgid "Associated Email direction to use later in alerts associated to Tags." msgstr "" "Adresse courriel associée à utiliser postérieurement avec les alertes " "associées aux étiquettes." -#: ../../godmode/tag/edit_tag.php:234 +#: ../../godmode/tag/edit_tag.php:238 msgid "Associated phone number to use later in alerts associated to Tags." msgstr "" "Numéro de téléphone associé à utiliser postérieurement avec les alertes " @@ -42708,7 +42994,7 @@ msgstr "Erreur lors du chargement des résultats" msgid "Pandora FMS %s - Build %s" msgstr "Pandora FMS %s - Créer %s" -#: ../../mobile/include/system.class.php:156 +#: ../../mobile/include/system.class.php:175 msgid "" "Access to this page is restricted to authorized users only, please contact " "your system administrator if you should need help." @@ -42716,7 +43002,8 @@ msgstr "" "Accès à cette page est limité aux utilisateurs autorisés seulement, veuillez " "contacter votre administrateur système si vous avez besoin de l'aide." -#: ../../mobile/include/system.class.php:156 +#: ../../mobile/include/system.class.php:175 +#: ../../mobile/include/system.class.php:181 #, php-format msgid "" "Please remember that any attempts to access this page will be recorded on the " @@ -42725,6 +43012,14 @@ msgstr "" "Rappelez-vous que les essais d'accès à cette page seront enregistrés dans la " "base du système %s." +#: ../../mobile/include/system.class.php:181 +msgid "" +"Invalid license, please contact your system administrator if you should need " +"help." +msgstr "" +"Licence non valide, veuillez contacter votre administrateur système si vous " +"avez besoin de l'aide." + #: ../../mobile/include/ui.class.php:120 #, php-format msgid "%s mobile" @@ -42735,7 +43030,7 @@ msgstr "%s portable" msgid "%s : Mobile" msgstr "%s : Portable" -#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:161 +#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:180 msgid "Home" msgstr "Accueil" @@ -42744,27 +43039,27 @@ msgstr "Accueil" msgid "%s %s - Build %s" msgstr "%s %s - Build %s" -#: ../../mobile/include/ui.class.php:773 +#: ../../mobile/include/ui.class.php:803 msgid "Not found header." msgstr "En-tête introuvable" -#: ../../mobile/include/ui.class.php:775 +#: ../../mobile/include/ui.class.php:805 msgid "Not found content." msgstr "Contenu introuvable" -#: ../../mobile/include/ui.class.php:777 +#: ../../mobile/include/ui.class.php:807 msgid "Not found footer." msgstr "Pied de page introuvable" -#: ../../mobile/include/ui.class.php:779 +#: ../../mobile/include/ui.class.php:809 msgid "Incorrect form." msgstr "Forme incorrecte" -#: ../../mobile/include/ui.class.php:781 +#: ../../mobile/include/ui.class.php:811 msgid "Incorrect grid." msgstr "Grille incorrecte" -#: ../../mobile/include/ui.class.php:783 +#: ../../mobile/include/ui.class.php:813 msgid "Incorrect collapsible." msgstr "Pliage incorrect" @@ -42807,52 +43102,62 @@ msgstr "" msgid "Login out" msgstr "Fermer la session" -#: ../../mobile/include/user.class.php:391 +#: ../../mobile/include/user.class.php:445 msgid "user" msgstr "utilisateur" -#: ../../mobile/include/user.class.php:398 +#: ../../mobile/include/user.class.php:453 msgid "password" msgstr "mot de passe" -#: ../../mobile/include/user.class.php:488 -#: ../../mobile/include/user.class.php:489 +#: ../../mobile/include/user.class.php:589 msgid "Authenticator code" msgstr "Code d'authentification" -#: ../../mobile/operation/agents.php:218 +#: ../../mobile/operation/agents.php:219 #, php-format msgid "Filter Agents by %s" msgstr "Filtrer agents par %s" -#: ../../mobile/operation/agents.php:260 ../../mobile/operation/modules.php:325 -#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1009 +#: ../../mobile/operation/agents.php:261 ../../mobile/operation/modules.php:325 +#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1053 msgid "Apply Filter" msgstr "Appliquer le filtre" -#: ../../mobile/operation/agents.php:454 +#: ../../mobile/operation/agents.php:459 msgid "No agents" msgstr "Aucun agent" -#: ../../mobile/operation/agents.php:550 ../../mobile/operation/modules.php:885 -#: ../../mobile/operation/alerts.php:379 ../../mobile/operation/events.php:1450 +#: ../../mobile/operation/agents.php:561 ../../mobile/operation/modules.php:981 +#: ../../mobile/operation/alerts.php:388 +#: ../../mobile/operation/module_data.php:299 +#: ../../mobile/operation/events.php:1575 +#: ../../mobile/operation/server_status.php:501 msgid "(Default)" msgstr "(Par défaut)" -#: ../../mobile/operation/agents.php:556 ../../mobile/operation/modules.php:891 -#: ../../mobile/operation/alerts.php:392 ../../mobile/operation/events.php:1483 +#: ../../mobile/operation/agents.php:567 ../../mobile/operation/modules.php:987 +#: ../../mobile/operation/alerts.php:401 +#: ../../mobile/operation/module_data.php:305 +#: ../../mobile/operation/events.php:1608 +#: ../../mobile/operation/server_status.php:507 #, php-format msgid "Group: %s" msgstr "Groupe : %s" -#: ../../mobile/operation/agents.php:563 ../../mobile/operation/modules.php:913 -#: ../../mobile/operation/alerts.php:399 ../../mobile/operation/events.php:1503 +#: ../../mobile/operation/agents.php:574 ../../mobile/operation/modules.php:1009 +#: ../../mobile/operation/alerts.php:408 +#: ../../mobile/operation/module_data.php:327 +#: ../../mobile/operation/events.php:1628 +#: ../../mobile/operation/server_status.php:529 #, php-format msgid "Status: %s" msgstr "État : %s" -#: ../../mobile/operation/agents.php:570 ../../mobile/operation/modules.php:920 -#: ../../mobile/operation/alerts.php:406 +#: ../../mobile/operation/agents.php:581 ../../mobile/operation/modules.php:1016 +#: ../../mobile/operation/alerts.php:415 +#: ../../mobile/operation/module_data.php:334 +#: ../../mobile/operation/server_status.php:536 #, php-format msgid "Free Search: %s" msgstr "Recherche libre : %s" @@ -42862,20 +43167,28 @@ msgstr "Recherche libre : %s" msgid "Filter Modules by %s" msgstr "Filtrer les modules par %s" -#: ../../mobile/operation/modules.php:659 +#: ../../mobile/operation/modules.php:670 msgid "Interval." msgstr "Intervalle" -#: ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/modules.php:672 msgid "Last update." msgstr "Dernière mise à jour" -#: ../../mobile/operation/modules.php:906 +#: ../../mobile/operation/modules.php:850 +msgid "Choose option" +msgstr "Choisissez une option" + +#: ../../mobile/operation/modules.php:1002 +#: ../../mobile/operation/module_data.php:320 +#: ../../mobile/operation/server_status.php:522 #, php-format msgid "Module group: %s" msgstr "Groupe de module: %s" -#: ../../mobile/operation/modules.php:928 +#: ../../mobile/operation/modules.php:1024 +#: ../../mobile/operation/module_data.php:342 +#: ../../mobile/operation/server_status.php:544 #, php-format msgid "Tag: %s" msgstr "Étiquette : %s" @@ -42885,20 +43198,29 @@ msgstr "Étiquette : %s" msgid "Visual consoles" msgstr "Consoles visuelles" -#: ../../mobile/operation/agent.php:162 +#: ../../mobile/operation/home.php:95 +#: ../../mobile/operation/server_status.php:227 +msgid "Server status" +msgstr "État du serveur" + +#: ../../mobile/operation/services.php:139 +msgid "No services found" +msgstr "Aucun service trouvé" + +#: ../../mobile/operation/agent.php:168 msgid "No agent found" msgstr "Aucun agent retrouvé" -#: ../../mobile/operation/agent.php:238 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:588 +#: ../../mobile/operation/agent.php:241 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:589 msgid "Modules by status" msgstr "Modules par état" -#: ../../mobile/operation/agent.php:268 ../../include/functions_treeview.php:724 +#: ../../mobile/operation/agent.php:271 ../../include/functions_treeview.php:728 msgid "Events (24h)" msgstr "Événements (24h)" -#: ../../mobile/operation/agent.php:369 +#: ../../mobile/operation/agent.php:372 #, php-format msgid "Last %s Events" msgstr "Derniers %s événements" @@ -42908,15 +43230,22 @@ msgstr "Derniers %s événements" msgid "Filter Alerts by %s" msgstr "Filtrer alertes par %s" -#: ../../mobile/operation/alerts.php:346 +#: ../../mobile/operation/alerts.php:336 ../../mobile/operation/alerts.php:337 +#: ../../mobile/operation/alerts.php:342 ../../mobile/operation/alerts.php:344 +#: ../../mobile/operation/alerts.php:347 +msgid "Module/Agent" +msgstr "Agent/Module" + +#: ../../mobile/operation/alerts.php:353 msgid "Last Fired" msgstr "Déclenchée pour la dernière fois" -#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2508 +#: ../../mobile/operation/alerts.php:363 ../../include/ajax/events.php:2509 +#: ../../operation/events/sound_events.php:394 msgid "No alerts" msgstr "Aucune alerte" -#: ../../mobile/operation/alerts.php:385 +#: ../../mobile/operation/alerts.php:394 #, php-format msgid "Standby: %s" msgstr "En mode veille : %s" @@ -42929,128 +43258,155 @@ msgstr "Toutes les consoles visuelles" msgid "Favourite visual consoles" msgstr "Consoles visuelles préférées" -#: ../../mobile/operation/visualmaps.php:263 -msgid "No maps defined" -msgstr "Aucune carte définie" +#: ../../mobile/operation/visualmaps.php:265 +msgid "There are no favorite maps to show" +msgstr "Aucune carte favorite à afficher" -#: ../../mobile/operation/module_graph.php:359 -#: ../../mobile/operation/module_graph.php:372 +#: ../../mobile/operation/module_data.php:125 +msgid "Module data" +msgstr "Données de module" + +#: ../../mobile/operation/module_data.php:184 +#: ../../include/graphs/functions_flot.php:515 +#: ../../include/functions_reporting_html.php:663 +#: ../../include/functions_reporting_html.php:4709 +#: ../../include/ajax/events.php:1305 ../../include/functions_graph.php:4832 +#: ../../include/functions_treeview.php:299 +msgid "No data" +msgstr "Aucune donnée" + +#: ../../mobile/operation/module_graph.php:360 +#: ../../mobile/operation/module_graph.php:373 #, php-format msgid "%s: %s" msgstr "%s: %s" -#: ../../mobile/operation/module_graph.php:405 +#: ../../mobile/operation/module_graph.php:406 #, php-format msgid "Options for %s : %s" msgstr "Options pour %s : %s" -#: ../../mobile/operation/module_graph.php:412 +#: ../../mobile/operation/module_graph.php:413 msgid "Show Alerts" msgstr "Afficher les alertes" -#: ../../mobile/operation/module_graph.php:420 +#: ../../mobile/operation/module_graph.php:421 msgid "Show Events" msgstr "Afficher les événements" -#: ../../mobile/operation/module_graph.php:428 -#: ../../operation/agentes/stat_win.php:377 -#: ../../operation/agentes/stat_win.php:439 +#: ../../mobile/operation/module_graph.php:429 +#: ../../operation/agentes/stat_win.php:385 +#: ../../operation/agentes/stat_win.php:455 msgid "Time compare (Separated)" msgstr "Comparaison de temps (séparément)" -#: ../../mobile/operation/module_graph.php:444 -#: ../../operation/agentes/stat_win.php:317 +#: ../../mobile/operation/module_graph.php:445 +#: ../../operation/agentes/stat_win.php:325 msgid "Show unknown graph" msgstr "Afficher le graphique inconnu" -#: ../../mobile/operation/module_graph.php:449 +#: ../../mobile/operation/module_graph.php:450 msgid "Time range (hours)" msgstr "Intervalle de temps (heures)" -#: ../../mobile/operation/module_graph.php:461 +#: ../../mobile/operation/module_graph.php:462 #: ../../operation/agentes/stat_win.php:289 -#: ../../operation/agentes/stat_win.php:408 +#: ../../operation/agentes/stat_win.php:416 #: ../../operation/agentes/interface_traffic_graph_win.php:183 #: ../../operation/agentes/graphs.php:222 #: ../../operation/agentes/exportdata.php:393 msgid "Begin date" msgstr "Date de début" -#: ../../mobile/operation/module_graph.php:468 +#: ../../mobile/operation/module_graph.php:469 msgid "Update graph" msgstr "Mettre à jour le graphique" -#: ../../mobile/operation/module_graph.php:478 +#: ../../mobile/operation/module_graph.php:479 msgid "Error get the graph" msgstr "Erreur d'obtention du graphique" -#: ../../mobile/operation/events.php:450 +#: ../../mobile/operation/events.php:442 #: ../../include/functions_reporting_html.php:1095 #: ../../include/functions_reporting_html.php:1337 -#: ../../include/functions_reporting_html.php:2658 +#: ../../include/functions_reporting_html.php:2677 #: ../../include/functions_events.php:2571 -#: ../../include/functions_events.php:4742 ../../operation/events/events.php:779 +#: ../../include/functions_events.php:4747 ../../operation/events/events.php:784 msgid "New event" msgstr "Nouvel événement" -#: ../../mobile/operation/events.php:455 +#: ../../mobile/operation/events.php:447 #: ../../include/functions_reporting_html.php:1084 #: ../../include/functions_reporting_html.php:1342 -#: ../../include/functions_reporting_html.php:2663 +#: ../../include/functions_reporting_html.php:2682 #: ../../include/functions_events.php:2576 -#: ../../include/functions_events.php:4748 ../../operation/events/events.php:792 +#: ../../include/functions_events.php:4753 ../../operation/events/events.php:797 msgid "Event validated" msgstr "Événement validé" -#: ../../mobile/operation/events.php:460 +#: ../../mobile/operation/events.php:452 #: ../../include/functions_reporting_html.php:1089 #: ../../include/functions_reporting_html.php:1347 -#: ../../include/functions_reporting_html.php:2668 +#: ../../include/functions_reporting_html.php:2687 #: ../../include/functions_events.php:2581 -#: ../../include/functions_events.php:4754 ../../operation/events/events.php:804 +#: ../../include/functions_events.php:4759 ../../operation/events/events.php:809 msgid "Event in process" msgstr "Événement en cours" -#: ../../mobile/operation/events.php:768 +#: ../../mobile/operation/events.php:797 msgid "ERROR: Event detail" msgstr "ERREUR : détails de l'événement" -#: ../../mobile/operation/events.php:769 +#: ../../mobile/operation/events.php:798 msgid "Error connecting to DB." msgstr "Erreur lors de la connexions dans la base de données." -#: ../../mobile/operation/events.php:789 +#: ../../mobile/operation/events.php:818 msgid "Event detail" msgstr "Détails de l'événement" -#: ../../mobile/operation/events.php:800 ../../include/functions_events.php:4895 +#: ../../mobile/operation/events.php:829 ../../include/functions_events.php:4900 msgid "Event ID" msgstr "Identification de l'événement" -#: ../../mobile/operation/events.php:828 ../../include/functions_events.php:5013 +#: ../../mobile/operation/events.php:857 ../../include/functions_events.php:5018 msgid "Acknowledged by" msgstr "Reconnu par" -#: ../../mobile/operation/events.php:878 +#: ../../mobile/operation/events.php:894 ../../include/functions_events.php:3275 +#: ../../include/functions_events.php:3548 +#: ../../include/functions_events.php:3557 +msgid "In process" +msgstr "En cours" + +#: ../../mobile/operation/events.php:915 msgid "Sucessful validate" msgstr "Validé correctement" -#: ../../mobile/operation/events.php:880 +#: ../../mobile/operation/events.php:917 msgid "Fail validate" msgstr "Validation échouée" +#: ../../mobile/operation/events.php:922 +msgid "Sucessful in process" +msgstr "En processus correcte" + #: ../../mobile/operation/events.php:924 +msgid "Fail in process" +msgstr "En processus échoué" + +#: ../../mobile/operation/events.php:968 #, php-format msgid "Filter Events by %s" msgstr "Filtrer les évènements par %s" -#: ../../mobile/operation/events.php:934 ../../mobile/operation/events.php:935 +#: ../../mobile/operation/events.php:978 ../../mobile/operation/events.php:979 msgid "Preset Filters" msgstr "Filtres prédéfinis" -#: ../../mobile/operation/events.php:1144 -#: ../../include/functions_reporting_html.php:6176 -#: ../../include/functions_reporting_html.php:6335 +#: ../../mobile/operation/events.php:1191 +#: ../../include/functions_reporting_html.php:6210 +#: ../../include/functions_reporting_html.php:6369 #: ../../include/functions_reporting.php:2189 #: ../../include/functions_reporting.php:2564 #: ../../include/functions_events.php:2497 @@ -43058,31 +43414,35 @@ msgstr "Filtres prédéfinis" msgid "No events" msgstr "Aucun événement" -#: ../../mobile/operation/events.php:1455 +#: ../../mobile/operation/events.php:1580 #, php-format msgid "Filter: %s" msgstr "Filtrer : %s" -#: ../../mobile/operation/events.php:1467 +#: ../../mobile/operation/events.php:1592 #, php-format msgid "Severity: %s" msgstr "Sévérité : %s" -#: ../../mobile/operation/events.php:1496 +#: ../../mobile/operation/events.php:1621 #, php-format msgid "Type: %s" msgstr "Type : %s" -#: ../../mobile/operation/events.php:1510 +#: ../../mobile/operation/events.php:1635 #, php-format msgid "Free search: %s" msgstr "Recherche libre : %s" -#: ../../mobile/operation/events.php:1517 +#: ../../mobile/operation/events.php:1642 #, php-format msgid "Hours: %s" msgstr "Heures : %s" +#: ../../mobile/operation/server_status.php:371 +msgid "No servers" +msgstr "Pas de serveurs" + #: ../../mobile/operation/tactical.php:216 msgid "Last activity" msgstr "Dernière activité" @@ -43111,166 +43471,162 @@ msgstr "" msgid "Border color" msgstr "Couleur du bord" -#: ../../include/functions_visual_map_editor.php:151 +#: ../../include/functions_visual_map_editor.php:149 msgid "Border width" msgstr "Largeur du bord" -#: ../../include/functions_visual_map_editor.php:160 +#: ../../include/functions_visual_map_editor.php:158 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:323 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364 msgid "Fill color" msgstr "Couleur de remplissage" -#: ../../include/functions_visual_map_editor.php:239 +#: ../../include/functions_visual_map_editor.php:235 msgid "" "Scroll the mouse wheel over the label editor to change the background color" msgstr "" "Survolez la souris sur l'éditeur d'étiquettes pour changer la couleur de fond" -#: ../../include/functions_visual_map_editor.php:255 +#: ../../include/functions_visual_map_editor.php:251 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333 msgid "Clock animation" msgstr "Animation de l'horloge" -#: ../../include/functions_visual_map_editor.php:258 +#: ../../include/functions_visual_map_editor.php:254 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328 msgid "Simple analogic" msgstr "Analogique" -#: ../../include/functions_visual_map_editor.php:259 +#: ../../include/functions_visual_map_editor.php:255 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329 msgid "Simple digital" msgstr "Numérique" -#: ../../include/functions_visual_map_editor.php:273 +#: ../../include/functions_visual_map_editor.php:269 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351 msgid "Time format" msgstr "Format de l'heure" -#: ../../include/functions_visual_map_editor.php:276 +#: ../../include/functions_visual_map_editor.php:272 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346 msgid "Only time" msgstr "Seulement l'heure" -#: ../../include/functions_visual_map_editor.php:277 +#: ../../include/functions_visual_map_editor.php:273 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347 msgid "Time and date" msgstr "Heure et date" -#: ../../include/functions_visual_map_editor.php:329 +#: ../../include/functions_visual_map_editor.php:325 msgid "Enable link" msgstr "Activer le lien" -#: ../../include/functions_visual_map_editor.php:350 +#: ../../include/functions_visual_map_editor.php:346 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:366 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:508 msgid "White" msgstr "Blanc" -#: ../../include/functions_visual_map_editor.php:351 +#: ../../include/functions_visual_map_editor.php:347 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:367 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:509 msgid "Black" msgstr "Noir" -#: ../../include/functions_visual_map_editor.php:352 +#: ../../include/functions_visual_map_editor.php:348 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:368 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:510 msgid "Transparent" msgstr "Transparent" -#: ../../include/functions_visual_map_editor.php:378 +#: ../../include/functions_visual_map_editor.php:374 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:402 msgid "Grid color" msgstr "Couleur de la grille" -#: ../../include/functions_visual_map_editor.php:498 +#: ../../include/functions_visual_map_editor.php:492 msgid "Data image" msgstr "Données dans l'image" -#: ../../include/functions_visual_map_editor.php:503 +#: ../../include/functions_visual_map_editor.php:498 msgid "Resume data color" msgstr "Couleur de la légende" -#: ../../include/functions_visual_map_editor.php:517 +#: ../../include/functions_visual_map_editor.php:511 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:274 msgid "24h" msgstr "24h" -#: ../../include/functions_visual_map_editor.php:518 +#: ../../include/functions_visual_map_editor.php:512 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:276 msgid "8h" msgstr "8h" -#: ../../include/functions_visual_map_editor.php:519 +#: ../../include/functions_visual_map_editor.php:513 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277 msgid "2h" msgstr "2h" -#: ../../include/functions_visual_map_editor.php:520 +#: ../../include/functions_visual_map_editor.php:514 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:278 msgid "1h" msgstr "1h" -#: ../../include/functions_visual_map_editor.php:524 +#: ../../include/functions_visual_map_editor.php:518 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:282 msgid "Max. Time" msgstr "Temp max." -#: ../../include/functions_visual_map_editor.php:640 +#: ../../include/functions_visual_map_editor.php:634 msgid "Original Size" msgstr "Taille originale" -#: ../../include/functions_visual_map_editor.php:648 +#: ../../include/functions_visual_map_editor.php:654 msgid "Aspect ratio" msgstr "Rapport hauteur/largeur" -#: ../../include/functions_visual_map_editor.php:649 +#: ../../include/functions_visual_map_editor.php:657 msgid "Proportional Width" msgstr "Largeur proportionnelle" -#: ../../include/functions_visual_map_editor.php:657 +#: ../../include/functions_visual_map_editor.php:677 msgid "Height proportional" msgstr "Hauteur proportionnelle" -#: ../../include/functions_visual_map_editor.php:668 -msgid "Widtzzzzh" -msgstr "Largeur" - -#: ../../include/functions_visual_map_editor.php:686 -#: ../../include/functions_visual_map.php:4190 +#: ../../include/functions_visual_map_editor.php:736 +#: ../../include/functions_visual_map.php:4199 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460 -#: ../../include/rest-api/models/VisualConsole/Item.php:2124 +#: ../../include/rest-api/models/VisualConsole/Item.php:2127 msgid "Circular progress bar" msgstr "Barre de progression circulaire" -#: ../../include/functions_visual_map_editor.php:687 -#: ../../include/functions_visual_map.php:4195 +#: ../../include/functions_visual_map_editor.php:737 +#: ../../include/functions_visual_map.php:4204 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462 -#: ../../include/rest-api/models/VisualConsole/Item.php:2128 +#: ../../include/rest-api/models/VisualConsole/Item.php:2131 msgid "Circular progress bar (interior)" msgstr "Barre de progression circulaire (intérieur)" -#: ../../include/functions_visual_map_editor.php:737 +#: ../../include/functions_visual_map_editor.php:787 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522 msgid "Element color" msgstr "Couleur de l'élément" -#: ../../include/functions_visual_map_editor.php:757 +#: ../../include/functions_visual_map_editor.php:802 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:534 msgid "Value color" msgstr "Couleur de la valeur" -#: ../../include/functions_visual_map_editor.php:799 +#: ../../include/functions_visual_map_editor.php:839 msgid "Diameter" msgstr "Diamètre" -#: ../../include/functions_visual_map_editor.php:806 +#: ../../include/functions_visual_map_editor.php:846 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:426 msgid "Default color" msgstr "Couleur par défaut" -#: ../../include/functions_visual_map_editor.php:810 +#: ../../include/functions_visual_map_editor.php:850 msgid "" "The color of the element will be the one selected in the first range created " "in which the value of the module is found (with the initial and final values " @@ -43280,93 +43636,93 @@ msgstr "" "dans laquelle se trouve la valeur du module (avec les valeurs initiale et " "finale de la plage incluses)" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "Ranges" msgstr "Gammes" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "From value" msgstr "À partir de la valeur" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "To value" msgstr "À la valeur" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 #: ../../include/rest-api/index.php:379 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:533 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:487 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:942 msgid "Color" msgstr "Couleur" -#: ../../include/functions_visual_map_editor.php:818 +#: ../../include/functions_visual_map_editor.php:859 msgid "Always show on top" msgstr "Afficher toujours en haut" -#: ../../include/functions_visual_map_editor.php:819 +#: ../../include/functions_visual_map_editor.php:861 msgid "" "It allows the element to be superimposed to the rest of items of the visual " "console" msgstr "" "Il permet de superposer l'élément au reste des éléments de la console visuelle" -#: ../../include/functions_visual_map_editor.php:822 +#: ../../include/functions_visual_map_editor.php:870 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:404 msgid "Hide last value on boolean modules" msgstr "Masquer la dernière valeur sur les modules booléens" -#: ../../include/functions_visual_map_editor.php:828 +#: ../../include/functions_visual_map_editor.php:876 msgid "Show last value" msgstr "Afficher la dernière valeur" -#: ../../include/functions_visual_map_editor.php:932 +#: ../../include/functions_visual_map_editor.php:980 msgid "For use the original image file size, set 0 width and 0 height." msgstr "" "Pour utiliser les dimensions originales du fichier d'image, réglez la largeur " "et la hauteur à 0." -#: ../../include/functions_visual_map_editor.php:972 -#: ../../include/rest-api/models/VisualConsole/Item.php:2439 +#: ../../include/functions_visual_map_editor.php:1020 +#: ../../include/rest-api/models/VisualConsole/Item.php:2442 msgid "Linked visual console" msgstr "Console visuelle liée" -#: ../../include/functions_visual_map_editor.php:1079 -#: ../../include/rest-api/models/VisualConsole/Item.php:2490 +#: ../../include/functions_visual_map_editor.php:1131 +#: ../../include/rest-api/models/VisualConsole/Item.php:2493 msgid "By status weight" msgstr "Par poids d’état" -#: ../../include/functions_visual_map_editor.php:1080 -#: ../../include/rest-api/models/VisualConsole/Item.php:2491 +#: ../../include/functions_visual_map_editor.php:1132 +#: ../../include/rest-api/models/VisualConsole/Item.php:2494 msgid "By critical elements" msgstr "Par éléments critiques" -#: ../../include/functions_visual_map_editor.php:1095 -#: ../../include/rest-api/models/VisualConsole/Item.php:2498 +#: ../../include/functions_visual_map_editor.php:1147 +#: ../../include/rest-api/models/VisualConsole/Item.php:2501 msgid "Type of the status calculation of the linked visual console" msgstr "Type de calcul d'état de la console visuelle liée" -#: ../../include/functions_visual_map_editor.php:1100 -#: ../../include/rest-api/models/VisualConsole/Item.php:2489 +#: ../../include/functions_visual_map_editor.php:1152 +#: ../../include/rest-api/models/VisualConsole/Item.php:2492 msgid "By default" msgstr "Par défaut" -#: ../../include/functions_visual_map_editor.php:1120 -#: ../../include/rest-api/models/VisualConsole/Item.php:2514 +#: ../../include/functions_visual_map_editor.php:1172 +#: ../../include/rest-api/models/VisualConsole/Item.php:2517 msgid "Linked visual console weight" msgstr "Poids de la console visuelle liée" -#: ../../include/functions_visual_map_editor.php:1187 +#: ../../include/functions_visual_map_editor.php:1239 msgid "Lines haven't advanced options" msgstr "Les lignes n'ont pas d'options avancées" -#: ../../include/functions_visual_map_editor.php:1204 -#: ../../include/rest-api/models/VisualConsole/Item.php:2189 +#: ../../include/functions_visual_map_editor.php:1257 +#: ../../include/rest-api/models/VisualConsole/Item.php:2192 msgid "Restrict access to group" msgstr "Limiter l'accès au groupe" -#: ../../include/functions_visual_map_editor.php:1215 +#: ../../include/functions_visual_map_editor.php:1259 msgid "" "If selected, restrict visualization of this item in the visual console to " "users who have access to selected group. This is also used on calculating " @@ -43376,135 +43732,135 @@ msgstr "" "limité aux utilisateurs qui ont accès au groupe sélectionné. Ceci est aussi " "utilisé pour calculer les consoles visuelles des enfants." -#: ../../include/functions_visual_map_editor.php:1246 -#: ../../include/rest-api/models/VisualConsole/Item.php:2202 +#: ../../include/functions_visual_map_editor.php:1304 +#: ../../include/rest-api/models/VisualConsole/Item.php:2205 msgid "Cache expiration" msgstr "Expiration du cache" -#: ../../include/functions_visual_map_editor.php:1285 +#: ../../include/functions_visual_map_editor.php:1343 msgid "Click start point
of the line" msgstr "Cliquez sur le point de départ
de la ligne." -#: ../../include/functions_visual_map_editor.php:1288 +#: ../../include/functions_visual_map_editor.php:1346 msgid "Click end point
of the line" msgstr "Cliquez sur le point final
de la ligne." -#: ../../include/functions_visual_map_editor.php:1388 -#: ../../operation/visual_console/view.php:336 +#: ../../include/functions_visual_map_editor.php:1446 +#: ../../operation/visual_console/view.php:338 msgid "Serialized pie graph" msgstr "Diagramme circulaire sérialisé" -#: ../../include/functions_visual_map_editor.php:1389 -#: ../../operation/visual_console/view.php:341 +#: ../../include/functions_visual_map_editor.php:1447 +#: ../../operation/visual_console/view.php:343 msgid "Bars Graph" msgstr "Graphique à barres" -#: ../../include/functions_visual_map_editor.php:1418 +#: ../../include/functions_visual_map_editor.php:1476 msgid "Show grid" msgstr "Afficher la grille" -#: ../../include/functions_visual_map_editor.php:1420 +#: ../../include/functions_visual_map_editor.php:1478 msgid "Delete item" msgstr "Supprimer l'élément" -#: ../../include/functions_visual_map_editor.php:1421 +#: ../../include/functions_visual_map_editor.php:1479 msgid "Copy item" msgstr "Copier l'élément" -#: ../../include/functions_visual_map_editor.php:1458 -#: ../../include/functions_visual_map_editor.php:1462 -#: ../../include/functions_visual_map_editor.php:1466 -#: ../../include/functions_visual_map_editor.php:1470 -#: ../../include/functions_visual_map_editor.php:1474 -#: ../../include/functions_visual_map_editor.php:1478 -#: ../../include/functions_visual_map_editor.php:1482 -#: ../../include/functions_visual_map_editor.php:1486 -#: ../../include/functions_visual_map_editor.php:1490 -#: ../../include/functions_visual_map_editor.php:1494 -#: ../../include/functions_visual_map_editor.php:1498 -#: ../../include/functions_visual_map_editor.php:1502 -#: ../../include/functions_visual_map_editor.php:1506 -#: ../../include/functions_visual_map_editor.php:1510 -#: ../../include/functions_visual_map_editor.php:1514 -#: ../../include/functions_visual_map_editor.php:1518 -#: ../../include/functions_visual_map_editor.php:1522 -#: ../../include/functions_visual_map_editor.php:1526 -#: ../../include/functions_visual_map_editor.php:1530 +#: ../../include/functions_visual_map_editor.php:1516 +#: ../../include/functions_visual_map_editor.php:1520 +#: ../../include/functions_visual_map_editor.php:1524 +#: ../../include/functions_visual_map_editor.php:1528 +#: ../../include/functions_visual_map_editor.php:1532 +#: ../../include/functions_visual_map_editor.php:1536 +#: ../../include/functions_visual_map_editor.php:1540 +#: ../../include/functions_visual_map_editor.php:1544 +#: ../../include/functions_visual_map_editor.php:1548 +#: ../../include/functions_visual_map_editor.php:1552 +#: ../../include/functions_visual_map_editor.php:1556 +#: ../../include/functions_visual_map_editor.php:1560 +#: ../../include/functions_visual_map_editor.php:1564 +#: ../../include/functions_visual_map_editor.php:1568 +#: ../../include/functions_visual_map_editor.php:1572 +#: ../../include/functions_visual_map_editor.php:1576 +#: ../../include/functions_visual_map_editor.php:1580 +#: ../../include/functions_visual_map_editor.php:1584 +#: ../../include/functions_visual_map_editor.php:1588 msgid "Visual Console Builder Information" msgstr "Informations sur le constructeur de console visuelle" -#: ../../include/functions_visual_map_editor.php:1459 +#: ../../include/functions_visual_map_editor.php:1517 msgid "Min allowed size is 1024x768." msgstr "La taille minimale autorisée est 1024x768" -#: ../../include/functions_visual_map_editor.php:1463 -#: ../../include/functions_visual_map_editor.php:1531 +#: ../../include/functions_visual_map_editor.php:1521 +#: ../../include/functions_visual_map_editor.php:1589 msgid "No custom graph defined." msgstr "Aucun graphique personnalisé défini." -#: ../../include/functions_visual_map_editor.php:1467 +#: ../../include/functions_visual_map_editor.php:1525 msgid "No image or name defined." msgstr "Aucune image ou nom définis" -#: ../../include/functions_visual_map_editor.php:1471 +#: ../../include/functions_visual_map_editor.php:1529 msgid "No label defined." msgstr "Aucune étiquette définie" -#: ../../include/functions_visual_map_editor.php:1475 +#: ../../include/functions_visual_map_editor.php:1533 msgid "No service defined." msgstr "Aucun service défini." -#: ../../include/functions_visual_map_editor.php:1479 +#: ../../include/functions_visual_map_editor.php:1537 msgid "No image defined." msgstr "Aucune image définie" -#: ../../include/functions_visual_map_editor.php:1483 +#: ../../include/functions_visual_map_editor.php:1541 msgid "No process defined." msgstr "Aucun processus défini" -#: ../../include/functions_visual_map_editor.php:1487 +#: ../../include/functions_visual_map_editor.php:1545 msgid "No Max value defined." msgstr "Aucune valeur max. définie" -#: ../../include/functions_visual_map_editor.php:1491 +#: ../../include/functions_visual_map_editor.php:1549 msgid "No width defined." msgstr "Aucune largeur définie" -#: ../../include/functions_visual_map_editor.php:1495 +#: ../../include/functions_visual_map_editor.php:1553 msgid "No height defined." msgstr "Aucune hauteur définie" -#: ../../include/functions_visual_map_editor.php:1499 +#: ../../include/functions_visual_map_editor.php:1557 msgid "The width must not exceed the size of the visual console container." msgstr "" "La largeur ne doit pas dépasser la taille du conteneur de la console visuelle." -#: ../../include/functions_visual_map_editor.php:1503 +#: ../../include/functions_visual_map_editor.php:1561 msgid "The height must not exceed the size of the visual console container." msgstr "" "La hauteur ne doit pas dépasser la taille du conteneur de la console visuelle." -#: ../../include/functions_visual_map_editor.php:1507 +#: ../../include/functions_visual_map_editor.php:1565 msgid "No period defined." msgstr "Aucune période définie" -#: ../../include/functions_visual_map_editor.php:1511 +#: ../../include/functions_visual_map_editor.php:1569 msgid "No agent defined." msgstr "Aucun agent défini" -#: ../../include/functions_visual_map_editor.php:1515 +#: ../../include/functions_visual_map_editor.php:1573 msgid "No module defined." msgstr "Aucun module défini" -#: ../../include/functions_visual_map_editor.php:1519 +#: ../../include/functions_visual_map_editor.php:1577 msgid "No module defined. This module must be string type." msgstr "Aucun module défini. Ce module doit être de type chaîne." -#: ../../include/functions_visual_map_editor.php:1523 +#: ../../include/functions_visual_map_editor.php:1581 msgid "Successfully save the changes." msgstr "Modifications enregistrées correctement" -#: ../../include/functions_visual_map_editor.php:1527 +#: ../../include/functions_visual_map_editor.php:1585 msgid "Could not be save." msgstr "Impossible de sauvegarder." @@ -43518,100 +43874,96 @@ msgid "Selected" msgstr "Sélectionnés" #: ../../include/graphs/functions_gd.php:183 -#: ../../include/graphs/functions_gd.php:466 -#: ../../include/functions_graph.php:2774 ../../include/functions_graph.php:2822 +#: ../../include/graphs/functions_gd.php:470 +#: ../../include/functions_graph.php:2784 ../../include/functions_graph.php:2832 msgid "Out of limits" msgstr "Hors limites" -#: ../../include/graphs/functions_flot.php:370 +#: ../../include/graphs/functions_flot.php:371 msgid "Cancel zoom" msgstr "Annuler zoom" -#: ../../include/graphs/functions_flot.php:372 +#: ../../include/graphs/functions_flot.php:373 msgid "Warning and Critical thresholds" msgstr "Seuils d'état d'alerte et critique" -#: ../../include/graphs/functions_flot.php:377 +#: ../../include/graphs/functions_flot.php:378 msgid "Overview graph" msgstr "Aperçu du graphique" -#: ../../include/graphs/functions_flot.php:514 -#: ../../include/functions_reporting_html.php:663 -#: ../../include/functions_reporting_html.php:4681 -#: ../../include/ajax/events.php:1304 ../../include/functions_graph.php:4822 -#: ../../include/functions_treeview.php:299 -msgid "No data" -msgstr "Aucune donnée" - -#: ../../include/functions_servers.php:582 +#: ../../include/functions_servers.php:590 msgid "SNMP Trap server" msgstr "Serveur de déroutements SNMP" -#: ../../include/functions_servers.php:699 +#: ../../include/functions_servers.php:707 msgid "Correlation server" msgstr "Serveur de corrélation" -#: ../../include/functions_servers.php:712 -#: ../../include/functions_servers.php:1230 +#: ../../include/functions_servers.php:720 +#: ../../include/functions_servers.php:1253 msgid "Enterprise ICMP server" msgstr "Serveur ICMP Enterprise" -#: ../../include/functions_servers.php:725 -#: ../../include/functions_servers.php:1233 +#: ../../include/functions_servers.php:733 +#: ../../include/functions_servers.php:1256 msgid "Enterprise SNMP server" msgstr "Serveur SNMP Enterprise" -#: ../../include/functions_servers.php:738 +#: ../../include/functions_servers.php:746 #: ../../include/class/AgentWizard.class.php:1353 msgid "Enterprise Satellite server" msgstr "Serveur Satellite Enterprise" -#: ../../include/functions_servers.php:751 +#: ../../include/functions_servers.php:759 msgid "Enterprise Transactional server" msgstr "Serveur de Transaction Enterprise" -#: ../../include/functions_servers.php:764 +#: ../../include/functions_servers.php:772 msgid "Mainframe server" msgstr "Serveur central" -#: ../../include/functions_servers.php:777 +#: ../../include/functions_servers.php:785 msgid "Sync server" msgstr "Serveur sync" -#: ../../include/functions_servers.php:790 +#: ../../include/functions_servers.php:798 msgid "Wux server" msgstr "Serveur WUX" -#: ../../include/functions_servers.php:803 -#: ../../include/functions_servers.php:1260 +#: ../../include/functions_servers.php:811 +#: ../../include/functions_servers.php:1283 msgid "Log server" msgstr "Serveur de journaux" -#: ../../include/functions_servers.php:829 +#: ../../include/functions_servers.php:837 msgid "Autoprovision server" msgstr "Serveur de provisionnement automatique" -#: ../../include/functions_servers.php:842 +#: ../../include/functions_servers.php:850 msgid "Migration server" msgstr "Serveur de migration" -#: ../../include/functions_servers.php:1239 +#: ../../include/functions_servers.php:876 +msgid "Netflow server" +msgstr "Serveur Netflow" + +#: ../../include/functions_servers.php:1262 msgid "Prediction Server" msgstr "Serveur de prédiction" -#: ../../include/functions_servers.php:1266 +#: ../../include/functions_servers.php:1289 #: ../../operation/agentes/estado_generalagente.php:329 msgid "Satellite server" msgstr "Serveur Satellite" #: ../../include/functions_reporting_html.php:87 -#: ../../include/functions_reporting_html.php:5823 +#: ../../include/functions_reporting_html.php:5851 #: ../../include/ajax/alert_list.ajax.php:592 msgid "From:" msgstr "De :" #: ../../include/functions_reporting_html.php:87 -#: ../../include/functions_reporting_html.php:5823 +#: ../../include/functions_reporting_html.php:5851 #: ../../include/ajax/alert_list.ajax.php:606 msgid "To:" msgstr "À :" @@ -43638,31 +43990,31 @@ msgid "Downtime" msgstr "Temps d'arrêt" #: ../../include/functions_reporting_html.php:1003 -#: ../../include/functions_reporting_html.php:2514 -#: ../../include/functions_reporting_html.php:4563 -#: ../../include/functions_reporting_html.php:5102 +#: ../../include/functions_reporting_html.php:2535 +#: ../../include/functions_reporting_html.php:4591 +#: ../../include/functions_reporting_html.php:5130 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367 msgid "Min Value" msgstr "Valeur minimale" #: ../../include/functions_reporting_html.php:1004 -#: ../../include/functions_reporting_html.php:2515 -#: ../../include/functions_reporting_html.php:4564 -#: ../../include/functions_reporting_html.php:5103 +#: ../../include/functions_reporting_html.php:2536 +#: ../../include/functions_reporting_html.php:4592 +#: ../../include/functions_reporting_html.php:5131 msgid "Average Value" msgstr "Valeur moyenne" #: ../../include/functions_reporting_html.php:1005 -#: ../../include/functions_reporting_html.php:2516 -#: ../../include/functions_reporting_html.php:4561 -#: ../../include/functions_reporting_html.php:5105 +#: ../../include/functions_reporting_html.php:2537 +#: ../../include/functions_reporting_html.php:4589 +#: ../../include/functions_reporting_html.php:5133 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 msgid "Max Value" msgstr "Valeur maximale" #: ../../include/functions_reporting_html.php:1061 #: ../../include/functions_reporting_html.php:1069 -#: ../../include/functions_reporting_html.php:2645 +#: ../../include/functions_reporting_html.php:2664 msgid "Val. by" msgstr "Valeur par" @@ -43672,190 +44024,195 @@ msgid "%s System" msgstr "Système %s" #: ../../include/functions_reporting_html.php:1221 -#: ../../include/functions_reporting_html.php:1436 +#: ../../include/functions_reporting_html.php:1445 msgid "Events by user validator" msgstr "Événements par utilisateur validateur" #: ../../include/functions_reporting_html.php:1238 -#: ../../include/functions_reporting_html.php:1453 +#: ../../include/functions_reporting_html.php:1462 msgid "Events by Severity" msgstr "Événements par sévérité" #: ../../include/functions_reporting_html.php:1255 -#: ../../include/functions_reporting_html.php:1470 +#: ../../include/functions_reporting_html.php:1479 msgid "Events validated vs unvalidated" msgstr "Événements validés vs non validés" -#: ../../include/functions_reporting_html.php:1612 +#: ../../include/functions_reporting_html.php:1621 msgid "Sec. groups" msgstr "Groupes secondaires" -#: ../../include/functions_reporting_html.php:1632 +#: ../../include/functions_reporting_html.php:1641 msgid "Remote conf." msgstr "Configuration à distance" -#: ../../include/functions_reporting_html.php:1919 -#: ../../include/functions_inventory.php:1068 -#: ../../include/functions_inventory.php:1131 +#: ../../include/functions_reporting_html.php:1928 +#: ../../include/functions_inventory.php:1178 +#: ../../include/functions_inventory.php:1241 msgid "Added" msgstr "Ajouté" -#: ../../include/functions_reporting_html.php:1930 -#: ../../include/functions_inventory.php:1074 -#: ../../include/functions_inventory.php:1139 +#: ../../include/functions_reporting_html.php:1939 +#: ../../include/functions_inventory.php:1184 +#: ../../include/functions_inventory.php:1249 #: ../../include/functions_filemanager.php:343 #: ../../include/functions_filemanager.php:360 msgid "Deleted" msgstr "Supprimé" -#: ../../include/functions_reporting_html.php:2287 +#: ../../include/functions_reporting_html.php:2308 msgid "Cell turns grey when the module is in 'not initialize' status" msgstr "" "La cellule devient grise lorsque le module se trouve dans un état « non " "initialisé »." -#: ../../include/functions_reporting_html.php:2580 -#: ../../include/functions_reporting_html.php:5691 +#: ../../include/functions_reporting_html.php:2601 +#: ../../include/functions_reporting_html.php:5719 msgid "Monitors" msgstr "Moniteurs" -#: ../../include/functions_reporting_html.php:2599 +#: ../../include/functions_reporting_html.php:2620 msgid "Events (not validated)" msgstr "Evénements (non validés)" -#: ../../include/functions_reporting_html.php:2755 +#: ../../include/functions_reporting_html.php:2783 msgid "Events validated by user" msgstr "Événements validés par l'utilisateur" -#: ../../include/functions_reporting_html.php:2772 -#: ../../include/functions_reporting_html.php:5980 +#: ../../include/functions_reporting_html.php:2800 +#: ../../include/functions_reporting_html.php:6008 msgid "Events by severity" msgstr "Événements par sévérité" -#: ../../include/functions_reporting_html.php:2789 +#: ../../include/functions_reporting_html.php:2817 msgid "Amount events validated" msgstr "Nombre d'événements validés" -#: ../../include/functions_reporting_html.php:3219 +#: ../../include/functions_reporting_html.php:3247 msgid "Total summary" msgstr "Résumé total" -#: ../../include/functions_reporting_html.php:3226 +#: ../../include/functions_reporting_html.php:3254 msgid "No alerts fired" msgstr "Aucune alerte déclenchée" -#: ../../include/functions_reporting_html.php:3326 +#: ../../include/functions_reporting_html.php:3354 #, php-format msgid "Interface '%s' throughput graph" msgstr "Interface « %s » graphique de rendement" -#: ../../include/functions_reporting_html.php:3330 +#: ../../include/functions_reporting_html.php:3358 msgid "Mac" msgstr "Mac" -#: ../../include/functions_reporting_html.php:3331 +#: ../../include/functions_reporting_html.php:3359 msgid "Actual status" msgstr "État actuel" -#: ../../include/functions_reporting_html.php:3702 -#: ../../include/functions_reporting_html.php:3704 +#: ../../include/functions_reporting_html.php:3730 +#: ../../include/functions_reporting_html.php:3732 msgid "Empty modules" msgstr "Modules vides" -#: ../../include/functions_reporting_html.php:4175 +#: ../../include/functions_reporting_html.php:4203 msgid "Time Not Init Module" msgstr "Temps dans le module non initialisé" -#: ../../include/functions_reporting_html.php:4186 +#: ../../include/functions_reporting_html.php:4214 msgid "% Ok" msgstr "% OK" -#: ../../include/functions_reporting_html.php:4263 +#: ../../include/functions_reporting_html.php:4291 msgid "Checks Uknown" msgstr "Vérifications inconnues" -#: ../../include/functions_reporting_html.php:4302 -#: ../../include/functions_reporting_html.php:4449 -#: ../../include/functions_reporting_html.php:4776 -#: ../../include/functions_reporting_html.php:4782 +#: ../../include/functions_reporting_html.php:4330 +#: ../../include/functions_reporting_html.php:4477 +#: ../../include/functions_reporting_html.php:4804 +#: ../../include/functions_reporting_html.php:4810 msgid "Primary" msgstr "Primaire" -#: ../../include/functions_reporting_html.php:5217 -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:12115 +#: ../../include/functions_reporting_html.php:5245 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12124 +#: ../../include/functions_reporting.php:12169 msgid "Alert level" msgstr "Niveau d'alerte" -#: ../../include/functions_reporting_html.php:5465 +#: ../../include/functions_reporting_html.php:5493 #, php-format msgid "Agents in group: %s" msgstr "Agents du groupe : %s" -#: ../../include/functions_reporting_html.php:5567 +#: ../../include/functions_reporting_html.php:5595 msgid "Last failure" msgstr "Dernier échec" -#: ../../include/functions_reporting_html.php:5657 +#: ../../include/functions_reporting_html.php:5685 msgid "N/A(*)" msgstr "S/O(*)" -#: ../../include/functions_reporting_html.php:5905 -#: ../../include/functions_reporting.php:12322 -#: ../../include/functions_groups.php:2650 +#: ../../include/functions_reporting_html.php:5933 +#: ../../include/functions_reporting.php:12395 +#: ../../include/functions_groups.php:2675 msgid "Monitor checks" msgstr "Vérifications de moniteurs" -#: ../../include/functions_reporting_html.php:5912 -#: ../../include/functions_reporting.php:12341 -#: ../../include/functions_groups.php:2669 +#: ../../include/functions_reporting_html.php:5940 +#: ../../include/functions_reporting.php:12414 +#: ../../include/functions_groups.php:2694 msgid "Total agents and monitors" msgstr "Nombre total d'agents et de moniteurs" -#: ../../include/functions_reporting_html.php:5931 -#: ../../include/functions_reporting_html.php:5936 +#: ../../include/functions_reporting_html.php:5959 +#: ../../include/functions_reporting_html.php:5964 msgid "Node overview" msgstr "Aperçu des nœuds" -#: ../../include/functions_reporting_html.php:5956 -#: ../../include/functions_reporting_html.php:5968 +#: ../../include/functions_reporting_html.php:5984 +#: ../../include/functions_reporting_html.php:5996 msgid "Critical events" msgstr "Événements en état critique" -#: ../../include/functions_reporting_html.php:5959 -#: ../../include/functions_reporting_html.php:5970 +#: ../../include/functions_reporting_html.php:5987 +#: ../../include/functions_reporting_html.php:5998 msgid "Warning events" msgstr "Événements en état d'alerte" -#: ../../include/functions_reporting_html.php:5962 -#: ../../include/functions_reporting_html.php:5972 +#: ../../include/functions_reporting_html.php:5990 +#: ../../include/functions_reporting_html.php:6000 msgid "OK events" msgstr "Événements en état OK" -#: ../../include/functions_reporting_html.php:5965 -#: ../../include/functions_reporting_html.php:5974 +#: ../../include/functions_reporting_html.php:5993 +#: ../../include/functions_reporting_html.php:6002 msgid "Unknown events" msgstr "Événements en état inconnu" -#: ../../include/functions_reporting_html.php:5990 +#: ../../include/functions_reporting_html.php:6019 +msgid "Event count corresponds to events within the last hour" +msgstr "Le compte correspond aux événements dans la dérnière heure" + +#: ../../include/functions_reporting_html.php:6024 msgid "Important Events by Criticity" msgstr "Événements importants par sévérité" -#: ../../include/functions_reporting_html.php:6017 +#: ../../include/functions_reporting_html.php:6051 #, php-format msgid "Last activity in %s console" msgstr "Dernière activité dans la console %s" -#: ../../include/functions_reporting_html.php:6066 -#: ../../include/functions_reporting_html.php:6208 +#: ../../include/functions_reporting_html.php:6100 +#: ../../include/functions_reporting_html.php:6242 msgid "Events info (1hr.)" msgstr "Information des événements (1h)" -#: ../../include/functions_reporting_html.php:6365 +#: ../../include/functions_reporting_html.php:6399 msgid "This SLA has been affected by the following scheduled downtimes" msgstr "Ce SLA a été affecté par les temps d'arrêt planifiés suivants" -#: ../../include/functions_reporting_html.php:6366 +#: ../../include/functions_reporting_html.php:6400 msgid "" "If the duration of the scheduled downtime is less than 5 minutes it will not " "be represented in the graph" @@ -43863,16 +44220,16 @@ msgstr "" "Si la durée du temps d'arrêt programmé est inférieure à 5 minutes, il ne sera " "pas représenté dans le graphique" -#: ../../include/functions_reporting_html.php:6373 +#: ../../include/functions_reporting_html.php:6407 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:396 msgid "Dates" msgstr "Dates" -#: ../../include/functions_reporting_html.php:6404 +#: ../../include/functions_reporting_html.php:6438 msgid "This item is affected by a malformed scheduled downtime" msgstr "Cet élément est affecté par un temps d'arrêt programmé mal formé" -#: ../../include/functions_reporting_html.php:6404 +#: ../../include/functions_reporting_html.php:6438 msgid "Go to the scheduled downtimes section to solve this" msgstr "" "Accédez à la section des temps d'arrêt programmés pour résoudre ce problème" @@ -43891,7 +44248,7 @@ msgstr "M" #: ../../include/functions.php:501 ../../include/functions.php:653 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:259 -#: ../../include/rest-api/models/VisualConsole/Item.php:2037 +#: ../../include/rest-api/models/VisualConsole/Item.php:2040 msgid "Y" msgstr "Y" @@ -43908,47 +44265,47 @@ msgid "N" msgstr "N" #: ../../include/functions.php:1079 ../../include/functions.php:1325 -#: ../../include/functions.php:1359 ../../include/functions_graph.php:3317 -#: ../../include/functions_graph.php:3319 ../../include/functions_graph.php:4834 +#: ../../include/functions.php:1359 ../../include/functions_graph.php:3327 +#: ../../include/functions_graph.php:3329 ../../include/functions_graph.php:4844 #: ../../include/functions_incidents.php:34 #: ../../include/functions_incidents.php:75 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:547 -#: ../../include/functions_events.php:3210 -#: ../../operation/visual_console/view.php:451 +#: ../../include/functions_events.php:3215 +#: ../../operation/visual_console/view.php:453 msgid "Maintenance" msgstr "Entretien" #: ../../include/functions.php:1083 ../../include/functions.php:1326 -#: ../../include/functions.php:1363 ../../include/functions_graph.php:3323 -#: ../../include/functions_graph.php:3325 ../../include/functions_graph.php:4838 +#: ../../include/functions.php:1363 ../../include/functions_graph.php:3333 +#: ../../include/functions_graph.php:3335 ../../include/functions_graph.php:4848 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:552 -#: ../../include/functions_events.php:3214 +#: ../../include/functions_events.php:3219 msgid "Informational" msgstr "Informatif" #: ../../include/functions.php:1099 ../../include/functions.php:1328 -#: ../../include/functions.php:1379 ../../include/functions_graph.php:3335 -#: ../../include/functions_graph.php:3337 ../../include/functions_graph.php:4854 +#: ../../include/functions.php:1379 ../../include/functions_graph.php:3345 +#: ../../include/functions_graph.php:3347 ../../include/functions_graph.php:4864 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:572 msgid "Minor" msgstr "Mineur" #: ../../include/functions.php:1103 ../../include/functions.php:1330 -#: ../../include/functions.php:1383 ../../include/functions_graph.php:3347 -#: ../../include/functions_graph.php:3349 ../../include/functions_graph.php:4858 +#: ../../include/functions.php:1383 ../../include/functions_graph.php:3357 +#: ../../include/functions_graph.php:3359 ../../include/functions_graph.php:4868 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:577 msgid "Major" msgstr "Majeure" -#: ../../include/functions.php:1278 ../../include/functions_events.php:3130 +#: ../../include/functions.php:1278 ../../include/functions_events.php:3135 msgid "Monitor Critical" msgstr "Moniteur en état critique" -#: ../../include/functions.php:1279 ../../include/functions_events.php:3134 +#: ../../include/functions.php:1279 ../../include/functions_events.php:3139 msgid "Monitor Warning" msgstr "Moniteur en état d'alerte" -#: ../../include/functions.php:1280 ../../include/functions_events.php:3138 +#: ../../include/functions.php:1280 ../../include/functions_events.php:3143 msgid "Monitor Normal" msgstr "Moniteur en état normal" @@ -43956,17 +44313,17 @@ msgstr "Moniteur en état normal" msgid "Monitor Unknown" msgstr "Moniteur inconnu" -#: ../../include/functions.php:1285 ../../include/functions_events.php:2914 -#: ../../include/functions_events.php:3146 +#: ../../include/functions.php:1285 ../../include/functions_events.php:2919 +#: ../../include/functions_events.php:3151 msgid "Alert recovered" msgstr "Alertes récupérées" -#: ../../include/functions.php:1286 ../../include/functions_events.php:2962 -#: ../../include/functions_events.php:3150 +#: ../../include/functions.php:1286 ../../include/functions_events.php:2967 +#: ../../include/functions_events.php:3155 msgid "Alert ceased" msgstr "Alerte arrêtée" -#: ../../include/functions.php:1287 ../../include/functions_events.php:3154 +#: ../../include/functions.php:1287 ../../include/functions_events.php:3159 msgid "Alert manual validation" msgstr "Validation manuelle de la alerte" @@ -43974,12 +44331,12 @@ msgstr "Validation manuelle de la alerte" msgid "Agent created" msgstr "Agent créé" -#: ../../include/functions.php:1290 ../../include/functions_events.php:3158 +#: ../../include/functions.php:1290 ../../include/functions_events.php:3163 msgid "Recon host detected" msgstr "Hôte de reconnaissance détecté" -#: ../../include/functions.php:1293 ../../include/functions_events.php:2958 -#: ../../include/functions_events.php:3170 +#: ../../include/functions.php:1293 ../../include/functions_events.php:2963 +#: ../../include/functions_events.php:3175 msgid "Configuration change" msgstr "Modification de la configuration" @@ -43989,9 +44346,9 @@ msgstr "ALETE DÉCLENCHÉE" #: ../../include/functions.php:1413 ../../include/functions.php:1450 #: ../../include/functions_modules.php:4263 -#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:598 -#: ../../operation/agentes/status_monitor.php:1868 -#: ../../operation/agentes/status_monitor.php:1881 +#: ../../include/class/Tree.class.php:678 ../../include/lib/Module.php:598 +#: ../../operation/agentes/status_monitor.php:1870 +#: ../../operation/agentes/status_monitor.php:1883 msgid "NO DATA" msgstr "PAS DE DONNÉES" @@ -44086,7 +44443,7 @@ msgid "2 minutes" msgstr "2 minutes" #: ../../include/functions.php:3420 ../../include/ajax/heatmap.ajax.php:55 -#: ../../include/ajax/module.php:219 ../../operation/heatmap.php:181 +#: ../../include/ajax/module.php:242 ../../operation/heatmap.php:181 #: ../../operation/gis_maps/render_view.php:155 msgid "5 minutes" msgstr "5 minutes" @@ -44095,49 +44452,54 @@ msgstr "5 minutes" msgid "15 minutes" msgstr "15 minutes" -#: ../../include/functions.php:3422 ../../include/ajax/module.php:220 +#: ../../include/functions.php:3422 ../../include/ajax/module.php:243 msgid "30 minutes" msgstr "30 minutes" -#: ../../include/functions.php:3949 +#: ../../include/functions.php:3975 msgid "Summatory series" msgstr "Série récapitulative" -#: ../../include/functions.php:3953 +#: ../../include/functions.php:3979 msgid "Average series" msgstr "Série moyenne" -#: ../../include/functions.php:3981 ../../include/functions.php:4000 -#: ../../include/functions.php:4014 ../../include/functions.php:4036 -#: ../../include/functions.php:4117 ../../include/functions.php:4194 +#: ../../include/functions.php:4007 ../../include/functions.php:4026 +#: ../../include/functions.php:4040 ../../include/functions.php:4062 +#: ../../include/functions.php:4143 ../../include/functions.php:4220 msgid "Unit " msgstr "Unité" -#: ../../include/functions.php:4062 ../../include/functions.php:4127 +#: ../../include/functions.php:4102 +#: ../../include/lib/Dashboard/Widgets/top_n.php:280 +msgid "Avg." +msgstr "Moyenne" + +#: ../../include/functions.php:4153 msgid "Min:" msgstr "Min :" -#: ../../include/functions.php:4069 ../../include/functions.php:4136 +#: ../../include/functions.php:4162 msgid "Max:" msgstr "Max :" -#: ../../include/functions.php:4076 ../../include/functions.php:4145 +#: ../../include/functions.php:4171 msgid "Avg:" msgstr "Moy :" -#: ../../include/functions.php:4191 ../../include/functions.php:4199 +#: ../../include/functions.php:4217 ../../include/functions.php:4225 msgid "of module" msgstr "du module" -#: ../../include/functions.php:4218 +#: ../../include/functions.php:4244 msgid "Projection" msgstr "Projection" -#: ../../include/functions.php:6064 +#: ../../include/functions.php:6094 msgid "Testing Pandora FMS email" msgstr "Tester l’email Pandora FMS" -#: ../../include/functions.php:6077 +#: ../../include/functions.php:6107 msgid "" "This is an email test sent from Pandora FMS. If you can read this, your " "configuration works." @@ -44145,7 +44507,7 @@ msgstr "" "Il s'agit d'un test par e-mail envoyé par Pandora FMS. Si vous pouvez lire " "ceci, votre configuration fonctionne." -#: ../../include/functions.php:6311 +#: ../../include/functions.php:6341 #: ../../include/class/ConsoleSupervisor.php:1645 #: ../../include/class/ConsoleSupervisor.php:1669 #: ../../include/class/ConsoleSupervisor.php:1698 @@ -44154,11 +44516,11 @@ msgstr "" msgid "Not recommended '%s' value in PHP configuration" msgstr "Valeur '%s' non recommandée dans la configuration PHP" -#: ../../include/functions.php:6312 +#: ../../include/functions.php:6342 msgid "Recommended value is: -1" msgstr "La valeur recommandée est : -1" -#: ../../include/functions.php:6313 +#: ../../include/functions.php:6343 #: ../../include/class/ConsoleSupervisor.php:1704 #: ../../include/class/ConsoleSupervisor.php:1785 msgid "" @@ -44168,7 +44530,7 @@ msgstr "" "Veuillez le modifier sur votre fichier de configuration PHP (php.ini) ou " "communiquez avec votre administrateur." -#: ../../include/functions.php:6314 ../../general/login_help_dialog.php:96 +#: ../../include/functions.php:6344 ../../general/login_help_dialog.php:96 #: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:41 msgid "Documentation" msgstr "Documentation" @@ -44303,9 +44665,9 @@ msgstr "" msgid "Successful delete of alert template." msgstr "Suppression réussie du modèle d'alerte." -#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12016 -#: ../../include/functions_api.php:12082 ../../include/functions_api.php:12363 -#: ../../include/functions_api.php:12443 +#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12019 +#: ../../include/functions_api.php:12085 ../../include/functions_api.php:12366 +#: ../../include/functions_api.php:12446 #, php-format msgid "%d agents affected" msgstr "%d agents concernés" @@ -44410,168 +44772,168 @@ msgstr "Module de politique SNMP mis à jour correctement" msgid "Successful deletion" msgstr "Suppression réussie" -#: ../../include/functions_api.php:9624 +#: ../../include/functions_api.php:9625 msgid "User created." msgstr "Utilisateur créé." -#: ../../include/functions_api.php:9717 +#: ../../include/functions_api.php:9720 msgid "User updated." msgstr "Utilisateur mis à jour." -#: ../../include/functions_api.php:9794 +#: ../../include/functions_api.php:9797 msgid "Enabled user." msgstr "Utilisateur activé" -#: ../../include/functions_api.php:9802 +#: ../../include/functions_api.php:9805 msgid "Disabled user." msgstr "Utilisateur désactivé" -#: ../../include/functions_api.php:10097 +#: ../../include/functions_api.php:10100 #, php-format msgid "Template have been inserted in %d agents." msgstr "Le modèle a été inséré dans %d agents." -#: ../../include/functions_api.php:10273 +#: ../../include/functions_api.php:10276 msgid "XML file was generated successfully in path: " msgstr "Le fichier XML a été généré correctement dans le chemin :" -#: ../../include/functions_api.php:10413 +#: ../../include/functions_api.php:10416 #, php-format msgid "Module has been created in %d agents." msgstr "Le module a été créé dans %d agents." -#: ../../include/functions_api.php:10541 +#: ../../include/functions_api.php:10544 #, php-format msgid "Action has been set for %d agents." msgstr "Une action a été définie pour %d agents." -#: ../../include/functions_api.php:11616 +#: ../../include/functions_api.php:11619 msgid "User deleted." msgstr "Utilisateur supprimé." -#: ../../include/functions_api.php:11675 +#: ../../include/functions_api.php:11678 msgid "User profile added." msgstr "Profil d’utilisateur ajouté." -#: ../../include/functions_api.php:11740 +#: ../../include/functions_api.php:11743 msgid "User profile deleted." msgstr "Profil d’utilisateur supprimé." -#: ../../include/functions_api.php:12023 +#: ../../include/functions_api.php:12026 msgid "Module disabled successfully." msgstr "Module désactivé correctement." -#: ../../include/functions_api.php:12025 +#: ../../include/functions_api.php:12028 msgid "The module could not be disabled." msgstr "Erreur de désactivation du module." -#: ../../include/functions_api.php:12089 +#: ../../include/functions_api.php:12092 msgid "Module enabled successfully." msgstr "Module activé correctement." -#: ../../include/functions_api.php:12091 +#: ../../include/functions_api.php:12094 msgid "The module could not be enabled." msgstr "Erreur d'activation du module." -#: ../../include/functions_api.php:12139 ../../include/functions_api.php:12192 +#: ../../include/functions_api.php:12142 ../../include/functions_api.php:12195 msgid "The alert could not be disabled." msgstr "Erreur de désactivation de l’alerte." -#: ../../include/functions_api.php:12239 ../../include/functions_api.php:12292 +#: ../../include/functions_api.php:12242 ../../include/functions_api.php:12295 msgid "The alert could not be enabled." msgstr "L'alerte n'a pas pu être activée." -#: ../../include/functions_api.php:13586 +#: ../../include/functions_api.php:13597 msgid "Enabled agent." msgstr "Agent activé" -#: ../../include/functions_api.php:13594 +#: ../../include/functions_api.php:13605 msgid "Disabled agent." msgstr "Agent désactivé" -#: ../../include/functions_api.php:14573 +#: ../../include/functions_api.php:14584 msgid "Metaconsole and the licenses of all nodes were updated." msgstr "La Metaconsole et les licences de tous les nœuds ont été mis à jour." -#: ../../include/functions_api.php:14575 +#: ../../include/functions_api.php:14586 #, php-format msgid "Metaconsole license updated but %d of %d node failed to sync." msgstr "" "La licence Metaconsole a été mise à jour mais %d sur %d nœud n'a pas réussi à " "se synchroniser." -#: ../../include/functions_api.php:14578 +#: ../../include/functions_api.php:14589 msgid "This function is for metaconsole only." msgstr "Cette fonction est réservée à la Métaconsole." -#: ../../include/functions_api.php:14968 ../../include/functions_api.php:15039 +#: ../../include/functions_api.php:14979 ../../include/functions_api.php:15050 msgid "Successfully deleted." msgstr "Supprimé correctement" -#: ../../include/functions_api.php:14998 +#: ../../include/functions_api.php:15009 msgid "The user cannot access the cluster." msgstr "L'utilisateur ne peut pas accéder au grappe." -#: ../../include/functions_api.php:15884 +#: ../../include/functions_api.php:15895 msgid "Event filter successfully created." msgstr "Filtre d'événement créé correctement." -#: ../../include/functions_api.php:16117 +#: ../../include/functions_api.php:16128 msgid "Event filter successfully updated." msgstr "Filtre d'événement mis à jour correctement." -#: ../../include/functions_api.php:16158 +#: ../../include/functions_api.php:16169 msgid "Event filter successfully deleted." msgstr "Filtre d'événement supprimé correctement." -#: ../../include/functions_api.php:16474 +#: ../../include/functions_api.php:16485 msgid "Validated traps." msgstr "Traps validés." -#: ../../include/functions_api.php:16501 +#: ../../include/functions_api.php:16512 msgid "Deleted traps." msgstr "Traps supprimés." -#: ../../include/functions_api.php:16694 +#: ../../include/functions_api.php:16705 #, php-format msgid "Successfully updated module/alert count in id agent %d." msgstr "" "Module/nombre d'alertes mis à jour correctement dans l'agent d'identification " "%d." -#: ../../include/functions_api.php:16696 +#: ../../include/functions_api.php:16707 msgid "Successfully updated module/alert count in all agents" msgstr "Nombre de modules/alertes mis à jour correctement dans tous les agents" -#: ../../include/functions_api.php:17170 +#: ../../include/functions_api.php:17181 #, php-format msgid "Successfully added to delete pending id agent %d to id policy %d." msgstr "" "Ajouté correctement pour supprimer l'agent d'ID en attente %d dans la " "stratégie d'ID %d." -#: ../../include/functions_api.php:17359 +#: ../../include/functions_api.php:17370 msgid "Error enable/disable discovery task. Id_user cannot be left blank." msgstr "" "Erreur d'activation/désactivation de la tâche de découverte. Id_user ne peut " "pas être laissé vide." -#: ../../include/functions_api.php:17367 +#: ../../include/functions_api.php:17378 msgid "" "Error enable/disable discovery task. Enable/disable value cannot be left blank." msgstr "" "Erreur d'activation/désactivation de la tâche de découverte. La valeur " "d'activation/désactivation ne peut pas être laissée vide." -#: ../../include/functions_api.php:17392 +#: ../../include/functions_api.php:17403 msgid "Error in discovery task enabling/disabling." msgstr "Erreur lors de l'activation/désactivation de la tâche de découverte." -#: ../../include/functions_api.php:17400 +#: ../../include/functions_api.php:17411 msgid "Enabled discovery task." msgstr "Tâche de découverte activée." -#: ../../include/functions_api.php:17408 +#: ../../include/functions_api.php:17419 msgid "Disabled discovery task." msgstr "Tâche de découverte désactivée." @@ -44705,25 +45067,39 @@ msgstr "Le code est valide, mais il y a une erreur de sauvegarde des données" msgid "3 minutes" msgstr "3 minutes" -#: ../../include/ajax/heatmap.ajax.php:81 +#: ../../include/ajax/heatmap.ajax.php:100 #: ../../include/lib/Dashboard/Widgets/heatmap.php:253 msgid "Group modules by tag" msgstr "Regrouper les modules par balise" -#: ../../include/ajax/heatmap.ajax.php:82 +#: ../../include/ajax/heatmap.ajax.php:101 #: ../../include/lib/Dashboard/Widgets/heatmap.php:254 msgid "Group modules by module group" msgstr "Regrouper les modules par groupe de modules" -#: ../../include/ajax/heatmap.ajax.php:83 +#: ../../include/ajax/heatmap.ajax.php:102 #: ../../include/lib/Dashboard/Widgets/heatmap.php:255 msgid "Group modules by agents" msgstr "Regrouper les modules par agents" -#: ../../include/ajax/heatmap.ajax.php:100 +#: ../../include/ajax/heatmap.ajax.php:123 msgid "Show groups" msgstr "Afficher les groupes" +#: ../../include/ajax/heatmap.ajax.php:356 +msgid "Date of last data" +msgstr "Date des dernières données" + +#: ../../include/ajax/heatmap.ajax.php:491 +#: ../../operation/agentes/estado_generalagente.php:406 +msgid "Out of bounds" +msgstr "Hors limites" + +#: ../../include/ajax/heatmap.ajax.php:494 +#: ../../operation/agentes/estado_generalagente.php:441 +msgid "Next contact" +msgstr "Contact suivant" + #: ../../include/ajax/alert_list.ajax.php:289 #: ../../include/ajax/alert_list.ajax.php:314 msgid "Force execution" @@ -44735,13 +45111,17 @@ msgid "F." msgstr "F." #: ../../include/ajax/alert_list.ajax.php:341 -#: ../../operation/agentes/alerts_status.php:372 -#: ../../operation/agentes/alerts_status.php:373 -#: ../../operation/agentes/alerts_status.php:414 -#: ../../operation/agentes/alerts_status.php:415 +#: ../../operation/agentes/alerts_status.php:374 +#: ../../operation/agentes/alerts_status.php:375 +#: ../../operation/agentes/alerts_status.php:416 +#: ../../operation/agentes/alerts_status.php:417 msgid "No alerts found" msgstr "Aucune alerte retrouvée" +#: ../../include/ajax/alert_list.ajax.php:540 +msgid "If a value of 0 is assigned, the Threshold of the action will be used." +msgstr "Si une valeur de 0 est attribuée, le seuil de l’action sera utilisé." + #: ../../include/ajax/alert_list.ajax.php:633 msgid "Insufficient permissions to validate alerts" msgstr "Autorisations insuffisantes pour valider les alertes" @@ -44772,32 +45152,32 @@ msgstr "Échec de la création de la politique" msgid "Policy created succesfully" msgstr "Politique créée correctement" -#: ../../include/ajax/module.php:228 ../../include/class/AuditLog.class.php:215 +#: ../../include/ajax/module.php:251 ../../include/class/AuditLog.class.php:215 msgid "3 months" msgstr "3 mois" -#: ../../include/ajax/module.php:231 +#: ../../include/ajax/module.php:254 msgid "2 years" msgstr "2 ans" -#: ../../include/ajax/module.php:232 +#: ../../include/ajax/module.php:255 msgid "3 years" msgstr "3 ans" -#: ../../include/ajax/module.php:243 ../../operation/agentes/datos_agente.php:194 +#: ../../include/ajax/module.php:266 ../../operation/agentes/datos_agente.php:196 msgid "Choose a time from now" msgstr "Choisir un temps à partir de maintenant" -#: ../../include/ajax/module.php:269 ../../operation/agentes/datos_agente.php:197 +#: ../../include/ajax/module.php:292 ../../operation/agentes/datos_agente.php:199 msgid "Specify time range" msgstr "Spécifier l'intervalle de temps" -#: ../../include/ajax/module.php:327 +#: ../../include/ajax/module.php:350 msgid "Exact phrase" msgstr "Phrase exacte" -#: ../../include/ajax/module.php:419 ../../operation/agentes/stat_win.php:485 -#: ../../operation/agentes/interface_traffic_graph_win.php:310 +#: ../../include/ajax/module.php:442 ../../operation/agentes/stat_win.php:501 +#: ../../operation/agentes/interface_traffic_graph_win.php:319 msgid "" "In Pandora FMS, data is stored compressed. The data visualization in database, " "charts or CSV exported data won't match, because is interpreted at runtime. " @@ -44808,15 +45188,11 @@ msgstr "" "ne correspondront pas, car elles sont interprétées au moment de l'exécution. " "Veuillez consulter le chapitre « Pandora FMS Ingénierie » de la documentation." -#: ../../include/ajax/module.php:586 -msgid "No available data to showaaaa" -msgstr "Aucune donnée disponible à montrer" - -#: ../../include/ajax/module.php:1000 +#: ../../include/ajax/module.php:1023 msgid "T" msgstr "T" -#: ../../include/ajax/module.php:1007 ../../include/functions_reports.php:650 +#: ../../include/ajax/module.php:1030 ../../include/functions_reports.php:650 #: ../../include/functions_reports.php:654 #: ../../include/functions_reports.php:659 #: ../../include/functions_reports.php:665 @@ -44827,41 +45203,41 @@ msgstr "T" #: ../../include/functions_reports.php:693 #: ../../include/functions_reports.php:698 ../../include/functions_groups.php:123 #: ../../include/functions_groups.php:187 ../../operation/search_results.php:120 -#: ../../operation/agentes/ver_agente.php:1578 -#: ../../operation/agentes/ver_agente.php:1881 +#: ../../operation/agentes/ver_agente.php:1574 +#: ../../operation/agentes/ver_agente.php:1877 msgid "Graphs" msgstr "Graphiques" -#: ../../include/ajax/module.php:1155 +#: ../../include/ajax/module.php:1182 msgid "Time elapsed since last status change: " msgstr "Temps écoulé depuis le dernier changement d’état : " -#: ../../include/ajax/module.php:1281 -#: ../../operation/agentes/estado_generalagente.php:411 +#: ../../include/ajax/module.php:1309 +#: ../../operation/agentes/estado_generalagente.php:382 msgid "Force checks" msgstr "Forcer les vérifications" -#: ../../include/ajax/module.php:1360 +#: ../../include/ajax/module.php:1388 msgid "Any monitors aren't with this filter." msgstr "Pas tous les moniteurs possèdent ce filtre" -#: ../../include/ajax/module.php:1360 +#: ../../include/ajax/module.php:1388 msgid "This agent doesn't have any active monitors." msgstr "Cet agent n'a pas de moniteurs actifs." -#: ../../include/ajax/module.php:2138 +#: ../../include/ajax/module.php:2167 msgid "Load" msgstr "Charger" -#: ../../include/ajax/module.php:2235 ../../include/ajax/agent.php:582 +#: ../../include/ajax/module.php:2264 ../../include/ajax/agent.php:582 msgid "Update/delete filter" msgstr "Mettre à jour/supprimer le filtre" -#: ../../include/ajax/module.php:2313 ../../include/ajax/agent.php:672 +#: ../../include/ajax/module.php:2342 ../../include/ajax/agent.php:672 msgid "Save current filter" msgstr "Sauvegarder le filtre actuel" -#: ../../include/ajax/module.php:2328 ../../include/ajax/agent.php:687 +#: ../../include/ajax/module.php:2357 ../../include/ajax/agent.php:687 #: ../../include/ajax/custom_fields.php:702 msgid "Delete filter" msgstr "Supprimer le filtre" @@ -44944,107 +45320,107 @@ msgstr "Erreur de suppression du filtre." msgid "Console successfully deleted" msgstr "Console supprimée correctement" -#: ../../include/ajax/events.php:98 +#: ../../include/ajax/events.php:99 msgid "Failed to retrieve comments" msgstr "Échec de la récupération des commentaires" -#: ../../include/ajax/events.php:897 +#: ../../include/ajax/events.php:898 msgid "Save/Update filters" msgstr "Sauvegarder/Mettre à jour les filtres" -#: ../../include/ajax/events.php:1287 +#: ../../include/ajax/events.php:1288 msgid "unauthorized" msgstr "non autorisée" -#: ../../include/ajax/events.php:1393 +#: ../../include/ajax/events.php:1394 msgid "Error executing response" msgstr "Erreur lors de l'exécution de la réponse" -#: ../../include/ajax/events.php:1746 +#: ../../include/ajax/events.php:1747 msgid "Related" msgstr "Associé" -#: ../../include/ajax/events.php:1758 +#: ../../include/ajax/events.php:1759 msgid "Agent fields" msgstr "Champs d'agent" -#: ../../include/ajax/events.php:1896 +#: ../../include/ajax/events.php:1897 msgid "Error adding comment" msgstr "Erreur d'ajout du commentaire" -#: ../../include/ajax/events.php:1903 +#: ../../include/ajax/events.php:1904 msgid "Comment added successfully" msgstr "Commentaire ajouté correctement" -#: ../../include/ajax/events.php:1910 +#: ../../include/ajax/events.php:1911 msgid "Error changing event status" msgstr "Erreur de modification de l'état de l'événement" -#: ../../include/ajax/events.php:1917 +#: ../../include/ajax/events.php:1918 msgid "Event status changed successfully" msgstr "État de l'événement modifié correctement" -#: ../../include/ajax/events.php:1924 +#: ../../include/ajax/events.php:1925 msgid "Error changing event owner" msgstr "Erreur de modification du propriétaire de l'événement" -#: ../../include/ajax/events.php:1931 +#: ../../include/ajax/events.php:1932 msgid "Event owner changed successfully" msgstr "Propriétaire de l'événement modifié correctement" -#: ../../include/ajax/events.php:1938 +#: ../../include/ajax/events.php:1939 msgid "Error deleting event" msgstr "Erreur de suppression de l'événement" -#: ../../include/ajax/events.php:2073 +#: ../../include/ajax/events.php:2074 msgid "Show all Events 24h" msgstr "Afficher tous les événements des dernières 24h" -#: ../../include/ajax/events.php:2170 +#: ../../include/ajax/events.php:2171 msgid "These commands will apply to all selected events" msgstr "Ces commandes s'appliqueront à tous les événements sélectionnés" -#: ../../include/ajax/events.php:2232 +#: ../../include/ajax/events.php:2233 msgid "Total number of events in this node reached" msgstr "Nombre total d’événements dans ce nœud atteint" -#: ../../include/ajax/events.php:2266 +#: ../../include/ajax/events.php:2267 msgid "Total Events per node" msgstr "Nombre total d’événements par nœud" -#: ../../include/ajax/events.php:2331 +#: ../../include/ajax/events.php:2332 ../../operation/events/sound_events.php:208 msgid "Console configuration" msgstr "Configuration de la console" -#: ../../include/ajax/events.php:2338 +#: ../../include/ajax/events.php:2339 ../../operation/events/sound_events.php:215 msgid "Set condition" msgstr "Définir la condition" -#: ../../include/ajax/events.php:2345 ../../operation/events/sound_events.php:192 +#: ../../include/ajax/events.php:2346 ../../operation/events/sound_events.php:222 msgid "All new events" msgstr "Tous les nouveaux événements" -#: ../../include/ajax/events.php:2382 +#: ../../include/ajax/events.php:2383 ../../operation/events/sound_events.php:259 msgid "Sound duration" msgstr "Durée du son" -#: ../../include/ajax/events.php:2418 +#: ../../include/ajax/events.php:2419 ../../operation/events/sound_events.php:295 msgid "Sound melody" msgstr "Mélodie sonore" -#: ../../include/ajax/events.php:2432 +#: ../../include/ajax/events.php:2433 ../../operation/events/sound_events.php:309 msgid "Test sound" msgstr "Tester mélodie" -#: ../../include/ajax/events.php:2456 +#: ../../include/ajax/events.php:2457 ../../operation/events/sound_events.php:333 msgid "Discovered alerts" msgstr "Alertes découvertes" -#: ../../include/ajax/events.php:2463 +#: ../../include/ajax/events.php:2464 ../../operation/events/sound_events.php:340 msgid "No alerts discovered" msgstr "Aucune alerte découverte" -#: ../../include/ajax/events.php:2468 +#: ../../include/ajax/events.php:2469 ../../operation/events/sound_events.php:345 msgid "Congrats! there’s nothing to show" msgstr "Félicitations! il n’y a rien à montrer" @@ -45066,28 +45442,28 @@ msgstr "Aucun moniteur" #: ../../include/functions_agents.php:3030 #: ../../include/functions_agents.php:3091 #: ../../include/functions_agents.php:3158 -#: ../../include/functions_reporting.php:13111 +#: ../../include/functions_reporting.php:13184 msgid "At least one module in CRITICAL status" msgstr "Au moins un module en état CRITIQUE" #: ../../include/functions_agents.php:3036 #: ../../include/functions_agents.php:3104 #: ../../include/functions_agents.php:3166 -#: ../../include/functions_reporting.php:13118 +#: ../../include/functions_reporting.php:13191 msgid "At least one module in WARNING status" msgstr "Au moins un module en état d'ALERTE" #: ../../include/functions_agents.php:3042 #: ../../include/functions_agents.php:3117 #: ../../include/functions_agents.php:3174 -#: ../../include/functions_reporting.php:13125 +#: ../../include/functions_reporting.php:13198 msgid "At least one module is in UKNOWN status" msgstr "Au moins un module en état INCONNU" #: ../../include/functions_agents.php:3048 #: ../../include/functions_agents.php:3130 #: ../../include/functions_agents.php:3182 -#: ../../include/functions_reporting.php:13132 +#: ../../include/functions_reporting.php:13205 msgid "All Monitors OK" msgstr "Tous les moniteurs OK" @@ -45099,12 +45475,12 @@ msgstr "Alerte déclenchée dans l’agent" msgid "Dialog response time" msgstr "Temps de réponse du dialogue" -#: ../../include/functions_inventory.php:115 -#: ../../include/functions_inventory.php:1051 +#: ../../include/functions_inventory.php:116 +#: ../../include/functions_inventory.php:1161 msgid "No changes found" msgstr "Aucun changement trouvé" -#: ../../include/functions_inventory.php:214 +#: ../../include/functions_inventory.php:215 msgid "Get CSV file" msgstr "Obtenir fichier CSV" @@ -45219,7 +45595,7 @@ msgstr "" msgid "Could not changes password on remote pandora" msgstr "Erreur de modification du mot de passe sur Pandora FMS à distance" -#: ../../include/auth/mysql.php:858 +#: ../../include/auth/mysql.php:886 msgid "Your installation of PHP does not support LDAP" msgstr "Votre installation de PHP ne prend pas en charge LDAP" @@ -45239,17 +45615,17 @@ msgstr "Utilisateur, groupe ou profil non spécifié" msgid "User, group or profile status not specified" msgstr "Utilisateur, groupe ou état du profil non spécifié" -#: ../../include/functions_graph.php:2607 +#: ../../include/functions_graph.php:2617 msgid "Not fired alerts" msgstr "Aucune alerte déclenchée" -#: ../../include/functions_graph.php:3235 ../../include/functions_graph.php:5490 -#: ../../include/functions_ui.php:4233 ../../include/functions_events.php:108 -#: ../../include/functions_events.php:2946 ../../operation/events/events.php:698 +#: ../../include/functions_graph.php:3245 ../../include/functions_graph.php:5500 +#: ../../include/functions_ui.php:4307 ../../include/functions_events.php:108 +#: ../../include/functions_events.php:2951 ../../operation/events/events.php:703 msgid "SYSTEM" msgstr "SYSTÈME" -#: ../../include/functions_graph.php:5237 +#: ../../include/functions_graph.php:5247 msgid "Main node" msgstr "Nœud principal" @@ -45270,240 +45646,264 @@ msgstr "Cliquez ici pour voir ce module" msgid "Module information" msgstr "Informations sur le module" -#: ../../include/functions_treeview.php:380 +#: ../../include/functions_treeview.php:329 +msgid "Go to module edition" +msgstr "Accéder à l'édition de modules" + +#: ../../include/functions_treeview.php:384 msgid "There was a problem loading alerts" msgstr "Erreur de chargement des alertes" -#: ../../include/functions_treeview.php:467 +#: ../../include/functions_treeview.php:471 msgid "Go to alerts edition" msgstr "Accéder à l'édition d'alertes" -#: ../../include/functions_treeview.php:559 +#: ../../include/functions_treeview.php:563 #: ../../operation/agentes/agent_fields.php:24 #: ../../operation/agentes/custom_fields.php:24 #: ../../operation/agentes/estado_generalagente.php:62 msgid "There was a problem loading agent" msgstr "Erreur de chargement de l'agent" -#: ../../include/functions_treeview.php:611 +#: ../../include/functions_treeview.php:615 msgid "Click here for view this agent" msgstr "Cliquez ici pour voir cet agent" -#: ../../include/functions_treeview.php:633 -#: ../../operation/agentes/estado_generalagente.php:588 +#: ../../include/functions_treeview.php:637 +#: ../../operation/agentes/estado_generalagente.php:557 msgid "Other IP addresses" msgstr "Autres adresses IP" -#: ../../include/functions_treeview.php:676 +#: ../../include/functions_treeview.php:680 msgid "Remote contact" msgstr "Contact à distance" -#: ../../include/functions_treeview.php:684 +#: ../../include/functions_treeview.php:688 msgid "Next agent contact" msgstr "Suivant contact avec l'agent" -#: ../../include/functions_treeview.php:697 +#: ../../include/functions_treeview.php:701 msgid "Agent information" msgstr "Informations sur l’agent" -#: ../../include/functions_treeview.php:744 +#: ../../include/functions_treeview.php:748 msgid "Agent access rate (24h)" msgstr "Accessibilité de l'agent (24h)" -#: ../../include/functions_treeview.php:800 +#: ../../include/functions_treeview.php:804 #: ../../operation/agentes/interface_view.functions.php:722 -#: ../../operation/agentes/pandora_networkmap.view.php:1303 -#: ../../operation/agentes/estado_generalagente.php:826 +#: ../../operation/agentes/pandora_networkmap.view.php:1304 +#: ../../operation/agentes/estado_generalagente.php:784 msgid "Interface traffic" msgstr "Trafic d'interface" -#: ../../include/functions_treeview.php:823 +#: ../../include/functions_treeview.php:827 msgid "Interface information" msgstr "Informations d'interface" -#: ../../include/functions_treeview.php:863 -#: ../../operation/agentes/estado_generalagente.php:549 +#: ../../include/functions_treeview.php:867 +#: ../../operation/agentes/estado_generalagente.php:524 msgid "Position (Long, Lat)" msgstr "Position (Long, Lat)" -#: ../../include/functions_treeview.php:872 -#: ../../operation/agentes/ver_agente.php:1552 -#: ../../operation/agentes/ver_agente.php:1889 -#: ../../operation/agentes/estado_generalagente.php:575 +#: ../../include/functions_treeview.php:876 +#: ../../operation/agentes/ver_agente.php:1548 +#: ../../operation/agentes/ver_agente.php:1885 +#: ../../operation/agentes/estado_generalagente.php:544 msgid "Url address" msgstr "Adresse URL" -#: ../../include/functions_treeview.php:886 -#: ../../operation/agentes/estado_generalagente.php:600 +#: ../../include/functions_treeview.php:890 +#: ../../operation/agentes/estado_generalagente.php:569 msgid "Timezone Offset" msgstr "Fuseau horaire désactivé" -#: ../../include/functions_treeview.php:917 +#: ../../include/functions_treeview.php:921 msgid "Advanced information" msgstr "Informations avancées" -#: ../../include/functions_menu.php:561 +#: ../../include/functions_treeview.php:940 +msgid "Go to cluster edition" +msgstr "Accéder à l’édition cluster" + +#: ../../include/functions_treeview.php:949 +msgid "Go to module creation" +msgstr "Accéder à la création des modules" + +#: ../../include/functions_treeview.php:958 +msgid "Go to agent edition" +msgstr "Accéder à l'édition de l'agent" + +#: ../../include/functions_menu.php:563 msgid "Configure user" msgstr "Configurer l'utilisateur" -#: ../../include/functions_menu.php:562 +#: ../../include/functions_menu.php:564 msgid "Configure profile" msgstr "Configurer le profil" -#: ../../include/functions_menu.php:564 +#: ../../include/functions_menu.php:566 msgid "Module templates management" msgstr "Gestion des modèles de module" -#: ../../include/functions_menu.php:565 +#: ../../include/functions_menu.php:567 msgid "Inventory modules management" msgstr "Gestion des modules d'inventaire" -#: ../../include/functions_menu.php:572 +#: ../../include/functions_menu.php:574 msgid "Builder visual console" msgstr "Outil de conception de la console visuelle" -#: ../../include/functions_menu.php:574 +#: ../../include/functions_menu.php:576 msgid "View reporting" msgstr "Afficher le rapport" -#: ../../include/functions_menu.php:575 +#: ../../include/functions_menu.php:577 msgid "Graph viewer" msgstr "Visualiseur de graphique" -#: ../../include/functions_menu.php:577 +#: ../../include/functions_menu.php:579 msgid "Manage custom graphs" msgstr "Gérer les graphiques personnalisés" -#: ../../include/functions_menu.php:578 +#: ../../include/functions_menu.php:580 msgid "View graph containers" msgstr "Afficher conteneurs de graphiques" -#: ../../include/functions_menu.php:579 +#: ../../include/functions_menu.php:581 msgid "Manage graph containers" msgstr "Gérer conteneurs de graphiques" -#: ../../include/functions_menu.php:580 +#: ../../include/functions_menu.php:582 msgid "View graph templates" msgstr "Afficher modèles de graphiques" -#: ../../include/functions_menu.php:581 +#: ../../include/functions_menu.php:583 msgid "Manage graph templates" msgstr "Gérer les modèles de graphiques" -#: ../../include/functions_menu.php:582 +#: ../../include/functions_menu.php:584 msgid "Graph template items" msgstr "Éléments du modèle de graphiques" -#: ../../include/functions_menu.php:583 +#: ../../include/functions_menu.php:585 msgid "Graph template wizard" msgstr "Assistant de modèles de graphiques" -#: ../../include/functions_menu.php:586 +#: ../../include/functions_menu.php:588 +msgid "New custom reports" +msgstr "Nouveaux rapports personnalisés" + +#: ../../include/functions_menu.php:589 msgid "Edit custom reports" msgstr "Modifier des rapports personnalisés" -#: ../../include/functions_menu.php:588 +#: ../../include/functions_menu.php:590 +msgid "Remove custom reports" +msgstr "Effacer les rapports personnalisés globales" + +#: ../../include/functions_menu.php:592 msgid "Edit item" msgstr "Modifier élément" -#: ../../include/functions_menu.php:590 +#: ../../include/functions_menu.php:594 msgid "Wizard sla" msgstr "SLA de l’assistant" -#: ../../include/functions_menu.php:591 +#: ../../include/functions_menu.php:595 msgid "Global custom reports" msgstr "Rapports personnalisés globales" -#: ../../include/functions_menu.php:592 +#: ../../include/functions_menu.php:596 msgid "Avanced options" msgstr "Options avancées" -#: ../../include/functions_menu.php:595 +#: ../../include/functions_menu.php:599 msgid "Manage GIS Maps" msgstr "Gérer cartes GIS" -#: ../../include/functions_menu.php:598 +#: ../../include/functions_menu.php:602 msgid "Manage messages" msgstr "Gérer les messages" -#: ../../include/functions_menu.php:600 +#: ../../include/functions_menu.php:604 msgid "Manage module groups" msgstr "Gérer les groupes de modules" -#: ../../include/functions_menu.php:601 +#: ../../include/functions_menu.php:605 msgid "Manage custom field" msgstr "Gérer champ personnalisé" -#: ../../include/functions_menu.php:603 +#: ../../include/functions_menu.php:607 msgid "Manage alert actions" msgstr "Gérer les actions d'alerte" -#: ../../include/functions_menu.php:604 +#: ../../include/functions_menu.php:608 msgid "Manage commands" msgstr "Gérer les commandes" -#: ../../include/functions_menu.php:606 +#: ../../include/functions_menu.php:610 msgid "Manage export targets" msgstr "Gérer les objectifs d'exportation" -#: ../../include/functions_menu.php:608 ../../operation/menu.php:254 +#: ../../include/functions_menu.php:612 ../../operation/menu.php:254 msgid "SNMP trap generator" msgstr "Générateur de déroutements SNMP" -#: ../../include/functions_menu.php:611 +#: ../../include/functions_menu.php:615 msgid "Manage incident" msgstr "Gérer l'incident" -#: ../../include/functions_menu.php:613 +#: ../../include/functions_menu.php:617 msgid "Manage groups" msgstr "Gérer les groupes" -#: ../../include/functions_menu.php:673 +#: ../../include/functions_menu.php:677 msgid "Administration" msgstr "Administration" -#: ../../include/functions_menu.php:936 ../../include/functions_ui.php:303 +#: ../../include/functions_menu.php:941 ../../include/functions_ui.php:303 msgid "Information" msgstr "Information" -#: ../../include/functions_menu.php:938 ../../include/functions_menu.php:1109 +#: ../../include/functions_menu.php:943 ../../include/functions_menu.php:1114 #: ../../include/class/Diagnostics.class.php:251 msgid "System Info" msgstr "Information du système" -#: ../../include/functions_menu.php:939 +#: ../../include/functions_menu.php:944 msgid "PHP System" msgstr "Système PHP" -#: ../../include/functions_menu.php:954 +#: ../../include/functions_menu.php:959 msgid "MR version" msgstr "Version MR" -#: ../../include/functions_menu.php:962 +#: ../../include/functions_menu.php:967 msgid "Update manager" msgstr "Gestionnaire de mises à jour" -#: ../../include/functions_menu.php:974 +#: ../../include/functions_menu.php:979 msgid "System report" msgstr "Rapport système" -#: ../../include/functions_menu.php:1006 +#: ../../include/functions_menu.php:1011 #: ../../include/class/Diagnostics.class.php:243 msgid "Database health status" msgstr "État de santé de la base de données" -#: ../../include/functions_menu.php:1036 +#: ../../include/functions_menu.php:1041 #: ../../include/class/Diagnostics.class.php:247 msgid "Database status info" msgstr "Information sur l'état de la base de données" -#: ../../include/functions_menu.php:1074 +#: ../../include/functions_menu.php:1079 #: ../../include/class/Diagnostics.class.php:260 #, php-format msgid "Tables fragmentation in the %s database" msgstr "Fragmentation des tables dans la base de données %s" -#: ../../include/functions_menu.php:1168 +#: ../../include/functions_menu.php:1173 msgid "PHP system" msgstr "Système PHP" @@ -45623,6 +46023,7 @@ msgstr "" "Maintenant, déroulez le menu « Gérer les alertes » et cliquez sur « Actions ». " #: ../../include/help/clippy/module_unknow.php:35 +#: ../../include/functions_clippy.php:321 msgid "You have unknown modules in this agent." msgstr "Vous avez des modules inconnus dans cet agent." @@ -46028,8 +46429,8 @@ msgid "Please check if the email configuration is correct." msgstr "Veuillez vérifier que la configuration du courriel est correcte." #: ../../include/functions_profile.php:188 -#: ../../operation/users/user_edit.php:972 -#: ../../operation/users/user_edit.php:981 +#: ../../operation/users/user_edit.php:969 +#: ../../operation/users/user_edit.php:978 msgid "Profiles/Groups assigned to this user" msgstr "Profils/Groupes assignés à cet utilisateur" @@ -46065,111 +46466,111 @@ msgstr "" "Il est possible que ce mode de visionnement utilise une partie de " "l'information dont votre utilisateur n'a pas accès." -#: ../../include/functions_ui.php:985 +#: ../../include/functions_ui.php:1017 msgid "Software" msgstr "Logiciel" -#: ../../include/functions_ui.php:1281 +#: ../../include/functions_ui.php:1318 msgid "Force check" msgstr "Forcer la vérification" -#: ../../include/functions_ui.php:1525 +#: ../../include/functions_ui.php:1568 msgid "The alert would fire when the value is over " msgstr "" "L'alerte sera déclenchée quand la valeur soit supérieure à " -#: ../../include/functions_ui.php:1530 +#: ../../include/functions_ui.php:1573 msgid "The alert would fire when the value is under " msgstr "" "L'alerte sera déclenchée quand la valeur soit inférieure à " -#: ../../include/functions_ui.php:1545 +#: ../../include/functions_ui.php:1588 msgid "Unknown option." msgstr "Option inconnue." -#: ../../include/functions_ui.php:1907 ../../include/functions_config.php:2666 +#: ../../include/functions_ui.php:1950 ../../include/functions_config.php:2686 msgid "the Flexible Monitoring System" msgstr "Système de surveillance flexible" -#: ../../include/functions_ui.php:2286 ../../include/functions_ui.php:2312 +#: ../../include/functions_ui.php:2329 ../../include/functions_ui.php:2355 #, php-format msgid "Total items: %s" msgstr "Nombre total d'éléments : %s" -#: ../../include/functions_ui.php:2341 +#: ../../include/functions_ui.php:2384 msgid "First" msgstr "Premier" -#: ../../include/functions_ui.php:2797 +#: ../../include/functions_ui.php:2840 msgid "Unknown type" msgstr "Type inconnu" -#: ../../include/functions_ui.php:3752 +#: ../../include/functions_ui.php:3800 msgid "No matching records found" msgstr "Aucun enregistrements correspondants trouvés" -#: ../../include/functions_ui.php:3753 +#: ../../include/functions_ui.php:3801 msgid "No data available in table" msgstr "Aucune donnée disponible dans le tableau" -#: ../../include/functions_ui.php:3994 ../../include/functions_ui.php:3995 +#: ../../include/functions_ui.php:4066 ../../include/functions_ui.php:4067 msgid "Export current page to CSV" msgstr "Exporter la page actuelle au format CSV" -#: ../../include/functions_ui.php:4224 ../../include/functions_events.php:75 -#: ../../include/functions_events.php:101 ../../operation/events/events.php:689 -#: ../../operation/events/events.php:753 +#: ../../include/functions_ui.php:4298 ../../include/functions_events.php:75 +#: ../../include/functions_events.php:101 ../../operation/events/events.php:694 +#: ../../operation/events/events.php:758 msgid "ALERT" msgstr "ALERTE" -#: ../../include/functions_ui.php:4312 ../../include/functions_events.php:167 -#: ../../operation/events/events.php:613 +#: ../../include/functions_ui.php:4386 ../../include/functions_events.php:167 +#: ../../operation/events/events.php:618 msgid "MAINTENANCE" msgstr "ENTRETIEN" -#: ../../include/functions_ui.php:4317 ../../include/functions_events.php:170 -#: ../../operation/events/events.php:618 +#: ../../include/functions_ui.php:4391 ../../include/functions_events.php:170 +#: ../../operation/events/events.php:623 msgid "INFORMATIONAL" msgstr "INFORMATIF" -#: ../../include/functions_ui.php:4337 ../../include/functions_events.php:176 -#: ../../operation/events/events.php:628 +#: ../../include/functions_ui.php:4411 ../../include/functions_events.php:176 +#: ../../operation/events/events.php:633 msgid "MINOR" msgstr "MINEUR" -#: ../../include/functions_ui.php:4342 ../../include/functions_events.php:173 -#: ../../operation/events/events.php:623 +#: ../../include/functions_ui.php:4416 ../../include/functions_events.php:173 +#: ../../operation/events/events.php:628 msgid "MAJOR" msgstr "MAJEUR" -#: ../../include/functions_ui.php:5168 ../../include/functions_html.php:962 -#: ../../include/functions_html.php:3659 ../../include/functions_html.php:4158 -#: ../../include/functions_reporting.php:12166 -#: ../../include/functions_reporting.php:12319 -#: ../../include/functions_reporting.php:12333 -#: ../../include/functions_reporting.php:14672 -#: ../../include/functions_reporting.php:14747 -#: ../../include/functions_groups.php:2647 -#: ../../include/functions_groups.php:2661 -#: ../../include/functions_groups.php:2711 +#: ../../include/functions_ui.php:5243 ../../include/functions_html.php:967 +#: ../../include/functions_html.php:3675 ../../include/functions_html.php:4174 +#: ../../include/functions_reporting.php:12239 +#: ../../include/functions_reporting.php:12392 +#: ../../include/functions_reporting.php:12406 +#: ../../include/functions_reporting.php:14745 +#: ../../include/functions_reporting.php:14820 +#: ../../include/functions_groups.php:2672 +#: ../../include/functions_groups.php:2686 +#: ../../include/functions_groups.php:2736 msgid "Enterprise version not installed" msgstr "Version Enterprise non installée" -#: ../../include/functions_ui.php:5563 +#: ../../include/functions_ui.php:5638 msgid "Type at least two characters to search." msgstr "Écrivez un minimum de deux caractères pour rechercher" -#: ../../include/functions_ui.php:6503 +#: ../../include/functions_ui.php:6578 msgid "Unhandled error" msgstr "Erreur non traitée" -#: ../../include/functions_ui.php:6504 +#: ../../include/functions_ui.php:6579 msgid "An unhandled error occurs" msgstr "Une erreur non gérée se produit" -#: ../../include/functions_ui.php:6775 +#: ../../include/functions_ui.php:6850 #, php-format msgid "" "These controls are using the timezone of the system (%s) instead of yours " @@ -46178,43 +46579,43 @@ msgstr "" "Ces contrôles utilisent le fuseau horaire du système (%s) au lieu du vôtre " "(%s). La différence avec votre fuseau horaire en heures est de %s." -#: ../../include/functions_ui.php:7127 +#: ../../include/functions_ui.php:7199 msgid "Results" msgstr "Résultats" -#: ../../include/functions_ui.php:7173 +#: ../../include/functions_ui.php:7245 msgid "Execute query" msgstr "Exécute la requête" -#: ../../include/functions_ui.php:7196 +#: ../../include/functions_ui.php:7266 msgid "Show password" msgstr "Afficher le mot de passe" -#: ../../include/functions_ui.php:7296 +#: ../../include/functions_ui.php:7366 msgid "WEB server" msgstr "Serveur web" -#: ../../include/functions_ui.php:7306 +#: ../../include/functions_ui.php:7376 msgid "Wizard Module" msgstr "Module assistant" -#: ../../include/functions_ui.php:7399 +#: ../../include/functions_ui.php:7469 msgid "Select inventory module" msgstr "Sélectionnez un module d'inventaire" -#: ../../include/functions_ui.php:7455 +#: ../../include/functions_ui.php:7532 msgid "Use custom fields" msgstr "utiliser les champs personnalisés." -#: ../../include/functions_ui.php:7581 +#: ../../include/functions_ui.php:7672 msgid "Field name" msgstr "Nom du champ" -#: ../../include/functions_ui.php:7598 +#: ../../include/functions_ui.php:7689 msgid "It's a password" msgstr "C'est un mot de passe" -#: ../../include/functions_ui.php:7606 +#: ../../include/functions_ui.php:7697 msgid "Add field" msgstr "Ajouter un champ" @@ -46233,21 +46634,21 @@ msgstr "Agent ajouté au layout correctement" msgid "Modules successfully added to layout" msgstr "Modules ajoutés au layout correctement" -#: ../../include/functions_visual_map.php:3108 +#: ../../include/functions_visual_map.php:3111 msgid "Agents successfully added to layout" msgstr "Agents ajoutés correctement" -#: ../../include/functions_visual_map.php:3504 +#: ../../include/functions_visual_map.php:3512 msgid "Cannot load the visualmap" msgstr "Erreur de chargement de la carte visuelle" -#: ../../include/functions_visual_map.php:4175 -#: ../../include/rest-api/models/VisualConsole/Item.php:2108 +#: ../../include/functions_visual_map.php:4184 +#: ../../include/rest-api/models/VisualConsole/Item.php:2111 msgid "Bars graph" msgstr "Graphique à barres" -#: ../../include/functions_visual_map.php:4185 -#: ../../include/rest-api/models/VisualConsole/Item.php:2116 +#: ../../include/functions_visual_map.php:4194 +#: ../../include/rest-api/models/VisualConsole/Item.php:2119 msgid "Percentile bar" msgstr "Barre de centile" @@ -46296,7 +46697,7 @@ msgstr "État pas normal" msgid "No actions defined" msgstr "Aucune action définie" -#: ../../include/functions_alerts.php:2665 +#: ../../include/functions_alerts.php:2666 msgid "Alert and command group does not match" msgstr "Le groupe d'alerte et de commande ne correspond pas" @@ -46426,24 +46827,24 @@ msgid "Current ranges" msgstr "Gammes actuelles" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 -#: ../../include/rest-api/models/VisualConsole/Item.php:1995 +#: ../../include/rest-api/models/VisualConsole/Item.php:1998 msgid "width" msgstr "largeur" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 -#: ../../include/rest-api/models/VisualConsole/Item.php:2005 +#: ../../include/rest-api/models/VisualConsole/Item.php:2008 msgid "height" msgstr "hauteur" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 -#: ../../include/rest-api/models/VisualConsole/Item.php:2027 +#: ../../include/rest-api/models/VisualConsole/Item.php:2030 msgid "X" msgstr "X" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:273 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:499 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950 -#: ../../include/rest-api/models/VisualConsole/Item.php:2064 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:954 +#: ../../include/rest-api/models/VisualConsole/Item.php:2067 msgid "Show on top" msgstr "Afficher en haut" @@ -46486,11 +46887,15 @@ msgstr "Couleur de la légende" msgid "Show legend" msgstr "Afficher la légende" +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:715 +msgid "Recursive" +msgstr "Récursif" + #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:621 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280 -#: ../../include/rest-api/models/VisualConsole/View.php:721 -#: ../../include/rest-api/models/VisualConsole/View.php:800 +#: ../../include/rest-api/models/VisualConsole/View.php:687 +#: ../../include/rest-api/models/VisualConsole/View.php:766 msgid "Failed to connect to node" msgstr "Échec de la connexion au nœud" @@ -46513,67 +46918,67 @@ msgstr "Paramètres généraux" msgid "Specific settings" msgstr "Paramètres spécifiques" -#: ../../include/rest-api/models/VisualConsole/View.php:221 +#: ../../include/rest-api/models/VisualConsole/View.php:183 msgid "Item type not valid [" msgstr "Type d’élément non valide [" -#: ../../include/rest-api/models/VisualConsole/View.php:226 +#: ../../include/rest-api/models/VisualConsole/View.php:188 msgid "Item type has no getFormInputs method [" msgstr "Le type d'élément n'a pas de méthode getFormInputs [" -#: ../../include/rest-api/models/VisualConsole/View.php:738 +#: ../../include/rest-api/models/VisualConsole/View.php:704 msgid "NetworkLink from" msgstr "NetworkLink de" -#: ../../include/rest-api/models/VisualConsole/View.php:742 -#: ../../include/rest-api/models/VisualConsole/View.php:821 +#: ../../include/rest-api/models/VisualConsole/View.php:708 +#: ../../include/rest-api/models/VisualConsole/View.php:787 #, php-format msgid "Interface %s status" msgstr "État de l'interface %s" -#: ../../include/rest-api/models/VisualConsole/View.php:747 -#: ../../include/rest-api/models/VisualConsole/View.php:826 +#: ../../include/rest-api/models/VisualConsole/View.php:713 +#: ../../include/rest-api/models/VisualConsole/View.php:792 #: ../../operation/agentes/interface_traffic_graph_win.php:78 msgid "In" msgstr "Dans" -#: ../../include/rest-api/models/VisualConsole/View.php:748 -#: ../../include/rest-api/models/VisualConsole/View.php:827 +#: ../../include/rest-api/models/VisualConsole/View.php:714 +#: ../../include/rest-api/models/VisualConsole/View.php:793 #: ../../operation/agentes/interface_traffic_graph_win.php:79 msgid "Out" msgstr "À l'extérieur de" -#: ../../include/rest-api/models/VisualConsole/View.php:817 +#: ../../include/rest-api/models/VisualConsole/View.php:783 msgid "NetworkLink to" msgstr "NetworkLink vers" -#: ../../include/rest-api/models/VisualConsole/View.php:869 +#: ../../include/rest-api/models/VisualConsole/View.php:835 #, php-format msgid "Failed to generate charts: %s" msgstr "Échec de la génération des graphiques : %s" -#: ../../include/rest-api/models/VisualConsole/Item.php:1965 +#: ../../include/rest-api/models/VisualConsole/Item.php:1968 msgid "Label position" msgstr "Position de l’étiquette" -#: ../../include/rest-api/models/VisualConsole/Item.php:2052 +#: ../../include/rest-api/models/VisualConsole/Item.php:2055 msgid "Link enabled" msgstr "Lien activé" -#: ../../include/rest-api/models/VisualConsole/Item.php:2094 +#: ../../include/rest-api/models/VisualConsole/Item.php:2097 msgid "Static graph" msgstr "Graphique statique" -#: ../../include/rest-api/models/VisualConsole/Item.php:2112 +#: ../../include/rest-api/models/VisualConsole/Item.php:2115 msgid "Event History Graph" msgstr "Graphique de l'historique des événements" -#: ../../include/rest-api/models/VisualConsole/Item.php:2120 +#: ../../include/rest-api/models/VisualConsole/Item.php:2123 msgid "Percentile bubble" msgstr "Bulle de centile" -#: ../../include/rest-api/models/VisualConsole/Item.php:2590 -#: ../../include/rest-api/models/VisualConsole/Item.php:2591 +#: ../../include/rest-api/models/VisualConsole/Item.php:2593 +#: ../../include/rest-api/models/VisualConsole/Item.php:2594 msgid "Image Vc" msgstr "Image Vc" @@ -46615,8 +47020,8 @@ msgstr "Cliquez ici pour obtenir plus d’information…" #: ../../include/functions_reports.php:651 #: ../../include/functions_reports.php:1102 -#: ../../include/functions_reporting.php:10729 -#: ../../include/functions_reporting.php:10889 +#: ../../include/functions_reporting.php:10738 +#: ../../include/functions_reporting.php:10898 msgid "Simple graph" msgstr "Graphique simple" @@ -46737,12 +47142,12 @@ msgid "Inventory changes" msgstr "Changements d'inventaire" #: ../../include/functions_reports.php:918 -#: ../../include/functions_reporting.php:6921 +#: ../../include/functions_reporting.php:6930 msgid "Agent configuration" msgstr "Configuration des agents" #: ../../include/functions_reports.php:922 -#: ../../include/functions_reporting.php:5230 +#: ../../include/functions_reporting.php:5239 msgid "Group configuration" msgstr "Configuration du groupe" @@ -46772,61 +47177,62 @@ msgstr "SQL" msgid "Graph Sql" msgstr "Graphe SQL" -#: ../../include/functions_html.php:622 ../../include/functions_html.php:1001 +#: ../../include/functions_html.php:622 ../../include/functions_html.php:1006 msgid "Please select an item from this list." msgstr "Veuillez sélectionner un élément dans cette liste." -#: ../../include/functions_html.php:648 ../../include/functions_html.php:6363 -msgid "Please select..." -msgstr "Veuillez sélectionner..." - -#: ../../include/functions_html.php:1622 +#: ../../include/functions_html.php:1630 msgid "Type to search agents" msgstr "Tapez pour rechercher des agents" -#: ../../include/functions_html.php:1636 +#: ../../include/functions_html.php:1644 msgid "Type to search modules" msgstr "Tapez pour rechercher des modules" -#: ../../include/functions_html.php:1704 +#: ../../include/functions_html.php:1713 msgid "Only common modules" msgstr "Seuls les modules communes" -#: ../../include/functions_html.php:2139 +#: ../../include/functions_html.php:2147 msgid "weeks" msgstr "semaines" -#: ../../include/functions_html.php:2321 +#: ../../include/functions_html.php:2336 msgid "Month day" msgstr "Jour du mois" -#: ../../include/functions_html.php:2323 +#: ../../include/functions_html.php:2338 msgid "Week day" msgstr "Jour de la semaine" -#: ../../include/functions_html.php:4800 +#: ../../include/functions_html.php:4824 msgid "Select a file" msgstr "Séléctionner un fichier" -#: ../../include/functions_html.php:5018 ../../include/functions_html.php:5020 +#: ../../include/functions_html.php:5042 ../../include/functions_html.php:5044 msgid "Type at least two characters to search the module." msgstr "Introduire au moins deux caractères pour rechercher le module." -#: ../../include/functions_html.php:5182 ../../index.php:533 ../../index.php:817 -#: ../../index.php:891 +#: ../../include/functions_html.php:5206 ../../index.php:533 ../../index.php:818 +#: ../../index.php:892 #, php-format msgid "%s cannot verify the origin of the request. Try again, please." msgstr "" "%s ne peut pas vérifier l'origine de requête. Veuillez essayer à nouveau." -#: ../../include/functions_html.php:6104 +#: ../../include/functions_html.php:6128 msgid "Type at least two characters to search the user." msgstr "Tapez au moins deux caractères pour rechercher l'utilisateur." -#: ../../include/functions_html.php:6507 +#: ../../include/functions_html.php:6535 msgid "Primary group cannot be secondary too." msgstr "Le groupe principal ne peut pas non plus être secondaire." +#: ../../include/functions_html.php:6937 ../../include/functions_html.php:6938 +#: ../../include/functions_html.php:6941 ../../include/functions_html.php:6942 +msgid "Go to top" +msgstr "Aller en haut" + #: ../../include/functions_register.php:105 #, php-format msgid "%s configuration wizard" @@ -46893,7 +47299,7 @@ msgstr "Utiliser le certificat" msgid "Integria inventory" msgstr "Inventaire d'Integria IMS" -#: ../../include/functions_config.php:252 ../../include/functions_config.php:1876 +#: ../../include/functions_config.php:252 ../../include/functions_config.php:1888 msgid "Integria API password" msgstr "Mot de passe de l'API d'Integria IMS" @@ -46941,481 +47347,489 @@ msgid "alias_as_name" msgstr "Alias comme nom" #: ../../include/functions_config.php:374 +msgid "keep_in_process_status_extra_id" +msgstr "keep_in_process_status_extra_id" + +#: ../../include/functions_config.php:378 msgid "Console log enabled" msgstr "Journal de la console activé" -#: ../../include/functions_config.php:378 +#: ../../include/functions_config.php:382 msgid "Audit log enabled" msgstr "Journal d'audit activé" -#: ../../include/functions_config.php:382 +#: ../../include/functions_config.php:386 msgid "Module Custom ID read only" msgstr "ID personnalisé du module en lecture seule" -#: ../../include/functions_config.php:446 +#: ../../include/functions_config.php:454 msgid "Replication DB host" msgstr "Hôte de BD de réplication" -#: ../../include/functions_config.php:450 +#: ../../include/functions_config.php:458 msgid "Replication DB database" msgstr "Nom de la BD de réplication" -#: ../../include/functions_config.php:454 +#: ../../include/functions_config.php:462 msgid "Replication DB user" msgstr "Utilisateur de BD de réplication" -#: ../../include/functions_config.php:458 +#: ../../include/functions_config.php:466 msgid "Replication DB password" msgstr "Mot de passe de BD de réplication" -#: ../../include/functions_config.php:462 +#: ../../include/functions_config.php:470 msgid "Replication DB port" msgstr "Port de BD de réplication" -#: ../../include/functions_config.php:466 +#: ../../include/functions_config.php:474 msgid "Metaconsole agent cache" msgstr "Cache de l'agent de la Métaconsole" -#: ../../include/functions_config.php:474 +#: ../../include/functions_config.php:482 msgid "Enable Update Manager" msgstr "Activer le Update Manager" -#: ../../include/functions_config.php:478 +#: ../../include/functions_config.php:486 msgid "Legacy database HA" msgstr "Base de données HA héritée" -#: ../../include/functions_config.php:482 +#: ../../include/functions_config.php:490 msgid "Ipam Ocuppied Manager Critical" msgstr "Ipam Occupé Manager Critique" -#: ../../include/functions_config.php:486 +#: ../../include/functions_config.php:494 msgid "Ipam Ocuppied Manager Warning" msgstr "Avertissement du gestionnaire occupé par Ipam" -#: ../../include/functions_config.php:583 +#: ../../include/functions_config.php:591 msgid "Automatically timezone visual" msgstr "Visuel de fuseau horaire automatique" -#: ../../include/functions_config.php:655 +#: ../../include/functions_config.php:611 +msgid "Recursive search" +msgstr "Recherche récursive" + +#: ../../include/functions_config.php:667 msgid "Ldap search timeout" msgstr "Délai d’expiration de la recherche Ldap" -#: ../../include/functions_config.php:671 +#: ../../include/functions_config.php:683 msgid "Secontary start TLS" msgstr "Démarrage secondaire TLS" -#: ../../include/functions_config.php:787 +#: ../../include/functions_config.php:799 msgid "Saml profile parameters" msgstr "Paramètres de profils SAML" -#: ../../include/functions_config.php:803 +#: ../../include/functions_config.php:815 msgid "2FA all users" msgstr "2FA tous les utilisateurs" -#: ../../include/functions_config.php:810 +#: ../../include/functions_config.php:822 msgid "Session timeout forced to 90 minutes" msgstr "Délai d'expiration de la session forcé à 90 minutes" -#: ../../include/functions_config.php:830 +#: ../../include/functions_config.php:842 msgid "Event purge" msgstr "Purge d’événements" -#: ../../include/functions_config.php:866 +#: ../../include/functions_config.php:878 msgid "Max. days before autodisable deletion" msgstr "Nombre de jours maximum avant suppression d'éléments désactivés" -#: ../../include/functions_config.php:870 +#: ../../include/functions_config.php:882 msgid "Item limit for realtime reports)" msgstr "Limite d'éléments pour rapports en temps réel" -#: ../../include/functions_config.php:906 +#: ../../include/functions_config.php:918 msgid "Big Operatiopn Step to purge old data" msgstr "Étape majeure pour nettoyer les données anciennes" -#: ../../include/functions_config.php:940 +#: ../../include/functions_config.php:952 msgid "Max execution event response" msgstr "Réponse maximale à l'événement d'exécution" -#: ../../include/functions_config.php:948 +#: ../../include/functions_config.php:960 msgid "SNMP walk binary path" msgstr "Chemin binaire de SNMP walk" -#: ../../include/functions_config.php:952 +#: ../../include/functions_config.php:964 msgid "SNMP walk binary path (fallback for v1)" msgstr "Chemin binaire SNMP walk (repli pour v1)" -#: ../../include/functions_config.php:956 +#: ../../include/functions_config.php:968 msgid "Default WMI Binary" msgstr "Binaire WMI par défaut" -#: ../../include/functions_config.php:966 +#: ../../include/functions_config.php:978 msgid "SNMP Interface Agent Wizard" msgstr "Assistant de l’agent d’interface SNMP" -#: ../../include/functions_config.php:977 +#: ../../include/functions_config.php:989 msgid "Notification Autoclose time" msgstr "Heure de fermeture automatique des notifications" -#: ../../include/functions_config.php:997 +#: ../../include/functions_config.php:1009 msgid "Graph color #4" msgstr "Couleur du graphique #4" -#: ../../include/functions_config.php:1001 +#: ../../include/functions_config.php:1013 msgid "Graph color #5" msgstr "Couleur du graphique #5" -#: ../../include/functions_config.php:1005 +#: ../../include/functions_config.php:1017 msgid "Graph color #6" msgstr "Couleur du graphique #6" -#: ../../include/functions_config.php:1009 +#: ../../include/functions_config.php:1021 msgid "Graph color #7" msgstr "Couleur du graphique #7" -#: ../../include/functions_config.php:1013 +#: ../../include/functions_config.php:1025 msgid "Graph color #8" msgstr "Couleur du graphique #8" -#: ../../include/functions_config.php:1017 +#: ../../include/functions_config.php:1029 msgid "Graph color #9" msgstr "Couleur du graphique #9" -#: ../../include/functions_config.php:1021 +#: ../../include/functions_config.php:1033 msgid "Graph color #10" msgstr "Couleur du graphique #10" -#: ../../include/functions_config.php:1054 +#: ../../include/functions_config.php:1066 msgid "Show QR code header" msgstr "Afficher code QR dans l'en-tête" -#: ../../include/functions_config.php:1082 +#: ../../include/functions_config.php:1094 msgid "Custom logo white background" msgstr "Logo personnalisé (fond blanc)" -#: ../../include/functions_config.php:1110 +#: ../../include/functions_config.php:1122 msgid "Custom title header" msgstr "En-tête de titre personnalisé" -#: ../../include/functions_config.php:1114 +#: ../../include/functions_config.php:1126 msgid "Custom subtitle header" msgstr "En-tête de sous-titre personnalisé" -#: ../../include/functions_config.php:1134 +#: ../../include/functions_config.php:1146 msgid "Login background" msgstr "Fond d'écran de connexion" -#: ../../include/functions_config.php:1138 -#: ../../include/functions_config.php:1186 +#: ../../include/functions_config.php:1150 +#: ../../include/functions_config.php:1198 msgid "Custom Docs url" msgstr "URL de documents personnalisée" -#: ../../include/functions_config.php:1142 -#: ../../include/functions_config.php:1190 +#: ../../include/functions_config.php:1154 +#: ../../include/functions_config.php:1202 msgid "Custom support url" msgstr "URL d'assistance personnalisée" -#: ../../include/functions_config.php:1162 +#: ../../include/functions_config.php:1174 msgid "Custom logo metaconsole (white background)" msgstr "Logo personnalisé de la Métaconsole (fond blanc d’en-tête)" -#: ../../include/functions_config.php:1166 +#: ../../include/functions_config.php:1178 msgid "Custom logo login metaconsole" msgstr "Logo personnalisé pour écran de connexion de la Métaconsole" -#: ../../include/functions_config.php:1170 +#: ../../include/functions_config.php:1182 msgid "Custom splash login metaconsole" msgstr "Splash personnalisé pour écran de connexion de la Métaconsole" -#: ../../include/functions_config.php:1174 +#: ../../include/functions_config.php:1186 msgid "Custom title1 login metaconsole" msgstr "Titre1 personnalisé pour écran de connexion de la Métaconsole" -#: ../../include/functions_config.php:1178 +#: ../../include/functions_config.php:1190 msgid "Custom title2 login metaconsole" msgstr "Titre2 personnalisé pour écran de connexion de la Métaconsole" -#: ../../include/functions_config.php:1182 +#: ../../include/functions_config.php:1194 msgid "Login background metaconsole" msgstr "Fond d'écran de connexion à la Métaconsole" -#: ../../include/functions_config.php:1206 +#: ../../include/functions_config.php:1218 msgid "Default line favourite_view for the Visual Console" msgstr "Ligne par défaut favourite_view pour la console visuelle" -#: ../../include/functions_config.php:1210 +#: ../../include/functions_config.php:1222 msgid "Default line menu items for the Visual Console" msgstr "Éléments prédéterminés de menu de ligne pour console visuelle" -#: ../../include/functions_config.php:1222 +#: ../../include/functions_config.php:1238 msgid "Default line menu items for the Services" msgstr "Éléments de menu de ligne par défaut pour les Services" -#: ../../include/functions_config.php:1254 +#: ../../include/functions_config.php:1270 msgid "Show units in values report" msgstr "Afficher unités dans les valeurs du rapport" -#: ../../include/functions_config.php:1262 +#: ../../include/functions_config.php:1278 msgid "Autohidden menu" msgstr "Menu caché automatiquement" -#: ../../include/functions_config.php:1266 +#: ../../include/functions_config.php:1282 msgid "Visual animation" msgstr "Animation visuelle" -#: ../../include/functions_config.php:1282 +#: ../../include/functions_config.php:1298 msgid "Fixed graph" msgstr "Graphique fixe" -#: ../../include/functions_config.php:1290 +#: ../../include/functions_config.php:1306 msgid "Paginate module" msgstr "Paginer module" -#: ../../include/functions_config.php:1294 +#: ../../include/functions_config.php:1310 #: ../../include/class/ExternalTools.class.php:323 msgid "Custom graphviz directory" msgstr "Répertoire personnalisé graphviz" -#: ../../include/functions_config.php:1302 +#: ../../include/functions_config.php:1318 msgid "Shortened module graph data" msgstr "Graphique de module de données raccourcies" -#: ../../include/functions_config.php:1310 +#: ../../include/functions_config.php:1326 msgid "Show empty groups in group view." msgstr "Afficher les groupes vides dans la vue de groupe." -#: ../../include/functions_config.php:1318 +#: ../../include/functions_config.php:1334 msgid "Default type of module charts." msgstr "Type de graphiques de modules par défaut" -#: ../../include/functions_config.php:1322 +#: ../../include/functions_config.php:1338 msgid "Default Number of elements in Custom Graph." msgstr "Nombre d'éléments par défaut dans le graphique personnalisé." -#: ../../include/functions_config.php:1326 +#: ../../include/functions_config.php:1342 msgid "Default type of interface charts." msgstr "Type de graphiques d'interface par défaut" -#: ../../include/functions_config.php:1342 +#: ../../include/functions_config.php:1358 msgid "Display lateral menus with left click" msgstr "Afficher menus latéraux en faisant clic gauche" -#: ../../include/functions_config.php:1351 +#: ../../include/functions_config.php:1367 msgid "Service item padding size" msgstr "Espace entre les nœuds de la carte de service" -#: ../../include/functions_config.php:1356 +#: ../../include/functions_config.php:1372 msgid "Default percentil" msgstr "Centile par défaut" -#: ../../include/functions_config.php:1360 +#: ../../include/functions_config.php:1376 msgid "Default full scale (TIP)" msgstr "Pleine échelle par défaut (TIP)" -#: ../../include/functions_config.php:1364 +#: ../../include/functions_config.php:1380 msgid "Default soft graphs" msgstr "Graphiques logiciels par défaut" -#: ../../include/functions_config.php:1368 +#: ../../include/functions_config.php:1384 msgid "Default zoom graphs" msgstr "Graphiques de zoom par défaut" -#: ../../include/functions_config.php:1377 +#: ../../include/functions_config.php:1393 msgid "Default height of the chart image" msgstr "Hauteur par défaut de l'image du graphique" -#: ../../include/functions_config.php:1399 +#: ../../include/functions_config.php:1415 msgid "Add the custom post process" msgstr "Ajouter personnalisation au processus postérieur" -#: ../../include/functions_config.php:1407 +#: ../../include/functions_config.php:1423 msgid "Delete the custom post process" msgstr "Supprimer personnalisation du processus postérieur" -#: ../../include/functions_config.php:1461 +#: ../../include/functions_config.php:1477 msgid "Add custom module unit" msgstr "Ajouter une unité de module personnalisée" -#: ../../include/functions_config.php:1467 +#: ../../include/functions_config.php:1483 msgid "Delete custom module unit" msgstr "Supprimer l'unité de module personnalisé" -#: ../../include/functions_config.php:1524 +#: ../../include/functions_config.php:1540 msgid "Thousand separator" msgstr "Séparateur de milliers" -#: ../../include/functions_config.php:1531 +#: ../../include/functions_config.php:1547 msgid "Name storage path" msgstr "Chemin de stockage du nom" -#: ../../include/functions_config.php:1574 +#: ../../include/functions_config.php:1586 msgid "Sflow name dir" msgstr "Répertoire du nom de Sflow" -#: ../../include/functions_config.php:1617 +#: ../../include/functions_config.php:1629 msgid "IP ElasticSearch server" msgstr "IP du serveur ElasticSearch" -#: ../../include/functions_config.php:1621 +#: ../../include/functions_config.php:1633 msgid "Port ElasticSearch server" msgstr "Port du serveur ElasticSearch" -#: ../../include/functions_config.php:1668 +#: ../../include/functions_config.php:1680 msgid "Enable history trap" msgstr "Activer le déroutement d’historique" -#: ../../include/functions_config.php:1688 +#: ../../include/functions_config.php:1700 msgid "Enable history database advanced" msgstr "Activer la base de données d’historique avancée" -#: ../../include/functions_config.php:1697 +#: ../../include/functions_config.php:1709 msgid "String Days" msgstr "Jours de chaîne" -#: ../../include/functions_config.php:1713 +#: ../../include/functions_config.php:1725 msgid "Trap Days" msgstr "Jours de déroutements" -#: ../../include/functions_config.php:1721 +#: ../../include/functions_config.php:1733 msgid "Trap history purge" msgstr "Purge de déroutements d’historique" -#: ../../include/functions_config.php:1793 +#: ../../include/functions_config.php:1805 msgid "Historical database traps purge" msgstr "Purge des déroutements de la base de données historique" -#: ../../include/functions_config.php:1816 +#: ../../include/functions_config.php:1828 msgid "eHorus user login" msgstr "Connexion utilisateur eHorus" -#: ../../include/functions_config.php:1828 +#: ../../include/functions_config.php:1840 msgid "eHorus API hostname" msgstr "Nom d'hôte API eHorus" -#: ../../include/functions_config.php:1832 +#: ../../include/functions_config.php:1844 msgid "eHorus API port" msgstr "Port API eHorus" -#: ../../include/functions_config.php:1836 +#: ../../include/functions_config.php:1848 msgid "eHorus request timeout" msgstr "Délai de requête eHorus" -#: ../../include/functions_config.php:1840 +#: ../../include/functions_config.php:1852 msgid "eHorus id custom field" msgstr "Identifiant du champ personnalisé eHorus" -#: ../../include/functions_config.php:1846 +#: ../../include/functions_config.php:1858 msgid "Integria user login" msgstr "Connexion utilisateur Integria" -#: ../../include/functions_config.php:1854 +#: ../../include/functions_config.php:1866 msgid "Integria user" msgstr "Utilisateur d’Integria" -#: ../../include/functions_config.php:1858 +#: ../../include/functions_config.php:1870 msgid "Integria password" msgstr "Mot de passe d’Integria" -#: ../../include/functions_config.php:1872 +#: ../../include/functions_config.php:1884 msgid "integria API hostname" msgstr "nom d'hôte de l'API d’Integria" -#: ../../include/functions_config.php:1880 +#: ../../include/functions_config.php:1892 msgid "Integria request timeout" msgstr "Délai d'expiration de la requête d’Integria" -#: ../../include/functions_config.php:1884 +#: ../../include/functions_config.php:1896 msgid "Integria default group" msgstr "Groupe par défaut d’Integria" -#: ../../include/functions_config.php:1888 +#: ../../include/functions_config.php:1900 msgid "Integria custom response default group" msgstr "Groupe par défaut de réponse personnalisée d’Integria" -#: ../../include/functions_config.php:1892 +#: ../../include/functions_config.php:1904 msgid "Integria default priority" msgstr "Priorité par défaut d’Integria" -#: ../../include/functions_config.php:1896 +#: ../../include/functions_config.php:1908 msgid "Integria custom response default priority" msgstr "Priorité par défaut de la réponse personnalisée d’Integria" -#: ../../include/functions_config.php:1900 +#: ../../include/functions_config.php:1912 msgid "Integria default creator" msgstr "Créateur par défaut d’Integria" -#: ../../include/functions_config.php:1904 +#: ../../include/functions_config.php:1916 msgid "Integria default owner" msgstr "Propriétaire par défaut d’Integria" -#: ../../include/functions_config.php:1908 +#: ../../include/functions_config.php:1920 msgid "Integria custom response default owner" msgstr "Propriétaire par défaut de la réponse personnalisée d’Integria" -#: ../../include/functions_config.php:1912 +#: ../../include/functions_config.php:1924 msgid "Integria default ticket type" msgstr "Type de ticket par défaut d’Integria" -#: ../../include/functions_config.php:1916 +#: ../../include/functions_config.php:1928 msgid "Integria custom response default ticket type" msgstr "Type de ticket par défaut de réponse personnalisée d’Integria" -#: ../../include/functions_config.php:1920 +#: ../../include/functions_config.php:1932 msgid "Integria default ticket status" msgstr "État du ticket par défaut d'Integria" -#: ../../include/functions_config.php:1924 +#: ../../include/functions_config.php:1936 msgid "Integria custom response default ticket status" msgstr "État du ticket par défaut de la réponse personnalisée d’Integria" -#: ../../include/functions_config.php:1928 +#: ../../include/functions_config.php:1940 msgid "Integria default ticket title" msgstr "Titre du ticket par défaut d’Integria" -#: ../../include/functions_config.php:1932 +#: ../../include/functions_config.php:1944 msgid "Integria custom response default ticket title" msgstr "Titre du ticket par défaut de la réponse personnalisée d’Integria" -#: ../../include/functions_config.php:1936 +#: ../../include/functions_config.php:1948 msgid "Integria default ticket content" msgstr "Contenu du ticket par défaut d'Integria" -#: ../../include/functions_config.php:1940 +#: ../../include/functions_config.php:1952 msgid "Integria custom response default ticket content" msgstr "Contenu du ticket par défaut de la réponse personnalisée d’Integria" -#: ../../include/functions_config.php:1946 +#: ../../include/functions_config.php:1958 msgid "Module Library User" msgstr "Utilisateur de la bibliothèque de modules" -#: ../../include/functions_config.php:1950 +#: ../../include/functions_config.php:1962 msgid "Module Library Password" msgstr "Mot de passe de la bibliothèque de modules" -#: ../../include/functions_config.php:1956 +#: ../../include/functions_config.php:1968 msgid "WebSocket bind address" msgstr "Adresse de liaison WebSocket" -#: ../../include/functions_config.php:1960 +#: ../../include/functions_config.php:1972 msgid "WebSocket port" msgstr "Port WebSocket" -#: ../../include/functions_config.php:1983 +#: ../../include/functions_config.php:1995 #, php-format msgid "Update failed. The next values could not be updated:
-%s" msgstr "" "La mise à jour a échoué. Les valeurs suivantes n’ont pas pu être mises à " "jour :
-%s" -#: ../../include/functions_config.php:2662 -#: ../../operation/agentes/networkmap.dinamic.php:220 +#: ../../include/functions_config.php:2682 +#: ../../operation/agentes/networkmap.dinamic.php:228 msgid "Pandora FMS" msgstr "Pandora FMS" -#: ../../include/functions_config.php:2670 +#: ../../include/functions_config.php:2690 msgid "PandoraFMS Metaconsole" msgstr "Métaconsole PandoraFMS" -#: ../../include/functions_config.php:2674 +#: ../../include/functions_config.php:2694 msgid "Centralized operation console" msgstr "Console d'exploitation centralisée" @@ -47518,7 +47932,7 @@ msgstr "Agréger par %s" msgid "Resolution %s" msgstr "Résolution %s" -#: ../../include/class/Tree.class.php:790 +#: ../../include/class/Tree.class.php:813 msgid "Module alerts" msgstr "Alertes des modules" @@ -47675,7 +48089,6 @@ msgid "Sound not exist" msgstr "Le son n’existe pas" #: ../../include/class/EventSound.class.php:188 -#: ../../operation/events/sound_events.php:261 msgid "Sounds" msgstr "Événements sonores" @@ -47684,8 +48097,8 @@ msgid "Add new sound" msgstr "Ajouter un nouveau son" #: ../../include/class/EventSound.class.php:212 -msgid "Accoustic console sound list" -msgstr "Liste des sons de la console acoustique" +msgid "Acoustic console sound list" +msgstr "Liste de sons de la console visuelle" #: ../../include/class/EventSound.class.php:253 msgid "Name:" @@ -47728,7 +48141,7 @@ msgid "Something is wrong" msgstr "Il y a un problème" #: ../../include/class/HelpFeedBack.class.php:172 -#: ../../include/class/Diagnostics.class.php:1922 +#: ../../include/class/Diagnostics.class.php:1926 msgid "What happened?" msgstr "Que s'est-il passé?" @@ -47741,7 +48154,7 @@ msgid "Submit" msgstr "Envoyer" #: ../../include/class/HelpFeedBack.class.php:214 -#: ../../include/class/Diagnostics.class.php:1995 ../../general/header.php:364 +#: ../../include/class/Diagnostics.class.php:1999 ../../general/header.php:364 #: ../../general/header.php:366 msgid "Feedback" msgstr "Commentaires" @@ -47801,7 +48214,7 @@ msgid "%s Licence Information" msgstr "Informations sur la licence %s" #: ../../include/class/Diagnostics.class.php:274 -#: ../../include/class/Diagnostics.class.php:1274 +#: ../../include/class/Diagnostics.class.php:1278 msgid "Status of the attachment folder" msgstr "État du dossier d’attachements" @@ -47994,7 +48407,7 @@ msgstr "Système d'exploitation" #: ../../include/class/Diagnostics.class.php:759 #: ../../include/class/Diagnostics.class.php:777 -#: ../../include/class/NetworkMap.class.php:3066 +#: ../../include/class/NetworkMap.class.php:3072 msgid "Ip" msgstr "IP" @@ -48135,39 +48548,39 @@ msgstr "Fragmentation des tables (valeur actuelle)" msgid "Table fragmentation status" msgstr "État de fragmentation de la table" -#: ../../include/class/Diagnostics.class.php:1048 +#: ../../include/class/Diagnostics.class.php:1052 msgid "Size server logs (current value)" msgstr "Taille des journaux du serveur (valeur actuelle)" -#: ../../include/class/Diagnostics.class.php:1052 +#: ../../include/class/Diagnostics.class.php:1056 msgid "Status server logs" msgstr "Journaux du serveur d'état" -#: ../../include/class/Diagnostics.class.php:1057 +#: ../../include/class/Diagnostics.class.php:1061 msgid "Size error logs (current value)" msgstr "Journaux d'erreur de taille (valeur actuelle)" -#: ../../include/class/Diagnostics.class.php:1061 +#: ../../include/class/Diagnostics.class.php:1065 msgid "Status error logs" msgstr "Journaux d’erreur d’état" -#: ../../include/class/Diagnostics.class.php:1066 +#: ../../include/class/Diagnostics.class.php:1070 msgid "Size console logs (current value)" msgstr "Journaux de la taille de la console (valeur actuelle)" -#: ../../include/class/Diagnostics.class.php:1070 +#: ../../include/class/Diagnostics.class.php:1074 msgid "Status console logs" msgstr "Journaux de la console d'état" -#: ../../include/class/Diagnostics.class.php:1105 +#: ../../include/class/Diagnostics.class.php:1109 msgid "License capacity is less than 90 percent" msgstr "La capacité de la licence est inférieure à 90 %" -#: ../../include/class/Diagnostics.class.php:1108 +#: ../../include/class/Diagnostics.class.php:1112 msgid "License capacity exceeds 90 percent" msgstr "La capacité de licence dépasse 90 pour cent" -#: ../../include/class/Diagnostics.class.php:1116 +#: ../../include/class/Diagnostics.class.php:1120 msgid "" "The average of modules per agent is more than 40. You can have performance " "problems" @@ -48175,48 +48588,48 @@ msgstr "" "La moyenne des modules par agent est supérieure à 40. Vous pouvez avoir des " "problèmes de performances" -#: ../../include/class/Diagnostics.class.php:1121 +#: ../../include/class/Diagnostics.class.php:1125 msgid "The average of modules per agent is less than 40" msgstr "La moyenne des modules par agent est inférieure à 40" -#: ../../include/class/Diagnostics.class.php:1159 +#: ../../include/class/Diagnostics.class.php:1163 msgid "The system has no load" msgstr "Le système n'a pas de charge" -#: ../../include/class/Diagnostics.class.php:1203 +#: ../../include/class/Diagnostics.class.php:1207 msgid "Network Management System" msgstr "Système de gestion réseau" -#: ../../include/class/Diagnostics.class.php:1204 #: ../../include/class/Diagnostics.class.php:1208 +#: ../../include/class/Diagnostics.class.php:1212 msgid "Off" msgstr "Off" -#: ../../include/class/Diagnostics.class.php:1215 +#: ../../include/class/Diagnostics.class.php:1219 msgid "Status of agents capacity" msgstr "État de la capacité des agents" -#: ../../include/class/Diagnostics.class.php:1220 +#: ../../include/class/Diagnostics.class.php:1224 msgid "Status of average modules per agent" msgstr "État des modules moyens par agent" -#: ../../include/class/Diagnostics.class.php:1226 +#: ../../include/class/Diagnostics.class.php:1230 msgid "Interval average of the network modules" msgstr "Moyenne d'intervalle des modules réseau" -#: ../../include/class/Diagnostics.class.php:1256 +#: ../../include/class/Diagnostics.class.php:1260 msgid "The attached folder contains more than 700 files." msgstr "Le dossier joint contient plus de 700 fichiers." -#: ../../include/class/Diagnostics.class.php:1261 +#: ../../include/class/Diagnostics.class.php:1265 msgid "The attached folder contains less than 700 files." msgstr "Le dossier joint contient moins de 700 fichiers." -#: ../../include/class/Diagnostics.class.php:1270 +#: ../../include/class/Diagnostics.class.php:1274 msgid "Total files in the attached folder" msgstr "Nombre total de fichiers dans le dossier joint" -#: ../../include/class/Diagnostics.class.php:1305 +#: ../../include/class/Diagnostics.class.php:1309 msgid "" "The tagente_datos table contains too much data. A historical database is " "recommended." @@ -48224,31 +48637,31 @@ msgstr "" "La table tagent_données contient trop de données. Une base de données " "historique est recommandée." -#: ../../include/class/Diagnostics.class.php:1310 +#: ../../include/class/Diagnostics.class.php:1314 msgid "The tagente_datos table contains an acceptable amount of data." msgstr "La table tagent_données contient une quantité de données acceptable." -#: ../../include/class/Diagnostics.class.php:1319 +#: ../../include/class/Diagnostics.class.php:1323 msgid "Total data in tagente_datos table" msgstr "Données totales dans la table tagent_données" -#: ../../include/class/Diagnostics.class.php:1323 +#: ../../include/class/Diagnostics.class.php:1327 msgid "Tagente_datos table status" msgstr "État de la table Tagent_données" -#: ../../include/class/Diagnostics.class.php:1359 +#: ../../include/class/Diagnostics.class.php:1363 msgid "Threads" msgstr "Threads" -#: ../../include/class/Diagnostics.class.php:1369 +#: ../../include/class/Diagnostics.class.php:1373 msgid "Total threads" msgstr "Fils maximales" -#: ../../include/class/Diagnostics.class.php:1376 +#: ../../include/class/Diagnostics.class.php:1380 msgid "Current pandora_server running threads" msgstr "Threads en cours d'exécution de pandora_server" -#: ../../include/class/Diagnostics.class.php:1380 +#: ../../include/class/Diagnostics.class.php:1384 msgid "" "There's more pandora_server threads than configured, are you running multiple " "servers simultaneusly?." @@ -48256,7 +48669,7 @@ msgstr "" "Il y a plus de threads pandora_server que configurés, exécutez-vous plusieurs " "serveurs simultanément ?" -#: ../../include/class/Diagnostics.class.php:1514 +#: ../../include/class/Diagnostics.class.php:1518 msgid "" "Please check your Pandora Server setup and make sure that the database " "maintenance daemon is running." @@ -48265,7 +48678,7 @@ msgstr "" "assurer que le démon de maintenance de la base de données est en cours " "d'exécution." -#: ../../include/class/Diagnostics.class.php:1518 +#: ../../include/class/Diagnostics.class.php:1522 msgid "" "It' is very important to keep the database up-to-date to get the best " "performance and results in Pandora" @@ -48273,45 +48686,45 @@ msgstr "" "Il est très important de maintenir la base de données à jour pour obtenir les " "meilleures performances et résultats dans Pandora FMS" -#: ../../include/class/Diagnostics.class.php:1780 +#: ../../include/class/Diagnostics.class.php:1784 msgid "You have more than 10 MB of logs" msgstr "Vous avez plus de 10 Mo de journaux" -#: ../../include/class/Diagnostics.class.php:1783 +#: ../../include/class/Diagnostics.class.php:1787 msgid "You have less than 10 MB of logs" msgstr "Vous avez moins de 10 Mo de journaux" -#: ../../include/class/Diagnostics.class.php:1950 +#: ../../include/class/Diagnostics.class.php:1954 msgid "Include installation data" msgstr "Inclure les données d'installation" -#: ../../include/class/Diagnostics.class.php:1987 +#: ../../include/class/Diagnostics.class.php:1991 msgid "Hello Feedback-Men" msgstr "Hello Feedback-Men" -#: ../../include/class/Diagnostics.class.php:1997 +#: ../../include/class/Diagnostics.class.php:2001 msgid "Hello" msgstr "Hello" -#: ../../include/class/Diagnostics.class.php:2001 +#: ../../include/class/Diagnostics.class.php:2005 #, php-format msgid "User %s is reporting an issue in its %s experience" msgstr "L'utilisateur %s signale un problème dans son expérience %s" -#: ../../include/class/Diagnostics.class.php:2010 +#: ../../include/class/Diagnostics.class.php:2014 msgid "Find some files attached to this mail" msgstr "Retrouver quelques fichiers joints à ce mail" -#: ../../include/class/Diagnostics.class.php:2013 +#: ../../include/class/Diagnostics.class.php:2017 msgid "PDF is the diagnostic information retrieved at report time" msgstr "" "PDF correspond aux informations de diagnostic récupérées au moment du rapport" -#: ../../include/class/Diagnostics.class.php:2016 +#: ../../include/class/Diagnostics.class.php:2020 msgid "CSV contains the statuses of every product file" msgstr "CSV contient les états de chaque fiche produit" -#: ../../include/class/Diagnostics.class.php:2021 +#: ../../include/class/Diagnostics.class.php:2025 #, php-format msgid "" "If you think this report must be escalated, feel free to forward this mail to " @@ -48320,11 +48733,11 @@ msgstr "" "Si vous pensez que ce rapport doit être escaladé, n'hésitez pas à transmettre " "ce courrier à \"%s\"" -#: ../../include/class/Diagnostics.class.php:2025 +#: ../../include/class/Diagnostics.class.php:2029 msgid "LEGAL WARNING" msgstr "AVERTISSEMENT LÉGAL" -#: ../../include/class/Diagnostics.class.php:2027 +#: ../../include/class/Diagnostics.class.php:2031 msgid "" "The information contained in this transmission is privileged and confidential " "information intended only for the use of the individual or entity named above" @@ -48333,7 +48746,7 @@ msgstr "" "privilégiées et confidentielles destinées uniquement à l'usage de la personne " "ou de l'entité nommée ci-dessus." -#: ../../include/class/Diagnostics.class.php:2031 +#: ../../include/class/Diagnostics.class.php:2035 msgid "" "If the reader of this message is not the intended recipient, you are hereby " "notified that any dissemination, distribution or copying of this communication " @@ -48343,11 +48756,11 @@ msgstr "" "vous informons que toute diffusion, distribution ou copie de ces documents est " "strictement interdite." -#: ../../include/class/Diagnostics.class.php:2035 +#: ../../include/class/Diagnostics.class.php:2039 msgid "If you have received this transmission in error, do not read it" msgstr "Si vous avez reçu cette transmission par erreur, ne la lisez pas" -#: ../../include/class/Diagnostics.class.php:2039 +#: ../../include/class/Diagnostics.class.php:2043 msgid "" "Please immediately reply to the sender that you have received this " "communication in error and then delete it" @@ -48355,83 +48768,83 @@ msgstr "" "Veuillez répondre immédiatement à l'expéditeur que vous avez reçu cette " "communication par erreur, puis la supprimer" -#: ../../include/class/Diagnostics.class.php:2118 +#: ../../include/class/Diagnostics.class.php:2122 msgid "Invalid cron task" msgstr "Tâche cron non valide" -#: ../../include/class/Diagnostics.class.php:2119 +#: ../../include/class/Diagnostics.class.php:2123 msgid "Sending of information has been processed" msgstr "L'envoi des informations a été traité" -#: ../../include/class/Diagnostics.class.php:2154 -#: ../../include/class/Diagnostics.class.php:2164 +#: ../../include/class/Diagnostics.class.php:2158 +#: ../../include/class/Diagnostics.class.php:2168 msgid "Diagnostics Info" msgstr "Informations de diagnostic" -#: ../../include/class/Diagnostics.class.php:2272 -#: ../../include/class/Diagnostics.class.php:2282 +#: ../../include/class/Diagnostics.class.php:2276 +#: ../../include/class/Diagnostics.class.php:2286 msgid "PHP Info" msgstr "Info PHP" -#: ../../include/class/NetworkMap.class.php:2382 +#: ../../include/class/NetworkMap.class.php:2388 msgid "Failed to generate dotmap, please select different layout schema" msgstr "" "Échec de la génération de dotmap, veuillez sélectionner un schéma de mise en " "page différent" -#: ../../include/class/NetworkMap.class.php:2524 +#: ../../include/class/NetworkMap.class.php:2530 msgid "Failed to retrieve graph data." msgstr "Échec de la récupération des données du graphique." -#: ../../include/class/NetworkMap.class.php:2808 +#: ../../include/class/NetworkMap.class.php:2814 msgid "Holding Area" msgstr "Zone d'attente" -#: ../../include/class/NetworkMap.class.php:2935 +#: ../../include/class/NetworkMap.class.php:2941 #, php-format msgid "Edit node %s" msgstr "Modifier le nœud %s" -#: ../../include/class/NetworkMap.class.php:2937 +#: ../../include/class/NetworkMap.class.php:2943 msgid "Show details and options" msgstr "Afficher les détails et les options" -#: ../../include/class/NetworkMap.class.php:2938 +#: ../../include/class/NetworkMap.class.php:2944 msgid "Add a interface link" msgstr "Ajouter lien d'interface" -#: ../../include/class/NetworkMap.class.php:2939 +#: ../../include/class/NetworkMap.class.php:2945 msgid "Set parent interface" msgstr "Configurer parent d'interface" -#: ../../include/class/NetworkMap.class.php:2940 +#: ../../include/class/NetworkMap.class.php:2946 msgid "Set as children" msgstr "Configurer comme enfants" -#: ../../include/class/NetworkMap.class.php:2941 +#: ../../include/class/NetworkMap.class.php:2947 msgid "Set parent" msgstr "Configurer parent" -#: ../../include/class/NetworkMap.class.php:2942 -#: ../../include/class/NetworkMap.class.php:2954 +#: ../../include/class/NetworkMap.class.php:2948 +#: ../../include/class/NetworkMap.class.php:2960 msgid "Abort the action of set relationship" msgstr "Abandonner l'action de configuration de relations" -#: ../../include/class/NetworkMap.class.php:2944 -#: ../../include/class/NetworkMap.class.php:3344 +#: ../../include/class/NetworkMap.class.php:2950 +#: ../../include/class/NetworkMap.class.php:3350 msgid "Add node" msgstr "Ajouter un nœud" -#: ../../include/class/NetworkMap.class.php:2945 +#: ../../include/class/NetworkMap.class.php:2951 msgid "Set center" msgstr "Configurer le centre" -#: ../../include/class/NetworkMap.class.php:2947 -#: ../../include/class/NetworkMap.class.php:2950 +#: ../../include/class/NetworkMap.class.php:2953 +#: ../../include/class/NetworkMap.class.php:2956 msgid "Proceed" msgstr "Continuer" -#: ../../include/class/NetworkMap.class.php:2948 +#: ../../include/class/NetworkMap.class.php:2954 msgid "" "Resetting the map will delete all customizations you have done, including " "manual relationships between elements, new items, etc." @@ -48439,144 +48852,144 @@ msgstr "" "Si vous réinitialisez la carte, tous vos réglages personnalisés, y compris les " "relations manuelles entre éléments, nouveaux éléments, etc. seront supprimés." -#: ../../include/class/NetworkMap.class.php:2952 +#: ../../include/class/NetworkMap.class.php:2958 msgid "Restart map" msgstr "Réinitialiser la carte" -#: ../../include/class/NetworkMap.class.php:2953 +#: ../../include/class/NetworkMap.class.php:2959 msgid "Abort the interface relationship" msgstr "Annuler la relation d'interface" -#: ../../include/class/NetworkMap.class.php:2971 -#: ../../include/class/NetworkMap.class.php:3020 +#: ../../include/class/NetworkMap.class.php:2977 +#: ../../include/class/NetworkMap.class.php:3026 msgid "Edit node" msgstr "Modifier le nœud" -#: ../../include/class/NetworkMap.class.php:2981 -#: ../../include/class/NetworkMap.class.php:3036 +#: ../../include/class/NetworkMap.class.php:2987 +#: ../../include/class/NetworkMap.class.php:3042 msgid "Adresses" msgstr "Adresses" -#: ../../include/class/NetworkMap.class.php:2983 -#: ../../include/class/NetworkMap.class.php:3041 +#: ../../include/class/NetworkMap.class.php:2989 +#: ../../include/class/NetworkMap.class.php:3047 msgid "OS type" msgstr "Type de système d’exploitation" -#: ../../include/class/NetworkMap.class.php:2990 -#: ../../include/class/NetworkMap.class.php:2991 -#: ../../include/class/NetworkMap.class.php:3052 -#: ../../include/class/NetworkMap.class.php:3053 +#: ../../include/class/NetworkMap.class.php:2996 +#: ../../include/class/NetworkMap.class.php:2997 +#: ../../include/class/NetworkMap.class.php:3058 +#: ../../include/class/NetworkMap.class.php:3059 msgid "Node Details" msgstr "Détails du nœud" -#: ../../include/class/NetworkMap.class.php:3078 -#: ../../include/class/NetworkMap.class.php:3079 +#: ../../include/class/NetworkMap.class.php:3084 +#: ../../include/class/NetworkMap.class.php:3085 msgid "Interface Information (SNMP)" msgstr "Information de l'interface (SNMP)" -#: ../../include/class/NetworkMap.class.php:3092 +#: ../../include/class/NetworkMap.class.php:3098 msgid "Shape" msgstr "Forme" -#: ../../include/class/NetworkMap.class.php:3095 +#: ../../include/class/NetworkMap.class.php:3101 msgid "Circle" msgstr "Cercle" -#: ../../include/class/NetworkMap.class.php:3096 +#: ../../include/class/NetworkMap.class.php:3102 msgid "Square" msgstr "Carré" -#: ../../include/class/NetworkMap.class.php:3097 +#: ../../include/class/NetworkMap.class.php:3103 msgid "Rhombus" msgstr "Losange" -#: ../../include/class/NetworkMap.class.php:3113 +#: ../../include/class/NetworkMap.class.php:3119 msgid "name node" msgstr "Nommer le nœud" -#: ../../include/class/NetworkMap.class.php:3125 -#: ../../include/class/NetworkMap.class.php:3495 +#: ../../include/class/NetworkMap.class.php:3131 +#: ../../include/class/NetworkMap.class.php:3501 msgid "name fictional node" msgstr "Nom du nœud fictif" -#: ../../include/class/NetworkMap.class.php:3133 -#: ../../include/class/NetworkMap.class.php:3503 +#: ../../include/class/NetworkMap.class.php:3139 +#: ../../include/class/NetworkMap.class.php:3509 msgid "Networkmap to link" msgstr "Lien à la carte de réseau" -#: ../../include/class/NetworkMap.class.php:3147 +#: ../../include/class/NetworkMap.class.php:3153 msgid "Update fictional node" msgstr "Mettre à jour le nœud fictif" -#: ../../include/class/NetworkMap.class.php:3175 -#: ../../include/class/NetworkMap.class.php:3176 +#: ../../include/class/NetworkMap.class.php:3181 +#: ../../include/class/NetworkMap.class.php:3182 msgid "Node options" msgstr "Options du nœud" -#: ../../include/class/NetworkMap.class.php:3187 -#: ../../include/class/NetworkMap.class.php:3281 +#: ../../include/class/NetworkMap.class.php:3193 +#: ../../include/class/NetworkMap.class.php:3287 msgid "Node source" msgstr "Source du nœud" -#: ../../include/class/NetworkMap.class.php:3188 -#: ../../include/class/NetworkMap.class.php:3282 +#: ../../include/class/NetworkMap.class.php:3194 +#: ../../include/class/NetworkMap.class.php:3288 msgid "Interface source" msgstr "Source de l'interface" -#: ../../include/class/NetworkMap.class.php:3189 -#: ../../include/class/NetworkMap.class.php:3283 +#: ../../include/class/NetworkMap.class.php:3195 +#: ../../include/class/NetworkMap.class.php:3289 msgid "Interface Target" msgstr "Cible de l'interface" -#: ../../include/class/NetworkMap.class.php:3191 -#: ../../include/class/NetworkMap.class.php:3284 +#: ../../include/class/NetworkMap.class.php:3197 +#: ../../include/class/NetworkMap.class.php:3290 msgid "Node target" msgstr "Cible du nœud" -#: ../../include/class/NetworkMap.class.php:3192 +#: ../../include/class/NetworkMap.class.php:3198 msgid "E." msgstr "E." -#: ../../include/class/NetworkMap.class.php:3254 +#: ../../include/class/NetworkMap.class.php:3260 msgid "There are not relations" msgstr "Aucune relation" -#: ../../include/class/NetworkMap.class.php:3327 +#: ../../include/class/NetworkMap.class.php:3333 msgid "Add interface link" msgstr "Ajouter lien d'interface" -#: ../../include/class/NetworkMap.class.php:3372 -#: ../../include/class/NetworkMap.class.php:3399 -#: ../../include/class/NetworkMap.class.php:3400 -#: ../../include/class/NetworkMap.class.php:3463 -#: ../../include/class/NetworkMap.class.php:3479 -#: ../../include/class/NetworkMap.class.php:3536 +#: ../../include/class/NetworkMap.class.php:3378 +#: ../../include/class/NetworkMap.class.php:3405 +#: ../../include/class/NetworkMap.class.php:3406 +#: ../../include/class/NetworkMap.class.php:3469 +#: ../../include/class/NetworkMap.class.php:3485 +#: ../../include/class/NetworkMap.class.php:3542 msgid "Add agent node" msgstr "Ajouter nœud d'agent" -#: ../../include/class/NetworkMap.class.php:3478 +#: ../../include/class/NetworkMap.class.php:3484 msgid "Add agent node (filter by group)" msgstr "Ajouter nœud d'agent (filtrer par groupe)" -#: ../../include/class/NetworkMap.class.php:3520 +#: ../../include/class/NetworkMap.class.php:3526 msgid "Add fictional node" msgstr "Ajouter nœud fictif" -#: ../../include/class/NetworkMap.class.php:3535 +#: ../../include/class/NetworkMap.class.php:3541 msgid "Add fictional point" msgstr "Ajouter un point fictif" -#: ../../include/class/NetworkMap.class.php:3620 +#: ../../include/class/NetworkMap.class.php:3626 #: ../../operation/visual_console/legacy_public_view.php:198 -#: ../../operation/visual_console/legacy_view.php:335 +#: ../../operation/visual_console/legacy_view.php:346 msgid "Until refresh" msgstr "Jusqu'à la suivante mise à jour" -#: ../../include/class/NetworkMap.class.php:3775 +#: ../../include/class/NetworkMap.class.php:3781 msgid "Open Minimap" msgstr "Ouvrir minicarte" -#: ../../include/class/NetworkMap.class.php:3781 +#: ../../include/class/NetworkMap.class.php:3787 msgid "Hide Labels" msgstr "Cacher les étiquettes" @@ -48638,11 +49051,11 @@ msgstr "Êtes-vous sûr de supprimer le script ?" msgid "Delete Script" msgstr "Supprimer le script" -#: ../../include/class/ManageNetScanScripts.class.php:490 +#: ../../include/class/ManageNetScanScripts.class.php:486 msgid "There are no net scan scripts in the system" msgstr "Il n'y a pas de scripts net scan dans le système" -#: ../../include/class/ManageNetScanScripts.class.php:560 +#: ../../include/class/ManageNetScanScripts.class.php:556 msgid "Script fullpath" msgstr "Chemin complet du script" @@ -48702,12 +49115,12 @@ msgid "Extra (2)" msgstr "Supplément (2)" #: ../../include/class/CredentialStore.class.php:986 -#: ../../include/class/CredentialStore.class.php:1307 +#: ../../include/class/CredentialStore.class.php:1309 msgid "Access key ID" msgstr "ID de clé d’accès :" #: ../../include/class/CredentialStore.class.php:987 -#: ../../include/class/CredentialStore.class.php:1308 +#: ../../include/class/CredentialStore.class.php:1310 msgid "Secret access key" msgstr "Clé d'accès secrète" @@ -48717,22 +49130,22 @@ msgid "Account ID" msgstr "ID de compte" #: ../../include/class/CredentialStore.class.php:994 -#: ../../include/class/CredentialStore.class.php:1315 +#: ../../include/class/CredentialStore.class.php:1318 msgid "Application secret" msgstr "Application secret" #: ../../include/class/CredentialStore.class.php:995 -#: ../../include/class/CredentialStore.class.php:1316 +#: ../../include/class/CredentialStore.class.php:1319 msgid "Tenant or domain name" msgstr "Locataire ou nom de domaine" #: ../../include/class/CredentialStore.class.php:996 -#: ../../include/class/CredentialStore.class.php:1317 +#: ../../include/class/CredentialStore.class.php:1320 msgid "Subscription id" msgstr "ID Abonnement" #: ../../include/class/CredentialStore.class.php:1000 -#: ../../include/class/CredentialStore.class.php:1333 +#: ../../include/class/CredentialStore.class.php:1338 msgid "Auth JSON" msgstr "Authentification JSON" @@ -48753,45 +49166,45 @@ msgid "3" msgstr "3" #: ../../include/class/CredentialStore.class.php:1134 -#: ../../include/class/CredentialStore.class.php:1425 +#: ../../include/class/CredentialStore.class.php:1434 msgid "Authenticated and non-private method" msgstr "Méthode authentifiée et non privée" #: ../../include/class/CredentialStore.class.php:1135 -#: ../../include/class/CredentialStore.class.php:1427 +#: ../../include/class/CredentialStore.class.php:1436 msgid "Authenticated and private method" msgstr "Méthode authentifiée et privée" #: ../../include/class/CredentialStore.class.php:1136 -#: ../../include/class/CredentialStore.class.php:1429 +#: ../../include/class/CredentialStore.class.php:1438 msgid "Non-authenticated and non-private method" msgstr "Méthode non authentifiée et non privée" #: ../../include/class/CredentialStore.class.php:1144 -#: ../../include/class/CredentialStore.class.php:1442 +#: ../../include/class/CredentialStore.class.php:1451 #: ../../include/class/AgentWizard.class.php:910 msgid "User authentication" msgstr "Authentification de l'utilisateur" #: ../../include/class/CredentialStore.class.php:1179 -#: ../../include/class/CredentialStore.class.php:1476 +#: ../../include/class/CredentialStore.class.php:1485 #: ../../include/class/AgentWizard.class.php:939 msgid "Password authentication" msgstr "Authentification par mot de passe" -#: ../../include/class/CredentialStore.class.php:1314 +#: ../../include/class/CredentialStore.class.php:1317 msgid "Client ID" msgstr "ID Client" -#: ../../include/class/CredentialStore.class.php:1323 +#: ../../include/class/CredentialStore.class.php:1327 msgid "Account ID." msgstr "ID de compte" -#: ../../include/class/CredentialStore.class.php:1648 +#: ../../include/class/CredentialStore.class.php:1657 msgid "Register new key into keystore" msgstr "Enregistrer une nouvelle clé dans le magasin de clés" -#: ../../include/class/CredentialStore.class.php:1652 +#: ../../include/class/CredentialStore.class.php:1661 msgid "Update key" msgstr "Mettre à jour la clé" @@ -48800,9 +49213,9 @@ msgid "Trap subtype" msgstr "Sous-type de déroutements" #: ../../include/class/SnmpConsole.class.php:291 -#: ../../include/functions_reporting.php:5890 -#: ../../include/functions_reporting.php:5907 -#: ../../include/functions_reporting.php:5924 +#: ../../include/functions_reporting.php:5899 +#: ../../include/functions_reporting.php:5916 +#: ../../include/functions_reporting.php:5933 msgid "Not triggered" msgstr "Non déclenché" @@ -48812,25 +49225,25 @@ msgstr "Déclenché" #: ../../include/class/SnmpConsole.class.php:309 #: ../../include/class/SnmpConsole.class.php:503 -#: ../../include/class/SnmpConsole.class.php:761 +#: ../../include/class/SnmpConsole.class.php:763 #: ../../include/functions_reporting.php:2366 -#: ../../include/functions_reporting.php:4597 -#: ../../include/functions_reporting.php:11390 +#: ../../include/functions_reporting.php:4606 +#: ../../include/functions_reporting.php:11399 msgid "Not validated" msgstr "Non validé" #: ../../include/class/SnmpConsole.class.php:310 #: ../../include/class/SnmpConsole.class.php:501 -#: ../../include/class/SnmpConsole.class.php:771 +#: ../../include/class/SnmpConsole.class.php:773 #: ../../include/functions_reporting.php:2365 -#: ../../include/functions_reporting.php:4596 -#: ../../include/functions_reporting.php:11389 +#: ../../include/functions_reporting.php:4605 +#: ../../include/functions_reporting.php:11398 #: ../../include/functions_events.php:2547 -#: ../../include/functions_events.php:3269 -#: ../../include/functions_events.php:3544 -#: ../../include/functions_events.php:3553 -#: ../../include/functions_events.php:3560 -#: ../../include/functions_events.php:3567 +#: ../../include/functions_events.php:3274 +#: ../../include/functions_events.php:3549 +#: ../../include/functions_events.php:3558 +#: ../../include/functions_events.php:3565 +#: ../../include/functions_events.php:3572 msgid "Validated" msgstr "Validé" @@ -48838,46 +49251,46 @@ msgstr "Validé" msgid "Group by Enterprise String/IP" msgstr "Regrouper par chaîne Enterprise / IP" -#: ../../include/class/SnmpConsole.class.php:783 +#: ../../include/class/SnmpConsole.class.php:785 #: ../../operation/snmpconsole/snmp_statistics.php:199 msgid "View agent details" msgstr "Voir les détails de l'agent" -#: ../../include/class/SnmpConsole.class.php:902 -#: ../../include/class/SnmpConsole.class.php:903 +#: ../../include/class/SnmpConsole.class.php:904 +#: ../../include/class/SnmpConsole.class.php:905 msgid "Hide details" msgstr "Masquer les détails" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "Count:" msgstr "Total :" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "First trap:" msgstr "Premier déroutement :" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "Last trap:" msgstr "Dernier déroutement :" -#: ../../include/class/SnmpConsole.class.php:1403 +#: ../../include/class/SnmpConsole.class.php:1405 msgid "Type:" msgstr "Type :" -#: ../../include/class/SnmpConsole.class.php:1410 +#: ../../include/class/SnmpConsole.class.php:1412 msgid "Description:" msgstr "Description :" -#: ../../include/class/SnmpConsole.class.php:1417 +#: ../../include/class/SnmpConsole.class.php:1419 msgid "Enterprise String:" msgstr "Chaîne Enterprise :" -#: ../../include/class/SnmpConsole.class.php:1426 -#: ../../include/class/SnmpConsole.class.php:1440 +#: ../../include/class/SnmpConsole.class.php:1428 +#: ../../include/class/SnmpConsole.class.php:1442 msgid "Variable bindings:" msgstr "Liens variables :" -#: ../../include/class/SnmpConsole.class.php:1436 +#: ../../include/class/SnmpConsole.class.php:1438 msgid "See more details" msgstr "Afficher plus de détails" @@ -48952,51 +49365,51 @@ msgstr "résultats trouvés" msgid "Press enter to search" msgstr "Cliquez enter pour rechercher" -#: ../../include/class/TipsWindow.class.php:432 +#: ../../include/class/TipsWindow.class.php:444 msgid "Tip deleted" msgstr "Astuce supprimée" -#: ../../include/class/TipsWindow.class.php:482 +#: ../../include/class/TipsWindow.class.php:494 msgid "Search by title" msgstr "Rechercher par titre" -#: ../../include/class/TipsWindow.class.php:683 +#: ../../include/class/TipsWindow.class.php:703 msgid "Tip created" msgstr "Astuce créée" -#: ../../include/class/TipsWindow.class.php:743 -#: ../../include/class/TipsWindow.class.php:911 +#: ../../include/class/TipsWindow.class.php:763 +#: ../../include/class/TipsWindow.class.php:931 msgid "Wrong size, we recommend images of 464x260 px" msgstr "Mauvaise taille, nous recommandons des images de 464x260 px" -#: ../../include/class/TipsWindow.class.php:751 -#: ../../include/class/TipsWindow.class.php:919 +#: ../../include/class/TipsWindow.class.php:771 +#: ../../include/class/TipsWindow.class.php:939 msgid "Please select a image" msgstr "Veuillez sélectionner une image" -#: ../../include/class/TipsWindow.class.php:755 -#: ../../include/class/TipsWindow.class.php:923 +#: ../../include/class/TipsWindow.class.php:775 +#: ../../include/class/TipsWindow.class.php:943 msgid "Add image" msgstr "Ajouter une image" -#: ../../include/class/TipsWindow.class.php:758 -#: ../../include/class/TipsWindow.class.php:926 +#: ../../include/class/TipsWindow.class.php:778 +#: ../../include/class/TipsWindow.class.php:946 msgid "Images" msgstr "Images" -#: ../../include/class/TipsWindow.class.php:823 +#: ../../include/class/TipsWindow.class.php:843 msgid "Tip edited" msgstr "Astuce modifiée" -#: ../../include/class/TipsWindow.class.php:1096 +#: ../../include/class/TipsWindow.class.php:1116 msgid "Incorrect file" msgstr "Fichier incorrect" -#: ../../include/class/TipsWindow.class.php:1100 +#: ../../include/class/TipsWindow.class.php:1120 msgid "Format image invalid" msgstr "Format d’image non valide" -#: ../../include/class/TipsWindow.class.php:1104 +#: ../../include/class/TipsWindow.class.php:1124 msgid "Image size too large" msgstr "Taille de l’image trop grande" @@ -49005,15 +49418,19 @@ msgstr "Taille de l’image trop grande" msgid "NetScan Custom" msgstr "NetScan personnalisé" -#: ../../include/class/CustomNetScan.class.php:623 +#: ../../include/class/CustomNetScan.class.php:527 +msgid "The minimum recomended interval for Recon Task is 5 minutes" +msgstr "L'intervalle minimal conseillé pour les tâches Recon est de 5 minutes." + +#: ../../include/class/CustomNetScan.class.php:622 msgid "Recon script" msgstr "Script Recon" -#: ../../include/class/CustomNetScan.class.php:663 +#: ../../include/class/CustomNetScan.class.php:662 msgid "Explanation" msgstr "Explication" -#: ../../include/class/CustomNetScan.class.php:679 +#: ../../include/class/CustomNetScan.class.php:678 msgid "macro_desc" msgstr "macro_desc" @@ -49087,7 +49504,7 @@ msgid "The modules is already added" msgstr "Les modules sont déjà ajoutés" #: ../../include/class/ModuleTemplates.class.php:1097 -#: ../../include/class/ModuleTemplates.class.php:1361 +#: ../../include/class/ModuleTemplates.class.php:1365 msgid "Add components" msgstr "Ajouter des composants" @@ -49124,11 +49541,11 @@ msgstr "Supprimer ce module" msgid "Do you want delete this module?" msgstr "Voulez-vous supprimer ce module ?" -#: ../../include/class/ModuleTemplates.class.php:1454 +#: ../../include/class/ModuleTemplates.class.php:1458 msgid "Do you want delete all templates?" msgstr "Voulez-vous supprimer tous les modèles ?" -#: ../../include/class/ModuleTemplates.class.php:1457 +#: ../../include/class/ModuleTemplates.class.php:1461 msgid "Do you want delete the selected templates?" msgstr "Voulez-vous supprimer les modèles sélectionnés ?" @@ -49861,6 +50278,108 @@ msgstr "" "Si quelque chose ne fonctionne pas comme prévu, recherchez cette icône et " "signalez-le !" +#: ../../include/class/AgentDeployWizard.class.php:306 +msgid "Please note that all OS must be 64-bit based architecture" +msgstr "" +"Notez que tous les systèmes d’exploitation doivent être des architectures " +"basées sur 64-bits" + +#: ../../include/class/AgentDeployWizard.class.php:309 +msgid "Choose your OS" +msgstr "Choisissez votre système d’exploitation" + +#: ../../include/class/AgentDeployWizard.class.php:321 +#, php-format +msgid "" +"Use your %s Data Server IP address here. It must be possible to establish a " +"connection from the agent to port 41121/tcp of this address." +msgstr "" +"Utilisez votre %s adresse IP du serveur de données ici. Il doit être possible " +"d’établir une connexion depuis l’agent au port 41121/tcp de cette adresse." + +#: ../../include/class/AgentDeployWizard.class.php:326 +msgid "Server address" +msgstr "Adresse du serveur" + +#: ../../include/class/AgentDeployWizard.class.php:379 +msgid "view the following instructions" +msgstr "veuillez lire les instructions suivantes" + +#: ../../include/class/AgentDeployWizard.class.php:385 +msgid "If you need more information regarding agents" +msgstr "Si vous avez besoin de plus d’informations sur les agents" + +#: ../../include/class/AgentDeployWizard.class.php:415 +msgid "Generate installer" +msgstr "Générer installateur" + +#: ../../include/class/AgentDeployWizard.class.php:436 +msgid "Linux agent" +msgstr "Agent Linux" + +#: ../../include/class/AgentDeployWizard.class.php:446 +msgid "" +"Run the following command in the shell of your Linux server to perform the " +"installation of the generated agent:" +msgstr "" +"Exécutez la commande suivante dans la Shell de votre serveur Linux pour faire " +"l’installation de l’agent génèré :" + +#: ../../include/class/AgentDeployWizard.class.php:449 +#: ../../include/class/AgentDeployWizard.class.php:491 +msgid "" +"Once installed, you must run the following command to start the software agent " +"service:" +msgstr "" +"Un fois installé, exécutez la commande suivante pour initialiser le service de " +"l’agent logiciel:" + +#: ../../include/class/AgentDeployWizard.class.php:458 +msgid "dependencies" +msgstr "dépendances" + +#: ../../include/class/AgentDeployWizard.class.php:460 +msgid "" +"For the correct operation of the Linux agent it is necessary that the server " +"has installed the following " +msgstr "" +"Pour la correcte opération de l’agent Linux il est nécessaire que le serveur " +"installe le suivant " + +#: ../../include/class/AgentDeployWizard.class.php:478 +msgid "Windows agent" +msgstr "Agent Windows" + +#: ../../include/class/AgentDeployWizard.class.php:488 +msgid "Run the following command in cmd.exe as an administrator:" +msgstr "Exécutez la commande suivante dans cmd.exe en tant qu’administrateur :" + +#: ../../include/class/AgentDeployWizard.class.php:510 +msgid "Mac agent" +msgstr "Agent Mac" + +#: ../../include/class/AgentDeployWizard.class.php:524 +msgid "" +"To complete the installation process, please perform a manual installation and " +"configure the server address to XXX and specify the group as XXX. Thank you " +"for your cooperation." +msgstr "" +"Afin de compléter le processus d’installation, veuillez faire l’installation " +"manuelle et configurez l’adresse du serveur à XXX et spécifiez le groupe en " +"tant que XXX. Merci de votre coopération." + +#: ../../include/class/AgentDeployWizard.class.php:530 +msgid "Click to Download the agent" +msgstr "Cliquez ici pour télécharger cet agent" + +#: ../../include/class/AgentDeployWizard.class.php:551 +msgid "Change configuration" +msgstr "Modifier la configuration" + +#: ../../include/class/AgentDeployWizard.class.php:728 +msgid "Installer" +msgstr "Installer" + #: ../../include/class/SatelliteCollection.class.php:306 msgid "Error adding collection" msgstr "Erreur lors de l’ajout d’une collection" @@ -50009,12 +50528,12 @@ msgstr "Informations sur les modules" msgid "Current value" msgstr "Valeur actuelle" -#: ../../include/class/AgentWizard.class.php:5716 +#: ../../include/class/AgentWizard.class.php:5712 #, php-format msgid "The operation '%s' is not permitted. Review for remote components." msgstr "L'opération '%s' n'est pas autorisée. Examen des composants distants." -#: ../../include/class/AgentWizard.class.php:6182 +#: ../../include/class/AgentWizard.class.php:6178 msgid "Modules about to be created" msgstr "Modules sur le point d'être créés" @@ -50216,210 +50735,210 @@ msgstr "Exclure" msgid "Event Report Module" msgstr "Module de rapports d'événements" -#: ../../include/functions_reporting.php:3335 +#: ../../include/functions_reporting.php:3344 msgid "Agent/Modules" msgstr "Agent/Modules" -#: ../../include/functions_reporting.php:3432 +#: ../../include/functions_reporting.php:3441 msgid "Agent/Modules Status" msgstr "État de l’agent/des modules" -#: ../../include/functions_reporting.php:3581 +#: ../../include/functions_reporting.php:3590 msgid "Exception - Everything" msgstr "Exception - Tout" -#: ../../include/functions_reporting.php:3587 +#: ../../include/functions_reporting.php:3596 #, php-format msgid "Exception - Modules over or equal to %s" msgstr "Exception - Modules supérieurs ou égaux à %s" -#: ../../include/functions_reporting.php:3590 +#: ../../include/functions_reporting.php:3599 #, php-format msgid "Modules over or equal to %s" msgstr "Modules supérieurs ou égaux à %s" -#: ../../include/functions_reporting.php:3595 +#: ../../include/functions_reporting.php:3604 #, php-format msgid "Exception - Modules under or equal to %s" msgstr "Exception - Modules inférieurs ou égaux à %s" -#: ../../include/functions_reporting.php:3598 +#: ../../include/functions_reporting.php:3607 #, php-format msgid "Modules under or equal to %s" msgstr "Modules inférieurs ou égaux à %s" -#: ../../include/functions_reporting.php:3603 +#: ../../include/functions_reporting.php:3612 #, php-format msgid "Exception - Modules under %s" msgstr "Exception - Modules inférieurs à %s" -#: ../../include/functions_reporting.php:3606 +#: ../../include/functions_reporting.php:3615 #, php-format msgid "Modules under %s" msgstr "Modules inférieurs à %s" -#: ../../include/functions_reporting.php:3611 +#: ../../include/functions_reporting.php:3620 #, php-format msgid "Exception - Modules over %s" msgstr "Exception - Modules supérieurs à %s" -#: ../../include/functions_reporting.php:3614 +#: ../../include/functions_reporting.php:3623 #, php-format msgid "Modules over %s" msgstr "Modules supérieurs à %s" -#: ../../include/functions_reporting.php:3619 +#: ../../include/functions_reporting.php:3628 #, php-format msgid "Exception - Equal to %s" msgstr "Exception - Égal à %s" -#: ../../include/functions_reporting.php:3622 +#: ../../include/functions_reporting.php:3631 #, php-format msgid "Equal to %s" msgstr "Égal à %s" -#: ../../include/functions_reporting.php:3627 +#: ../../include/functions_reporting.php:3636 #, php-format msgid "Exception - Not equal to %s" msgstr "Exception - Pas égal à %s" -#: ../../include/functions_reporting.php:3630 +#: ../../include/functions_reporting.php:3639 #, php-format msgid "Not equal to %s" msgstr "Pas égal à %s" -#: ../../include/functions_reporting.php:3634 +#: ../../include/functions_reporting.php:3643 msgid "Exception - Modules at normal status" msgstr "Exception - Modules en état normal" -#: ../../include/functions_reporting.php:3635 +#: ../../include/functions_reporting.php:3644 msgid "Modules at normal status" msgstr "Modules en état normal" -#: ../../include/functions_reporting.php:3639 +#: ../../include/functions_reporting.php:3648 msgid "Exception - Modules at critical or warning status" msgstr "Exception - Modules en état critique ou d'alerte" -#: ../../include/functions_reporting.php:3640 +#: ../../include/functions_reporting.php:3649 msgid "Modules at critical or warning status" msgstr "Modules en état critique ou d'alerte" -#: ../../include/functions_reporting.php:3920 +#: ../../include/functions_reporting.php:3929 msgid "There are no Modules under those conditions." msgstr "Aucun module sous ces conditions" -#: ../../include/functions_reporting.php:3924 +#: ../../include/functions_reporting.php:3933 #, php-format msgid "There are no Modules over or equal to %s." msgstr "Aucun module supérieur ou égal à %s" -#: ../../include/functions_reporting.php:3928 +#: ../../include/functions_reporting.php:3937 #, php-format msgid "There are no Modules less or equal to %s." msgstr "Aucun module inférieur ou égal à %s" -#: ../../include/functions_reporting.php:3932 +#: ../../include/functions_reporting.php:3941 #, php-format msgid "There are no Modules less %s." msgstr "Aucun module inférieur à %s" -#: ../../include/functions_reporting.php:3936 +#: ../../include/functions_reporting.php:3945 #, php-format msgid "There are no Modules over %s." msgstr "Aucun module supérieur à %s" -#: ../../include/functions_reporting.php:3940 +#: ../../include/functions_reporting.php:3949 #, php-format msgid "There are no Modules equal to %s" msgstr "Aucun module égal à %s" -#: ../../include/functions_reporting.php:3944 +#: ../../include/functions_reporting.php:3953 #, php-format msgid "There are no Modules not equal to %s" msgstr "Aucun module pas égal à %s" -#: ../../include/functions_reporting.php:3948 +#: ../../include/functions_reporting.php:3957 msgid "There are no Modules normal status" msgstr "Aucun module en état normal" -#: ../../include/functions_reporting.php:3952 +#: ../../include/functions_reporting.php:3961 msgid "There are no Modules at critial or warning status" msgstr "Aucun module en état critique ou d'alerte" -#: ../../include/functions_reporting.php:4380 +#: ../../include/functions_reporting.php:4389 msgid "Event Report Agent" msgstr "Agent de rapport d'événement" -#: ../../include/functions_reporting.php:4799 +#: ../../include/functions_reporting.php:4808 msgid "Database Serialized" msgstr "Base de données sérialisée" -#: ../../include/functions_reporting.php:4995 +#: ../../include/functions_reporting.php:5004 msgid "Last Value" msgstr "Dernière valeur" -#: ../../include/functions_reporting.php:5045 -#: ../../include/functions_reporting.php:5088 +#: ../../include/functions_reporting.php:5054 +#: ../../include/functions_reporting.php:5097 msgid "No data to display within the selected interval" msgstr "Aucune donnée à afficher dans l'intervalle sélectionné" -#: ../../include/functions_reporting.php:5319 +#: ../../include/functions_reporting.php:5328 msgid "Network interfaces report" msgstr "Rapport des interfaces du réseau" -#: ../../include/functions_reporting.php:5413 +#: ../../include/functions_reporting.php:5422 msgid "Custom render report" msgstr "Rapport de rendu personnalisé" -#: ../../include/functions_reporting.php:5453 -#: ../../include/functions_reporting.php:5479 +#: ../../include/functions_reporting.php:5462 +#: ../../include/functions_reporting.php:5488 msgid "" "This query is insecure, it could apply unwanted modiffications on the schema" msgstr "" "Cette requête n’est pas sécurisée, elle peut appliquer des modifications " "indésirables sur le schéma" -#: ../../include/functions_reporting.php:5658 +#: ../../include/functions_reporting.php:5667 msgid "The group has no agents or none of the agents has any network interface" msgstr "Le groupe n'a pas d'agents ou aucun agent a une interface de réseau" -#: ../../include/functions_reporting.php:5683 +#: ../../include/functions_reporting.php:5692 msgid "bytes/s" msgstr "octets/s" -#: ../../include/functions_reporting.php:6350 +#: ../../include/functions_reporting.php:6359 msgid "SQL Graph Vertical Bars" msgstr "Barres verticales du graphique SQL" -#: ../../include/functions_reporting.php:6354 +#: ../../include/functions_reporting.php:6363 msgid "SQL Graph Horizontal Bars" msgstr "Barres horizontales du graphique SQL" -#: ../../include/functions_reporting.php:6358 +#: ../../include/functions_reporting.php:6367 msgid "SQL Graph Pie" msgstr "Diagramme circulaire SQL" -#: ../../include/functions_reporting.php:6585 +#: ../../include/functions_reporting.php:6594 msgid "Netflow Area" msgstr "Zone Netflow" -#: ../../include/functions_reporting.php:6589 +#: ../../include/functions_reporting.php:6598 msgid "Netflow Summary" msgstr "Résumé Netflow" -#: ../../include/functions_reporting.php:6593 +#: ../../include/functions_reporting.php:6602 msgid "Netflow Data" msgstr "Données Netflow" -#: ../../include/functions_reporting.php:6601 +#: ../../include/functions_reporting.php:6610 msgid "Unknown report" msgstr "Rapport inconnu" -#: ../../include/functions_reporting.php:6695 +#: ../../include/functions_reporting.php:6704 msgid "Prediction Date" msgstr "Date de prédiction" -#: ../../include/functions_reporting.php:7705 +#: ../../include/functions_reporting.php:7714 msgid "" "Illegal query: Due security restrictions, there are some tokens or words you " "cannot use: *, delete, drop, alter, modify, password, pass, insert or update." @@ -50428,226 +50947,226 @@ msgstr "" "peuvent pas être employés : *, supprimer, déposer, altérer, modifier, mot de " "passe, passe, introduire ou mettre à jour." -#: ../../include/functions_reporting.php:9118 -#: ../../include/functions_reporting.php:9836 +#: ../../include/functions_reporting.php:9127 +#: ../../include/functions_reporting.php:9845 msgid "No Address" msgstr "Aucune adresse" -#: ../../include/functions_reporting.php:10135 +#: ../../include/functions_reporting.php:10144 msgid "" "The monitor have no data in this range of dates or monitor type is not numeric" msgstr "" "Le moniteur ne dispose pas de données dans cette plage de dates ou le type de " "moniteur n'est pas numérique." -#: ../../include/functions_reporting.php:10153 +#: ../../include/functions_reporting.php:10162 msgid "The monitor type is not numeric" msgstr "Le type de moniteur n'est pas numérique." -#: ../../include/functions_reporting.php:10579 +#: ../../include/functions_reporting.php:10588 msgid "Maximum" msgstr "Maximum" -#: ../../include/functions_reporting.php:10657 +#: ../../include/functions_reporting.php:10666 msgid "Automatic combined graph" msgstr "Graphique automatique combiné" -#: ../../include/functions_reporting.php:12079 -#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12088 +#: ../../include/functions_reporting.php:12112 +#: ../../include/functions_reporting.php:12151 msgid "Server health" msgstr "État du serveur" -#: ../../include/functions_reporting.php:12079 +#: ../../include/functions_reporting.php:12088 #, php-format msgid "%d Downed servers" msgstr "%d serveurs hors service" -#: ../../include/functions_reporting.php:12084 -#: ../../include/functions_reporting.php:12107 +#: ../../include/functions_reporting.php:12093 +#: ../../include/functions_reporting.php:12116 +#: ../../include/functions_reporting.php:12157 msgid "Monitor health" msgstr "État du moniteur" -#: ../../include/functions_reporting.php:12084 +#: ../../include/functions_reporting.php:12093 #, php-format msgid "%d Not Normal monitors" msgstr "%d Moniteurs anormaux" -#: ../../include/functions_reporting.php:12084 -#: ../../include/functions_reporting.php:12108 +#: ../../include/functions_reporting.php:12093 +#: ../../include/functions_reporting.php:12117 msgid "of monitors up" msgstr "de moniteurs actifs" -#: ../../include/functions_reporting.php:12089 -msgid "Module sanityX" -msgstr "Module sanityX" +#: ../../include/functions_reporting.php:12098 +#: ../../include/functions_reporting.php:12120 +#: ../../include/functions_reporting.php:12163 +msgid "Module sanity" +msgstr "État des modules" -#: ../../include/functions_reporting.php:12089 +#: ../../include/functions_reporting.php:12098 #, php-format msgid "%d Not inited monitors" msgstr "%d moniteurs non initialisés" -#: ../../include/functions_reporting.php:12089 -#: ../../include/functions_reporting.php:12112 +#: ../../include/functions_reporting.php:12098 +#: ../../include/functions_reporting.php:12121 msgid "of total modules inited" msgstr "du total de modules initialisés" -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:13202 -#: ../../include/functions_reporting.php:13212 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:13275 +#: ../../include/functions_reporting.php:13285 #, php-format msgid "%d Fired alerts" msgstr "%d alertes déclenchées" -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:12116 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12125 msgid "of defined alerts not fired" msgstr "d'alertes définies non déclenchées" -#: ../../include/functions_reporting.php:12111 -msgid "Module sanity" -msgstr "État des modules" - -#: ../../include/functions_reporting.php:12184 -#: ../../include/functions_groups.php:2733 +#: ../../include/functions_reporting.php:12257 +#: ../../include/functions_groups.php:2758 msgid "Defined and fired alerts" msgstr "Alertes définies et déclenchées" -#: ../../include/functions_reporting.php:12363 +#: ../../include/functions_reporting.php:12436 msgid "Defined users" msgstr "Utilisateurs définis" -#: ../../include/functions_reporting.php:13059 +#: ../../include/functions_reporting.php:13132 msgid "Agent without data" msgstr "Agent sans données" -#: ../../include/functions_reporting.php:13198 +#: ../../include/functions_reporting.php:13271 #, php-format msgid "%d Normal modules" msgstr "%d modules normaux" -#: ../../include/functions_reporting.php:13199 +#: ../../include/functions_reporting.php:13272 #, php-format msgid "%d Critical modules" msgstr "%d modules critiques" -#: ../../include/functions_reporting.php:13200 +#: ../../include/functions_reporting.php:13273 #, php-format msgid "%d Warning modules" msgstr "%d modules en état d'alerte" -#: ../../include/functions_reporting.php:13201 +#: ../../include/functions_reporting.php:13274 #, php-format msgid "%d Unknown modules" msgstr "%d modules inconnus" -#: ../../include/functions_reporting.php:13206 +#: ../../include/functions_reporting.php:13279 #, php-format msgid "%d Total agents" msgstr "%d agents au total" -#: ../../include/functions_reporting.php:13207 +#: ../../include/functions_reporting.php:13280 #, php-format msgid "%d Normal agents" msgstr "%d agents normaux" -#: ../../include/functions_reporting.php:13208 +#: ../../include/functions_reporting.php:13281 #, php-format msgid "%d Critical agents" msgstr "%d agents critiques" -#: ../../include/functions_reporting.php:13209 +#: ../../include/functions_reporting.php:13282 #, php-format msgid "%d Warning agents" msgstr "%d agents en état d'alerte" -#: ../../include/functions_reporting.php:13210 +#: ../../include/functions_reporting.php:13283 #, php-format msgid "%d Unknown agents" msgstr "%d agents inconnus" -#: ../../include/functions_reporting.php:13211 +#: ../../include/functions_reporting.php:13284 #, php-format msgid "%d not init agents" msgstr "%d agents non initialisés" -#: ../../include/functions_reporting.php:14639 +#: ../../include/functions_reporting.php:14712 msgid "Total running modules" msgstr "Nombre total de modules en fonctionnement" -#: ../../include/functions_reporting.php:14642 -#: ../../include/functions_reporting.php:14657 -#: ../../include/functions_reporting.php:14669 -#: ../../include/functions_reporting.php:14687 -#: ../../include/functions_reporting.php:14699 -#: ../../include/functions_reporting.php:14711 -#: ../../include/functions_reporting.php:14723 +#: ../../include/functions_reporting.php:14715 +#: ../../include/functions_reporting.php:14730 +#: ../../include/functions_reporting.php:14742 +#: ../../include/functions_reporting.php:14760 +#: ../../include/functions_reporting.php:14772 +#: ../../include/functions_reporting.php:14784 +#: ../../include/functions_reporting.php:14796 msgid "Ratio" msgstr "Ratio" -#: ../../include/functions_reporting.php:14642 -#: ../../include/functions_reporting.php:14657 -#: ../../include/functions_reporting.php:14669 -#: ../../include/functions_reporting.php:14687 -#: ../../include/functions_reporting.php:14699 -#: ../../include/functions_reporting.php:14711 -#: ../../include/functions_reporting.php:14723 +#: ../../include/functions_reporting.php:14715 +#: ../../include/functions_reporting.php:14730 +#: ../../include/functions_reporting.php:14742 +#: ../../include/functions_reporting.php:14760 +#: ../../include/functions_reporting.php:14772 +#: ../../include/functions_reporting.php:14784 +#: ../../include/functions_reporting.php:14796 msgid "Modules by second" msgstr "Modules par seconde" -#: ../../include/functions_reporting.php:14654 +#: ../../include/functions_reporting.php:14727 msgid "Local modules" msgstr "Modules locaux" -#: ../../include/functions_reporting.php:14664 +#: ../../include/functions_reporting.php:14737 msgid "Network modules" msgstr "Modules de réseau" -#: ../../include/functions_reporting.php:14683 +#: ../../include/functions_reporting.php:14756 msgid "Plugin modules" msgstr "Modules plugin" -#: ../../include/functions_reporting.php:14695 +#: ../../include/functions_reporting.php:14768 msgid "Prediction modules" msgstr "Modules de prédiction" -#: ../../include/functions_reporting.php:14707 +#: ../../include/functions_reporting.php:14780 msgid "WMI modules" msgstr "Modules WMI" -#: ../../include/functions_reporting.php:14719 +#: ../../include/functions_reporting.php:14792 msgid "Web modules" msgstr "Modules Web" -#: ../../include/functions_reporting.php:14757 +#: ../../include/functions_reporting.php:14830 #: ../../include/lib/Dashboard/Widgets/tactical.php:287 msgid "Server performance" msgstr "Performance du serveur" -#: ../../include/functions_reporting.php:14870 +#: ../../include/functions_reporting.php:14943 msgid "Start condition" msgstr "Condition de démarrage" -#: ../../include/functions_reporting.php:14870 +#: ../../include/functions_reporting.php:14943 msgid "Stop condition" msgstr "Condition d’arrêt" -#: ../../include/functions_reporting.php:14880 +#: ../../include/functions_reporting.php:14953 msgid "Weekly:" msgstr "Hebdomadaire :" -#: ../../include/functions_reporting.php:14922 +#: ../../include/functions_reporting.php:14995 msgid "Monthly:" msgstr "Mensuel :" -#: ../../include/functions_reporting.php:15473 +#: ../../include/functions_reporting.php:15546 msgid "Module Histogram Graph" msgstr "Graphique de registres du module" -#: ../../include/functions_reporting.php:15836 +#: ../../include/functions_reporting.php:15913 msgid "Attached to this email there's a PDF file of the" msgstr "Ce courriel contient une pièce jointe en format PDF du" -#: ../../include/functions_reporting.php:15837 +#: ../../include/functions_reporting.php:15914 msgid "report" msgstr "rapport" @@ -50705,85 +51224,85 @@ msgstr "Répertoire créé correctement" msgid "Something gone wrong creating directory" msgstr "Une erreur s'est produite lors de la création du répertoire" -#: ../../include/functions_filemanager.php:541 -#: ../../include/functions_filemanager.php:821 +#: ../../include/functions_filemanager.php:553 +#: ../../include/functions_filemanager.php:838 msgid "Create a Directory" msgstr "Créer un répertoire" -#: ../../include/functions_filemanager.php:545 -#: ../../include/functions_filemanager.php:832 -#: ../../include/functions_filemanager.php:835 +#: ../../include/functions_filemanager.php:559 +#: ../../include/functions_filemanager.php:850 +#: ../../include/functions_filemanager.php:853 msgid "Create File" msgstr "Créer un fichier" -#: ../../include/functions_filemanager.php:549 -#: ../../include/functions_filemanager.php:846 -#: ../../include/functions_filemanager.php:849 +#: ../../include/functions_filemanager.php:564 +#: ../../include/functions_filemanager.php:864 +#: ../../include/functions_filemanager.php:867 msgid "Upload Files" msgstr "Télécharger des fichiers" -#: ../../include/functions_filemanager.php:583 -#: ../../include/functions_filemanager.php:793 +#: ../../include/functions_filemanager.php:598 +#: ../../include/functions_filemanager.php:808 msgid "Real path" msgstr "Chemin réel" -#: ../../include/functions_filemanager.php:618 +#: ../../include/functions_filemanager.php:633 #, php-format msgid "Directory %s doesn't exist!" msgstr "Le répertoire %s n'existe pas !" -#: ../../include/functions_filemanager.php:663 +#: ../../include/functions_filemanager.php:678 msgid "Parent directory" msgstr "Répertoire parent" -#: ../../include/functions_filemanager.php:677 +#: ../../include/functions_filemanager.php:692 msgid "Directory" msgstr "Répertoire" -#: ../../include/functions_filemanager.php:685 +#: ../../include/functions_filemanager.php:700 msgid "Compressed file" msgstr "Fichier compressé" -#: ../../include/functions_filemanager.php:689 -#: ../../include/functions_filemanager.php:696 +#: ../../include/functions_filemanager.php:704 +#: ../../include/functions_filemanager.php:711 msgid "Text file" msgstr "Fichier de texte" -#: ../../include/functions_filemanager.php:729 +#: ../../include/functions_filemanager.php:744 msgid "This file could be executed by any user" msgstr "Ce fichier peut être exécuté par n'importe quel utilisateur" -#: ../../include/functions_filemanager.php:730 +#: ../../include/functions_filemanager.php:745 msgid "Make sure it can't perform dangerous tasks" msgstr "Assurez-vous qu'il ne peut pas effectuer des tâches dangereuses." -#: ../../include/functions_filemanager.php:804 +#: ../../include/functions_filemanager.php:819 msgid "No files or directories to show." msgstr "Aucun fichier ou répertoire à afficher." -#: ../../include/functions_filemanager.php:818 -#: ../../include/functions_filemanager.php:940 +#: ../../include/functions_filemanager.php:835 +#: ../../include/functions_filemanager.php:961 msgid "Create directory" msgstr "Créer un répertoire" -#: ../../include/functions_filemanager.php:880 +#: ../../include/functions_filemanager.php:900 msgid "The zip upload in this dir, easy to upload multiple files." msgstr "" "Téléversez le zip à ce répertoire, utile pour téléverser plusieurs fichiers." -#: ../../include/functions_filemanager.php:882 +#: ../../include/functions_filemanager.php:902 msgid "Decompress" msgstr "Décompresser" -#: ../../include/functions_filemanager.php:954 +#: ../../include/functions_filemanager.php:976 msgid "Create file" msgstr "Créer un fichier" -#: ../../include/functions_filemanager.php:968 +#: ../../include/functions_filemanager.php:990 msgid "Upload file/s" msgstr "Téléverser fichier(s)" -#: ../../include/functions_filemanager.php:999 +#: ../../include/functions_filemanager.php:1021 msgid "The directory is read-only" msgstr "Ce répertoire est seulement accessible en lecture." @@ -50796,15 +51315,15 @@ msgstr "Cliquez ici pour ouvrir une fenêtre pop-up avec l'étiquette de l'URL" msgid "Copy of %s" msgstr "Copie de %s" -#: ../../include/lib/Dashboard/Manager.php:1007 +#: ../../include/lib/Dashboard/Manager.php:1011 msgid "Error create or update dashboard" msgstr "Erreur lors de la création ou de la mise à jour du tableau de bord" -#: ../../include/lib/Dashboard/Manager.php:1479 +#: ../../include/lib/Dashboard/Manager.php:1483 msgid "Icon image dashboard" msgstr "Tableau de bord des images d'icônes" -#: ../../include/lib/Dashboard/Widget.php:468 +#: ../../include/lib/Dashboard/Widget.php:469 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:263 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:347 #: ../../include/lib/Dashboard/Widgets/reports.php:336 @@ -50812,28 +51331,28 @@ msgstr "Tableau de bord des images d'icônes" msgid "Failed to connect to node %d" msgstr "Échec de la connexion au nœud %d" -#: ../../include/lib/Dashboard/Widget.php:483 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:621 +#: ../../include/lib/Dashboard/Widget.php:484 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:634 msgid "Please configure this widget before usage" msgstr "Veuillez configurer le widget avant de l'utiliser" -#: ../../include/lib/Dashboard/Widget.php:491 +#: ../../include/lib/Dashboard/Widget.php:492 #: ../../include/lib/Dashboard/Widgets/maps_status.php:390 #: ../../include/lib/Dashboard/Widgets/events_list.php:561 msgid "Widget cannot be loaded" msgstr "Le widget ne peut pas être chargé" -#: ../../include/lib/Dashboard/Widget.php:491 +#: ../../include/lib/Dashboard/Widget.php:492 #: ../../include/lib/Dashboard/Widgets/maps_status.php:390 msgid "Please, configure the widget again to recover it" msgstr "Veuillez le reconfigurer encore une fois" #: ../../include/lib/Dashboard/Widgets/groups_status.php:158 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:510 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:533 msgid "General group status" msgstr "État général du groupe" -#: ../../include/lib/Dashboard/Widgets/groups_status.php:464 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:477 msgid "Not agents in this group" msgstr "Aucun agent dans ce groupe" @@ -50863,7 +51382,7 @@ msgid "No modules in selected groups" msgstr "Aucun module dans les groupes sélectionnés" #: ../../include/lib/Dashboard/Widgets/heatmap.php:173 -#: ../../include/lib/Dashboard/Widgets/heatmap.php:385 +#: ../../include/lib/Dashboard/Widgets/heatmap.php:386 msgid "Heatmap" msgstr "Carte de chaleur" @@ -50900,7 +51419,7 @@ msgstr "Sinon, la mise en page est verticale" #: ../../include/lib/Dashboard/Widgets/sla_percent.php:471 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:482 #: ../../include/lib/Dashboard/Widgets/events_list.php:528 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:646 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:659 msgid "You don't have access" msgstr "Vous n'avez pas accès." @@ -50922,13 +51441,14 @@ msgstr "Couleur de la police" #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:280 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:361 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:464 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:443 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:256 msgid "Agent / module" msgstr "Agent / module" #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:457 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:552 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:465 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:466 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:699 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:408 msgid "Not found modules" @@ -50961,9 +51481,9 @@ msgid "Maps" msgstr "Cartes" #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:175 -#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:709 +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:711 msgid "Avg|Sum|Max|Min Module Data" -msgstr "Données du module Moy| Somme| Max| Min" +msgstr "Avg|Sum|Max|Min Module Data" #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:390 msgid "Last 30 days" @@ -51047,7 +51567,7 @@ msgstr "Merci d'utiliser %s." #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:174 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:199 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:172 -#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:537 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:545 msgid "Color tabs modules" msgstr "Couleur des onglets des modules" @@ -51134,21 +51654,21 @@ msgid "Zoom level" msgstr "Niveau de zoom" #: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:376 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:417 msgid "Triggered alerts report" msgstr "Rapport d'alertes déclenchées" -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:349 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:390 msgid "Not alert fired" msgstr "Pas d'alerte déclenchée" -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:358 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:399 #: ../../include/lib/Dashboard/Widgets/events_list.php:521 msgid "You must select some group" msgstr "Sélectionnez un groupe" #: ../../include/lib/Dashboard/Widgets/events_list.php:175 -#: ../../include/lib/Dashboard/Widgets/events_list.php:715 +#: ../../include/lib/Dashboard/Widgets/events_list.php:722 msgid "List of latest events" msgstr "Liste des derniers événements" @@ -51158,16 +51678,16 @@ msgstr "Filtres personnalisés" #: ../../include/lib/Dashboard/Widgets/events_list.php:383 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:299 -#: ../../include/functions_events.php:3261 -#: ../../include/functions_events.php:3267 -#: ../../include/functions_events.php:3289 +#: ../../include/functions_events.php:3266 +#: ../../include/functions_events.php:3272 +#: ../../include/functions_events.php:3294 msgid "All event" msgstr "Tous les événements" #: ../../include/lib/Dashboard/Widgets/events_list.php:384 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:300 -#: ../../include/functions_events.php:3263 -#: ../../include/functions_events.php:3297 +#: ../../include/functions_events.php:3268 +#: ../../include/functions_events.php:3302 msgid "Only validated" msgstr "Seulement les événements validés" @@ -51180,10 +51700,38 @@ msgstr "Seulement ceux en attente" msgid "Please, event filter has been removed." msgstr "Veuillez noter que le filtre d’événements a été supprimé." +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:420 +msgid "Color chart" +msgstr "Couleur de la table" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:431 +msgid "Show label" +msgstr "Afficher l’étiquette" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:458 +msgid "Label size in px" +msgstr "Taille de l'étiquette en px" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:470 +msgid "Color label" +msgstr "Couleur de l’étiquette" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:481 +msgid "Show Value" +msgstr "Afficher la valeur" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:501 +msgid "Value size in px" +msgstr "Valeur de la taille en px" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:513 +msgid "Color value" +msgstr "Valeur de la couleur" + #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:172 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:626 msgid "Event cardboard" -msgstr "Carton événementiel" +msgstr "Carte d’événement" #: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:172 #: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:378 @@ -51316,12 +51864,12 @@ msgid "Missing Service id" msgstr "ID de service manquant" #: ../../include/lib/Dashboard/Widgets/agent_module.php:173 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:766 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:779 msgid "Agent/Module View" msgstr "Vue Agent/Module" #: ../../include/lib/Dashboard/Widgets/agent_module.php:250 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:454 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:459 msgid "Filter modules" msgstr "Filtrer les modules" @@ -51375,23 +51923,23 @@ msgstr "critique" msgid "unknown" msgstr "inconnu" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:354 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:357 msgid "Type tree" msgstr "Type d'arbre" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:386 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:389 msgid "Open all groups" msgstr "Ouvrir tous les groupes" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:407 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:411 msgid "Agents status" msgstr "État des agents" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:442 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:447 msgid "Modules status" msgstr "État des modules" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:508 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:513 #, php-format msgid "" "The user doesn't have permission to read agents. Please contact with your %s " @@ -51400,38 +51948,38 @@ msgstr "" "L'utilisateur n'est pas autorisé à lire les agents. Veuillez contacter votre " "administrateur %s." -#: ../../include/lib/Dashboard/Widgets/tree_view.php:654 -#: ../../operation/tree.php:471 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:647 +#: ../../operation/tree.php:473 msgid "Operating systems found" msgstr "Systèmes d'exploitation trouvés" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:658 -#: ../../operation/tree.php:474 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:651 +#: ../../operation/tree.php:476 msgid "Tags found" msgstr "Étiquettes trouvées" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:662 -#: ../../operation/tree.php:477 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:655 +#: ../../operation/tree.php:479 msgid "Module Groups found" msgstr "Groupes de modules trouvés" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:666 -#: ../../operation/tree.php:480 ../../operation/search_main.php:56 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:659 +#: ../../operation/tree.php:482 ../../operation/search_main.php:56 msgid "Modules found" msgstr "Modules trouvés" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:671 -#: ../../operation/tree.php:484 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:664 +#: ../../operation/tree.php:486 msgid "Groups found" msgstr "Groupes trouvés" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:732 -#: ../../operation/tree.php:536 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:725 +#: ../../operation/tree.php:538 msgid "Not normal agents" msgstr "Agents anormales" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:733 -#: ../../operation/tree.php:537 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:726 +#: ../../operation/tree.php:539 msgid "Not normal modules" msgstr "Modules anormales" @@ -51448,10 +51996,6 @@ msgstr "" "Expression régulière ou chaîne insensible à la casse pour le nom du module. " "Par exemple : .*usage.* correspondra à : cpu_usage, vram usage." -#: ../../include/lib/Dashboard/Widgets/top_n.php:280 -msgid "Avg." -msgstr "Moyenne" - #: ../../include/lib/Dashboard/Widgets/top_n.php:456 msgid "There are no agents/modules found matching filter set" msgstr "Aucun agent/module trouvé correspondant à l'ensemble de filtres" @@ -51515,11 +52059,11 @@ msgstr "Active-Passive" msgid "Cluster already defined, please use another name." msgstr "Grappe déjà définie, utilisez un autre nom." -#: ../../include/lib/ClusterViewer/ClusterWizard.php:782 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:783 msgid "Cluster name" msgstr "Nom de grappe" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:783 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:784 msgid "" "An agent with the same name of the cluster will be created, as well a special " "service with the same name" @@ -51527,11 +52071,11 @@ msgstr "" "Un agent avec le m^me nom de la grappe sera créé, ainsi qu'un service special " "avec le même nom" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:797 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:798 msgid "Cluster type" msgstr "Type de grappe" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:798 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:799 msgid "" "AA is a cluster where all members are working. In AP cluster only master " "member is working" @@ -51539,49 +52083,49 @@ msgstr "" "AA c'est une grappe où tous les membres travaillent. Dans la grappe AP " "seulement le membre master travaille" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:806 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:807 msgid "Active - Active" msgstr "Active - Active" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:807 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:808 msgid "Active - Pasive" msgstr "Active - Passive" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:827 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:828 msgid "Target cluster agent will be stored under this group" msgstr "L'agent de grappe cible sera stocké sous ce groupe" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:844 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:845 msgid "" "You must select a Prediction Server to perform all cluster status calculations" msgstr "" "Vous devez détecter un Serveur de prédiction pour accomplir toutes les " "estimations d'état de grappe" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1041 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1042 msgid "critical if" msgstr "critique si" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1050 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1073 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1051 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1074 #, php-format msgid "% of balanced modules are down (equal or greater)." msgstr "% des modules balancés sont désactivés (égal ou supérieur)" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1089 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1090 msgid "Please, set thresholds for all active-passive modules" msgstr "Veuillez définir des seuils pour tous les modules actifs-passifs" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1100 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1101 msgid "Please, set thresholds for all active-active modules" msgstr "Veuillez définir des seuils pour tous les modules actifs-actifs" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1205 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1206 msgid "Please, check all active-passive modules critical for this cluster" msgstr "" "Veuillez vérifier tout les modules critiques active-passive pour cette grappe" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1207 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1208 msgid "" "If a critical balanced module is going to critical status, then cluster will " "be critical." @@ -51589,7 +52133,7 @@ msgstr "" "Si un module balancé critique entre un état critique, la grappe deviendra " "critique." -#: ../../include/lib/Core/DBMaintainer.php:174 +#: ../../include/lib/Core/DBMaintainer.php:177 #, php-format msgid "Connection problems: %s" msgstr "Problèmes de connexion : %s" @@ -51706,52 +52250,52 @@ msgid "Collapse the tree" msgstr "Réduire l'arborescence" #: ../../include/functions_snmp_browser.php:1115 -#: ../../include/functions_snmp_browser.php:1170 +#: ../../include/functions_snmp_browser.php:1178 msgid "Search options" msgstr "Rechercher les options" -#: ../../include/functions_snmp_browser.php:1160 +#: ../../include/functions_snmp_browser.php:1168 msgid "SNMP v3 options" msgstr "Options SNMP v3" -#: ../../include/functions_snmp_browser.php:1192 +#: ../../include/functions_snmp_browser.php:1200 msgid "Search matches" msgstr "Rechercher concordances" -#: ../../include/functions_snmp_browser.php:1208 +#: ../../include/functions_snmp_browser.php:1216 msgid "Create agent modules" msgstr "Créer des modules d'agent" -#: ../../include/functions_snmp_browser.php:1217 +#: ../../include/functions_snmp_browser.php:1225 msgid "Create policy modules" msgstr "Créer des modules de politique" -#: ../../include/functions_snmp_browser.php:1226 +#: ../../include/functions_snmp_browser.php:1234 msgid "Create network components" msgstr "Créer des composants de réseau" -#: ../../include/functions_snmp_browser.php:1656 +#: ../../include/functions_snmp_browser.php:1665 msgid " available" msgstr " disponible" -#: ../../include/functions_snmp_browser.php:1663 +#: ../../include/functions_snmp_browser.php:1672 msgid " to apply" msgstr " À appliquer" -#: ../../include/functions_snmp_browser.php:1668 -#: ../../operation/snmpconsole/snmp_browser.php:535 +#: ../../include/functions_snmp_browser.php:1677 +#: ../../operation/snmpconsole/snmp_browser.php:540 msgid "Create new policy" msgstr "Créer une nouvelle politique" -#: ../../include/functions_snmp_browser.php:1723 +#: ../../include/functions_snmp_browser.php:1732 msgid "Undo" msgstr "Annuler" -#: ../../include/chart_generator.php:117 ../../operation/agentes/stat_win.php:51 +#: ../../include/chart_generator.php:122 ../../operation/agentes/stat_win.php:51 #: ../../operation/agentes/stat_win.php:176 #: ../../operation/agentes/realtime_win.php:51 #: ../../operation/agentes/interface_traffic_graph_win.php:54 -#: ../../operation/inventory/inventory.php:369 +#: ../../operation/inventory/inventory.php:371 msgid "There was a problem connecting with the node" msgstr "Problème de connexion avec le nœud" @@ -51790,7 +52334,8 @@ msgid "GIS map layers" msgstr "Couches de carte GIS" #: ../../include/functions_groups.php:251 -#: ../../operation/agentes/pandora_networkmap.view.php:2413 +#: ../../operation/agentes/networkmap.dinamic.php:150 +#: ../../operation/agentes/pandora_networkmap.view.php:2414 msgid "Network maps" msgstr "Cartes de réseau" @@ -51824,159 +52369,153 @@ msgstr "Impossible de se connecter : %s" msgid "Latest events" msgstr "Derniers événements" -#: ../../include/functions_events.php:2910 +#: ../../include/functions_events.php:2915 msgid "Going to unknown" msgstr "Changement à état inconnu" -#: ../../include/functions_events.php:2918 +#: ../../include/functions_events.php:2923 msgid "Alert manually validated" msgstr "Alerte validée manuellement" -#: ../../include/functions_events.php:2922 +#: ../../include/functions_events.php:2927 msgid "Going from critical to warning" msgstr "Changement de l'état critique à l'état d'alerte" -#: ../../include/functions_events.php:2928 +#: ../../include/functions_events.php:2933 msgid "Going up to critical state" msgstr "Passage à l'état critique" -#: ../../include/functions_events.php:2934 +#: ../../include/functions_events.php:2939 msgid "Going up to normal state" msgstr "Passage à l'état normal" -#: ../../include/functions_events.php:2938 +#: ../../include/functions_events.php:2943 msgid "Going down from normal to warning" msgstr "Passage de l'état normal à l'état d'alerte" -#: ../../include/functions_events.php:2950 +#: ../../include/functions_events.php:2955 msgid "Discovery server detected a new host" msgstr "Le serveur Discovery a détecté un nouvel hôte" -#: ../../include/functions_events.php:2954 +#: ../../include/functions_events.php:2959 msgid "New agent created" msgstr "Nouvel agent créé" -#: ../../include/functions_events.php:2971 +#: ../../include/functions_events.php:2976 msgid "Unknown type:" msgstr "Type inconnu :" -#: ../../include/functions_events.php:3262 -#: ../../include/functions_events.php:3293 +#: ../../include/functions_events.php:3267 +#: ../../include/functions_events.php:3298 msgid "Only new" msgstr "Uniquement les nouveaux" -#: ../../include/functions_events.php:3264 -#: ../../include/functions_events.php:3301 +#: ../../include/functions_events.php:3269 +#: ../../include/functions_events.php:3306 msgid "Only in process" msgstr "Uniquement ceux en cours" -#: ../../include/functions_events.php:3265 -#: ../../include/functions_events.php:3305 +#: ../../include/functions_events.php:3270 +#: ../../include/functions_events.php:3310 msgid "Only not validated" msgstr "Uniquement les non validés" -#: ../../include/functions_events.php:3270 -#: ../../include/functions_events.php:3543 -#: ../../include/functions_events.php:3552 -msgid "In process" -msgstr "En cours" - -#: ../../include/functions_events.php:3271 +#: ../../include/functions_events.php:3276 msgid "Not Validated" msgstr "Non validés" -#: ../../include/functions_events.php:3463 +#: ../../include/functions_events.php:3468 msgid "Change owner" msgstr "Changer de propriétaire" -#: ../../include/functions_events.php:3528 +#: ../../include/functions_events.php:3533 msgid "Change status" msgstr "Modifier l'état" -#: ../../include/functions_events.php:3625 -#: ../../include/functions_events.php:5361 +#: ../../include/functions_events.php:3630 +#: ../../include/functions_events.php:5366 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:330 msgid "Add comment" msgstr "Ajouter un commentaire" -#: ../../include/functions_events.php:3648 -#: ../../include/functions_events.php:3652 ../../operation/events/events.php:978 +#: ../../include/functions_events.php:3653 +#: ../../include/functions_events.php:3657 ../../operation/events/events.php:983 msgid "Delete event" msgstr "Supprimer l'événement" -#: ../../include/functions_events.php:3675 +#: ../../include/functions_events.php:3680 msgid "Custom responses" msgstr "Réponses personnalisées" -#: ../../include/functions_events.php:4281 +#: ../../include/functions_events.php:4286 msgid "Extended information" msgstr "Informations étendues" -#: ../../include/functions_events.php:4312 +#: ../../include/functions_events.php:4317 msgid "There was an error connecting to the node" msgstr "Erreur de connexion au nœud" -#: ../../include/functions_events.php:4333 +#: ../../include/functions_events.php:4338 msgid "Agent details" msgstr "Détails de l'agent" -#: ../../include/functions_events.php:4347 +#: ../../include/functions_events.php:4352 msgid "This agent belongs to metaconsole, is not possible display it" msgstr "" "Cet agent appartient à la Métaconsole, il n'est pas possible de l'afficher" -#: ../../include/functions_events.php:4442 +#: ../../include/functions_events.php:4447 msgid "View custom fields" msgstr "Afficher les champs personnalisés" -#: ../../include/functions_events.php:4465 +#: ../../include/functions_events.php:4470 msgid "Module details" msgstr "Détails du module" -#: ../../include/functions_events.php:4481 +#: ../../include/functions_events.php:4486 msgid "No assigned" msgstr "Non attribué" -#: ../../include/functions_events.php:4562 -#: ../../include/functions_events.php:4571 +#: ../../include/functions_events.php:4567 +#: ../../include/functions_events.php:4576 msgid "Go to data overview" msgstr "Accéder à l'aperçu de données" -#: ../../include/functions_events.php:4688 +#: ../../include/functions_events.php:4693 #, php-format msgid "Invalid custom data: %s" msgstr "Données personnalisées non valides : %s" -#: ../../include/functions_events.php:4917 +#: ../../include/functions_events.php:4922 msgid "First event" msgstr "Premier événement" -#: ../../include/functions_events.php:4920 +#: ../../include/functions_events.php:4925 msgid "Last event" msgstr "Dernier événement" -#: ../../include/functions_events.php:5017 +#: ../../include/functions_events.php:5022 msgid "Autovalidated" msgstr "Autovalidé" -#: ../../include/functions_events.php:5093 +#: ../../include/functions_events.php:5098 msgid "ID extra" msgstr "Identifiant supplémentaire" -#: ../../include/functions_events.php:5210 +#: ../../include/functions_events.php:5215 msgid "There are no comments" msgstr "Aucun commentaire" -#: ../../include/functions_events.php:5274 ../../general/logon_ok.php:214 +#: ../../include/functions_events.php:5279 msgid "by" msgstr "par" -#: ../../include/functions_events.php:5941 +#: ../../include/functions_events.php:5946 #, php-format msgid "Event # %d" msgstr "Événement # %d" -#: ../../include/functions_events.php:5944 +#: ../../include/functions_events.php:5949 msgid "Executing command: " msgstr "Exécution de la commande : " @@ -52052,15 +52591,15 @@ msgstr "Erreur SAML" msgid "User is blocked" msgstr "L’utilisateur est bloqué" -#: ../../index.php:1003 +#: ../../index.php:1004 msgid "User doesn\\'t exist." msgstr "L'utilisateur n'existe pas" -#: ../../index.php:1025 +#: ../../index.php:1026 msgid "User only can use the API." msgstr "L'utilisateur peut seulement utiliser l'API." -#: ../../index.php:1231 +#: ../../index.php:1232 #, php-format msgid "Metaconsole MR (%d) is different than this one (%d)" msgstr "La Métaconsole MR (%d) est différent de celui-ci (%d)" @@ -52097,35 +52636,35 @@ msgstr "groupes de modules" msgid "policies" msgstr "politiques" -#: ../../operation/tree.php:215 +#: ../../operation/tree.php:216 msgid "Search group" msgstr "Rechercher groupe" -#: ../../operation/tree.php:221 ../../operation/tree.php:310 +#: ../../operation/tree.php:222 ../../operation/tree.php:312 msgid "Show not init modules" msgstr "Afficher les modules non initialisés" -#: ../../operation/tree.php:232 +#: ../../operation/tree.php:233 msgid "Search agent" msgstr "Rechercher agent" -#: ../../operation/tree.php:244 +#: ../../operation/tree.php:245 msgid "Show not init agents" msgstr "Afficher les agents non initialisés" -#: ../../operation/tree.php:254 +#: ../../operation/tree.php:255 msgid "Show full hirearchy" msgstr "Afficher hiérarchie complète" -#: ../../operation/tree.php:288 +#: ../../operation/tree.php:289 msgid "Show only disabled" msgstr "Afficher uniquement désactivé" -#: ../../operation/tree.php:305 +#: ../../operation/tree.php:307 msgid "Search module" msgstr "Rechercher module" -#: ../../operation/tree.php:355 +#: ../../operation/tree.php:357 msgid "Tree search" msgstr "Rechercher arborescence" @@ -52208,34 +52747,29 @@ msgstr "" "Si vous cochez cette case, la taille du bloc de la configuration globale sera " "utilisée" -#: ../../operation/users/user_edit.php:519 -#: ../../operation/users/user_edit.php:528 +#: ../../operation/users/user_edit.php:524 msgid "Theme" msgstr "Thème" -#: ../../operation/users/user_edit.php:529 -msgid "This change will only apply to nodes" -msgstr "Cette modification ne s’appliquera qu’aux nœuds" - -#: ../../operation/users/user_edit.php:846 +#: ../../operation/users/user_edit.php:843 msgid "eHorus user configuration" msgstr "Configuration utilisateur eHorus" -#: ../../operation/users/user_edit.php:851 +#: ../../operation/users/user_edit.php:848 msgid "eHorus user acces enabled" msgstr "Accès utilisateur eHorus activé" -#: ../../operation/users/user_edit.php:905 +#: ../../operation/users/user_edit.php:902 msgid "Integria user configuration" msgstr "Configuration d’utilisateur Integria" -#: ../../operation/users/user_edit.php:948 +#: ../../operation/users/user_edit.php:945 msgid "You can not change your user info under the current authentication scheme" msgstr "" "Vous ne pouvez pas modifier vos informations d'utilisateur sous le schéma " "d'authentification actuel" -#: ../../operation/users/user_edit.php:1036 +#: ../../operation/users/user_edit.php:1033 msgid "This user doesn't have any assigned profile/group." msgstr "Cet utilisateur n'a aucun profil/groupe assigné." @@ -52267,41 +52801,41 @@ msgstr "" msgid "Matches" msgstr "Concordances" -#: ../../operation/visual_console/view.php:407 +#: ../../operation/visual_console/view.php:409 msgid "Delete Item" msgstr "Supprimer l'élément" -#: ../../operation/visual_console/view.php:413 +#: ../../operation/visual_console/view.php:415 msgid "Copy Item" msgstr "Copier l'élément" -#: ../../operation/visual_console/view.php:430 +#: ../../operation/visual_console/view.php:432 msgid "Force remote checks" msgstr "Forcer les vérifications à distance" -#: ../../operation/visual_console/view.php:788 +#: ../../operation/visual_console/view.php:790 msgid "Are you sure you wish to set the visual console in maintenance mode" msgstr "" "Êtes-vous sûr de vouloir mettre la console visuelle en mode maintenance ?" -#: ../../operation/visual_console/view.php:791 -#: ../../operation/visual_console/view.php:798 +#: ../../operation/visual_console/view.php:793 +#: ../../operation/visual_console/view.php:800 msgid "Are you sure you wish to disable maintenance mode" msgstr "Êtes-vous sûr de vouloir désactiver le mode maintenance ?" -#: ../../operation/visual_console/view.php:794 +#: ../../operation/visual_console/view.php:796 msgid "The visual console was set to maintenance mode" msgstr "La console visuelle a été réglée en mode maintenance" -#: ../../operation/visual_console/view.php:796 +#: ../../operation/visual_console/view.php:798 msgid "ago by user" msgstr "par l’utilisateur" -#: ../../operation/visual_console/view.php:803 +#: ../../operation/visual_console/view.php:805 msgid "Maintenance mode" msgstr "Mode maintenance" -#: ../../operation/visual_console/view.php:864 +#: ../../operation/visual_console/view.php:866 msgid "Are you sure" msgstr "Êtes-vous certain" @@ -52333,64 +52867,65 @@ msgstr "Heure de rafraîchissement" msgid "Show events" msgstr "Afficher les événements" -#: ../../operation/agentes/stat_win.php:299 +#: ../../operation/agentes/stat_win.php:303 #: ../../operation/agentes/graphs.php:239 msgid "Show alerts" msgstr "Afficher les alertes" -#: ../../operation/agentes/stat_win.php:307 -#: ../../operation/agentes/stat_win.php:418 -#: ../../operation/agentes/interface_traffic_graph_win.php:209 +#: ../../operation/agentes/stat_win.php:311 +#: ../../operation/agentes/stat_win.php:430 +#: ../../operation/agentes/interface_traffic_graph_win.php:214 msgid "Begin time" msgstr "Heure de début" -#: ../../operation/agentes/stat_win.php:325 -#: ../../operation/agentes/stat_win.php:428 -#: ../../operation/agentes/interface_traffic_graph_win.php:215 +#: ../../operation/agentes/stat_win.php:333 +#: ../../operation/agentes/stat_win.php:444 +#: ../../operation/agentes/interface_traffic_graph_win.php:231 #: ../../operation/agentes/graphs.php:233 #: ../../operation/reporting/graph_viewer.php:346 msgid "Time range" msgstr "Intervalle de temps" -#: ../../operation/agentes/stat_win.php:340 +#: ../../operation/agentes/stat_win.php:348 #: ../../operation/reporting/graph_viewer.php:390 msgid "Zoom" msgstr "Zoom" -#: ../../operation/agentes/stat_win.php:360 -#: ../../operation/agentes/interface_traffic_graph_win.php:229 +#: ../../operation/agentes/stat_win.php:368 +#: ../../operation/agentes/interface_traffic_graph_win.php:245 msgid "Show percentil" msgstr "Afficher centile" -#: ../../operation/agentes/stat_win.php:386 +#: ../../operation/agentes/stat_win.php:394 msgid "Show AVG/MAX/MIN data series in graph" msgstr "Afficher les séries de données MOY/MAX/MIN dans le graphique" -#: ../../operation/agentes/stat_win.php:484 -#: ../../operation/agentes/interface_traffic_graph_win.php:308 +#: ../../operation/agentes/stat_win.php:500 +#: ../../operation/agentes/interface_traffic_graph_win.php:318 +#: ../../operation/agentes/interface_traffic_graph_win.php:322 msgid "Graph configuration menu" msgstr "Menu de configuration du graphique" -#: ../../operation/agentes/alerts_status.php:344 +#: ../../operation/agentes/alerts_status.php:346 msgid "No actions" msgstr "Aucune action" -#: ../../operation/agentes/alerts_status.php:378 -#: ../../operation/agentes/estado_monitores.php:577 +#: ../../operation/agentes/alerts_status.php:380 +#: ../../operation/agentes/estado_monitores.php:575 #: ../../operation/agentes/alerts_status.functions.php:223 msgid "Free text for search (*):" msgstr "Texte libre pour la recherche (*):" -#: ../../operation/agentes/alerts_status.php:379 +#: ../../operation/agentes/alerts_status.php:381 #: ../../operation/agentes/alerts_status.functions.php:224 msgid "Filter by module name, template name or action name" msgstr "Filtrer par nom de module, nom de modèle ou nom d'action" -#: ../../operation/agentes/alerts_status.php:475 +#: ../../operation/agentes/alerts_status.php:481 msgid "Full list of alerts" msgstr "Liste complète des alertes" -#: ../../operation/agentes/alerts_status.php:567 +#: ../../operation/agentes/alerts_status.php:577 msgid "You must select at least one alert." msgstr "Vous devez sélectionner au moins une alerte." @@ -52464,15 +52999,15 @@ msgid "Search in custom fields" msgstr "Rechercher dans les champs personnalisés" #: ../../operation/agentes/estado_agente.php:467 -#: ../../operation/agentes/status_monitor.php:1058 +#: ../../operation/agentes/status_monitor.php:1060 msgid "Manage filter" msgstr "Gérer le filtre" -#: ../../operation/agentes/estado_agente.php:1059 +#: ../../operation/agentes/estado_agente.php:1067 msgid "L.S change" msgstr "Changement L.S" -#: ../../operation/agentes/estado_agente.php:1238 +#: ../../operation/agentes/estado_agente.php:1247 msgid "Agent events" msgstr "Evénements de l’agent" @@ -52519,14 +53054,14 @@ msgid "Latest events for this agent" msgstr "Derniers événements pour cet agent" #: ../../operation/agentes/networkmap.dinamic.php:102 -#: ../../operation/agentes/pandora_networkmap.view.php:2347 +#: ../../operation/agentes/pandora_networkmap.view.php:2348 #: ../../operation/snmpconsole/snmp_statistics.php:45 #: ../../operation/snmpconsole/snmp_browser.php:56 msgid "Normal screen" msgstr "Écran normal" #: ../../operation/agentes/networkmap.dinamic.php:126 -#: ../../operation/agentes/pandora_networkmap.view.php:2375 +#: ../../operation/agentes/pandora_networkmap.view.php:2376 msgid "List of networkmap" msgstr "Liste de cartes de réseau" @@ -52706,39 +53241,39 @@ msgid "Succesfully created" msgstr "Créée correctement" #: ../../operation/agentes/pandora_networkmap.php:215 -#: ../../operation/agentes/pandora_networkmap.php:514 +#: ../../operation/agentes/pandora_networkmap.php:515 msgid "Succesfully updated" msgstr "Mise à jour correctement" -#: ../../operation/agentes/pandora_networkmap.php:539 +#: ../../operation/agentes/pandora_networkmap.php:540 msgid "Succesfully duplicate" msgstr "Dupliquée correctement" -#: ../../operation/agentes/pandora_networkmap.php:562 +#: ../../operation/agentes/pandora_networkmap.php:563 msgid "Succesfully deleted" msgstr "Supprimée correctement" -#: ../../operation/agentes/pandora_networkmap.php:672 +#: ../../operation/agentes/pandora_networkmap.php:673 msgid "List of network maps" msgstr "Liste des cartes du réseau" -#: ../../operation/agentes/pandora_networkmap.php:787 +#: ../../operation/agentes/pandora_networkmap.php:788 msgid "Empty map" msgstr "Carte vide" -#: ../../operation/agentes/pandora_networkmap.php:791 +#: ../../operation/agentes/pandora_networkmap.php:792 msgid "Pending to generate" msgstr "En attente de générer" -#: ../../operation/agentes/pandora_networkmap.php:846 +#: ../../operation/agentes/pandora_networkmap.php:847 msgid "There are no maps defined." msgstr "Aucune carte définie" -#: ../../operation/agentes/pandora_networkmap.php:860 +#: ../../operation/agentes/pandora_networkmap.php:861 msgid "Create network map" msgstr "Créer une carte de réseau" -#: ../../operation/agentes/pandora_networkmap.php:860 +#: ../../operation/agentes/pandora_networkmap.php:861 msgid "Create empty network map" msgstr "Créer une carte réseau vide" @@ -52747,11 +53282,11 @@ msgstr "Créer une carte réseau vide" msgid "%s Interface Graph" msgstr "%s Graphique d'interface" -#: ../../operation/agentes/interface_traffic_graph_win.php:252 +#: ../../operation/agentes/interface_traffic_graph_win.php:268 msgid "Zoom factor" msgstr "Facteur de zoom" -#: ../../operation/agentes/interface_traffic_graph_win.php:259 +#: ../../operation/agentes/interface_traffic_graph_win.php:275 msgid "Full" msgstr "Complet" @@ -52816,15 +53351,15 @@ msgid "Custom graph create from the tab graphs in the agent." msgstr "" "Graphique personnalisé créé à partir de la section des graphiques de l'agent" -#: ../../operation/agentes/datos_agente.php:173 +#: ../../operation/agentes/datos_agente.php:174 msgid "Received data from" msgstr "Données reçues de" -#: ../../operation/agentes/datos_agente.php:180 +#: ../../operation/agentes/datos_agente.php:181 msgid "Main database" msgstr "Base de données principale" -#: ../../operation/agentes/datos_agente.php:181 +#: ../../operation/agentes/datos_agente.php:182 msgid "" "Switch between the main database and the history database to retrieve module " "data" @@ -52832,7 +53367,7 @@ msgstr "" "Changez entre la base de données principale et la base de données de " "l'historique pour récupérer les données du module." -#: ../../operation/agentes/datos_agente.php:211 +#: ../../operation/agentes/datos_agente.php:213 #: ../../operation/agentes/alerts_status.functions.php:151 msgid "Free text for search" msgstr "Texte libre pour recherche" @@ -52867,7 +53402,7 @@ msgid "% Bandwidth usage (out)" msgstr "% d'utilisation de la bande passante (sortie)" #: ../../operation/agentes/interface_view.functions.php:731 -#: ../../operation/agentes/pandora_networkmap.view.php:1308 +#: ../../operation/agentes/pandora_networkmap.view.php:1309 msgid "inOctets and outOctets must be enabled." msgstr "inOctets et outOctets doivent être activés." @@ -52922,28 +53457,24 @@ msgstr "Aucun champ défini" msgid "Interface view" msgstr "Vue de l'interface" -#: ../../operation/agentes/status_monitor.php:327 ../../operation/menu.php:186 -msgid "Monitor detail" -msgstr "Détail des moniteurs" - -#: ../../operation/agentes/status_monitor.php:592 +#: ../../operation/agentes/status_monitor.php:591 #: ../../operation/agentes/alerts_status.functions.php:127 msgid "No tags" msgstr "Aucune étiquette" -#: ../../operation/agentes/status_monitor.php:675 +#: ../../operation/agentes/status_monitor.php:674 msgid "Wux server module" msgstr "Module du serveur WUX" -#: ../../operation/agentes/status_monitor.php:971 +#: ../../operation/agentes/status_monitor.php:973 msgid "Min. hours in current status" msgstr "Heures min. dans l'état actuel" -#: ../../operation/agentes/status_monitor.php:981 +#: ../../operation/agentes/status_monitor.php:983 msgid "Not condition" msgstr "Pas de condition" -#: ../../operation/agentes/status_monitor.php:996 +#: ../../operation/agentes/status_monitor.php:998 msgid "" "If you check this option, those elements that do NOT meet any of the " "requirements will be shown" @@ -52951,26 +53482,26 @@ msgstr "" "Si vous cochez cette option, les éléments qui ne répondent à aucune des " "exigences seront affichés" -#: ../../operation/agentes/status_monitor.php:1541 +#: ../../operation/agentes/status_monitor.php:1543 msgid "Data Type" msgstr "Type de données" -#: ../../operation/agentes/status_monitor.php:1585 +#: ../../operation/agentes/status_monitor.php:1587 msgid "W/C" msgstr "W/C" -#: ../../operation/agentes/status_monitor.php:1671 -#: ../../operation/agentes/pandora_networkmap.view.php:1819 +#: ../../operation/agentes/status_monitor.php:1673 +#: ../../operation/agentes/pandora_networkmap.view.php:1820 msgid "(Adopt) " msgstr "(Adopter) " -#: ../../operation/agentes/status_monitor.php:1679 -#: ../../operation/agentes/pandora_networkmap.view.php:1827 +#: ../../operation/agentes/status_monitor.php:1681 +#: ../../operation/agentes/pandora_networkmap.view.php:1828 msgid "(Unlinked) (Adopt) " msgstr "(Dissocié) (Adopter) " -#: ../../operation/agentes/status_monitor.php:1682 -#: ../../operation/agentes/pandora_networkmap.view.php:1830 +#: ../../operation/agentes/status_monitor.php:1684 +#: ../../operation/agentes/pandora_networkmap.view.php:1831 msgid "(Unlinked) " msgstr "(Dissocié) " @@ -52978,6 +53509,10 @@ msgstr "(Dissocié) " msgid "Summary of the status groups" msgstr "Résumé des groupes par état" +#: ../../operation/agentes/group_view.php:233 +msgid "Total items" +msgstr "Total des éléments" + #: ../../operation/agentes/estado_monitores.php:51 msgid "Tag's information" msgstr "Information des étiquettes" @@ -52994,23 +53529,15 @@ msgstr "Modules non initialisés trouvés." msgid "List of modules" msgstr "Liste de modules" -#: ../../operation/agentes/estado_monitores.php:191 -msgid "" -"To see the list of modules paginated, enable this option in the Styles " -"Configuration." -msgstr "" -"Pour afficher la liste de modules paginés, activez cette option dans la " -"configuration de styles." - -#: ../../operation/agentes/estado_monitores.php:519 +#: ../../operation/agentes/estado_monitores.php:516 msgid "Not Normal" msgstr "Pas normal" -#: ../../operation/agentes/estado_monitores.php:559 +#: ../../operation/agentes/estado_monitores.php:557 msgid "Status:" msgstr "État :" -#: ../../operation/agentes/estado_monitores.php:578 +#: ../../operation/agentes/estado_monitores.php:576 msgid "Search by module name, list matches." msgstr "Rechercher par nom de module, concordances de listes" @@ -53020,24 +53547,24 @@ msgstr "" "Afficher uniquement la tâche avec le script de reconnaissance \"SNMP L2 Recon" "\"." -#: ../../operation/agentes/pandora_networkmap.view.php:1687 +#: ../../operation/agentes/pandora_networkmap.view.php:1688 msgid "Success be updated." msgstr "Mis à jour correctement" -#: ../../operation/agentes/pandora_networkmap.view.php:1784 +#: ../../operation/agentes/pandora_networkmap.view.php:1785 msgid "Name: " msgstr "Nom : " -#: ../../operation/agentes/pandora_networkmap.view.php:1834 +#: ../../operation/agentes/pandora_networkmap.view.php:1835 msgid "Policy: " msgstr "Politique : " -#: ../../operation/agentes/pandora_networkmap.view.php:1931 +#: ../../operation/agentes/pandora_networkmap.view.php:1932 msgid "Data: " msgstr "Données : " -#: ../../operation/agentes/pandora_networkmap.view.php:1933 -#: ../../operation/agentes/estado_generalagente.php:923 +#: ../../operation/agentes/pandora_networkmap.view.php:1934 +#: ../../operation/agentes/estado_generalagente.php:830 msgid "Last contact: " msgstr "Dernier contact : " @@ -53045,27 +53572,27 @@ msgstr "Dernier contact : " msgid "Sons" msgstr "Fils" -#: ../../operation/agentes/ver_agente.php:1596 +#: ../../operation/agentes/ver_agente.php:1592 msgid "Log Viewer" msgstr "Visionneur de journaux" -#: ../../operation/agentes/ver_agente.php:1635 +#: ../../operation/agentes/ver_agente.php:1631 msgid "Terminal" msgstr "Terminal" -#: ../../operation/agentes/ver_agente.php:1657 +#: ../../operation/agentes/ver_agente.php:1653 msgid "Processes" msgstr "Processus" -#: ../../operation/agentes/ver_agente.php:1840 +#: ../../operation/agentes/ver_agente.php:1836 msgid "Data View" msgstr "Vue des données" -#: ../../operation/agentes/ver_agente.php:1910 +#: ../../operation/agentes/ver_agente.php:1906 msgid "Network configuration" msgstr "Configuration réseau" -#: ../../operation/agentes/ver_agente.php:1925 +#: ../../operation/agentes/ver_agente.php:1921 msgid "Agent main view" msgstr "Vue principale de l’agent" @@ -53078,43 +53605,27 @@ msgstr "" msgid "In scheduled downtime" msgstr "En arrêt planifié" -#: ../../operation/agentes/estado_generalagente.php:395 +#: ../../operation/agentes/estado_generalagente.php:366 msgid "Agent contact" msgstr "Contact de l'agent" -#: ../../operation/agentes/estado_generalagente.php:401 +#: ../../operation/agentes/estado_generalagente.php:372 msgid "Refresh data" msgstr "Rafraîchir les données" -#: ../../operation/agentes/estado_generalagente.php:435 -msgid "Out of bounds" -msgstr "Hors limites" - -#: ../../operation/agentes/estado_generalagente.php:470 -msgid "Next contact" -msgstr "Contact suivant" - -#: ../../operation/agentes/estado_generalagente.php:555 -msgid "There is no GIS data." -msgstr "Aucune donnée GIS" - -#: ../../operation/agentes/estado_generalagente.php:688 +#: ../../operation/agentes/estado_generalagente.php:657 msgid "Agent access rate (Last 24h)" msgstr "Taux d'accès des agents (dernières 24h)" -#: ../../operation/agentes/estado_generalagente.php:745 +#: ../../operation/agentes/estado_generalagente.php:714 msgid "Active incident on this agent" msgstr "Incident actif sur cet agent" -#: ../../operation/agentes/estado_generalagente.php:903 -msgid "Events info (24hr.)" -msgstr "Information des événements (24h)" - -#: ../../operation/agentes/estado_generalagente.php:1050 +#: ../../operation/agentes/estado_generalagente.php:957 msgid "Agent data" msgstr "Données de l'agent" -#: ../../operation/agentes/estado_generalagente.php:1111 +#: ../../operation/agentes/estado_generalagente.php:1018 msgid "Interface information (SNMP)" msgstr "Information de l'interface (SNMP)" @@ -53122,8 +53633,8 @@ msgstr "Information de l'interface (SNMP)" msgid "This agent has not modules inventory" msgstr "Cet agent n'a pas de modules d'inventaire." -#: ../../operation/agentes/agent_inventory.php:193 -#: ../../operation/agentes/agent_inventory.php:194 +#: ../../operation/agentes/agent_inventory.php:248 +#: ../../operation/agentes/agent_inventory.php:249 msgid "Diff view" msgstr "Affichage des différence" @@ -53278,7 +53789,7 @@ msgstr "Nombre de résultat à afficher" #: ../../operation/network/network_report.php:183 #: ../../operation/network/network_usage_map.php:189 -#: ../../operation/netflow/nf_live_view.php:483 +#: ../../operation/netflow/nf_live_view.php:556 msgid "Defined period" msgstr "Période définie" @@ -53314,47 +53825,56 @@ msgstr "Afficher la carte netflow" msgid "Results to show" msgstr "Résultats à afficher" -#: ../../operation/netflow/nf_live_view.php:130 +#: ../../operation/netflow/nf_live_view.php:135 msgid "Netflow live view" msgstr "Netflow en temps réel" -#: ../../operation/netflow/nf_live_view.php:163 +#: ../../operation/netflow/nf_live_view.php:172 msgid "Error creating filter" msgstr "Erreur de création du filtre" -#: ../../operation/netflow/nf_live_view.php:165 +#: ../../operation/netflow/nf_live_view.php:174 msgid "Filter created successfully" msgstr "Filtre créé correctement" -#: ../../operation/netflow/nf_live_view.php:184 +#: ../../operation/netflow/nf_live_view.php:193 msgid "Filter updated successfully" msgstr "Filtre mis à jour correctement" -#: ../../operation/netflow/nf_live_view.php:185 +#: ../../operation/netflow/nf_live_view.php:194 msgid "Error updating filter" msgstr "Erreur de mise à jour du filtre" -#: ../../operation/netflow/nf_live_view.php:228 +#: ../../operation/netflow/nf_live_view.php:237 msgid "Connection" msgstr "Connexion" -#: ../../operation/netflow/nf_live_view.php:284 +#: ../../operation/netflow/nf_live_view.php:293 msgid "Select a filter" msgstr "Sélectionner un filtre" -#: ../../operation/netflow/nf_live_view.php:357 +#: ../../operation/netflow/nf_live_view.php:366 msgid "IP address resolution" msgstr "Résolution de l'adresse IP" -#: ../../operation/netflow/nf_live_view.php:357 +#: ../../operation/netflow/nf_live_view.php:366 msgid "Resolve the IP addresses to get their hostnames." msgstr "Résoudre les adresses IP pour obtenir leurs noms d'hôte" -#: ../../operation/netflow/nf_live_view.php:360 +#: ../../operation/netflow/nf_live_view.php:369 msgid "Source ip" msgstr "IP source" -#: ../../operation/netflow/nf_live_view.php:465 +#: ../../operation/netflow/nf_live_view.php:387 +msgid "New filter name" +msgstr "Nouveau nom de filtre" + +#: ../../operation/netflow/nf_live_view.php:425 +#, php-format +msgid "WARNING threshold for the maximum % of traffic of an IP." +msgstr "Seuil d’AVERTISSEMENT pour le maximum % de traffic pour une IP." + +#: ../../operation/netflow/nf_live_view.php:538 #: ../../operation/incidents/integriaims_export_csv.php:84 #: ../../operation/incidents/configure_integriaims_incident.php:353 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:339 @@ -53362,31 +53882,31 @@ msgstr "IP source" msgid "Resolution" msgstr "Résolution" -#: ../../operation/netflow/nf_live_view.php:477 +#: ../../operation/netflow/nf_live_view.php:550 msgid "The interval will be divided in chunks the length of the resolution." msgstr "L'intervalle sera divisé en morceaux de la longueur de la résolution." -#: ../../operation/netflow/nf_live_view.php:508 +#: ../../operation/netflow/nf_live_view.php:581 msgid "Aggregated by" -msgstr "Agrégé par" +msgstr "Ajouté par" -#: ../../operation/netflow/nf_live_view.php:525 +#: ../../operation/netflow/nf_live_view.php:598 msgid "Max values" msgstr "Valeurs maximales" -#: ../../operation/netflow/nf_live_view.php:575 +#: ../../operation/netflow/nf_live_view.php:648 msgid "Draw" msgstr "Dessiner" -#: ../../operation/netflow/nf_live_view.php:587 +#: ../../operation/netflow/nf_live_view.php:660 msgid "Save as new filter" msgstr "Enregistrer comme nouveau filtre" -#: ../../operation/netflow/nf_live_view.php:588 +#: ../../operation/netflow/nf_live_view.php:661 msgid "Update current filter" msgstr "Mise à jour de ce filtre" -#: ../../operation/netflow/nf_live_view.php:618 +#: ../../operation/netflow/nf_live_view.php:691 msgid "No filter selected" msgstr "Aucun filtre sélectionné" @@ -53419,19 +53939,20 @@ msgstr "Déroutements reçus par la chaîne d'Enterprise" msgid "Trap Enterprise String" msgstr "Déroutement Enterprise de chaîne" -#: ../../operation/snmpconsole/snmp_browser.php:77 +#: ../../operation/snmpconsole/snmp_browser.php:79 msgid "SNMP Browser" msgstr "Explorateur SNMP" -#: ../../operation/snmpconsole/snmp_browser.php:218 +#: ../../operation/snmpconsole/snmp_browser.php:223 msgid "Adding modules in progress" msgstr "Ajout de modules en cours" -#: ../../operation/snmpconsole/snmp_browser.php:546 +#: ../../operation/snmpconsole/snmp_browser.php:551 msgid "Create policy" msgstr "Créer une politique" -#: ../../operation/snmpconsole/snmp_browser.php:638 +#: ../../operation/snmpconsole/snmp_browser.php:621 +#: ../../operation/snmpconsole/snmp_browser.php:697 msgid "Are you sure you want add module?" msgstr "Êtes-vous sûr de vouloir ajouter un module ?" @@ -53478,11 +53999,10 @@ msgid "RSS" msgstr "RSS" #: ../../operation/menu.php:570 ../../operation/menu.php:583 -#: ../../operation/events/sound_events.php:63 -#: ../../operation/events/sound_events.php:164 -#: ../../operation/events/events.php:1532 ../../operation/events/events.php:1582 -msgid "Accoustic console" -msgstr "Console acoustique" +#: ../../operation/events/sound_events.php:62 +#: ../../operation/events/events.php:1586 ../../operation/events/events.php:1636 +msgid "Acoustic console" +msgstr "Console sonore" #: ../../operation/menu.php:648 msgid "Configure user notifications" @@ -53744,44 +54264,42 @@ msgstr "Mis à jour/Démarré" msgid "No tickets to show" msgstr "Aucun ticket à afficher" -#: ../../operation/inventory/inventory.php:535 -#: ../../operation/inventory/inventory.php:570 +#: ../../operation/inventory/inventory.php:537 +#: ../../operation/inventory/inventory.php:572 msgid "Basic info" msgstr "Infos de base" -#: ../../operation/inventory/inventory.php:661 +#: ../../operation/inventory/inventory.php:663 msgid "Order by agent" msgstr "Ordonner par agent" -#: ../../operation/inventory/inventory.php:733 +#: ../../operation/inventory/inventory.php:734 msgid "You must select at least one filter." msgstr "Vous devez sélectionner au moins un filtre." -#: ../../operation/inventory/inventory.php:859 -#: ../../operation/inventory/inventory.php:860 -#: ../../operation/inventory/inventory.php:948 -#: ../../operation/inventory/inventory.php:949 -#: ../../operation/inventory/inventory.php:1100 -#: ../../operation/inventory/inventory.php:1101 -#: ../../operation/inventory/inventory.php:1211 -#: ../../operation/inventory/inventory.php:1212 +#: ../../operation/inventory/inventory.php:814 +#: ../../operation/inventory/inventory.php:815 +#: ../../operation/inventory/inventory.php:925 +#: ../../operation/inventory/inventory.php:926 +#: ../../operation/inventory/inventory.php:1086 +#: ../../operation/inventory/inventory.php:1087 +#: ../../operation/inventory/inventory.php:1176 +#: ../../operation/inventory/inventory.php:1177 +#: ../../operation/inventory/inventory.php:1206 +#: ../../operation/inventory/inventory.php:1207 msgid "No inventory found" msgstr "Aucun inventaire trouvé" -#: ../../operation/inventory/inventory.php:1001 -#: ../../operation/inventory/inventory.php:1295 +#: ../../operation/inventory/inventory.php:1247 msgid "Secondary IP" msgstr "IP secondaire" -#: ../../operation/inventory/inventory.php:1010 -#: ../../operation/inventory/inventory.php:1304 +#: ../../operation/inventory/inventory.php:1256 msgid "Values Custom Fields" msgstr "Valeurs des champs personnalisés" -#: ../../operation/inventory/inventory.php:1031 -#: ../../operation/inventory/inventory.php:1032 -#: ../../operation/inventory/inventory.php:1325 -#: ../../operation/inventory/inventory.php:1326 +#: ../../operation/inventory/inventory.php:1278 +#: ../../operation/inventory/inventory.php:1279 msgid "Agent info not found" msgstr "Informations sur l’agent introuvables" @@ -53871,14 +54389,6 @@ msgstr "Aucune donnée" msgid "Custom graph viewer" msgstr "Affichage personnalisé du tableau" -#: ../../operation/events/sound_events.php:229 -msgid "Time Sound" -msgstr "Cronométrer mélodie" - -#: ../../operation/events/sound_events.php:288 -msgid "Events not found" -msgstr "Événements introuvables" - #: ../../operation/events/events_rss.php:195 msgid "Your IP is not into the IP list with API access." msgstr "Votre adresse IP n'est pas dans la liste IP avec accès à l'API" @@ -53887,174 +54397,174 @@ msgstr "Votre adresse IP n'est pas dans la liste IP avec accès à l'API" msgid "The URL of your feed has bad hash." msgstr "L'URL de votre flux a un mauvais hachage." -#: ../../operation/events/events.php:884 +#: ../../operation/events/events.php:889 msgid "Validate events" msgstr "Valider les événements" -#: ../../operation/events/events.php:901 +#: ../../operation/events/events.php:906 msgid "Validate event" msgstr "Valider l'événement" -#: ../../operation/events/events.php:936 +#: ../../operation/events/events.php:941 msgid "Change to in progress status" msgstr "Passer à état en cours" -#: ../../operation/events/events.php:961 +#: ../../operation/events/events.php:966 msgid "Delete events" msgstr "Supprimer les évènements" -#: ../../operation/events/events.php:1440 +#: ../../operation/events/events.php:1494 msgid "Event viewer" msgstr "Visionneur d'événements" -#: ../../operation/events/events.php:1482 +#: ../../operation/events/events.php:1536 msgid "History event list" msgstr "Liste des événements de l'historique" -#: ../../operation/events/events.php:1493 +#: ../../operation/events/events.php:1547 msgid "RSS Events" msgstr "Événements RSS" -#: ../../operation/events/events.php:1504 +#: ../../operation/events/events.php:1558 msgid "Export to CSV file" msgstr "Exporter dans un fichier CSV" -#: ../../operation/events/events.php:1587 +#: ../../operation/events/events.php:1641 msgid "History" msgstr "Historique" -#: ../../operation/events/events.php:1641 +#: ../../operation/events/events.php:1695 msgid "Errors" msgstr "Erreurs" -#: ../../operation/events/events.php:1706 ../../operation/events/events.php:1727 +#: ../../operation/events/events.php:1760 ../../operation/events/events.php:1781 msgid "WARNING: This could cause a performace impact." msgstr "AVERTISSEMENT : Cela pourrait avoir un impact sur les performances." -#: ../../operation/events/events.php:1725 +#: ../../operation/events/events.php:1779 msgid "Search in secondary groups" msgstr "Recherche dans les groupes secondaires" -#: ../../operation/events/events.php:1815 +#: ../../operation/events/events.php:1869 msgid "Search for elements NOT containing given text." msgstr "Rechercher des éléments ne contenant PAS de texte donné." -#: ../../operation/events/events.php:2076 +#: ../../operation/events/events.php:2130 msgid "Id source event" msgstr "Événements de source d'ID" -#: ../../operation/events/events.php:2134 +#: ../../operation/events/events.php:2188 msgid "From (date:time)" msgstr "Du (date:heure)" -#: ../../operation/events/events.php:2192 +#: ../../operation/events/events.php:2246 msgid "To (date:time)" msgstr "À (date:heure)" -#: ../../operation/events/events.php:2203 +#: ../../operation/events/events.php:2257 msgid "Filter custom data by field name" msgstr "Filtrer les données personnalisées par nom de champ" -#: ../../operation/events/events.php:2204 +#: ../../operation/events/events.php:2258 msgid "Filter custom data by field value" msgstr "Filtrer les données personnalisées par valeur de champ" -#: ../../operation/events/events.php:2224 +#: ../../operation/events/events.php:2278 msgid "Custom data filter" msgstr "Filtre de données personnalisé" -#: ../../operation/events/events.php:2246 +#: ../../operation/events/events.php:2300 msgid "Custom data search" msgstr "Recherche de données personnalisée" -#: ../../operation/events/events.php:2372 +#: ../../operation/events/events.php:2426 msgid "Current filter" msgstr "Filtre actuel" -#: ../../operation/events/events.php:2377 +#: ../../operation/events/events.php:2431 msgid "Not set." msgstr "Non paramétré." -#: ../../operation/events/events.php:2390 +#: ../../operation/events/events.php:2444 msgid "Any status." msgstr "Tout état." -#: ../../operation/events/events.php:2394 +#: ../../operation/events/events.php:2448 msgid "New events." msgstr "Nouveaux événements." -#: ../../operation/events/events.php:2398 +#: ../../operation/events/events.php:2452 msgid "Validated." msgstr "Validé." -#: ../../operation/events/events.php:2402 +#: ../../operation/events/events.php:2456 msgid "In proccess." msgstr "En cours." -#: ../../operation/events/events.php:2406 +#: ../../operation/events/events.php:2460 msgid "Not validated." msgstr "Pas validé." -#: ../../operation/events/events.php:2418 +#: ../../operation/events/events.php:2472 msgid "Any time." msgstr "À tout moment." -#: ../../operation/events/events.php:2420 ../../operation/events/events.php:3030 +#: ../../operation/events/events.php:2474 ../../operation/events/events.php:3089 msgid "Last hour." msgstr "Dernière heure." -#: ../../operation/events/events.php:2422 +#: ../../operation/events/events.php:2476 #, php-format msgid "Last %d hours." msgstr "%d dernières heures." -#: ../../operation/events/events.php:2430 +#: ../../operation/events/events.php:2484 msgid "Duplicated" msgstr "Dupliqué" -#: ../../operation/events/events.php:2433 +#: ../../operation/events/events.php:2487 msgid "All events." msgstr "Tous les événements." -#: ../../operation/events/events.php:2437 +#: ../../operation/events/events.php:2491 msgid "Group agents." msgstr "Agents du groupe." -#: ../../operation/events/events.php:2439 +#: ../../operation/events/events.php:2493 msgid "Group extra id." msgstr "ID supplémentaire de groupe." -#: ../../operation/events/events.php:2543 +#: ../../operation/events/events.php:2597 msgid "In progress selected" msgstr "En cours sélectionné" -#: ../../operation/events/events.php:2544 +#: ../../operation/events/events.php:2598 msgid "Validate selected" msgstr "Valider la sélection" -#: ../../operation/events/events.php:2566 +#: ../../operation/events/events.php:2620 msgid "Execute event response" msgstr "Exécuter la réponse à l'événement" -#: ../../operation/events/events.php:2598 +#: ../../operation/events/events.php:2652 #, php-format msgid "A maximum of %s event custom responses can be selected" msgstr "" "Un maximum de %s réponses personnalisées d'événement peut être sélectionné" -#: ../../operation/events/events.php:2603 +#: ../../operation/events/events.php:2657 msgid "Please, select an event" msgstr "Veuillez sélectionner un événement" -#: ../../operation/events/events.php:2689 +#: ../../operation/events/events.php:2743 msgid "has at least" msgstr "a au moins" -#: ../../operation/events/events.php:2691 +#: ../../operation/events/events.php:2745 msgid "events" msgstr "événements" -#: ../../operation/events/events.php:3032 +#: ../../operation/events/events.php:3091 msgid "hours." msgstr "heures." @@ -54598,15 +55108,15 @@ msgstr "Signaler un problème" msgid "Console only reporting node" msgstr "Nœud de création de rapports de console uniquement" -#: ../../general/reporting_console_node.php:77 +#: ../../general/reporting_console_node.php:82 msgid "Mr" msgstr "Mr" -#: ../../general/reporting_console_node.php:85 +#: ../../general/reporting_console_node.php:90 msgid "Memory limit" msgstr "Limite de mémoire" -#: ../../general/reporting_console_node.php:93 +#: ../../general/reporting_console_node.php:98 msgid "Php version" msgstr "Version PHP" @@ -54913,16 +55423,80 @@ msgstr "Cliquez ici pour ne plus afficher ce message" msgid "Maintenance tasks in progress" msgstr "Taches de maintenance en progrès" -#: ../../general/logon_ok.php:175 +#: ../../general/logon_ok.php:184 #, php-format msgid "%s Overview" msgstr "%s Aperçu" -#: ../../general/logon_ok.php:228 +#: ../../general/logon_ok.php:226 +msgid "By" +msgstr "Par" + +#: ../../general/logon_ok.php:237 +msgid "Welcome to our monitoring tool so grand," +msgstr "Bienvenue à notre outil de supervision si grand," + +#: ../../general/logon_ok.php:238 +msgid "Where data insights are at your command." +msgstr "Où les données sont à votre commande." + +#: ../../general/logon_ok.php:239 +msgid "Sales, marketing, operations too," +msgstr "Ventes, marketing, opérations aussi" + +#: ../../general/logon_ok.php:240 +msgid "Customer support, we've got you." +msgstr "Service client, comptez sur nous" + +#: ../../general/logon_ok.php:243 +msgid "Our interface is user-friendly," +msgstr "Notre interface est facile à utiliser," + +#: ../../general/logon_ok.php:244 +msgid "Customize your dashboard, it's easy." +msgstr "N’oubliez votre tableau de bord configurer." + +#: ../../general/logon_ok.php:245 +msgid "Set up alerts and gain insights so keen," +msgstr "Définissez vos alertes et contrôlez tout," + +#: ../../general/logon_ok.php:246 +msgid "Optimize your data, like you've never seen." +msgstr "Optimisez vos données comme un fou." + +#: ../../general/logon_ok.php:249 +msgid "Unleash its power now, and join the pro league," +msgstr "Déclenchez sa puissance comme un professionel," + +#: ../../general/logon_ok.php:250 +msgid "Unlock the potential of your data to intrigue." +msgstr "Surprenez et débloquez tout le potentiel." + +#: ../../general/logon_ok.php:251 +msgid "Monitoring made simple, efficient and fun," +msgstr "Supervision simplifiée, efficace et amusante." + +#: ../../general/logon_ok.php:252 +msgid "Discover a whole new way to get things done." +msgstr "Découvrez un nouvelle manière de tout faire sans redoute," + +#: ../../general/logon_ok.php:255 +msgid "And take control of your IT once and for all." +msgstr "Contrôlez l’informatique une fois pour toutes." + +#: ../../general/logon_ok.php:257 +msgid "" +"You can replace this message with a personalized one at Admin tools -> Site " +"news." +msgstr "" +"Vous pouvez remplacer ce message par un personnalisé dans Outils " +"d’administration -> Nouvelles du site." + +#: ../../general/logon_ok.php:273 msgid "News board" msgstr "Tableau de nouvelles" -#: ../../general/logon_ok.php:304 +#: ../../general/logon_ok.php:349 msgid "Latest activity" msgstr "Dernière activité" @@ -54952,7 +55526,7 @@ msgstr "" msgid "You cannot use this node until system is unified" msgstr "Vous ne pouvez utiliser ce noeud jusqu'à que le système soit unifié" -#: ../../general/node_deactivated.php:56 +#: ../../general/node_deactivated.php:61 #, php-format msgid "Please navigate to %s to unify system" msgstr "Naviguez ves %s pour unifier le système" @@ -54975,7 +55549,7 @@ msgstr "" "enregistrées dans les journaux de sécurité de la base de données du système " "Pandora FMS." -#: ../../general/main_menu.php:79 ../../general/main_menu.php:86 +#: ../../general/main_menu.php:80 ../../general/main_menu.php:87 msgid "Management" msgstr "Gestion" @@ -55014,14 +55588,14 @@ msgstr "Aller vers la page WEB %s" msgid "Go to Login" msgstr "Aller à Connexion" -#: ../../general/login_page.php:297 ../../general/login_page.php:302 -msgid "Login as admin" -msgstr "Connexion en tant qu'administateur" - -#: ../../general/login_page.php:355 +#: ../../general/login_page.php:297 ../../general/login_page.php:355 msgid "Let's go" msgstr "Commencer" +#: ../../general/login_page.php:302 +msgid "Login as admin" +msgstr "Connexion en tant qu'administateur" + #: ../../general/login_page.php:409 msgid "View details" msgstr "Voir les détails" @@ -55291,6 +55865,12 @@ msgstr "" #~ msgid "Queue filter" #~ msgstr "Filtre de la file d'attente" +#~ msgid "SMNP" +#~ msgstr "SMNP" + +#~ msgid "SMNP community" +#~ msgstr "Communauté SNMP" + #~ msgid "Events Configuration Information" #~ msgstr "Informations sur la configuration des événements" @@ -55444,6 +56024,9 @@ msgstr "" #~ msgid "Update Filter" #~ msgstr "Mise à jour du filtre" +#~ msgid "Manage satellite hosts" +#~ msgstr "Gérer les hôtes satellites" + #~ msgid "No tags defined" #~ msgstr "Aucune étiquette définie" @@ -55453,21 +56036,15 @@ msgstr "" #~ msgid "Create Tag" #~ msgstr "Créer une étiquette" +#~ msgid "No maps defined" +#~ msgstr "Aucune carte définie" + #~ msgid "Warning
Critical" #~ msgstr "Alerte
Critique" #~ msgid "Scheduled jobs" #~ msgstr "Tâches planifiées" -#~ msgid "Go to module edition" -#~ msgstr "Accéder à l'édition de modules" - -#~ msgid "Go to cluster edition" -#~ msgstr "Accéder à l’édition cluster" - -#~ msgid "Go to agent edition" -#~ msgstr "Accéder à l'édition de l'agent" - #~ msgid "PANDORA FMS" #~ msgstr "PANDORA FMS" @@ -55510,6 +56087,9 @@ msgstr "" #~ "d'opérer avec eux. L'opération, lorsque la réplication d'événement est " #~ "activée, doit être effectuée uniquement dans la Métaconsole." +#~ msgid "This change will only apply to nodes" +#~ msgstr "Cette modification ne s’appliquera qu’aux nœuds" + #~ msgid "No log sources found" #~ msgstr "Aucune source de journal trouvée" @@ -55522,12 +56102,25 @@ msgstr "" #~ msgid "This group doesn't have any monitor" #~ msgstr "Ce groupe n'a aucun moniteur" +#~ msgid "" +#~ "To see the list of modules paginated, enable this option in the Styles " +#~ "Configuration." +#~ msgstr "" +#~ "Pour afficher la liste de modules paginés, activez cette option dans la " +#~ "configuration de styles." + #~ msgid "Remote configuration enabled" #~ msgstr "Configuration à distance activée" #~ msgid "Agent info" #~ msgstr "Information de l'agent" +#~ msgid "There is no GIS data." +#~ msgstr "Aucune donnée GIS" + +#~ msgid "Events info (24hr.)" +#~ msgstr "Information des événements (24h)" + #~ msgid "Select this checkbox to write interval instead a date." #~ msgstr "Cochez cette case pour écrire un intervalle à la place d'une date." @@ -55543,6 +56136,12 @@ msgstr "" #~ msgid "Sound console" #~ msgstr "Console sonore" +#~ msgid "Time Sound" +#~ msgstr "Cronométrer mélodie" + +#~ msgid "Events not found" +#~ msgstr "Événements introuvables" + #~ msgid "Sound events" #~ msgstr "Événements sonores" @@ -55952,9 +56551,6 @@ msgstr "" #~ msgid "Events replication" #~ msgstr "Réplication d'événements" -#~ msgid "Replication interval" -#~ msgstr "Intervalle de réplication" - #~ msgid "Replication limit" #~ msgstr "Limite de réplication" @@ -56383,9 +56979,6 @@ msgstr "" #~ msgid "Could not be updated, it already exists" #~ msgstr "N'a pas pu être mis à jour, il existe déjà" -#~ msgid "Welcome to Pandora FMS Web Console" -#~ msgstr "Bienvenue à Pandora FMS Web Console" - #~ msgid "Welcome to Pandora FMS" #~ msgstr "Bienvenue à Pandora FMS" @@ -56820,9 +57413,6 @@ msgstr "" #~ msgid "First date" #~ msgstr "Première date" -#~ msgid "Latest data" -#~ msgstr "Dernier donnés" - #~ msgid "Purge event data over 90 days" #~ msgstr "Effacer les données d'événements sauf pour le dernier trimestre" @@ -56927,26 +57517,9 @@ msgstr "" #~ msgid "Number lines of log" #~ msgstr "Nobre de lignes de registre" -#~ msgid "Generate file" -#~ msgstr "Générer fichier" - #~ msgid "VNC view" #~ msgstr "Vue VNC" -#, php-format -#~ msgid "" -#~ "This extension makes registration of server plugins more easy. Here you can " -#~ "upload a server plugin in Pandora FMS 3.x zipped format (.pspz). Please " -#~ "refer to documentation on how to obtain and use Pandora FMS Server Plugins." -#~ "

You can get more plugins in our
Public Resource " -#~ "Library" -#~ msgstr "" -#~ "Cet extension fait enregistrement du plugins du serveur plus facile. Ici " -#~ "vous pouvez télécharger un plugin du serveur dans le format comprimé de " -#~ "Pandora FMS 3.x (.pspz). Si vous plaît lire la documentation pour obtenir " -#~ "et utiliser les plugins du serveur de Pandora FMS.

Vous pouvez " -#~ "obtenir plus de plugins dans notre Public Resource Library" - #~ msgid "Ping to " #~ msgstr "Faire un ping dans " @@ -58189,9 +58762,6 @@ msgstr "" #~ msgid "There was an error with the zip file" #~ msgstr "Il y avait une erreur avec le fichier zip" -#~ msgid "At least one option must be selected" -#~ msgstr "Au moins une option doit être sélectionnée" - #~ msgid "Agents:" #~ msgstr "Agents :" @@ -59940,9 +60510,6 @@ msgstr "" #~ msgid "Event graph by user" #~ msgstr "Graphique d'événements par utilisateur" -#~ msgid "Successfully set in process" -#~ msgstr "Démarré correctement" - #~ msgid "Successfully validated" #~ msgstr "Validé correctement" diff --git a/pandora_console/include/languages/index.pot b/pandora_console/include/languages/index.pot index bd3f78dca8..48f69dd8ca 100644 --- a/pandora_console/include/languages/index.pot +++ b/pandora_console/include/languages/index.pot @@ -7,24 +7,24 @@ #: ../../enterprise/meta/monitoring/group_view.php:211 #: ../../enterprise/meta/monitoring/group_view.php:228 #: ../../enterprise/include/functions_reporting_csv.php:2304 -#: ../../include/functions_reporting_html.php:4147 -#: ../../include/functions_reporting_html.php:4153 -#: ../../include/functions_reporting_html.php:4159 -#: ../../include/functions_reporting_html.php:4165 -#: ../../include/functions_reporting_html.php:4171 -#: ../../include/functions_reporting_html.php:4177 -#: ../../include/functions_reporting_html.php:4183 -#: ../../include/functions_reporting_html.php:4241 -#: ../../include/functions_reporting_html.php:4247 -#: ../../include/functions_reporting_html.php:4253 -#: ../../include/functions_reporting_html.php:4259 -#: ../../include/functions_reporting_html.php:4265 +#: ../../include/functions_reporting_html.php:4175 +#: ../../include/functions_reporting_html.php:4181 +#: ../../include/functions_reporting_html.php:4187 +#: ../../include/functions_reporting_html.php:4193 +#: ../../include/functions_reporting_html.php:4199 +#: ../../include/functions_reporting_html.php:4205 +#: ../../include/functions_reporting_html.php:4211 +#: ../../include/functions_reporting_html.php:4269 +#: ../../include/functions_reporting_html.php:4275 +#: ../../include/functions_reporting_html.php:4281 +#: ../../include/functions_reporting_html.php:4287 +#: ../../include/functions_reporting_html.php:4293 #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-09 10:50+0200\n" +"POT-Creation-Date: 2023-06-06 09:26+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,17 +33,39 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../views/consoles/list.php:32 +#: ../../views/consoles/list.php:31 #, php-format msgid "%s registered consoles" msgstr "" -#: ../../views/consoles/list.php:68 +#: ../../views/consoles/list.php:40 +#: ../../enterprise/meta/advanced/servers.build_table.php:42 +#: ../../enterprise/meta/advanced/policymanager.apply.php:200 +#: ../../enterprise/godmode/servers/new_HA_cluster.php:86 +#: ../../enterprise/godmode/servers/HA_cluster.php:97 +#: ../../enterprise/godmode/servers/manage_export.php:69 +#: ../../enterprise/godmode/servers/manage_export_form.php:85 +#: ../../enterprise/godmode/servers/list_satellite.php:37 +#: ../../godmode/menu.php:298 ../../godmode/setup/os.php:225 +#: ../../godmode/reporting/visual_console_builder.wizard.php:353 +#: ../../godmode/servers/modificar_server.php:59 +#: ../../godmode/servers/modificar_server.php:219 +#: ../../godmode/servers/modificar_server.php:238 +#: ../../godmode/servers/modificar_server.php:293 +#: ../../godmode/servers/plugin_registration.php:73 +#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:355 +#: ../../godmode/servers/plugin.php:794 +#: ../../mobile/include/functions_web.php:28 +#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:370 +msgid "Servers" +msgstr "" + +#: ../../views/consoles/list.php:69 #: ../../enterprise/include/functions_tasklist.php:177 msgid "Console ID" msgstr "" -#: ../../views/consoles/list.php:69 ../../views/calendar/list.php:98 +#: ../../views/consoles/list.php:70 ../../views/calendar/list.php:98 #: ../../views/calendar/special_days_edit.php:137 #: ../../views/calendar/edit.php:112 ../../views/cluster/list.php:70 #: ../../views/cluster/view.php:285 @@ -81,7 +103,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_collections.php:323 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:143 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:407 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:302 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:182 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:241 @@ -210,22 +232,22 @@ msgstr "" #: ../../godmode/modules/manage_network_templates_form.php:234 #: ../../godmode/modules/manage_inventory_modules.php:290 #: ../../godmode/modules/manage_network_components_form_common.php:346 -#: ../../godmode/modules/manage_network_components.php:777 +#: ../../godmode/modules/manage_network_components.php:780 #: ../../godmode/modules/manage_network_components_form_wizard.php:457 #: ../../godmode/modules/manage_inventory_modules_form.php:128 #: ../../godmode/modules/module_list.php:100 #: ../../godmode/modules/manage_network_templates.php:249 -#: ../../godmode/groups/configure_group.php:239 -#: ../../godmode/groups/group_list.php:884 -#: ../../godmode/users/user_list.php:581 +#: ../../godmode/groups/configure_group.php:258 +#: ../../godmode/groups/group_list.php:885 +#: ../../godmode/users/user_list.php:582 #: ../../godmode/agentes/agent_template.php:276 #: ../../godmode/agentes/inventory_manager.php:234 -#: ../../godmode/agentes/modificar_agente.php:699 +#: ../../godmode/agentes/modificar_agente.php:709 #: ../../godmode/agentes/planned_downtime.list.php:734 #: ../../godmode/agentes/planned_downtime.editor.php:914 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:170 #: ../../godmode/agentes/agent_manager.php:569 -#: ../../godmode/agentes/module_manager_editor_common.php:1019 +#: ../../godmode/agentes/module_manager_editor_common.php:1029 #: ../../godmode/agentes/module_manager.php:644 #: ../../godmode/netflow/nf_item_list.php:175 #: ../../godmode/snmpconsole/snmp_alert.php:769 @@ -233,7 +255,7 @@ msgstr "" #: ../../godmode/snmpconsole/snmp_filters.php:203 #: ../../godmode/snmpconsole/snmp_filters.php:313 #: ../../godmode/massive/massive_edit_plugins.php:494 -#: ../../godmode/massive/massive_edit_agents.php:774 +#: ../../godmode/massive/massive_edit_agents.php:791 #: ../../godmode/massive/massive_edit_modules.php:758 #: ../../godmode/alerts/configure_alert_command.php:283 #: ../../godmode/alerts/alert_commands.php:752 @@ -245,8 +267,8 @@ msgstr "" #: ../../godmode/reporting/graphs.php:363 #: ../../godmode/reporting/reporting_builder.item_editor.php:74 #: ../../godmode/reporting/reporting_builder.item_editor.php:84 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1157 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4002 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1159 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4011 #: ../../godmode/reporting/reporting_builder.main.php:140 #: ../../godmode/reporting/reporting_builder.php:885 #: ../../godmode/reporting/graph_builder.main.php:182 @@ -254,26 +276,26 @@ msgstr "" #: ../../godmode/events/event_responses.list.php:67 #: ../../godmode/servers/modificar_server.php:99 #: ../../godmode/servers/plugin.php:449 ../../godmode/servers/plugin.php:567 -#: ../../godmode/tag/tag.php:230 ../../godmode/tag/tag.php:303 -#: ../../godmode/tag/edit_tag.php:196 ../../mobile/operation/tactical.php:352 +#: ../../godmode/tag/tag.php:231 ../../godmode/tag/tag.php:304 +#: ../../godmode/tag/edit_tag.php:200 #: ../../include/functions_reporting_html.php:156 -#: ../../include/functions_reporting_html.php:1608 -#: ../../include/functions_reporting_html.php:1764 -#: ../../include/functions_reporting_html.php:3663 -#: ../../include/functions_reporting_html.php:3711 -#: ../../include/functions_reporting_html.php:5491 -#: ../../include/functions_reporting_html.php:6371 +#: ../../include/functions_reporting_html.php:1617 +#: ../../include/functions_reporting_html.php:1773 +#: ../../include/functions_reporting_html.php:3691 +#: ../../include/functions_reporting_html.php:3739 +#: ../../include/functions_reporting_html.php:5519 +#: ../../include/functions_reporting_html.php:6405 #: ../../include/ajax/events_extended.php:91 -#: ../../include/ajax/heatmap.ajax.php:246 -#: ../../include/ajax/heatmap.ajax.php:285 -#: ../../include/ajax/heatmap.ajax.php:345 ../../include/ajax/module.php:1002 -#: ../../include/ajax/events.php:2668 ../../include/functions_treeview.php:126 -#: ../../include/functions_treeview.php:655 +#: ../../include/ajax/heatmap.ajax.php:288 +#: ../../include/ajax/heatmap.ajax.php:413 +#: ../../include/ajax/heatmap.ajax.php:473 ../../include/ajax/module.php:1025 +#: ../../include/ajax/events.php:2669 ../../include/functions_treeview.php:126 +#: ../../include/functions_treeview.php:659 #: ../../include/class/ConfigPEN.class.php:450 #: ../../include/class/ConfigPEN.class.php:601 #: ../../include/class/ManageNetScanScripts.class.php:404 -#: ../../include/class/ManageNetScanScripts.class.php:566 -#: ../../include/class/ManageNetScanScripts.class.php:615 +#: ../../include/class/ManageNetScanScripts.class.php:562 +#: ../../include/class/ManageNetScanScripts.class.php:611 #: ../../include/class/ModuleTemplates.class.php:849 #: ../../include/class/ModuleTemplates.class.php:1042 #: ../../include/class/ModuleTemplates.class.php:1186 @@ -281,13 +303,13 @@ msgstr "" #: ../../include/class/AgentWizard.class.php:1284 #: ../../include/class/AgentWizard.class.php:4187 #: ../../include/functions_container.php:147 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:815 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:816 #: ../../include/lib/Group.php:582 ../../include/functions_snmp_browser.php:570 -#: ../../include/functions_snmp_browser.php:1884 +#: ../../include/functions_snmp_browser.php:1893 #: ../../operation/search_users.php:48 ../../operation/search_agents.php:43 #: ../../operation/search_agents.php:49 #: ../../operation/agentes/gis_view.php:222 -#: ../../operation/agentes/estado_agente.php:1027 +#: ../../operation/agentes/estado_agente.php:1034 #: ../../operation/agentes/pandora_networkmap.editor.php:368 #: ../../operation/agentes/custom_fields.php:69 #: ../../operation/agentes/pandora_networkmap.view.php:146 @@ -299,8 +321,7 @@ msgstr "" #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:277 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:408 #: ../../operation/search_reports.php:43 ../../operation/search_reports.php:59 -#: ../../operation/inventory/inventory.php:1004 -#: ../../operation/inventory/inventory.php:1298 +#: ../../operation/inventory/inventory.php:1250 #: ../../operation/search_graphs.php:31 #: ../../operation/reporting/custom_reporting.php:35 #: ../../operation/reporting/graph_viewer.php:568 @@ -308,8 +329,8 @@ msgstr "" msgid "Description" msgstr "" -#: ../../views/consoles/list.php:70 -#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../views/consoles/list.php:71 +#: ../../enterprise/meta/advanced/servers.build_table.php:80 #: ../../enterprise/meta/advanced/metasetup.consoles.php:927 #: ../../enterprise/godmode/servers/list_satellite.php:56 #: ../../enterprise/include/functions_reporting_csv.php:725 @@ -319,29 +340,29 @@ msgstr "" #: ../../godmode/extensions.php:160 #: ../../godmode/update_manager/update_manager.history.php:40 #: ../../godmode/reporting/reporting_builder.item_editor.php:78 -#: ../../godmode/servers/servers.build_table.php:80 -#: ../../include/functions_reporting_html.php:1628 -#: ../../include/functions_menu.php:953 +#: ../../godmode/servers/servers.build_table.php:82 +#: ../../include/functions_reporting_html.php:1637 +#: ../../include/functions_menu.php:958 #: ../../include/functions_snmp_browser.php:762 -#: ../../general/reporting_console_node.php:69 +#: ../../general/reporting_console_node.php:74 msgid "Version" msgstr "" -#: ../../views/consoles/list.php:71 +#: ../../views/consoles/list.php:72 msgid "Last Execution" msgstr "" -#: ../../views/consoles/list.php:72 +#: ../../views/consoles/list.php:73 msgid "Console type" msgstr "" -#: ../../views/consoles/list.php:73 ../../godmode/users/configure_user.php:1108 +#: ../../views/consoles/list.php:74 ../../godmode/users/configure_user.php:1172 #: ../../godmode/massive/massive_edit_users.php:469 -#: ../../operation/users/user_edit.php:537 +#: ../../operation/users/user_edit.php:530 msgid "Timezone" msgstr "" -#: ../../views/consoles/list.php:74 +#: ../../views/consoles/list.php:75 #: ../../enterprise/meta/advanced/metasetup.setup.php:237 #: ../../enterprise/meta/include/functions_meta.php:171 #: ../../godmode/setup/setup_general.php:480 @@ -349,7 +370,7 @@ msgstr "" msgid "Public URL" msgstr "" -#: ../../views/consoles/list.php:76 ../../views/calendar/list.php:99 +#: ../../views/consoles/list.php:77 ../../views/calendar/list.php:99 #: ../../views/cluster/list.php:75 ../../views/dashboard/header.php:81 #: ../../enterprise/views/ncm/snippets/list.php:71 #: ../../enterprise/views/ncm/agent/details.php:92 @@ -368,21 +389,22 @@ msgstr "" #: ../../enterprise/include/class/LogSource.class.php:606 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2376 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3013 -#: ../../godmode/menu.php:580 +#: ../../godmode/menu.php:578 #: ../../godmode/reporting/reporting_builder.list_items.php:429 -#: ../../include/ajax/events.php:2308 +#: ../../include/ajax/events.php:2309 #: ../../include/class/ConfigPEN.class.php:603 #: ../../include/class/EventSound.class.php:308 #: ../../include/class/CredentialStore.class.php:819 #: ../../include/class/ExternalTools.class.php:412 #: ../../include/functions_events.php:310 -#: ../../operation/agentes/pandora_networkmap.view.php:2386 +#: ../../operation/agentes/pandora_networkmap.view.php:2387 +#: ../../operation/events/sound_events.php:185 msgid "Options" msgstr "" -#: ../../views/consoles/list.php:113 ../../views/consoles/list.php:123 +#: ../../views/consoles/list.php:114 ../../views/consoles/list.php:124 #: ../../views/dashboard/list.php:107 -#: ../../enterprise/meta/advanced/servers.build_table.php:142 +#: ../../enterprise/meta/advanced/servers.build_table.php:185 #: ../../enterprise/meta/advanced/metasetup.visual.php:454 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:688 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:719 @@ -406,15 +428,16 @@ msgstr "" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:805 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:871 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:887 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:200 #: ../../enterprise/godmode/agentes/plugins_manager.php:216 #: ../../enterprise/godmode/agentes/plugins_manager.php:302 #: ../../enterprise/godmode/policies/policy_plugins.php:188 #: ../../enterprise/godmode/policies/policy_alerts.php:590 -#: ../../enterprise/godmode/policies/policy_modules.php:1666 -#: ../../enterprise/godmode/policies/policy_modules.php:1715 -#: ../../enterprise/godmode/policies/policy_queue.php:307 -#: ../../enterprise/godmode/policies/policy_queue.php:715 -#: ../../enterprise/godmode/policies/policy_queue.php:762 +#: ../../enterprise/godmode/policies/policy_modules.php:1711 +#: ../../enterprise/godmode/policies/policy_modules.php:1760 +#: ../../enterprise/godmode/policies/policy_queue.php:309 +#: ../../enterprise/godmode/policies/policy_queue.php:717 +#: ../../enterprise/godmode/policies/policy_queue.php:766 #: ../../enterprise/godmode/policies/policies.php:662 #: ../../enterprise/godmode/policies/policy_external_alerts.php:600 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:316 @@ -422,7 +445,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_agents.php:1534 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:434 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:239 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:149 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:151 #: ../../enterprise/godmode/setup/setup_acl.php:734 #: ../../enterprise/godmode/reporting/graph_template_list.php:257 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:614 @@ -450,8 +473,8 @@ msgstr "" #: ../../enterprise/include/class/AgentRepository.class.php:912 #: ../../enterprise/include/class/Omnishell.class.php:1398 #: ../../enterprise/include/class/Omnishell.class.php:1533 -#: ../../enterprise/include/class/LogSource.class.php:751 -#: ../../enterprise/include/class/LogSource.class.php:873 +#: ../../enterprise/include/class/LogSource.class.php:748 +#: ../../enterprise/include/class/LogSource.class.php:870 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2476 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3159 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3487 @@ -470,27 +493,27 @@ msgstr "" #: ../../godmode/modules/manage_nc_groups.php:363 #: ../../godmode/modules/manage_inventory_modules.php:342 #: ../../godmode/modules/manage_inventory_modules.php:385 -#: ../../godmode/modules/manage_network_components.php:857 -#: ../../godmode/modules/manage_network_components.php:906 +#: ../../godmode/modules/manage_network_components.php:860 +#: ../../godmode/modules/manage_network_components.php:909 #: ../../godmode/modules/manage_network_templates.php:289 #: ../../godmode/modules/manage_network_templates.php:302 -#: ../../godmode/groups/group_list.php:971 -#: ../../godmode/groups/group_list.php:972 +#: ../../godmode/groups/group_list.php:983 +#: ../../godmode/groups/group_list.php:984 #: ../../godmode/groups/modu_group_list.php:263 #: ../../godmode/extensions.php:282 ../../godmode/extensions.php:290 #: ../../godmode/extensions.php:300 ../../godmode/extensions.php:308 #: ../../godmode/users/profile_list.php:457 -#: ../../godmode/users/user_list.php:982 +#: ../../godmode/users/user_list.php:983 #: ../../godmode/agentes/agent_template.php:297 #: ../../godmode/agentes/module_manager_editor.php:802 -#: ../../godmode/agentes/inventory_manager.php:262 +#: ../../godmode/agentes/inventory_manager.php:263 #: ../../godmode/agentes/planned_downtime.list.php:748 #: ../../godmode/agentes/planned_downtime.list.php:904 #: ../../godmode/agentes/planned_downtime.editor.php:1419 #: ../../godmode/agentes/planned_downtime.editor.php:1459 #: ../../godmode/agentes/fields_manager.php:206 -#: ../../godmode/agentes/module_manager_editor_common.php:1538 -#: ../../godmode/agentes/module_manager.php:1000 +#: ../../godmode/agentes/module_manager_editor_common.php:1548 +#: ../../godmode/agentes/module_manager.php:1014 #: ../../godmode/netflow/nf_item_list.php:263 #: ../../godmode/netflow/nf_item_list.php:273 #: ../../godmode/netflow/nf_edit.php:203 ../../godmode/netflow/nf_edit.php:223 @@ -499,16 +522,16 @@ msgstr "" #: ../../godmode/snmpconsole/snmp_filters.php:337 #: ../../godmode/alerts/alert_actions.php:356 #: ../../godmode/alerts/alert_actions.php:478 -#: ../../godmode/alerts/alert_list.list.php:1023 -#: ../../godmode/alerts/alert_templates.php:475 -#: ../../godmode/setup/news.php:354 ../../godmode/setup/gis.php:71 +#: ../../godmode/alerts/alert_list.list.php:1022 +#: ../../godmode/alerts/alert_templates.php:479 +#: ../../godmode/setup/news.php:358 ../../godmode/setup/gis.php:71 #: ../../godmode/setup/links.php:196 ../../godmode/setup/snmp_wizard.php:110 -#: ../../godmode/setup/setup_visuals.php:1873 -#: ../../godmode/setup/setup_visuals.php:1965 -#: ../../godmode/setup/setup_visuals.php:2040 -#: ../../godmode/reporting/reporting_builder.list_items.php:633 -#: ../../godmode/reporting/reporting_builder.list_items.php:677 -#: ../../godmode/reporting/reporting_builder.list_items.php:802 +#: ../../godmode/setup/setup_visuals.php:1888 +#: ../../godmode/setup/setup_visuals.php:1980 +#: ../../godmode/setup/setup_visuals.php:2055 +#: ../../godmode/reporting/reporting_builder.list_items.php:634 +#: ../../godmode/reporting/reporting_builder.list_items.php:678 +#: ../../godmode/reporting/reporting_builder.list_items.php:803 #: ../../godmode/reporting/create_container.php:747 #: ../../godmode/reporting/create_container.php:802 #: ../../godmode/reporting/map_builder.php:421 @@ -518,39 +541,39 @@ msgstr "" #: ../../godmode/reporting/graphs.php:420 #: ../../godmode/reporting/graphs.php:450 #: ../../godmode/reporting/graphs.php:481 -#: ../../godmode/reporting/graph_builder.graph_editor.php:216 -#: ../../godmode/reporting/graph_builder.graph_editor.php:276 +#: ../../godmode/reporting/graph_builder.graph_editor.php:349 +#: ../../godmode/reporting/graph_builder.graph_editor.php:409 #: ../../godmode/reporting/visual_console_builder.elements.php:828 #: ../../godmode/reporting/reporting_builder.php:1209 #: ../../godmode/reporting/reporting_builder.php:1298 #: ../../godmode/events/event_filter.php:200 #: ../../godmode/events/event_filter.php:242 #: ../../godmode/events/event_responses.list.php:90 -#: ../../godmode/servers/servers.build_table.php:273 -#: ../../godmode/servers/plugin.php:1067 +#: ../../godmode/servers/servers.build_table.php:286 +#: ../../godmode/servers/plugin.php:1059 #: ../../godmode/category/category.php:190 #: ../../godmode/category/category.php:227 ../../include/functions_cron.php:931 #: ../../include/functions_cron.php:958 #: ../../include/class/ConfigPEN.class.php:264 #: ../../include/class/SatelliteAgent.class.php:1147 -#: ../../include/class/NetworkMap.class.php:2943 +#: ../../include/class/NetworkMap.class.php:2949 #: ../../include/class/ManageNetScanScripts.class.php:405 #: ../../include/class/CredentialStore.class.php:1267 -#: ../../include/class/CredentialStore.class.php:1695 +#: ../../include/class/CredentialStore.class.php:1704 #: ../../include/class/SnmpConsole.class.php:466 #: ../../include/class/SnmpConsole.class.php:518 -#: ../../include/class/SnmpConsole.class.php:868 -#: ../../include/class/SnmpConsole.class.php:880 -#: ../../include/class/TipsWindow.class.php:458 +#: ../../include/class/SnmpConsole.class.php:870 +#: ../../include/class/SnmpConsole.class.php:882 +#: ../../include/class/TipsWindow.class.php:470 #: ../../include/class/ModuleTemplates.class.php:894 #: ../../include/class/ModuleTemplates.class.php:1187 #: ../../include/class/CalendarManager.class.php:737 #: ../../include/functions_container.php:191 #: ../../include/functions_container.php:325 #: ../../include/lib/ClusterViewer/ClusterManager.php:634 -#: ../../operation/visual_console/view.php:863 -#: ../../operation/agentes/pandora_networkmap.php:824 -#: ../../operation/agentes/status_monitor.php:2264 +#: ../../operation/visual_console/view.php:865 +#: ../../operation/agentes/pandora_networkmap.php:825 +#: ../../operation/agentes/status_monitor.php:2266 #: ../../operation/messages/message_list.php:197 #: ../../operation/messages/message_list.php:296 #: ../../operation/messages/message_list.php:332 @@ -562,13 +585,13 @@ msgstr "" msgid "Delete" msgstr "" -#: ../../views/consoles/list.php:121 +#: ../../views/consoles/list.php:122 msgid "" "Are you sure?

WARNING: you also need to delete config." "php options in your console or delete the whole console." msgstr "" -#: ../../views/consoles/list.php:127 +#: ../../views/consoles/list.php:128 #: ../../views/calendar/special_days_edit.php:209 #: ../../views/calendar/special_days.php:430 #: ../../views/calendar/special_days.php:530 @@ -596,23 +619,23 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1824 #: ../../enterprise/include/class/AgentRepository.class.php:903 #: ../../enterprise/include/class/AgentRepository.class.php:1001 -#: ../../enterprise/include/class/LogSource.class.php:824 -#: ../../enterprise/include/class/LogSource.class.php:877 +#: ../../enterprise/include/class/LogSource.class.php:821 +#: ../../enterprise/include/class/LogSource.class.php:874 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3114 #: ../../enterprise/include/class/ManageBackups.class.php:455 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1435 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1459 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:926 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:949 -#: ../../update_manager_client/views/register.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:254 +#: ../../update_manager_client/views/register.php:86 +#: ../../godmode/agentes/status_monitor_custom_fields.php:274 #: ../../godmode/snmpconsole/snmp_alert.php:2226 #: ../../godmode/snmpconsole/snmp_alert.php:2241 #: ../../godmode/massive/massive_operations.php:416 #: ../../godmode/setup/snmp_wizard.php:100 #: ../../godmode/events/custom_events.php:234 -#: ../../include/functions_visual_map_editor.php:878 -#: ../../include/functions_visual_map_editor.php:882 +#: ../../include/functions_visual_map_editor.php:926 +#: ../../include/functions_visual_map_editor.php:930 #: ../../include/functions_register.php:179 #: ../../include/class/ConfigPEN.class.php:675 #: ../../include/class/ConfigPEN.class.php:699 @@ -621,24 +644,25 @@ msgstr "" #: ../../include/class/SatelliteAgent.class.php:1199 #: ../../include/class/SatelliteAgent.class.php:1261 #: ../../include/class/TreeGroupEdition.class.php:165 -#: ../../include/class/NetworkMap.class.php:2951 -#: ../../include/class/CredentialStore.class.php:1647 -#: ../../include/class/CredentialStore.class.php:1699 -#: ../../include/class/ModuleTemplates.class.php:1360 +#: ../../include/class/NetworkMap.class.php:2957 +#: ../../include/class/CredentialStore.class.php:1656 +#: ../../include/class/CredentialStore.class.php:1708 +#: ../../include/class/ModuleTemplates.class.php:1364 #: ../../include/class/WelcomeWindow.class.php:174 #: ../../include/class/SatelliteCollection.class.php:536 #: ../../include/class/SatelliteCollection.class.php:579 -#: ../../include/class/AgentWizard.class.php:6234 +#: ../../include/class/AgentWizard.class.php:6230 #: ../../operation/agentes/pandora_networkmap.editor.php:746 -#: ../../operation/snmpconsole/snmp_browser.php:174 -#: ../../operation/snmpconsole/snmp_browser.php:545 -#: ../../operation/snmpconsole/snmp_browser.php:625 -#: ../../operation/snmpconsole/snmp_browser.php:640 +#: ../../operation/snmpconsole/snmp_browser.php:179 +#: ../../operation/snmpconsole/snmp_browser.php:550 +#: ../../operation/snmpconsole/snmp_browser.php:623 +#: ../../operation/snmpconsole/snmp_browser.php:684 +#: ../../operation/snmpconsole/snmp_browser.php:699 #: ../../general/header.php:834 msgid "Cancel" msgstr "" -#: ../../views/consoles/list.php:164 +#: ../../views/consoles/list.php:165 #: ../../enterprise/godmode/services/services.elements.php:956 #: ../../enterprise/godmode/services/services.elements.php:967 #: ../../enterprise/godmode/setup/setup.php:595 @@ -648,7 +672,7 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1647 #: ../../enterprise/include/class/AgentRepository.class.php:944 #: ../../enterprise/include/class/Omnishell.class.php:1306 -#: ../../enterprise/include/class/LogSource.class.php:767 +#: ../../enterprise/include/class/LogSource.class.php:764 #: ../../enterprise/include/class/ManageBackups.class.php:482 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1079 #: ../../include/ajax/snmp_browser.ajax.php:260 @@ -656,17 +680,18 @@ msgstr "" #: ../../include/class/ConfigPEN.class.php:743 #: ../../include/class/SatelliteAgent.class.php:1046 #: ../../include/class/HelpFeedBack.class.php:360 -#: ../../include/class/Diagnostics.class.php:2115 -#: ../../include/class/CredentialStore.class.php:1590 -#: ../../include/class/ModuleTemplates.class.php:1395 +#: ../../include/class/Diagnostics.class.php:2119 +#: ../../include/class/CredentialStore.class.php:1599 +#: ../../include/class/ModuleTemplates.class.php:1399 +#: ../../include/class/AgentDeployWizard.class.php:604 #: ../../include/class/SatelliteCollection.class.php:616 #: ../../include/class/WebServerModuleDebug.class.php:359 -#: ../../include/class/AgentWizard.class.php:6027 -#: ../../operation/visual_console/view.php:937 +#: ../../include/class/AgentWizard.class.php:6023 +#: ../../operation/visual_console/view.php:939 msgid "Success" msgstr "" -#: ../../views/consoles/list.php:174 ../../views/consoles/list.php:179 +#: ../../views/consoles/list.php:175 ../../views/consoles/list.php:180 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:657 #: ../../enterprise/include/functions_HA_cluster.php:542 #: ../../enterprise/include/functions_HA_cluster.php:547 @@ -676,8 +701,8 @@ msgstr "" #: ../../enterprise/include/class/AgentRepository.class.php:951 #: ../../enterprise/include/class/AgentRepository.class.php:956 #: ../../enterprise/include/class/Omnishell.class.php:1302 -#: ../../enterprise/include/class/LogSource.class.php:774 -#: ../../enterprise/include/class/LogSource.class.php:779 +#: ../../enterprise/include/class/LogSource.class.php:771 +#: ../../enterprise/include/class/LogSource.class.php:776 #: ../../enterprise/include/class/ManageBackups.class.php:493 #: ../../enterprise/include/class/ManageBackups.class.php:498 #: ../../enterprise/include/functions_ux_console.php:483 @@ -691,19 +716,21 @@ msgstr "" #: ../../include/class/SatelliteAgent.class.php:1055 #: ../../include/class/SatelliteAgent.class.php:1060 #: ../../include/class/HelpFeedBack.class.php:355 -#: ../../include/class/Diagnostics.class.php:2114 -#: ../../include/class/CredentialStore.class.php:1597 -#: ../../include/class/CredentialStore.class.php:1602 -#: ../../include/class/ModuleTemplates.class.php:1402 -#: ../../include/class/ModuleTemplates.class.php:1407 +#: ../../include/class/Diagnostics.class.php:2118 +#: ../../include/class/CredentialStore.class.php:1606 +#: ../../include/class/CredentialStore.class.php:1611 +#: ../../include/class/ModuleTemplates.class.php:1406 +#: ../../include/class/ModuleTemplates.class.php:1411 +#: ../../include/class/AgentDeployWizard.class.php:611 +#: ../../include/class/AgentDeployWizard.class.php:616 #: ../../include/class/SatelliteCollection.class.php:626 #: ../../include/class/SatelliteCollection.class.php:631 #: ../../include/class/WebServerModuleDebug.class.php:366 #: ../../include/class/WebServerModuleDebug.class.php:371 -#: ../../include/class/AgentWizard.class.php:6034 -#: ../../include/class/AgentWizard.class.php:6039 -#: ../../operation/visual_console/view.php:944 -#: ../../operation/visual_console/view.php:949 +#: ../../include/class/AgentWizard.class.php:6030 +#: ../../include/class/AgentWizard.class.php:6035 +#: ../../operation/visual_console/view.php:946 +#: ../../operation/visual_console/view.php:951 msgid "Failed" msgstr "" @@ -730,22 +757,22 @@ msgstr "" #: ../../enterprise/include/functions_policies.php:3734 #: ../../enterprise/operation/agentes/tag_view.php:702 #: ../../enterprise/operation/services/massive/services.create.php:897 -#: ../../godmode/groups/configure_group.php:224 -#: ../../godmode/groups/group_list.php:880 +#: ../../godmode/groups/configure_group.php:243 +#: ../../godmode/groups/group_list.php:881 #: ../../godmode/groups/tactical.php:181 #: ../../godmode/agentes/configurar_agente.php:441 #: ../../godmode/agentes/configurar_agente.php:745 -#: ../../godmode/agentes/modificar_agente.php:829 -#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:265 +#: ../../godmode/agentes/modificar_agente.php:841 +#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:263 #: ../../godmode/massive/massive_copy_modules.php:216 #: ../../godmode/alerts/configure_alert_command.php:58 #: ../../godmode/alerts/alert_actions.php:70 #: ../../godmode/alerts/alert_commands.php:581 -#: ../../godmode/alerts/alert_templates.php:126 -#: ../../godmode/alerts/alert_templates.php:135 -#: ../../godmode/alerts/alert_templates.php:188 -#: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/alerts/alert_templates.php:129 +#: ../../godmode/alerts/alert_templates.php:138 +#: ../../godmode/alerts/alert_templates.php:192 +#: ../../godmode/alerts/alert_templates.php:215 +#: ../../godmode/alerts/alert_templates.php:236 #: ../../godmode/alerts/configure_alert_action.php:72 #: ../../godmode/alerts/configure_alert_action.php:92 #: ../../godmode/alerts/configure_alert_template.php:95 @@ -755,21 +782,21 @@ msgstr "" #: ../../godmode/alerts/alert_list.php:504 #: ../../godmode/alerts/alert_list.php:523 #: ../../mobile/include/functions_web.php:26 -#: ../../mobile/operation/agents.php:98 ../../mobile/operation/agents.php:407 -#: ../../mobile/operation/home.php:74 ../../mobile/operation/agent.php:355 +#: ../../mobile/operation/agents.php:98 ../../mobile/operation/agents.php:408 +#: ../../mobile/operation/home.php:74 ../../mobile/operation/agent.php:358 #: ../../mobile/operation/alerts.php:194 -#: ../../include/functions_reporting_html.php:2594 -#: ../../include/functions_reporting_html.php:5671 -#: ../../include/functions_treeview.php:392 +#: ../../include/functions_reporting_html.php:2615 +#: ../../include/functions_reporting_html.php:5699 +#: ../../include/functions_treeview.php:396 #: ../../include/functions_reports.php:855 #: ../../include/functions_reports.php:859 #: ../../include/functions_reports.php:865 #: ../../include/functions_reports.php:871 #: ../../include/class/AgentsAlerts.class.php:567 #: ../../operation/search_agents.php:57 ../../operation/search_results.php:107 -#: ../../operation/agentes/estado_agente.php:1052 +#: ../../operation/agentes/estado_agente.php:1060 #: ../../operation/agentes/ver_agente.php:1436 -#: ../../operation/agentes/ver_agente.php:1848 +#: ../../operation/agentes/ver_agente.php:1844 msgid "Alerts" msgstr "" @@ -793,7 +820,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:68 #: ../../enterprise/godmode/policies/configure_policy.php:85 #: ../../enterprise/godmode/policies/policy_modules.php:481 -#: ../../enterprise/godmode/policies/policy_queue.php:211 +#: ../../enterprise/godmode/policies/policy_queue.php:213 #: ../../enterprise/godmode/policies/policies.php:268 #: ../../enterprise/godmode/policies/policy_linking.php:120 #: ../../enterprise/godmode/policies/policy_external_alerts.php:322 @@ -813,11 +840,11 @@ msgstr "" #: ../../extensions/resource_registration.php:1105 #: ../../godmode/modules/manage_nc_groups.php:315 #: ../../godmode/modules/manage_inventory_modules.php:67 -#: ../../godmode/modules/manage_network_components.php:314 +#: ../../godmode/modules/manage_network_components.php:315 #: ../../godmode/groups/group_list.php:393 #: ../../godmode/groups/modu_group_list.php:95 #: ../../godmode/users/profile_list.php:117 -#: ../../godmode/users/user_list.php:537 +#: ../../godmode/users/user_list.php:538 #: ../../godmode/agentes/modificar_agente.php:118 #: ../../godmode/massive/massive_operations.php:433 #: ../../godmode/massive/massive_edit_users.php:47 @@ -826,7 +853,7 @@ msgstr "" #: ../../godmode/alerts/configure_alert_command.php:194 #: ../../godmode/alerts/alert_actions.php:218 #: ../../godmode/alerts/alert_commands.php:730 -#: ../../godmode/alerts/alert_templates.php:266 +#: ../../godmode/alerts/alert_templates.php:270 #: ../../godmode/alerts/configure_alert_action.php:125 #: ../../godmode/alerts/configure_alert_template.php:429 #: ../../godmode/setup/os.list.php:49 @@ -847,7 +874,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:70 #: ../../enterprise/godmode/policies/configure_policy.php:87 #: ../../enterprise/godmode/policies/policy_modules.php:483 -#: ../../enterprise/godmode/policies/policy_queue.php:213 +#: ../../enterprise/godmode/policies/policy_queue.php:215 #: ../../enterprise/godmode/policies/policies.php:270 #: ../../enterprise/godmode/policies/policy_linking.php:122 #: ../../enterprise/godmode/policies/policy_external_alerts.php:324 @@ -865,11 +892,11 @@ msgstr "" #: ../../extensions/resource_registration.php:1107 #: ../../godmode/modules/manage_nc_groups.php:317 #: ../../godmode/modules/manage_inventory_modules.php:69 -#: ../../godmode/modules/manage_network_components.php:316 +#: ../../godmode/modules/manage_network_components.php:317 #: ../../godmode/groups/group_list.php:395 #: ../../godmode/groups/modu_group_list.php:97 #: ../../godmode/users/profile_list.php:119 -#: ../../godmode/users/user_list.php:539 +#: ../../godmode/users/user_list.php:540 #: ../../godmode/agentes/modificar_agente.php:120 #: ../../godmode/massive/massive_operations.php:435 #: ../../godmode/massive/massive_edit_users.php:49 @@ -878,7 +905,7 @@ msgstr "" #: ../../godmode/alerts/configure_alert_command.php:196 #: ../../godmode/alerts/alert_actions.php:220 #: ../../godmode/alerts/alert_commands.php:732 -#: ../../godmode/alerts/alert_templates.php:268 +#: ../../godmode/alerts/alert_templates.php:272 #: ../../godmode/alerts/configure_alert_action.php:127 #: ../../godmode/alerts/configure_alert_template.php:431 #: ../../godmode/setup/os.list.php:51 ../../godmode/tag/tag.php:188 @@ -904,7 +931,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:778 #: ../../extensions/api_checker.php:286 #: ../../godmode/modules/module_list.php:97 -#: ../../godmode/groups/group_list.php:874 +#: ../../godmode/groups/group_list.php:875 #: ../../godmode/groups/modu_group_list.php:260 #: ../../godmode/agentes/fields_manager.php:152 #: ../../godmode/agentes/agent_manager.php:364 @@ -932,7 +959,7 @@ msgstr "" #: ../../enterprise/views/ncm/vendors/edit.php:67 #: ../../enterprise/views/ipam/sites/list.php:46 #: ../../enterprise/views/ipam/sites/edit.php:40 -#: ../../enterprise/meta/advanced/servers.build_table.php:61 +#: ../../enterprise/meta/advanced/servers.build_table.php:77 #: ../../enterprise/meta/advanced/collections.data.php:350 #: ../../enterprise/meta/include/functions_autoprovision.php:495 #: ../../enterprise/meta/include/functions_autoprovision.php:603 @@ -955,7 +982,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:580 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 #: ../../enterprise/godmode/policies/configure_policy.php:112 -#: ../../enterprise/godmode/policies/policy_modules.php:1544 +#: ../../enterprise/godmode/policies/policy_modules.php:1589 #: ../../enterprise/godmode/policies/policies.php:437 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:270 #: ../../enterprise/godmode/policies/policy_collections.php:240 @@ -1018,25 +1045,25 @@ msgstr "" #: ../../godmode/modules/manage_inventory_modules_form.php:115 #: ../../godmode/modules/module_list.php:99 #: ../../godmode/modules/manage_network_templates.php:248 -#: ../../godmode/groups/configure_group.php:132 -#: ../../godmode/groups/group_list.php:876 +#: ../../godmode/groups/configure_group.php:142 +#: ../../godmode/groups/group_list.php:877 #: ../../godmode/groups/configure_modu_group.php:82 #: ../../godmode/groups/modu_group_list.php:261 -#: ../../godmode/users/user_list.php:574 +#: ../../godmode/users/user_list.php:575 #: ../../godmode/agentes/inventory_manager.php:233 #: ../../godmode/agentes/planned_downtime.editor.php:882 #: ../../godmode/agentes/planned_downtime.editor.php:1356 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:128 #: ../../godmode/agentes/configure_field.php:115 #: ../../godmode/agentes/module_manager_editor_common.php:252 -#: ../../godmode/agentes/module_manager_editor_common.php:1430 +#: ../../godmode/agentes/module_manager_editor_common.php:1440 #: ../../godmode/agentes/module_manager.php:605 #: ../../godmode/netflow/nf_edit.php:166 -#: ../../godmode/netflow/nf_edit_form.php:199 +#: ../../godmode/netflow/nf_edit_form.php:242 #: ../../godmode/alerts/configure_alert_command.php:220 #: ../../godmode/alerts/alert_actions.php:351 #: ../../godmode/alerts/alert_commands.php:749 -#: ../../godmode/alerts/alert_templates.php:409 +#: ../../godmode/alerts/alert_templates.php:413 #: ../../godmode/alerts/configure_alert_action.php:183 #: ../../godmode/alerts/configure_alert_template.php:1080 #: ../../godmode/setup/os.builder.php:72 ../../godmode/setup/os.builder.php:73 @@ -1046,44 +1073,49 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.data.php:151 #: ../../godmode/reporting/create_container.php:247 #: ../../godmode/reporting/reporting_builder.item_editor.php:83 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1085 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1087 #: ../../godmode/reporting/reporting_builder.main.php:91 #: ../../godmode/reporting/reporting_builder.main.php:95 #: ../../godmode/reporting/graph_builder.main.php:128 #: ../../godmode/events/event_filter.php:144 #: ../../godmode/events/event_responses.editor.php:97 #: ../../godmode/events/event_responses.list.php:66 -#: ../../godmode/servers/servers.build_table.php:77 +#: ../../godmode/servers/servers.build_table.php:79 #: ../../godmode/servers/modificar_server.php:91 -#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:992 -#: ../../godmode/tag/tag.php:230 ../../godmode/tag/edit_tag.php:190 +#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:984 +#: ../../godmode/tag/tag.php:231 ../../godmode/tag/edit_tag.php:194 #: ../../godmode/category/edit_category.php:189 +#: ../../mobile/operation/module_data.php:264 +#: ../../mobile/operation/server_status.php:283 +#: ../../mobile/operation/server_status.php:321 +#: ../../mobile/operation/server_status.php:351 +#: ../../mobile/operation/server_status.php:447 #: ../../include/functions_reporting_html.php:1058 #: ../../include/functions_reporting_html.php:1066 -#: ../../include/functions_reporting_html.php:1760 -#: ../../include/functions_reporting_html.php:2643 -#: ../../include/functions_reporting_html.php:2993 -#: ../../include/functions_reporting_html.php:3709 -#: ../../include/functions_reporting_html.php:6370 +#: ../../include/functions_reporting_html.php:1769 +#: ../../include/functions_reporting_html.php:2662 +#: ../../include/functions_reporting_html.php:3021 +#: ../../include/functions_reporting_html.php:3737 +#: ../../include/functions_reporting_html.php:6404 #: ../../include/functions_treeview.php:69 #: ../../include/class/EventSound.class.php:306 -#: ../../include/class/NetworkMap.class.php:3063 -#: ../../include/class/NetworkMap.class.php:3109 -#: ../../include/class/NetworkMap.class.php:3121 -#: ../../include/class/NetworkMap.class.php:3491 +#: ../../include/class/NetworkMap.class.php:3069 +#: ../../include/class/NetworkMap.class.php:3115 +#: ../../include/class/NetworkMap.class.php:3127 +#: ../../include/class/NetworkMap.class.php:3497 #: ../../include/class/ManageNetScanScripts.class.php:403 -#: ../../include/class/ManageNetScanScripts.class.php:553 +#: ../../include/class/ManageNetScanScripts.class.php:549 #: ../../include/class/ModuleTemplates.class.php:848 #: ../../include/class/ModuleTemplates.class.php:1030 #: ../../include/class/CalendarManager.class.php:1026 #: ../../include/class/SatelliteCollection.class.php:132 -#: ../../include/functions_filemanager.php:644 -#: ../../include/functions_snmp_browser.php:1851 -#: ../../include/functions_events.php:4339 -#: ../../include/functions_events.php:4472 ../../operation/search_users.php:44 +#: ../../include/functions_filemanager.php:659 +#: ../../include/functions_snmp_browser.php:1860 +#: ../../include/functions_events.php:4344 +#: ../../include/functions_events.php:4477 ../../operation/search_users.php:44 #: ../../operation/search_helps.php:31 #: ../../operation/agentes/pandora_networkmap.editor.php:332 -#: ../../operation/agentes/pandora_networkmap.php:716 +#: ../../operation/agentes/pandora_networkmap.php:717 #: ../../operation/agentes/pandora_networkmap.view.php:137 #: ../../operation/gis_maps/gis_map.php:115 #: ../../operation/incidents/configure_integriaims_incident.php:232 @@ -1151,7 +1183,7 @@ msgstr "" #: ../../enterprise/include/class/Omnishell.class.php:861 #: ../../enterprise/include/class/DB2.app.php:477 #: ../../enterprise/include/class/Aws.S3.php:441 -#: ../../enterprise/include/class/SAP.app.php:635 +#: ../../enterprise/include/class/SAP.app.php:636 #: ../../enterprise/include/class/Aws.cloud.php:566 #: ../../enterprise/include/class/Aws.cloud.php:1252 #: ../../enterprise/include/class/MySQL.app.php:482 @@ -1167,31 +1199,31 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:698 #: ../../enterprise/operation/agentes/ver_agente.php:70 #: ../../enterprise/operation/agentes/ver_agente.php:91 -#: ../../enterprise/operation/log/log_viewer.php:616 +#: ../../enterprise/operation/log/log_viewer.php:614 #: ../../enterprise/operation/services/services.service.php:112 #: ../../enterprise/operation/services/massive/services.create.php:678 #: ../../enterprise/operation/services/services.list.php:268 #: ../../enterprise/operation/services/services.list.php:540 #: ../../enterprise/operation/services/services.table_services.php:218 #: ../../enterprise/tools/ipam/ipam_editor.php:335 -#: ../../extensions/agents_modules.php:419 +#: ../../extensions/agents_modules.php:427 #: ../../godmode/modules/manage_network_templates_form.php:235 #: ../../godmode/modules/manage_network_templates_form.php:303 #: ../../godmode/modules/manage_network_templates_form.php:339 #: ../../godmode/modules/manage_network_components_form_common.php:131 -#: ../../godmode/modules/manage_network_components.php:659 -#: ../../godmode/modules/manage_network_components.php:778 -#: ../../godmode/users/user_list.php:469 +#: ../../godmode/modules/manage_network_components.php:662 +#: ../../godmode/modules/manage_network_components.php:781 +#: ../../godmode/users/user_list.php:470 #: ../../godmode/agentes/configurar_agente.php:518 #: ../../godmode/agentes/modificar_agente.php:314 -#: ../../godmode/agentes/modificar_agente.php:697 +#: ../../godmode/agentes/modificar_agente.php:707 #: ../../godmode/agentes/planned_downtime.list.php:735 #: ../../godmode/agentes/planned_downtime.editor.php:895 #: ../../godmode/agentes/planned_downtime.editor.php:1357 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141 #: ../../godmode/agentes/agent_incidents.php:91 #: ../../godmode/netflow/nf_edit.php:167 -#: ../../godmode/netflow/nf_edit_form.php:211 +#: ../../godmode/netflow/nf_edit_form.php:256 #: ../../godmode/snmpconsole/snmp_alert.php:837 #: ../../godmode/gis_maps/configure_gis_map.php:509 #: ../../godmode/gis_maps/configure_gis_map.php:646 @@ -1201,7 +1233,7 @@ msgstr "" #: ../../godmode/massive/massive_delete_action_alerts.php:210 #: ../../godmode/massive/massive_add_alerts.php:211 #: ../../godmode/massive/massive_enable_disable_alerts.php:170 -#: ../../godmode/massive/massive_edit_agents.php:694 +#: ../../godmode/massive/massive_edit_agents.php:711 #: ../../godmode/massive/massive_delete_profiles.php:153 #: ../../godmode/massive/massive_delete_alerts.php:290 #: ../../godmode/massive/massive_add_action_alerts.php:198 @@ -1211,10 +1243,10 @@ msgstr "" #: ../../godmode/alerts/alert_actions.php:353 #: ../../godmode/alerts/alert_list.list.php:220 #: ../../godmode/alerts/alert_commands.php:751 -#: ../../godmode/alerts/alert_templates.php:410 +#: ../../godmode/alerts/alert_templates.php:414 #: ../../godmode/alerts/configure_alert_action.php:220 #: ../../godmode/alerts/configure_alert_template.php:1116 -#: ../../godmode/setup/news.php:212 ../../godmode/setup/gis.php:70 +#: ../../godmode/setup/news.php:216 ../../godmode/setup/gis.php:70 #: ../../godmode/setup/gis_step_2.php:237 #: ../../godmode/setup/setup_integria.php:426 #: ../../godmode/setup/setup_integria.php:560 @@ -1230,10 +1262,10 @@ msgstr "" #: ../../godmode/reporting/visual_console_favorite.php:182 #: ../../godmode/reporting/reporting_builder.item_editor.php:72 #: ../../godmode/reporting/reporting_builder.item_editor.php:87 -#: ../../godmode/reporting/reporting_builder.item_editor.php:213 -#: ../../godmode/reporting/reporting_builder.item_editor.php:892 +#: ../../godmode/reporting/reporting_builder.item_editor.php:214 +#: ../../godmode/reporting/reporting_builder.item_editor.php:893 #: ../../godmode/reporting/reporting_builder.item_editor.php:1641 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3494 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3503 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.elements.php:343 #: ../../godmode/reporting/reporting_builder.main.php:119 @@ -1243,13 +1275,13 @@ msgstr "" #: ../../godmode/reporting/graph_builder.main.php:176 #: ../../godmode/events/event_filter.php:145 #: ../../godmode/events/event_responses.editor.php:120 -#: ../../godmode/events/event_edit_filter.php:334 +#: ../../godmode/events/event_edit_filter.php:336 #: ../../godmode/events/event_responses.list.php:68 #: ../../godmode/events/custom_events.php:98 -#: ../../godmode/wizards/HostDevices.class.php:933 -#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:157 -#: ../../mobile/operation/agents.php:234 ../../mobile/operation/agents.php:235 -#: ../../mobile/operation/agents.php:405 ../../mobile/operation/modules.php:171 +#: ../../godmode/wizards/HostDevices.class.php:935 +#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:158 +#: ../../mobile/operation/agents.php:235 ../../mobile/operation/agents.php:236 +#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:171 #: ../../mobile/operation/modules.php:176 #: ../../mobile/operation/modules.php:266 #: ../../mobile/operation/modules.php:267 ../../mobile/operation/alerts.php:113 @@ -1257,30 +1289,32 @@ msgstr "" #: ../../mobile/operation/alerts.php:232 #: ../../mobile/operation/visualmaps.php:113 #: ../../mobile/operation/visualmaps.php:118 -#: ../../mobile/operation/events.php:666 ../../mobile/operation/events.php:671 -#: ../../mobile/operation/events.php:832 ../../mobile/operation/events.php:954 -#: ../../mobile/operation/events.php:955 +#: ../../mobile/operation/events.php:695 ../../mobile/operation/events.php:700 +#: ../../mobile/operation/events.php:861 ../../mobile/operation/events.php:998 +#: ../../mobile/operation/events.php:999 +#: ../../mobile/operation/server_status.php:162 +#: ../../mobile/operation/server_status.php:167 #: ../../include/functions_visual_map_editor.php:70 -#: ../../include/functions_visual_map_editor.php:594 -#: ../../include/functions_visual_map_editor.php:1395 -#: ../../include/functions_reporting_html.php:1604 -#: ../../include/functions_reporting_html.php:2355 -#: ../../include/functions_reporting_html.php:3660 -#: ../../include/functions_reporting_html.php:6458 -#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:113 -#: ../../include/ajax/heatmap.ajax.php:358 +#: ../../include/functions_visual_map_editor.php:588 +#: ../../include/functions_visual_map_editor.php:1453 +#: ../../include/functions_reporting_html.php:1613 +#: ../../include/functions_reporting_html.php:2376 +#: ../../include/functions_reporting_html.php:3688 +#: ../../include/functions_reporting_html.php:6492 +#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:142 +#: ../../include/ajax/heatmap.ajax.php:523 #: ../../include/ajax/custom_fields.php:630 #: ../../include/ajax/custom_fields.php:679 -#: ../../include/functions_graph.php:4937 ../../include/functions_gis.php:228 +#: ../../include/functions_graph.php:4947 ../../include/functions_gis.php:228 #: ../../include/functions_profile.php:204 -#: ../../include/functions_visual_map.php:4215 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:551 -#: ../../include/rest-api/models/VisualConsole/Item.php:2140 -#: ../../include/functions_html.php:1561 +#: ../../include/functions_visual_map.php:4224 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:697 +#: ../../include/rest-api/models/VisualConsole/Item.php:2143 +#: ../../include/functions_html.php:1566 #: ../../include/functions_massive_operations.php:124 -#: ../../include/class/NetworkMap.class.php:2985 -#: ../../include/class/NetworkMap.class.php:3046 -#: ../../include/class/NetworkMap.class.php:3412 +#: ../../include/class/NetworkMap.class.php:2991 +#: ../../include/class/NetworkMap.class.php:3052 +#: ../../include/class/NetworkMap.class.php:3418 #: ../../include/class/AgentsAlerts.class.php:774 #: ../../include/class/CredentialStore.class.php:814 #: ../../include/class/CredentialStore.class.php:846 @@ -1288,39 +1322,39 @@ msgstr "" #: ../../include/class/CustomNetScan.class.php:506 #: ../../include/class/ModuleTemplates.class.php:728 #: ../../include/class/CalendarManager.class.php:1027 +#: ../../include/class/AgentDeployWizard.class.php:342 #: ../../include/functions_container.php:149 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:237 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:826 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:241 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:827 #: ../../include/lib/Group.php:566 -#: ../../include/functions_snmp_browser.php:1863 +#: ../../include/functions_snmp_browser.php:1872 #: ../../include/functions_events.php:203 #: ../../include/functions_events.php:256 -#: ../../include/functions_events.php:5051 ../../operation/heatmap.php:122 +#: ../../include/functions_events.php:5056 ../../operation/heatmap.php:122 #: ../../operation/heatmap.php:124 ../../operation/search_agents.php:46 -#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:999 -#: ../../operation/visual_console/view.php:371 +#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:996 +#: ../../operation/visual_console/view.php:373 #: ../../operation/agentes/estado_agente.php:291 -#: ../../operation/agentes/estado_agente.php:1039 +#: ../../operation/agentes/estado_agente.php:1047 #: ../../operation/agentes/pandora_networkmap.editor.php:344 #: ../../operation/agentes/pandora_networkmap.editor.php:428 #: ../../operation/agentes/interface_view.functions.php:37 #: ../../operation/agentes/exportdata.php:328 -#: ../../operation/agentes/status_monitor.php:816 -#: ../../operation/agentes/group_view.php:240 +#: ../../operation/agentes/status_monitor.php:815 +#: ../../operation/agentes/group_view.php:243 #: ../../operation/agentes/pandora_networkmap.view.php:140 #: ../../operation/agentes/pandora_networkmap.view.php:176 #: ../../operation/agentes/ver_agente.php:1036 -#: ../../operation/agentes/estado_generalagente.php:492 +#: ../../operation/agentes/estado_generalagente.php:463 #: ../../operation/agentes/alerts_status.functions.php:73 #: ../../operation/gis_maps/gis_map.php:116 #: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438 #: ../../operation/incidents/configure_integriaims_incident.php:269 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:340 #: ../../operation/incidents/list_integriaims_incidents.php:347 -#: ../../operation/inventory/inventory.php:510 -#: ../../operation/inventory/inventory.php:1002 -#: ../../operation/inventory/inventory.php:1296 -#: ../../operation/events/events.php:1687 ../../operation/search_maps.php:29 +#: ../../operation/inventory/inventory.php:512 +#: ../../operation/inventory/inventory.php:1248 +#: ../../operation/events/events.php:1741 ../../operation/search_maps.php:29 #: ../../general/ui/agents_list.php:76 msgid "Group" msgstr "" @@ -1335,7 +1369,7 @@ msgstr "" #: ../../enterprise/views/ipam/sites/list.php:73 #: ../../enterprise/meta/advanced/metasetup.consoles.php:965 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:744 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3295 #: ../../enterprise/include/class/LogSource.class.php:634 @@ -1346,17 +1380,17 @@ msgstr "" #: ../../godmode/update_manager/update_manager.history.php:67 #: ../../godmode/agentes/modificar_agente.php:381 #: ../../godmode/snmpconsole/snmp_alert.php:1742 -#: ../../godmode/events/event_edit_filter.php:409 -#: ../../mobile/operation/agents.php:253 ../../mobile/operation/modules.php:318 -#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:992 -#: ../../include/ajax/module.php:312 +#: ../../godmode/events/event_edit_filter.php:411 +#: ../../mobile/operation/agents.php:254 ../../mobile/operation/modules.php:318 +#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:1036 +#: ../../include/ajax/module.php:335 #: ../../include/class/ConfigPEN.class.php:630 #: ../../include/class/EventSound.class.php:337 #: ../../include/class/CredentialStore.class.php:858 #: ../../include/class/SnmpConsole.class.php:374 #: ../../include/class/AuditLog.class.php:197 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:241 -#: ../../operation/events/events.php:1820 +#: ../../operation/events/events.php:1874 msgid "Free search" msgstr "" @@ -1408,8 +1442,8 @@ msgstr "" #: ../../enterprise/godmode/agentes/collections.php:593 #: ../../enterprise/godmode/policies/configure_policy.php:169 #: ../../enterprise/godmode/policies/policy_modules.php:433 -#: ../../enterprise/godmode/policies/policy_modules.php:1746 -#: ../../enterprise/godmode/policies/policy_modules.php:1871 +#: ../../enterprise/godmode/policies/policy_modules.php:1791 +#: ../../enterprise/godmode/policies/policy_modules.php:1916 #: ../../enterprise/godmode/policies/policies.php:728 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:42 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:165 @@ -1434,50 +1468,50 @@ msgstr "" #: ../../godmode/modules/manage_network_templates_form.php:180 #: ../../godmode/modules/manage_nc_groups.php:344 #: ../../godmode/modules/manage_inventory_modules.php:374 -#: ../../godmode/modules/manage_network_components_form.php:379 -#: ../../godmode/modules/manage_network_components.php:896 +#: ../../godmode/modules/manage_network_components_form.php:382 +#: ../../godmode/modules/manage_network_components.php:899 #: ../../godmode/modules/manage_inventory_modules_form.php:249 #: ../../godmode/modules/manage_network_templates.php:311 -#: ../../godmode/groups/configure_group.php:277 +#: ../../godmode/groups/configure_group.php:296 #: ../../godmode/groups/configure_modu_group.php:102 -#: ../../godmode/users/configure_user.php:1665 +#: ../../godmode/users/configure_user.php:1717 #: ../../godmode/agentes/module_manager_editor.php:817 #: ../../godmode/agentes/planned_downtime.list.php:680 #: ../../godmode/agentes/planned_downtime.list.php:989 -#: ../../godmode/agentes/agent_manager.php:1081 +#: ../../godmode/agentes/agent_manager.php:1087 #: ../../godmode/agentes/configure_field.php:203 -#: ../../godmode/agentes/module_manager.php:1119 -#: ../../godmode/netflow/nf_edit_form.php:338 +#: ../../godmode/agentes/module_manager.php:1134 +#: ../../godmode/netflow/nf_edit_form.php:454 #: ../../godmode/snmpconsole/snmp_alert.php:1711 #: ../../godmode/snmpconsole/snmp_alert.php:2177 #: ../../godmode/snmpconsole/snmp_filters.php:275 #: ../../godmode/snmpconsole/snmp_filters.php:366 #: ../../godmode/alerts/configure_alert_command.php:395 #: ../../godmode/alerts/alert_actions.php:502 -#: ../../godmode/alerts/alert_list.list.php:1096 +#: ../../godmode/alerts/alert_list.list.php:1095 #: ../../godmode/alerts/alert_commands.php:839 -#: ../../godmode/alerts/alert_templates.php:514 +#: ../../godmode/alerts/alert_templates.php:518 #: ../../godmode/alerts/configure_alert_action.php:446 -#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:321 +#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:325 #: ../../godmode/setup/gis.php:100 ../../godmode/setup/os.php:95 #: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:165 #: ../../godmode/reporting/create_container.php:383 #: ../../godmode/reporting/map_builder.php:586 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2330 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2339 #: ../../godmode/reporting/reporting_builder.main.php:45 #: ../../godmode/reporting/graph_builder.main.php:298 #: ../../godmode/events/event_responses.editor.php:328 -#: ../../godmode/events/event_edit_filter.php:957 -#: ../../godmode/servers/plugin.php:713 ../../godmode/tag/edit_tag.php:258 +#: ../../godmode/events/event_edit_filter.php:959 +#: ../../godmode/servers/plugin.php:705 ../../godmode/tag/edit_tag.php:262 #: ../../godmode/category/edit_category.php:201 -#: ../../include/functions_visual_map_editor.php:882 +#: ../../include/functions_visual_map_editor.php:930 #: ../../include/class/EventSound.class.php:199 #: ../../include/class/EventSound.class.php:282 -#: ../../include/class/ManageNetScanScripts.class.php:769 +#: ../../include/class/ManageNetScanScripts.class.php:765 #: ../../include/class/ModuleTemplates.class.php:933 #: ../../include/class/ModuleTemplates.class.php:987 -#: ../../include/functions_filemanager.php:859 -#: ../../include/functions_filemanager.php:920 +#: ../../include/functions_filemanager.php:878 +#: ../../include/functions_filemanager.php:940 #: ../../operation/gis_maps/gis_map.php:220 #: ../../operation/incidents/configure_integriaims_incident.php:406 #: ../../operation/incidents/list_integriaims_incidents.php:654 @@ -1503,28 +1537,28 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:2234 #: ../../enterprise/include/functions_reporting.php:2252 #: ../../extensions/insert_data.php:196 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2200 -#: ../../mobile/operation/tactical.php:350 -#: ../../include/functions_reporting_html.php:2018 -#: ../../include/functions_reporting_html.php:2835 -#: ../../include/functions_reporting_html.php:2844 -#: ../../include/functions_reporting_html.php:2849 -#: ../../include/functions_reporting_html.php:2858 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2209 +#: ../../mobile/operation/tactical.php:351 +#: ../../include/functions_reporting_html.php:2034 #: ../../include/functions_reporting_html.php:2863 -#: ../../include/functions_reporting_html.php:2870 -#: ../../include/functions_reporting_html.php:2920 -#: ../../include/functions_reporting_html.php:2994 -#: ../../include/functions_reporting_html.php:6014 -#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1065 +#: ../../include/functions_reporting_html.php:2872 +#: ../../include/functions_reporting_html.php:2877 +#: ../../include/functions_reporting_html.php:2886 +#: ../../include/functions_reporting_html.php:2891 +#: ../../include/functions_reporting_html.php:2898 +#: ../../include/functions_reporting_html.php:2948 +#: ../../include/functions_reporting_html.php:3022 +#: ../../include/functions_reporting_html.php:6048 +#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1175 #: ../../include/class/AuditLog.class.php:112 -#: ../../include/functions_reporting.php:4728 -#: ../../include/functions_reporting.php:4769 +#: ../../include/functions_reporting.php:4737 +#: ../../include/functions_reporting.php:4778 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:624 -#: ../../operation/agentes/agent_inventory.php:127 +#: ../../operation/agentes/agent_inventory.php:135 #: ../../operation/incidents/list_integriaims_incidents.php:441 -#: ../../operation/inventory/inventory.php:681 +#: ../../operation/inventory/inventory.php:682 #: ../../operation/reporting/graph_viewer.php:321 -#: ../../general/logon_ok.php:257 +#: ../../general/logon_ok.php:302 msgid "Date" msgstr "" @@ -1540,7 +1574,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4403 #: ../../godmode/alerts/alert_templates.php:62 #: ../../godmode/reporting/reporting_builder.item_editor.php:1530 -#: ../../include/functions_html.php:2300 +#: ../../include/functions_html.php:2315 msgid "Monday" msgstr "" @@ -1556,7 +1590,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4404 #: ../../godmode/alerts/alert_templates.php:63 #: ../../godmode/reporting/reporting_builder.item_editor.php:1538 -#: ../../include/functions_html.php:2301 +#: ../../include/functions_html.php:2316 msgid "Tuesday" msgstr "" @@ -1572,7 +1606,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4405 #: ../../godmode/alerts/alert_templates.php:64 #: ../../godmode/reporting/reporting_builder.item_editor.php:1546 -#: ../../include/functions_html.php:2302 +#: ../../include/functions_html.php:2317 msgid "Wednesday" msgstr "" @@ -1588,7 +1622,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4406 #: ../../godmode/alerts/alert_templates.php:65 #: ../../godmode/reporting/reporting_builder.item_editor.php:1554 -#: ../../include/functions_html.php:2303 +#: ../../include/functions_html.php:2318 msgid "Thursday" msgstr "" @@ -1604,7 +1638,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4407 #: ../../godmode/alerts/alert_templates.php:66 #: ../../godmode/reporting/reporting_builder.item_editor.php:1562 -#: ../../include/functions_html.php:2304 +#: ../../include/functions_html.php:2319 msgid "Friday" msgstr "" @@ -1620,7 +1654,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4408 #: ../../godmode/alerts/alert_templates.php:67 #: ../../godmode/reporting/reporting_builder.item_editor.php:1570 -#: ../../include/functions_html.php:2305 +#: ../../include/functions_html.php:2320 msgid "Saturday" msgstr "" @@ -1636,7 +1670,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4409 #: ../../godmode/alerts/alert_templates.php:68 #: ../../godmode/reporting/reporting_builder.item_editor.php:1578 -#: ../../include/functions_html.php:2299 +#: ../../include/functions_html.php:2314 msgid "Sunday" msgstr "" @@ -1708,7 +1742,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_collections.php:352 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:153 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:429 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:345 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:350 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:355 @@ -1743,7 +1777,7 @@ msgstr "" #: ../../enterprise/include/class/DatabaseHA.class.php:892 #: ../../enterprise/include/class/AgentRepository.class.php:1004 #: ../../enterprise/include/class/Omnishell.class.php:829 -#: ../../enterprise/include/class/LogSource.class.php:828 +#: ../../enterprise/include/class/LogSource.class.php:825 #: ../../enterprise/include/class/SAPView.class.php:325 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2314 #: ../../enterprise/operation/agentes/policy_view.php:209 @@ -1758,24 +1792,24 @@ msgstr "" #: ../../godmode/modules/manage_nc_groups_form.php:95 #: ../../godmode/modules/manage_network_templates_form.php:178 #: ../../godmode/modules/manage_inventory_modules.php:338 -#: ../../godmode/modules/manage_network_components_form.php:373 +#: ../../godmode/modules/manage_network_components_form.php:376 #: ../../godmode/modules/manage_inventory_modules_form.php:245 -#: ../../godmode/groups/configure_group.php:268 +#: ../../godmode/groups/configure_group.php:287 #: ../../godmode/groups/configure_modu_group.php:99 #: ../../godmode/update_manager/update_manager.setup.php:406 #: ../../godmode/users/configure_profile.php:418 -#: ../../godmode/users/configure_user.php:1669 -#: ../../godmode/agentes/status_monitor_custom_fields.php:211 +#: ../../godmode/users/configure_user.php:1721 +#: ../../godmode/agentes/status_monitor_custom_fields.php:231 #: ../../godmode/agentes/module_manager_editor.php:795 #: ../../godmode/agentes/inventory_manager.php:184 -#: ../../godmode/agentes/inventory_manager.php:266 +#: ../../godmode/agentes/inventory_manager.php:267 #: ../../godmode/agentes/agent_conf_gis.php:161 #: ../../godmode/agentes/planned_downtime.list.php:891 #: ../../godmode/agentes/planned_downtime.list.php:936 #: ../../godmode/agentes/planned_downtime.editor.php:1305 -#: ../../godmode/agentes/agent_manager.php:1056 +#: ../../godmode/agentes/agent_manager.php:1062 #: ../../godmode/agentes/configure_field.php:199 -#: ../../godmode/netflow/nf_edit_form.php:334 +#: ../../godmode/netflow/nf_edit_form.php:450 #: ../../godmode/snmpconsole/snmp_alert.php:1700 #: ../../godmode/snmpconsole/snmp_alert.php:2002 #: ../../godmode/snmpconsole/snmp_filters.php:264 @@ -1783,18 +1817,18 @@ msgstr "" #: ../../godmode/snmpconsole/snmp_filters.php:337 #: ../../godmode/alerts/configure_alert_command.php:386 #: ../../godmode/alerts/alert_list.list.php:227 -#: ../../godmode/alerts/alert_list.list.php:1041 +#: ../../godmode/alerts/alert_list.list.php:1040 #: ../../godmode/alerts/configure_alert_action.php:424 -#: ../../godmode/setup/news.php:329 ../../godmode/setup/setup_ehorus.php:216 +#: ../../godmode/setup/news.php:333 ../../godmode/setup/setup_ehorus.php:216 #: ../../godmode/setup/setup_sflow.php:95 -#: ../../godmode/setup/setup_websocket_engine.php:93 +#: ../../godmode/setup/setup_websocket_engine.php:117 #: ../../godmode/setup/os.php:73 ../../godmode/setup/os.php:142 #: ../../godmode/setup/setup_auth.php:515 #: ../../godmode/setup/setup_integria.php:728 ../../godmode/setup/links.php:168 #: ../../godmode/setup/snmp_wizard.php:100 -#: ../../godmode/setup/setup_netflow.php:95 -#: ../../godmode/setup/setup_visuals.php:2130 -#: ../../godmode/setup/setup_general.php:841 +#: ../../godmode/setup/setup_netflow.php:91 +#: ../../godmode/setup/setup_visuals.php:2145 +#: ../../godmode/setup/setup_general.php:867 #: ../../godmode/setup/performance.php:880 #: ../../godmode/reporting/visual_console_builder.data.php:313 #: ../../godmode/reporting/create_container.php:365 @@ -1802,24 +1836,24 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.main.php:56 #: ../../godmode/reporting/graph_builder.main.php:298 #: ../../godmode/events/event_responses.editor.php:332 -#: ../../godmode/events/event_edit_filter.php:954 +#: ../../godmode/events/event_edit_filter.php:956 #: ../../godmode/events/custom_events.php:192 #: ../../godmode/servers/modificar_server.php:134 -#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:721 -#: ../../godmode/tag/edit_tag.php:247 +#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:713 +#: ../../godmode/tag/edit_tag.php:251 #: ../../godmode/category/edit_category.php:196 -#: ../../include/functions_visual_map_editor.php:878 +#: ../../include/functions_visual_map_editor.php:926 #: ../../include/ajax/alert_list.ajax.php:564 #: ../../include/class/ConfigPEN.class.php:703 #: ../../include/class/ConfigPEN.class.php:704 -#: ../../include/class/ManageNetScanScripts.class.php:773 -#: ../../include/class/CredentialStore.class.php:1651 +#: ../../include/class/ManageNetScanScripts.class.php:769 +#: ../../include/class/CredentialStore.class.php:1660 #: ../../include/class/ModuleTemplates.class.php:992 #: ../../include/class/ExternalTools.class.php:420 -#: ../../include/functions_events.php:3512 -#: ../../include/functions_events.php:3594 -#: ../../operation/users/user_edit.php:951 -#: ../../operation/agentes/datos_agente.php:218 +#: ../../include/functions_events.php:3517 +#: ../../include/functions_events.php:3599 +#: ../../operation/users/user_edit.php:948 +#: ../../operation/agentes/datos_agente.php:220 #: ../../operation/incidents/configure_integriaims_incident.php:415 #: ../../operation/reporting/reporting_viewer.php:284 msgid "Update" @@ -1831,7 +1865,7 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4420 #: ../../godmode/agentes/planned_downtime.list.php:819 #: ../../godmode/alerts/configure_alert_template.php:1600 -#: ../../include/class/AgentWizard.class.php:6186 +#: ../../include/class/AgentWizard.class.php:6182 msgid "Loading, this operation might take several minutes..." msgstr "" @@ -1857,7 +1891,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:535 #: ../../extensions/extension_uploader.php:134 #: ../../extensions/resource_registration.php:1145 -#: ../../godmode/servers/plugin_registration.php:123 +#: ../../godmode/servers/plugin_registration.php:119 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:234 msgid "Upload" msgstr "" @@ -1881,26 +1915,27 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:123 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129 #: ../../enterprise/operation/agentes/policy_view.php:333 -#: ../../godmode/users/configure_user.php:1102 +#: ../../godmode/users/configure_user.php:58 +#: ../../godmode/users/configure_user.php:1166 #: ../../godmode/users/user_management.php:37 -#: ../../godmode/users/user_management.php:564 -#: ../../godmode/agentes/module_manager_editor_common.php:681 +#: ../../godmode/users/user_management.php:570 +#: ../../godmode/agentes/module_manager_editor_common.php:686 #: ../../godmode/massive/massive_edit_users.php:242 #: ../../godmode/massive/massive_edit_users.php:273 -#: ../../godmode/massive/massive_edit_agents.php:1034 +#: ../../godmode/massive/massive_edit_agents.php:1051 #: ../../godmode/alerts/alert_list.list.php:702 #: ../../godmode/alerts/alert_view.php:58 #: ../../godmode/setup/gis_step_2.php:599 #: ../../godmode/setup/gis_step_2.php:685 -#: ../../godmode/setup/setup_visuals.php:402 -#: ../../godmode/setup/setup_visuals.php:433 -#: ../../godmode/setup/setup_visuals.php:573 -#: ../../godmode/setup/setup_visuals.php:689 -#: ../../godmode/setup/setup_visuals.php:729 -#: ../../godmode/setup/setup_visuals.php:1543 -#: ../../godmode/events/event_edit_filter.php:463 -#: ../../include/functions_ui.php:1404 -#: ../../include/class/AgentsAlerts.class.php:947 +#: ../../godmode/setup/setup_visuals.php:406 +#: ../../godmode/setup/setup_visuals.php:437 +#: ../../godmode/setup/setup_visuals.php:577 +#: ../../godmode/setup/setup_visuals.php:693 +#: ../../godmode/setup/setup_visuals.php:733 +#: ../../godmode/setup/setup_visuals.php:1558 +#: ../../godmode/events/event_edit_filter.php:465 +#: ../../include/auth/mysql.php:806 ../../include/functions_ui.php:1447 +#: ../../include/class/AgentsAlerts.class.php:948 #: ../../include/class/SnmpConsole.class.php:299 #: ../../operation/users/user_edit.php:429 #: ../../operation/users/user_edit.php:432 @@ -1915,7 +1950,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1059 #: ../../include/functions.php:1157 #: ../../include/class/CalendarManager.class.php:1035 -#: ../../include/functions_reporting.php:14913 +#: ../../include/functions_reporting.php:14986 msgid "Sun" msgstr "" @@ -1924,7 +1959,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1053 #: ../../include/functions.php:1133 #: ../../include/class/CalendarManager.class.php:1029 -#: ../../include/functions_reporting.php:14883 +#: ../../include/functions_reporting.php:14956 msgid "Mon" msgstr "" @@ -1933,7 +1968,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1054 #: ../../include/functions.php:1137 #: ../../include/class/CalendarManager.class.php:1030 -#: ../../include/functions_reporting.php:14888 +#: ../../include/functions_reporting.php:14961 msgid "Tue" msgstr "" @@ -1942,7 +1977,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1055 #: ../../include/functions.php:1141 #: ../../include/class/CalendarManager.class.php:1031 -#: ../../include/functions_reporting.php:14893 +#: ../../include/functions_reporting.php:14966 msgid "Wed" msgstr "" @@ -1951,7 +1986,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1056 #: ../../include/functions.php:1145 #: ../../include/class/CalendarManager.class.php:1032 -#: ../../include/functions_reporting.php:14898 +#: ../../include/functions_reporting.php:14971 msgid "Thu" msgstr "" @@ -1960,7 +1995,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1057 #: ../../include/functions.php:1149 #: ../../include/class/CalendarManager.class.php:1033 -#: ../../include/functions_reporting.php:14903 +#: ../../include/functions_reporting.php:14976 msgid "Fri" msgstr "" @@ -1969,7 +2004,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1058 #: ../../include/functions.php:1153 #: ../../include/class/CalendarManager.class.php:1034 -#: ../../include/functions_reporting.php:14908 +#: ../../include/functions_reporting.php:14981 msgid "Sat" msgstr "" @@ -2086,7 +2121,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/collections.data.php:300 #: ../../enterprise/godmode/agentes/collections.data.php:429 #: ../../enterprise/godmode/agentes/collections.editor.php:255 -#: ../../enterprise/godmode/policies/policy_modules.php:1944 +#: ../../enterprise/godmode/policies/policy_modules.php:1989 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:205 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:580 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:383 @@ -2107,34 +2142,34 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_ajax.php:122 #: ../../enterprise/tools/ipam/ipam_ajax.php:530 #: ../../extensions/files_repo/files_repo_list.php:139 -#: ../../godmode/groups/group_list.php:951 -#: ../../godmode/groups/group_list.php:952 +#: ../../godmode/groups/group_list.php:963 +#: ../../godmode/groups/group_list.php:964 #: ../../godmode/users/profile_list.php:444 #: ../../godmode/agentes/agent_template.php:306 -#: ../../godmode/agentes/modificar_agente.php:810 +#: ../../godmode/agentes/modificar_agente.php:822 #: ../../godmode/agentes/planned_downtime.list.php:747 #: ../../godmode/agentes/planned_downtime.editor.php:1416 #: ../../godmode/agentes/fields_manager.php:191 #: ../../godmode/agentes/configure_field.php:83 #: ../../godmode/setup/snmp_wizard.php:110 -#: ../../godmode/reporting/reporting_builder.list_items.php:626 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2338 +#: ../../godmode/reporting/reporting_builder.list_items.php:627 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2347 #: ../../godmode/reporting/reporting_builder.php:1164 #: ../../godmode/events/event_responses.list.php:105 -#: ../../godmode/servers/servers.build_table.php:237 -#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1050 +#: ../../godmode/servers/servers.build_table.php:250 +#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1042 #: ../../godmode/category/category.php:182 #: ../../godmode/category/category.php:211 ../../include/functions_cron.php:918 #: ../../include/functions_cron.php:944 -#: ../../include/class/NetworkMap.class.php:3192 +#: ../../include/class/NetworkMap.class.php:3198 #: ../../include/class/CredentialStore.class.php:1263 -#: ../../include/class/TipsWindow.class.php:457 +#: ../../include/class/TipsWindow.class.php:469 #: ../../include/class/CalendarManager.class.php:703 #: ../../include/lib/ClusterViewer/ClusterManager.php:618 -#: ../../operation/visual_console/view.php:465 -#: ../../operation/agentes/estado_agente.php:1262 -#: ../../operation/agentes/pandora_networkmap.php:815 -#: ../../operation/agentes/status_monitor.php:2248 +#: ../../operation/visual_console/view.php:467 +#: ../../operation/agentes/estado_agente.php:1271 +#: ../../operation/agentes/pandora_networkmap.php:816 +#: ../../operation/agentes/status_monitor.php:2250 #: ../../operation/gis_maps/gis_map.php:203 #: ../../operation/incidents/list_integriaims_incidents.php:621 #: ../../operation/search_reports.php:68 @@ -2151,12 +2186,12 @@ msgstr "" #: ../../enterprise/godmode/modules/local_components.php:743 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:78 #: ../../enterprise/godmode/policies/policy_alerts.php:565 -#: ../../enterprise/godmode/policies/policy_modules.php:1626 -#: ../../enterprise/godmode/policies/policy_modules.php:1642 -#: ../../enterprise/godmode/policies/policy_modules.php:1703 -#: ../../enterprise/godmode/policies/policy_queue.php:810 -#: ../../enterprise/godmode/policies/policy_queue.php:852 -#: ../../enterprise/godmode/policies/policy_queue.php:875 +#: ../../enterprise/godmode/policies/policy_modules.php:1671 +#: ../../enterprise/godmode/policies/policy_modules.php:1687 +#: ../../enterprise/godmode/policies/policy_modules.php:1748 +#: ../../enterprise/godmode/policies/policy_queue.php:814 +#: ../../enterprise/godmode/policies/policy_queue.php:856 +#: ../../enterprise/godmode/policies/policy_queue.php:879 #: ../../enterprise/godmode/policies/policies.php:633 #: ../../enterprise/godmode/policies/policies.php:652 #: ../../enterprise/godmode/policies/policies.php:687 @@ -2193,7 +2228,7 @@ msgstr "" #: ../../enterprise/include/class/Omnishell.class.php:702 #: ../../enterprise/include/class/Omnishell.class.php:1390 #: ../../enterprise/include/class/Omnishell.class.php:1525 -#: ../../enterprise/include/class/LogSource.class.php:871 +#: ../../enterprise/include/class/LogSource.class.php:868 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3151 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3471 #: ../../enterprise/include/class/ManageBackups.class.php:452 @@ -2207,28 +2242,30 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:844 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:975 #: ../../update_manager_client/views/offline.php:72 -#: ../../update_manager_client/views/online.php:123 -#: ../../update_manager_client/views/online.php:164 +#: ../../update_manager_client/views/online.php:125 +#: ../../update_manager_client/views/online.php:166 #: ../../extensions/files_repo/files_repo_list.php:149 #: ../../godmode/modules/manage_nc_groups.php:300 #: ../../godmode/modules/manage_inventory_modules.php:341 -#: ../../godmode/modules/manage_network_components.php:852 +#: ../../godmode/modules/manage_network_components.php:855 #: ../../godmode/modules/manage_network_templates.php:274 #: ../../godmode/modules/manage_network_templates.php:289 -#: ../../godmode/groups/group_list.php:960 +#: ../../godmode/groups/group_list.php:972 #: ../../godmode/groups/modu_group_list.php:284 #: ../../godmode/groups/modu_group_list.php:287 #: ../../godmode/extensions.php:283 ../../godmode/extensions.php:301 #: ../../godmode/users/profile_list.php:452 -#: ../../godmode/users/configure_user.php:1935 -#: ../../godmode/users/configure_user.php:2171 +#: ../../godmode/users/user_list.php:984 +#: ../../godmode/users/configure_user.php:1987 +#: ../../godmode/users/configure_user.php:2223 #: ../../godmode/agentes/agent_template.php:298 -#: ../../godmode/agentes/inventory_manager.php:261 -#: ../../godmode/agentes/modificar_agente.php:941 +#: ../../godmode/agentes/inventory_manager.php:262 +#: ../../godmode/agentes/modificar_agente.php:953 #: ../../godmode/agentes/planned_downtime.editor.php:1453 #: ../../godmode/agentes/fields_manager.php:210 -#: ../../godmode/agentes/module_manager.php:1014 -#: ../../godmode/agentes/module_manager.php:1235 +#: ../../godmode/agentes/module_manager.php:1012 +#: ../../godmode/agentes/module_manager.php:1028 +#: ../../godmode/agentes/module_manager.php:1256 #: ../../godmode/netflow/nf_item_list.php:262 #: ../../godmode/netflow/nf_edit.php:202 #: ../../godmode/snmpconsole/snmp_alert.php:1945 @@ -2240,11 +2277,11 @@ msgstr "" #: ../../godmode/massive/massive_edit_plugins.php:576 #: ../../godmode/massive/massive_enable_disable_alerts.php:227 #: ../../godmode/alerts/alert_actions.php:449 -#: ../../godmode/alerts/alert_list.list.php:1256 +#: ../../godmode/alerts/alert_list.list.php:1255 #: ../../godmode/alerts/alert_commands.php:812 #: ../../godmode/alerts/alert_commands.php:815 -#: ../../godmode/alerts/alert_templates.php:465 -#: ../../godmode/setup/news.php:393 ../../godmode/setup/links.php:210 +#: ../../godmode/alerts/alert_templates.php:469 +#: ../../godmode/setup/news.php:392 ../../godmode/setup/links.php:210 #: ../../godmode/reporting/create_container.php:801 #: ../../godmode/reporting/map_builder.php:544 #: ../../godmode/reporting/map_builder.php:555 @@ -2259,7 +2296,7 @@ msgstr "" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1019 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1032 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 -#: ../../godmode/servers/plugin.php:1062 ../../godmode/tag/tag.php:420 +#: ../../godmode/servers/plugin.php:1054 ../../godmode/tag/tag.php:421 #: ../../godmode/category/category.php:186 #: ../../godmode/category/category.php:222 #: ../../include/functions_profile.php:319 @@ -2268,25 +2305,26 @@ msgstr "" #: ../../include/class/SatelliteAgent.class.php:1193 #: ../../include/class/SatelliteAgent.class.php:1255 #: ../../include/class/TreeGroupEdition.class.php:166 -#: ../../include/class/CredentialStore.class.php:1693 +#: ../../include/class/CredentialStore.class.php:1702 #: ../../include/class/SnmpConsole.class.php:472 -#: ../../include/class/SnmpConsole.class.php:1266 -#: ../../include/class/SnmpConsole.class.php:1293 -#: ../../include/class/TipsWindow.class.php:618 +#: ../../include/class/SnmpConsole.class.php:1268 +#: ../../include/class/SnmpConsole.class.php:1295 +#: ../../include/class/TipsWindow.class.php:640 #: ../../include/class/ModuleTemplates.class.php:874 #: ../../include/class/ModuleTemplates.class.php:889 #: ../../include/class/WelcomeWindow.class.php:171 #: ../../include/class/SatelliteCollection.class.php:531 #: ../../include/class/SatelliteCollection.class.php:574 -#: ../../include/functions_filemanager.php:754 +#: ../../include/functions_filemanager.php:769 #: ../../include/functions_container.php:190 #: ../../include/functions_container.php:324 #: ../../include/lib/Dashboard/Widgets/events_list.php:655 -#: ../../include/functions_events.php:3655 -#: ../../operation/users/user_edit.php:1345 +#: ../../include/functions_events.php:3660 +#: ../../operation/users/user_edit.php:1342 #: ../../operation/agentes/pandora_networkmap.editor.php:743 #: ../../operation/messages/message_list.php:300 -#: ../../operation/snmpconsole/snmp_browser.php:637 +#: ../../operation/snmpconsole/snmp_browser.php:620 +#: ../../operation/snmpconsole/snmp_browser.php:696 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:213 #: ../../operation/incidents/list_integriaims_incidents.php:625 msgid "Are you sure?" @@ -2299,13 +2337,13 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4418 #: ../../godmode/alerts/configure_alert_template.php:1598 -#: ../../godmode/events/event_edit_filter.php:681 -#: ../../godmode/events/event_edit_filter.php:746 -#: ../../include/functions_ui.php:7521 ../../include/functions_ui.php:7569 +#: ../../godmode/events/event_edit_filter.php:683 +#: ../../godmode/events/event_edit_filter.php:748 +#: ../../include/functions_ui.php:7605 ../../include/functions_ui.php:7661 #: ../../include/rest-api/index.php:363 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:546 -#: ../../operation/events/events.php:1284 -#: ../../operation/events/events.php:1356 +#: ../../operation/events/events.php:1311 +#: ../../operation/events/events.php:1401 msgid "Remove" msgstr "" @@ -2334,12 +2372,13 @@ msgstr "" #: ../../enterprise/include/class/SAPView.class.php:155 #: ../../enterprise/include/class/SAPView.class.php:199 #: ../../enterprise/operation/agentes/tag_view.php:50 -#: ../../enterprise/operation/log/log_viewer.php:494 +#: ../../enterprise/operation/log/log_viewer.php:492 #: ../../enterprise/tools/ipam/ipam_editor.php:303 -#: ../../extensions/agents_modules.php:552 +#: ../../extensions/agents_modules.php:560 #: ../../extensions/module_groups.php:260 #: ../../extensions/realtime_graphs.php:67 ../../godmode/groups/tactical.php:71 -#: ../../godmode/groups/tactical.php:126 +#: ../../godmode/groups/tactical.php:125 +#: ../../godmode/agentes/status_monitor_custom_fields.php:44 #: ../../godmode/snmpconsole/snmp_trap_generator.php:47 #: ../../godmode/snmpconsole/snmp_filters.php:55 #: ../../include/class/AgentsAlerts.class.php:751 @@ -2348,17 +2387,17 @@ msgstr "" #: ../../operation/agentes/alerts_status.php:198 #: ../../operation/agentes/estado_agente.php:246 #: ../../operation/agentes/interface_view.php:72 -#: ../../operation/agentes/status_monitor.php:336 +#: ../../operation/agentes/status_monitor.php:335 #: ../../operation/agentes/group_view.php:98 #: ../../operation/agentes/tactical.php:81 #: ../../operation/network/network_usage_map.php:48 -#: ../../operation/netflow/nf_live_view.php:139 +#: ../../operation/netflow/nf_live_view.php:144 #: ../../operation/netflow/netflow_explorer.php:55 #: ../../operation/snmpconsole/snmp_statistics.php:100 -#: ../../operation/snmpconsole/snmp_browser.php:86 +#: ../../operation/snmpconsole/snmp_browser.php:88 #: ../../operation/snmpconsole/snmp_mib_uploader.php:56 #: ../../operation/menu.php:159 ../../operation/menu.php:276 -#: ../../operation/inventory/inventory.php:310 +#: ../../operation/inventory/inventory.php:312 #: ../../general/first_task/cluster_builder.php:38 msgid "Monitoring" msgstr "" @@ -2371,13 +2410,13 @@ msgid "Clusters" msgstr "" #: ../../views/cluster/list.php:72 -#: ../../enterprise/meta/advanced/servers.build_table.php:63 +#: ../../enterprise/meta/advanced/servers.build_table.php:79 #: ../../enterprise/meta/advanced/metasetup.relations.php:335 #: ../../enterprise/meta/advanced/metasetup.relations.php:413 #: ../../enterprise/meta/advanced/metasetup.relations.php:548 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 #: ../../enterprise/godmode/modules/configure_local_component.php:214 -#: ../../enterprise/godmode/policies/policy_modules.php:1545 +#: ../../enterprise/godmode/policies/policy_modules.php:1590 #: ../../enterprise/godmode/services/services.elements.php:113 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:72 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:93 @@ -2394,48 +2433,48 @@ msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:50 #: ../../godmode/modules/manage_network_templates_form.php:232 #: ../../godmode/modules/manage_network_components_form_common.php:64 -#: ../../godmode/modules/manage_network_components.php:776 +#: ../../godmode/modules/manage_network_components.php:779 #: ../../godmode/update_manager/update_manager.history.php:41 #: ../../godmode/agentes/agent_template.php:275 -#: ../../godmode/agentes/modificar_agente.php:696 +#: ../../godmode/agentes/modificar_agente.php:706 #: ../../godmode/agentes/planned_downtime.list.php:736 #: ../../godmode/agentes/planned_downtime.editor.php:926 #: ../../godmode/agentes/module_manager_editor_common.php:293 -#: ../../godmode/agentes/module_manager_editor_common.php:1536 +#: ../../godmode/agentes/module_manager_editor_common.php:1546 #: ../../godmode/agentes/module_manager.php:630 #: ../../godmode/alerts/alert_templates.php:35 -#: ../../godmode/alerts/alert_templates.php:307 -#: ../../godmode/alerts/alert_templates.php:412 -#: ../../godmode/setup/news.php:350 ../../godmode/setup/gis_step_2.php:256 +#: ../../godmode/alerts/alert_templates.php:311 +#: ../../godmode/alerts/alert_templates.php:416 +#: ../../godmode/setup/news.php:354 ../../godmode/setup/gis_step_2.php:256 #: ../../godmode/setup/setup_integria.php:479 #: ../../godmode/setup/setup_integria.php:613 #: ../../godmode/reporting/reporting_builder.list_items.php:245 #: ../../godmode/reporting/reporting_builder.list_items.php:374 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1055 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1057 #: ../../godmode/reporting/visual_console_builder.wizard.php:131 #: ../../godmode/reporting/visual_console_builder.wizard.php:315 #: ../../godmode/events/event_responses.editor.php:234 -#: ../../godmode/servers/servers.build_table.php:79 +#: ../../godmode/servers/servers.build_table.php:81 #: ../../godmode/servers/modificar_server.php:105 -#: ../../godmode/servers/plugin.php:993 +#: ../../godmode/servers/plugin.php:985 #: ../../mobile/operation/visualmaps.php:125 #: ../../mobile/operation/visualmaps.php:126 -#: ../../mobile/operation/events.php:658 ../../mobile/operation/events.php:659 -#: ../../mobile/operation/events.php:812 ../../mobile/operation/events.php:972 -#: ../../mobile/operation/events.php:973 -#: ../../include/functions_visual_map_editor.php:700 -#: ../../include/functions_visual_map_editor.php:718 -#: ../../include/functions_visual_map_editor.php:846 +#: ../../mobile/operation/events.php:687 ../../mobile/operation/events.php:688 +#: ../../mobile/operation/events.php:841 ../../mobile/operation/events.php:1016 +#: ../../mobile/operation/events.php:1017 +#: ../../include/functions_visual_map_editor.php:750 +#: ../../include/functions_visual_map_editor.php:768 +#: ../../include/functions_visual_map_editor.php:894 #: ../../include/functions_reporting_html.php:1056 #: ../../include/functions_reporting_html.php:1065 #: ../../include/functions_reporting_html.php:1306 #: ../../include/functions_reporting_html.php:1314 -#: ../../include/functions_reporting_html.php:2638 -#: ../../include/functions_reporting_html.php:5490 -#: ../../include/ajax/heatmap.ajax.php:77 +#: ../../include/functions_reporting_html.php:2657 +#: ../../include/functions_reporting_html.php:5518 +#: ../../include/ajax/heatmap.ajax.php:96 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 #: ../../include/functions_reports.php:1086 -#: ../../include/functions_html.php:5952 +#: ../../include/functions_html.php:5976 #: ../../include/class/ModuleTemplates.class.php:1185 #: ../../include/class/CalendarManager.class.php:1028 #: ../../include/class/CalendarManager.class.php:1062 @@ -2448,27 +2487,27 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/clock.php:221 #: ../../include/functions_snmp_browser.php:564 #: ../../include/functions_events.php:2525 -#: ../../include/functions_events.php:4958 -#: ../../operation/agentes/estado_agente.php:1043 +#: ../../include/functions_events.php:4963 +#: ../../operation/agentes/estado_agente.php:1051 #: ../../operation/agentes/ver_agente.php:1171 -#: ../../operation/netflow/nf_live_view.php:495 +#: ../../operation/netflow/nf_live_view.php:568 #: ../../operation/incidents/configure_integriaims_incident.php:251 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:342 -#: ../../operation/search_modules.php:34 +#: ../../operation/search_modules.php:37 #: ../../operation/reporting/graph_viewer.php:363 msgid "Type" msgstr "" #: ../../views/cluster/list.php:73 -#: ../../include/functions_reporting_html.php:5925 +#: ../../include/functions_reporting_html.php:5953 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:325 -#: ../../operation/agentes/pandora_networkmap.php:717 +#: ../../operation/agentes/pandora_networkmap.php:718 msgid "Nodes" msgstr "" #: ../../views/cluster/list.php:74 #: ../../enterprise/views/ncm/devices/list.php:120 -#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../enterprise/meta/advanced/servers.build_table.php:78 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:584 #: ../../enterprise/meta/advanced/policymanager.queue.php:225 #: ../../enterprise/meta/monitoring/custom_fields_view.php:719 @@ -2479,8 +2518,8 @@ msgstr "" #: ../../enterprise/godmode/agentes/collection_manager.php:164 #: ../../enterprise/godmode/agentes/collection_manager.php:264 #: ../../enterprise/godmode/policies/policy_alerts.php:368 -#: ../../enterprise/godmode/policies/policy_modules.php:1546 -#: ../../enterprise/godmode/policies/policy_queue.php:335 +#: ../../enterprise/godmode/policies/policy_modules.php:1591 +#: ../../enterprise/godmode/policies/policy_queue.php:337 #: ../../enterprise/godmode/policies/policies.php:436 #: ../../enterprise/godmode/policies/policy_collections.php:243 #: ../../enterprise/godmode/policies/policy_collections.php:324 @@ -2516,15 +2555,15 @@ msgstr "" #: ../../enterprise/operation/services/services.table_services.php:183 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:490 #: ../../godmode/groups/tactical.php:180 -#: ../../godmode/agentes/status_monitor_custom_fields.php:97 -#: ../../godmode/agentes/status_monitor_custom_fields.php:146 +#: ../../godmode/agentes/status_monitor_custom_fields.php:117 +#: ../../godmode/agentes/status_monitor_custom_fields.php:166 #: ../../godmode/agentes/agent_incidents.php:88 #: ../../godmode/agentes/module_manager.php:645 #: ../../godmode/massive/massive_copy_modules.php:121 #: ../../godmode/massive/massive_copy_modules.php:281 #: ../../godmode/massive/massive_delete_modules.php:415 #: ../../godmode/massive/massive_edit_users.php:501 -#: ../../godmode/massive/massive_edit_agents.php:926 +#: ../../godmode/massive/massive_edit_agents.php:943 #: ../../godmode/alerts/alert_list.list.php:174 #: ../../godmode/alerts/alert_list.list.php:569 #: ../../godmode/alerts/alert_view.php:120 @@ -2533,71 +2572,81 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:77 #: ../../godmode/events/custom_events.php:99 #: ../../godmode/wizards/DiscoveryTaskList.class.php:605 -#: ../../godmode/servers/servers.build_table.php:78 -#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:144 -#: ../../mobile/operation/agents.php:243 ../../mobile/operation/agents.php:244 -#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:163 +#: ../../godmode/servers/servers.build_table.php:80 +#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:145 +#: ../../mobile/operation/agents.php:244 ../../mobile/operation/agents.php:245 +#: ../../mobile/operation/agents.php:407 ../../mobile/operation/modules.php:163 #: ../../mobile/operation/modules.php:164 #: ../../mobile/operation/modules.php:275 #: ../../mobile/operation/modules.php:276 -#: ../../mobile/operation/modules.php:603 -#: ../../mobile/operation/modules.php:609 -#: ../../mobile/operation/modules.php:615 -#: ../../mobile/operation/modules.php:621 +#: ../../mobile/operation/modules.php:614 +#: ../../mobile/operation/modules.php:620 +#: ../../mobile/operation/modules.php:626 #: ../../mobile/operation/modules.php:632 -#: ../../mobile/operation/modules.php:640 -#: ../../mobile/operation/modules.php:648 -#: ../../mobile/operation/modules.php:720 +#: ../../mobile/operation/modules.php:643 +#: ../../mobile/operation/modules.php:651 +#: ../../mobile/operation/modules.php:659 #: ../../mobile/operation/modules.php:732 -#: ../../mobile/operation/modules.php:850 ../../mobile/operation/alerts.php:105 +#: ../../mobile/operation/modules.php:742 +#: ../../mobile/operation/modules.php:751 +#: ../../mobile/operation/modules.php:763 +#: ../../mobile/operation/modules.php:909 ../../mobile/operation/alerts.php:105 #: ../../mobile/operation/alerts.php:106 ../../mobile/operation/alerts.php:247 -#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:350 -#: ../../mobile/operation/events.php:649 ../../mobile/operation/events.php:650 -#: ../../mobile/operation/events.php:824 ../../mobile/operation/events.php:963 -#: ../../mobile/operation/events.php:964 +#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:334 +#: ../../mobile/operation/module_data.php:262 +#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679 +#: ../../mobile/operation/events.php:853 ../../mobile/operation/events.php:1007 +#: ../../mobile/operation/events.php:1008 +#: ../../mobile/operation/server_status.php:154 +#: ../../mobile/operation/server_status.php:155 +#: ../../mobile/operation/server_status.php:281 +#: ../../mobile/operation/server_status.php:319 +#: ../../mobile/operation/server_status.php:349 +#: ../../mobile/operation/server_status.php:445 #: ../../include/functions_reporting_html.php:553 #: ../../include/functions_reporting_html.php:1055 #: ../../include/functions_reporting_html.php:1064 #: ../../include/functions_reporting_html.php:1305 #: ../../include/functions_reporting_html.php:1313 -#: ../../include/functions_reporting_html.php:1624 -#: ../../include/functions_reporting_html.php:2356 -#: ../../include/functions_reporting_html.php:2637 -#: ../../include/functions_reporting_html.php:2996 -#: ../../include/functions_reporting_html.php:3664 -#: ../../include/functions_reporting_html.php:3714 -#: ../../include/functions_reporting_html.php:5303 +#: ../../include/functions_reporting_html.php:1633 +#: ../../include/functions_reporting_html.php:2377 +#: ../../include/functions_reporting_html.php:2656 +#: ../../include/functions_reporting_html.php:3024 +#: ../../include/functions_reporting_html.php:3692 +#: ../../include/functions_reporting_html.php:3742 +#: ../../include/functions_reporting_html.php:5331 +#: ../../include/ajax/heatmap.ajax.php:391 #: ../../include/ajax/alert_list.ajax.php:296 #: ../../include/ajax/alert_list.ajax.php:321 -#: ../../include/ajax/module.php:1003 ../../include/ajax/custom_fields.php:416 +#: ../../include/ajax/module.php:1026 ../../include/ajax/custom_fields.php:416 #: ../../include/functions_snmp.php:369 #: ../../include/functions_massive_operations.php:152 -#: ../../include/class/NetworkMap.class.php:3064 -#: ../../include/class/AgentsAlerts.class.php:913 +#: ../../include/class/NetworkMap.class.php:3070 +#: ../../include/class/AgentsAlerts.class.php:914 #: ../../include/class/SnmpConsole.class.php:273 #: ../../include/class/SnmpConsole.class.php:382 #: ../../include/class/SnmpConsole.class.php:500 #: ../../include/class/ExternalTools.class.php:877 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:322 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:264 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:547 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:562 #: ../../include/lib/Group.php:562 ../../include/functions_snmp_browser.php:594 #: ../../include/functions_events.php:204 #: ../../include/functions_events.php:259 #: ../../include/functions_events.php:2543 -#: ../../include/functions_events.php:5004 ../../operation/search_agents.php:56 +#: ../../include/functions_events.php:5009 ../../operation/search_agents.php:56 #: ../../operation/agentes/estado_agente.php:324 -#: ../../operation/agentes/estado_agente.php:1049 +#: ../../operation/agentes/estado_agente.php:1057 #: ../../operation/agentes/interface_view.functions.php:516 -#: ../../operation/agentes/status_monitor.php:1566 +#: ../../operation/agentes/status_monitor.php:1568 #: ../../operation/agentes/alerts_status.functions.php:108 #: ../../operation/messages/message_list.php:188 #: ../../operation/incidents/integriaims_export_csv.php:83 #: ../../operation/incidents/configure_integriaims_incident.php:305 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:338 #: ../../operation/incidents/list_integriaims_incidents.php:334 -#: ../../operation/search_modules.php:36 ../../operation/search_policies.php:38 +#: ../../operation/search_modules.php:39 ../../operation/search_policies.php:38 msgid "Status" msgstr "" @@ -2621,10 +2670,10 @@ msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:352 #: ../../enterprise/include/class/Omnishell.class.php:1016 #: ../../enterprise/include/class/Omnishell.class.php:1095 -#: ../../include/ajax/module.php:2251 ../../include/ajax/agent.php:598 -#: ../../include/ajax/events.php:804 ../../include/functions_html.php:1276 -#: ../../include/functions_html.php:1427 -#: ../../include/functions_snmp_browser.php:1617 +#: ../../include/ajax/module.php:2280 ../../include/ajax/agent.php:598 +#: ../../include/ajax/events.php:805 ../../include/functions_html.php:1281 +#: ../../include/functions_html.php:1432 +#: ../../include/functions_snmp_browser.php:1626 msgid "Filter group" msgstr "" @@ -2670,27 +2719,27 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2055 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3323 #: ../../enterprise/include/lib/NetworkManager.php:190 -#: ../../godmode/groups/group_list.php:942 -#: ../../godmode/agentes/modificar_agente.php:779 +#: ../../godmode/groups/group_list.php:954 +#: ../../godmode/agentes/modificar_agente.php:791 #: ../../godmode/agentes/module_manager_editor_common.php:253 -#: ../../godmode/agentes/module_manager_editor_common.php:696 -#: ../../godmode/agentes/module_manager_editor_common.php:1311 -#: ../../godmode/agentes/module_manager.php:974 -#: ../../godmode/agentes/module_manager.php:987 -#: ../../godmode/massive/massive_edit_agents.php:938 -#: ../../godmode/massive/massive_edit_agents.php:1138 +#: ../../godmode/agentes/module_manager_editor_common.php:702 +#: ../../godmode/agentes/module_manager_editor_common.php:1321 +#: ../../godmode/agentes/module_manager.php:988 +#: ../../godmode/agentes/module_manager.php:1001 +#: ../../godmode/massive/massive_edit_agents.php:955 +#: ../../godmode/massive/massive_edit_agents.php:1154 #: ../../godmode/massive/massive_edit_modules.php:780 #: ../../godmode/alerts/alert_list.list.php:172 #: ../../godmode/alerts/configure_alert_template.php:918 -#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:167 +#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:173 #: ../../mobile/operation/alerts.php:68 -#: ../../include/functions_visual_map_editor.php:824 -#: ../../include/functions_reporting_html.php:3676 +#: ../../include/functions_visual_map_editor.php:872 +#: ../../include/functions_reporting_html.php:3704 #: ../../include/functions_agents.php:1472 #: ../../include/functions_treeview.php:66 -#: ../../include/functions_treeview.php:602 +#: ../../include/functions_treeview.php:606 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 -#: ../../include/functions_reporting.php:6992 +#: ../../include/functions_reporting.php:7001 #: ../../operation/search_agents.php:93 #: ../../operation/agentes/estado_generalagente.php:92 #: ../../operation/agentes/alerts_status.functions.php:101 @@ -2701,24 +2750,24 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 #: ../../enterprise/godmode/services/services.service.php:773 #: ../../enterprise/operation/services/massive/services.create.php:839 -#: ../../godmode/agentes/modificar_agente.php:788 +#: ../../godmode/agentes/modificar_agente.php:800 #: ../../godmode/agentes/planned_downtime.list.php:778 #: ../../godmode/agentes/planned_downtime.editor.php:929 -#: ../../godmode/agentes/agent_manager.php:826 -#: ../../godmode/agentes/module_manager_editor_common.php:1394 +#: ../../godmode/agentes/agent_manager.php:834 +#: ../../godmode/agentes/module_manager_editor_common.php:1404 #: ../../godmode/agentes/module_manager.php:765 -#: ../../godmode/massive/massive_edit_agents.php:1108 +#: ../../godmode/massive/massive_edit_agents.php:1125 #: ../../godmode/massive/massive_edit_modules.php:1119 -#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1114 -#: ../../include/class/Tree.class.php:936 ../../operation/search_agents.php:100 -#: ../../operation/agentes/estado_agente.php:1145 +#: ../../mobile/operation/agent.php:180 ../../include/ajax/module.php:1137 +#: ../../include/class/Tree.class.php:964 ../../operation/search_agents.php:100 +#: ../../operation/agentes/estado_agente.php:1153 #: ../../operation/agentes/estado_generalagente.php:94 msgid "Quiet" msgstr "" #: ../../views/cluster/view.php:177 ../../views/cluster/view.php:185 #: ../../operation/search_agents.php:111 -#: ../../operation/agentes/estado_agente.php:1153 +#: ../../operation/agentes/estado_agente.php:1161 msgid "Agent in scheduled downtime" msgstr "" @@ -2743,25 +2792,24 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_network.php:426 #: ../../godmode/modules/manage_inventory_modules.php:291 #: ../../godmode/modules/manage_inventory_modules_form.php:140 -#: ../../godmode/agentes/modificar_agente.php:694 +#: ../../godmode/agentes/modificar_agente.php:704 #: ../../godmode/agentes/planned_downtime.editor.php:1358 #: ../../godmode/agentes/agent_manager.php:523 -#: ../../godmode/massive/massive_edit_agents.php:733 +#: ../../godmode/massive/massive_edit_agents.php:750 #: ../../godmode/reporting/reporting_builder.item_editor.php:71 -#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404 -#: ../../include/functions_reporting_html.php:1600 -#: ../../include/functions_reporting_html.php:3661 -#: ../../include/ajax/heatmap.ajax.php:339 +#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:405 +#: ../../include/functions_reporting_html.php:1609 +#: ../../include/functions_reporting_html.php:3689 +#: ../../include/ajax/heatmap.ajax.php:467 #: ../../include/class/Diagnostics.class.php:769 #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:345 -#: ../../include/functions_events.php:4377 ../../operation/search_agents.php:44 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:348 +#: ../../include/functions_events.php:4382 ../../operation/search_agents.php:44 #: ../../operation/search_agents.php:50 ../../operation/tree.php:79 -#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1031 +#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1038 #: ../../operation/agentes/estado_generalagente.php:216 #: ../../operation/gis_maps/ajax.php:297 -#: ../../operation/inventory/inventory.php:1005 -#: ../../operation/inventory/inventory.php:1299 +#: ../../operation/inventory/inventory.php:1251 msgid "OS" msgstr "" @@ -2771,12 +2819,12 @@ msgid "IP address" msgstr "" #: ../../views/cluster/view.php:277 ../../views/cluster/view.php:292 -#: ../../enterprise/meta/advanced/servers.build_table.php:101 -#: ../../enterprise/meta/advanced/servers.build_table.php:102 -#: ../../enterprise/meta/advanced/servers.build_table.php:108 +#: ../../enterprise/meta/advanced/servers.build_table.php:125 +#: ../../enterprise/meta/advanced/servers.build_table.php:126 +#: ../../enterprise/meta/advanced/servers.build_table.php:132 #: ../../enterprise/meta/advanced/metasetup.visual.php:964 #: ../../enterprise/include/functions_visual_map.php:320 -#: ../../enterprise/include/functions_servicemap.php:471 +#: ../../enterprise/include/functions_servicemap.php:483 #: ../../enterprise/include/functions_aws.php:509 #: ../../enterprise/include/functions_aws.php:510 #: ../../enterprise/include/functions_reporting.php:6178 @@ -2789,92 +2837,92 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_network.php:543 #: ../../enterprise/tools/ipam/ipam_ajax.php:369 #: ../../enterprise/tools/ipam/ipam_ajax.php:390 -#: ../../godmode/modules/manage_network_components.php:802 -#: ../../godmode/modules/manage_network_components.php:803 +#: ../../godmode/modules/manage_network_components.php:805 +#: ../../godmode/modules/manage_network_components.php:806 #: ../../godmode/extensions.php:207 ../../godmode/extensions.php:222 #: ../../godmode/agentes/planned_downtime.list.php:942 #: ../../godmode/alerts/alert_view.php:141 -#: ../../godmode/servers/servers.build_table.php:151 -#: ../../godmode/servers/servers.build_table.php:152 -#: ../../godmode/servers/servers.build_table.php:158 -#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200 -#: ../../mobile/operation/events.php:307 ../../mobile/operation/events.php:319 -#: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443 -#: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509 -#: ../../include/functions_servers.php:1275 +#: ../../godmode/servers/servers.build_table.php:153 +#: ../../godmode/servers/servers.build_table.php:154 +#: ../../godmode/servers/servers.build_table.php:160 +#: ../../mobile/operation/agent.php:198 ../../mobile/operation/agent.php:203 +#: ../../mobile/operation/events.php:303 ../../mobile/operation/events.php:315 +#: ../../mobile/operation/events.php:327 ../../mobile/operation/events.php:435 +#: ../../mobile/operation/events.php:485 ../../mobile/operation/events.php:501 +#: ../../include/functions_servers.php:1298 #: ../../include/functions_reporting_html.php:659 #: ../../include/functions_reporting_html.php:662 -#: ../../include/functions_reporting_html.php:5564 -#: ../../include/functions_reporting_html.php:5617 +#: ../../include/functions_reporting_html.php:5592 +#: ../../include/functions_reporting_html.php:5645 #: ../../include/functions.php:1180 ../../include/functions.php:1186 -#: ../../include/functions.php:1190 ../../include/ajax/module.php:1156 +#: ../../include/functions.php:1190 ../../include/ajax/module.php:1183 #: ../../include/functions_treeview.php:153 #: ../../include/functions_treeview.php:311 -#: ../../include/functions_treeview.php:410 -#: ../../include/functions_treeview.php:639 ../../include/functions_ui.php:2874 -#: ../../include/functions_ui.php:2882 ../../include/functions_db.php:241 -#: ../../include/class/SnmpConsole.class.php:794 -#: ../../include/class/SnmpConsole.class.php:812 -#: ../../include/functions_events.php:3684 -#: ../../include/functions_events.php:3818 -#: ../../include/functions_events.php:3838 -#: ../../include/functions_events.php:3847 -#: ../../include/functions_events.php:3856 -#: ../../include/functions_events.php:3857 -#: ../../include/functions_events.php:3869 -#: ../../include/functions_events.php:3929 -#: ../../include/functions_events.php:3962 -#: ../../include/functions_events.php:4028 -#: ../../include/functions_events.php:4045 -#: ../../include/functions_events.php:4052 -#: ../../include/functions_events.php:4118 -#: ../../include/functions_events.php:4210 -#: ../../include/functions_events.php:4334 -#: ../../include/functions_events.php:4373 -#: ../../include/functions_events.php:4413 -#: ../../include/functions_events.php:4436 -#: ../../include/functions_events.php:4466 -#: ../../include/functions_events.php:4549 -#: ../../include/functions_events.php:4630 -#: ../../include/functions_events.php:4640 -#: ../../include/functions_events.php:4857 -#: ../../include/functions_events.php:4938 -#: ../../include/functions_events.php:5043 -#: ../../include/functions_events.php:5072 -#: ../../include/functions_events.php:5087 -#: ../../include/functions_events.php:5097 -#: ../../include/functions_events.php:5107 -#: ../../include/functions_events.php:5590 -#: ../../include/functions_events.php:5604 +#: ../../include/functions_treeview.php:414 +#: ../../include/functions_treeview.php:643 ../../include/functions_ui.php:2917 +#: ../../include/functions_ui.php:2925 ../../include/functions_db.php:241 +#: ../../include/class/SnmpConsole.class.php:796 +#: ../../include/class/SnmpConsole.class.php:814 +#: ../../include/functions_events.php:3689 +#: ../../include/functions_events.php:3823 +#: ../../include/functions_events.php:3843 +#: ../../include/functions_events.php:3852 +#: ../../include/functions_events.php:3861 +#: ../../include/functions_events.php:3862 +#: ../../include/functions_events.php:3874 +#: ../../include/functions_events.php:3934 +#: ../../include/functions_events.php:3967 +#: ../../include/functions_events.php:4033 +#: ../../include/functions_events.php:4050 +#: ../../include/functions_events.php:4057 +#: ../../include/functions_events.php:4123 +#: ../../include/functions_events.php:4215 +#: ../../include/functions_events.php:4339 +#: ../../include/functions_events.php:4378 +#: ../../include/functions_events.php:4418 +#: ../../include/functions_events.php:4441 +#: ../../include/functions_events.php:4471 +#: ../../include/functions_events.php:4554 +#: ../../include/functions_events.php:4635 +#: ../../include/functions_events.php:4645 +#: ../../include/functions_events.php:4862 +#: ../../include/functions_events.php:4943 +#: ../../include/functions_events.php:5048 +#: ../../include/functions_events.php:5077 +#: ../../include/functions_events.php:5092 +#: ../../include/functions_events.php:5102 +#: ../../include/functions_events.php:5112 +#: ../../include/functions_events.php:5595 #: ../../include/functions_events.php:5609 -#: ../../include/functions_events.php:5612 -#: ../../include/functions_events.php:5620 -#: ../../include/functions_events.php:5629 -#: ../../include/functions_events.php:5641 -#: ../../include/functions_events.php:5694 -#: ../../include/functions_events.php:5721 -#: ../../include/functions_events.php:5746 -#: ../../include/functions_events.php:5790 -#: ../../operation/agentes/estado_agente.php:1222 +#: ../../include/functions_events.php:5614 +#: ../../include/functions_events.php:5617 +#: ../../include/functions_events.php:5625 +#: ../../include/functions_events.php:5634 +#: ../../include/functions_events.php:5646 +#: ../../include/functions_events.php:5699 +#: ../../include/functions_events.php:5726 +#: ../../include/functions_events.php:5751 +#: ../../include/functions_events.php:5795 +#: ../../operation/agentes/estado_agente.php:1231 #: ../../operation/agentes/interface_view.functions.php:742 #: ../../operation/agentes/interface_view.functions.php:743 #: ../../operation/agentes/interface_view.functions.php:744 #: ../../operation/agentes/interface_view.functions.php:745 #: ../../operation/agentes/interface_view.functions.php:746 -#: ../../operation/agentes/status_monitor.php:1945 +#: ../../operation/agentes/status_monitor.php:1947 #: ../../operation/agentes/estado_generalagente.php:234 #: ../../operation/agentes/estado_generalagente.php:251 #: ../../operation/agentes/estado_generalagente.php:254 -#: ../../operation/agentes/estado_generalagente.php:440 -#: ../../operation/agentes/estado_generalagente.php:454 -#: ../../operation/agentes/estado_generalagente.php:513 -#: ../../operation/inventory/inventory.php:153 -#: ../../operation/inventory/inventory.php:173 -#: ../../operation/inventory/inventory.php:200 +#: ../../operation/agentes/estado_generalagente.php:411 +#: ../../operation/agentes/estado_generalagente.php:425 +#: ../../operation/agentes/estado_generalagente.php:484 +#: ../../operation/inventory/inventory.php:155 +#: ../../operation/inventory/inventory.php:175 +#: ../../operation/inventory/inventory.php:202 msgid "N/A" msgstr "" -#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:839 +#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:843 #: ../../operation/agentes/estado_generalagente.php:250 #: ../../operation/gis_maps/ajax.php:341 msgid "Agent Version" @@ -2885,12 +2933,12 @@ msgid "Cluster agent" msgstr "" #: ../../views/cluster/view.php:364 -#: ../../operation/agentes/estado_generalagente.php:1012 +#: ../../operation/agentes/estado_generalagente.php:919 msgid "Events (Last 24h)" msgstr "" -#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:453 -#: ../../operation/agentes/interface_traffic_graph_win.php:278 +#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:469 +#: ../../operation/agentes/interface_traffic_graph_win.php:294 msgid "Reload" msgstr "" @@ -2908,24 +2956,24 @@ msgstr "" #: ../../views/dashboard/header.php:43 #: ../../extensions/disabled/matrix_events.php:35 -#: ../../extensions/agents_modules.php:380 -#: ../../extensions/agents_modules.php:387 -#: ../../extensions/agents_modules.php:390 -#: ../../operation/visual_console/view.php:231 -#: ../../operation/visual_console/legacy_view.php:201 +#: ../../extensions/agents_modules.php:388 +#: ../../extensions/agents_modules.php:395 +#: ../../extensions/agents_modules.php:398 +#: ../../operation/visual_console/view.php:233 +#: ../../operation/visual_console/legacy_view.php:200 #: ../../operation/gis_maps/render_view.php:137 #: ../../operation/reporting/reporting_viewer.php:185 #: ../../operation/reporting/graph_viewer.php:234 msgid "Full screen mode" msgstr "" -#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:603 -#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:500 -#: ../../operation/visual_console/legacy_view.php:249 +#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:611 +#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:502 +#: ../../operation/visual_console/legacy_view.php:260 #: ../../operation/gis_maps/render_view.php:139 #: ../../operation/reporting/reporting_viewer.php:194 #: ../../operation/reporting/graph_viewer.php:243 -#: ../../operation/events/events.php:1410 +#: ../../operation/events/events.php:1464 msgid "Back to normal mode" msgstr "" @@ -2953,11 +3001,11 @@ msgstr "" #: ../../enterprise/operation/services/services.list.php:590 #: ../../godmode/snmpconsole/snmp_alert.php:2227 #: ../../godmode/snmpconsole/snmp_alert.php:2242 -#: ../../godmode/massive/massive_edit_agents.php:1043 -#: ../../godmode/reporting/graph_builder.graph_editor.php:241 -#: ../../godmode/reporting/graph_builder.graph_editor.php:262 -#: ../../include/functions_config.php:1333 -#: ../../include/functions_config.php:3537 +#: ../../godmode/massive/massive_edit_agents.php:1060 +#: ../../godmode/reporting/graph_builder.graph_editor.php:374 +#: ../../godmode/reporting/graph_builder.graph_editor.php:395 +#: ../../include/functions_config.php:1349 +#: ../../include/functions_config.php:3561 #: ../../include/class/SatelliteAgent.class.php:1269 #: ../../operation/gis_maps/render_view.php:167 msgid "Ok" @@ -2982,23 +3030,23 @@ msgstr "" #: ../../views/dashboard/header.php:163 #: ../../enterprise/views/ncm/devices/list.php:172 #: ../../enterprise/meta/advanced/policymanager.queue.php:238 -#: ../../enterprise/godmode/policies/policy_queue.php:849 +#: ../../enterprise/godmode/policies/policy_queue.php:853 #: ../../enterprise/godmode/servers/HA_cluster.php:437 #: ../../enterprise/include/class/Omnishell.class.php:559 #: ../../enterprise/include/class/Omnishell.class.php:1712 #: ../../enterprise/include/functions_ipam.php:1400 -#: ../../extensions/agents_modules.php:615 +#: ../../extensions/agents_modules.php:623 #: ../../godmode/wizards/DiscoveryTaskList.class.php:196 -#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1285 -#: ../../include/functions_ui.php:1284 ../../include/functions_ui.php:7720 -#: ../../include/class/NetworkMap.class.php:2946 -#: ../../operation/heatmap.php:175 ../../operation/visual_console/view.php:513 +#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1313 +#: ../../include/functions_ui.php:1321 ../../include/functions_ui.php:7815 +#: ../../include/class/NetworkMap.class.php:2952 +#: ../../operation/heatmap.php:175 ../../operation/visual_console/view.php:515 #: ../../operation/visual_console/legacy_public_view.php:141 -#: ../../operation/visual_console/legacy_view.php:263 +#: ../../operation/visual_console/legacy_view.php:274 #: ../../operation/visual_console/public_view.php:129 #: ../../operation/agentes/pandora_networkmap.editor.php:553 #: ../../operation/gis_maps/render_view.php:161 -#: ../../operation/events/events.php:1422 ../../general/login_page.php:97 +#: ../../operation/events/events.php:1476 ../../general/login_page.php:97 #: ../../general/login_page.php:408 msgid "Refresh" msgstr "" @@ -3010,9 +3058,10 @@ msgstr "" #: ../../views/dashboard/header.php:298 #: ../../enterprise/extensions/vmware/vmware_view.php:1377 #: ../../enterprise/extensions/vmware/vmware_view.php:1414 +#: ../../godmode/users/configure_user.php:66 #: ../../godmode/users/user_management.php:45 #: ../../godmode/massive/massive_edit_users.php:280 -#: ../../mobile/include/functions_web.php:22 +#: ../../mobile/include/functions_web.php:22 ../../include/auth/mysql.php:814 #: ../../include/class/OrderInterpreter.class.php:219 #: ../../operation/users/user_edit.php:475 ../../operation/menu.php:478 msgid "Dashboard" @@ -3023,7 +3072,7 @@ msgid "Hello! These are the tips of the day." msgstr "" #: ../../views/dashboard/tipsWindow.php:44 -#: ../../godmode/users/user_management.php:378 +#: ../../godmode/users/user_management.php:384 msgid "Show usage tips at startup" msgstr "" @@ -3063,11 +3112,11 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:132 #: ../../extensions/files_repo.php:206 #: ../../godmode/modules/manage_nc_groups.php:176 -#: ../../godmode/modules/manage_network_components.php:562 +#: ../../godmode/modules/manage_network_components.php:565 #: ../../godmode/users/profile_list.php:142 #: ../../godmode/users/user_list.php:357 ../../godmode/users/user_list.php:411 -#: ../../godmode/users/configure_user.php:101 -#: ../../godmode/users/configure_user.php:121 +#: ../../godmode/users/configure_user.php:871 +#: ../../godmode/users/configure_user.php:891 #: ../../godmode/agentes/planned_downtime.list.php:290 #: ../../godmode/netflow/nf_item_list.php:120 #: ../../godmode/netflow/nf_item_list.php:148 @@ -3079,7 +3128,7 @@ msgstr "" #: ../../godmode/massive/massive_delete_alerts.php:201 #: ../../godmode/alerts/alert_actions.php:208 #: ../../godmode/alerts/alert_commands.php:698 -#: ../../godmode/alerts/alert_templates.php:257 +#: ../../godmode/alerts/alert_templates.php:261 #: ../../godmode/alerts/alert_list.php:239 #: ../../godmode/alerts/alert_list.php:346 ../../godmode/setup/news.php:137 #: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:89 @@ -3104,7 +3153,7 @@ msgstr "" #: ../../enterprise/godmode/modules/local_components.php:432 #: ../../enterprise/godmode/policies/policy_alerts.php:267 #: ../../enterprise/godmode/policies/policy_alerts.php:315 -#: ../../enterprise/godmode/policies/policy_modules.php:1329 +#: ../../enterprise/godmode/policies/policy_modules.php:1374 #: ../../enterprise/godmode/policies/policy_external_alerts.php:159 #: ../../enterprise/godmode/policies/policy_external_alerts.php:186 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:174 @@ -3121,18 +3170,18 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_action.php:100 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 #: ../../extensions/files_repo.php:206 -#: ../../godmode/modules/manage_network_components.php:563 -#: ../../godmode/users/configure_user.php:102 +#: ../../godmode/modules/manage_network_components.php:566 +#: ../../godmode/users/configure_user.php:872 #: ../../godmode/massive/massive_delete_action_alerts.php:171 #: ../../godmode/massive/massive_delete_alerts.php:202 #: ../../godmode/alerts/alert_actions.php:209 #: ../../godmode/alerts/alert_commands.php:699 -#: ../../godmode/alerts/alert_templates.php:258 +#: ../../godmode/alerts/alert_templates.php:262 #: ../../godmode/alerts/alert_list.php:240 #: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:138 #: ../../godmode/setup/gis.php:59 #: ../../godmode/reporting/reporting_builder.php:632 -#: ../../operation/agentes/pandora_networkmap.php:563 +#: ../../operation/agentes/pandora_networkmap.php:564 #: ../../operation/messages/message_list.php:110 #: ../../operation/gis_maps/gis_map.php:100 #: ../../operation/incidents/list_integriaims_incidents.php:306 @@ -3161,15 +3210,15 @@ msgstr "" #: ../../views/dashboard/list.php:103 ../../operation/heatmap.php:90 #: ../../operation/agentes/networkmap.dinamic.php:115 -#: ../../operation/agentes/pandora_networkmap.view.php:2364 +#: ../../operation/agentes/pandora_networkmap.view.php:2365 #: ../../operation/snmpconsole/snmp_statistics.php:54 #: ../../operation/snmpconsole/snmp_browser.php:68 -#: ../../operation/events/events.php:1460 +#: ../../operation/events/events.php:1514 msgid "Full screen" msgstr "" #: ../../views/dashboard/list.php:106 -#: ../../enterprise/godmode/policies/policy_modules.php:1796 +#: ../../enterprise/godmode/policies/policy_modules.php:1841 #: ../../enterprise/godmode/policies/policies.php:643 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:229 #: ../../godmode/agentes/planned_downtime.list.php:746 @@ -3177,8 +3226,8 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.list.php:925 #: ../../godmode/alerts/alert_actions.php:355 #: ../../godmode/reporting/map_builder.php:420 -#: ../../include/functions_filemanager.php:985 -#: ../../operation/agentes/pandora_networkmap.php:806 +#: ../../include/functions_filemanager.php:1007 +#: ../../operation/agentes/pandora_networkmap.php:807 msgid "Copy" msgstr "" @@ -3204,8 +3253,8 @@ msgid "Please select widget" msgstr "" #: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76 -#: ../../include/class/SnmpConsole.class.php:1550 -#: ../../operation/events/events.php:3160 +#: ../../include/class/SnmpConsole.class.php:1552 +#: ../../operation/events/events.php:3219 msgid "Until next" msgstr "" @@ -3226,7 +3275,7 @@ msgstr "" msgid "Configure widget" msgstr "" -#: ../../views/dashboard/cell.php:68 +#: ../../views/dashboard/cell.php:69 msgid "Delete widget" msgstr "" @@ -3243,13 +3292,13 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 -#: ../../include/functions.php:3943 ../../include/functions_ui.php:2381 +#: ../../include/functions.php:3969 ../../include/functions_ui.php:2424 msgid "Previous" msgstr "" #: ../../views/dashboard/slides.php:218 #: ../../enterprise/meta/general/main_menu.php:287 ../../operation/menu.php:572 -#: ../../operation/events/events.php:1518 +#: ../../operation/events/events.php:1572 msgid "Stop" msgstr "" @@ -3277,9 +3326,9 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:1227 #: ../../godmode/alerts/configure_alert_template.php:1239 #: ../../godmode/wizards/HostDevices.class.php:779 -#: ../../include/functions_ui.php:2462 -#: ../../include/class/CustomNetScan.class.php:556 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1238 +#: ../../include/functions_ui.php:2505 +#: ../../include/class/CustomNetScan.class.php:555 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1239 msgid "Next" msgstr "" @@ -3315,7 +3364,7 @@ msgstr "" #: ../../enterprise/views/ncm/models/edit.php:37 #: ../../enterprise/views/ncm/vendors/list.php:32 #: ../../enterprise/views/ncm/vendors/edit.php:35 -#: ../../include/functions.php:1294 ../../include/functions_events.php:3178 +#: ../../include/functions.php:1294 ../../include/functions_events.php:3183 msgid "Network configuration manager" msgstr "" @@ -3388,7 +3437,7 @@ msgid "Device model" msgstr "" #: ../../enterprise/views/ncm/agent/manage.php:102 -#: ../../godmode/agentes/module_manager_editor_network.php:502 +#: ../../godmode/agentes/module_manager_editor_network.php:507 msgid "Connection method" msgstr "" @@ -3410,11 +3459,11 @@ msgstr "" #: ../../enterprise/include/class/Aws.S3.php:580 #: ../../enterprise/include/class/Aws.cloud.php:544 #: ../../extensions/quick_shell.php:183 -#: ../../godmode/modules/manage_network_components_form_network.php:53 -#: ../../godmode/agentes/module_manager_editor_network.php:83 +#: ../../godmode/modules/manage_network_components_form_network.php:83 +#: ../../godmode/agentes/module_manager_editor_network.php:84 #: ../../godmode/massive/massive_edit_modules.php:1160 #: ../../godmode/servers/modificar_server.php:117 -#: ../../include/functions_config.php:1651 +#: ../../include/functions_config.php:1663 #: ../../include/class/AgentWizard.class.php:648 #: ../../include/functions_snmp_browser.php:724 msgid "Port" @@ -3465,7 +3514,7 @@ msgstr "" #: ../../extensions/insert_data.php:256 ../../godmode/setup/gis_step_2.php:542 #: ../../godmode/setup/snmp_wizard.php:100 #: ../../godmode/reporting/visual_console_builder.data.php:310 -#: ../../include/ajax/module.php:2211 ../../operation/agentes/graphs.php:377 +#: ../../include/ajax/module.php:2240 ../../operation/agentes/graphs.php:377 msgid "Save" msgstr "" @@ -3492,10 +3541,10 @@ msgstr "" #: ../../enterprise/views/ncm/agent/details.php:90 #: ../../enterprise/include/class/CommandCenter.class.php:470 #: ../../extensions/api_checker.php:363 ../../extensions/api_checker.php:371 -#: ../../include/functions_reporting_html.php:4310 -#: ../../include/functions_reporting_html.php:4457 -#: ../../include/functions_reporting_html.php:4800 -#: ../../include/functions_reporting_html.php:4811 +#: ../../include/functions_reporting_html.php:4338 +#: ../../include/functions_reporting_html.php:4485 +#: ../../include/functions_reporting_html.php:4828 +#: ../../include/functions_reporting_html.php:4839 #: ../../include/functions_db.php:1959 msgid "Result" msgstr "" @@ -3558,9 +3607,9 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:1632 #: ../../enterprise/meta/include/functions_wizard_meta.php:1757 #: ../../enterprise/meta/include/functions_wizard_meta.php:1832 -#: ../../godmode/setup/setup_visuals.php:1549 -#: ../../include/class/TipsWindow.class.php:777 -#: ../../include/class/TipsWindow.class.php:944 +#: ../../godmode/setup/setup_visuals.php:1564 +#: ../../include/class/TipsWindow.class.php:797 +#: ../../include/class/TipsWindow.class.php:964 msgid "Preview" msgstr "" @@ -3590,7 +3639,7 @@ msgstr "" #: ../../enterprise/operation/services/services.list.php:609 #: ../../enterprise/operation/services/services.table_services.php:144 #: ../../extensions/module_groups.php:52 -#: ../../godmode/groups/group_list.php:1104 +#: ../../godmode/groups/group_list.php:1116 #: ../../godmode/massive/massive_copy_modules.php:118 #: ../../godmode/massive/massive_copy_modules.php:278 #: ../../godmode/massive/massive_delete_modules.php:421 @@ -3598,42 +3647,42 @@ msgstr "" #: ../../godmode/massive/massive_edit_modules.php:388 #: ../../godmode/massive/massive_edit_modules.php:474 #: ../../godmode/alerts/alert_list.builder.php:326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3833 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3842 #: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72 -#: ../../include/graphs/functions_flot.php:310 -#: ../../include/functions_reporting_html.php:2563 -#: ../../include/functions_reporting_html.php:2576 -#: ../../include/functions_reporting_html.php:3563 -#: ../../include/functions_reporting_html.php:3966 -#: ../../include/functions.php:1281 ../../include/functions.php:4181 -#: ../../include/ajax/module.php:1057 ../../include/ajax/module.php:1946 +#: ../../include/graphs/functions_flot.php:311 +#: ../../include/functions_reporting_html.php:2584 +#: ../../include/functions_reporting_html.php:2597 +#: ../../include/functions_reporting_html.php:3591 +#: ../../include/functions_reporting_html.php:3994 +#: ../../include/functions.php:1281 ../../include/functions.php:4207 +#: ../../include/ajax/module.php:1080 ../../include/ajax/module.php:1974 #: ../../include/functions_ui.php:606 ../../include/functions_ui.php:607 #: ../../include/functions_visual_map.php:2457 #: ../../include/functions_visual_map.php:2485 #: ../../include/functions_visual_map.php:2503 #: ../../include/functions_visual_map.php:2521 #: ../../include/functions_alerts.php:702 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:439 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:585 #: ../../include/functions_reports.php:569 ../../include/functions_maps.php:54 #: ../../include/functions_massive_operations.php:149 #: ../../include/functions_netflow.php:1884 -#: ../../include/functions_reporting.php:6772 -#: ../../include/functions_filemanager.php:708 +#: ../../include/functions_reporting.php:6781 +#: ../../include/functions_filemanager.php:723 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:256 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:401 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:435 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:719 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:404 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:439 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:712 #: ../../include/lib/ClusterViewer/ClusterManager.php:582 -#: ../../include/functions_events.php:3126 ../../operation/tree.php:211 -#: ../../operation/tree.php:301 ../../operation/tree.php:523 +#: ../../include/functions_events.php:3131 ../../operation/tree.php:211 +#: ../../operation/tree.php:302 ../../operation/tree.php:525 #: ../../operation/agentes/estado_agente.php:276 -#: ../../operation/agentes/status_monitor.php:567 -#: ../../operation/agentes/group_view.php:242 -#: ../../operation/agentes/group_view.php:247 -#: ../../operation/agentes/estado_monitores.php:521 -#: ../../operation/agentes/pandora_networkmap.view.php:1804 +#: ../../operation/agentes/status_monitor.php:566 +#: ../../operation/agentes/group_view.php:245 +#: ../../operation/agentes/group_view.php:250 +#: ../../operation/agentes/estado_monitores.php:518 +#: ../../operation/agentes/pandora_networkmap.view.php:1805 #: ../../operation/agentes/tactical.php:200 -#: ../../operation/events/events.php:815 ../../general/logon_ok.php:151 +#: ../../operation/events/events.php:820 ../../general/logon_ok.php:160 msgid "Unknown" msgstr "" @@ -3717,32 +3766,33 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1208 #: ../../enterprise/tools/ipam/ipam_ajax.php:535 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:807 -#: ../../godmode/groups/group_list.php:887 -#: ../../godmode/users/user_list.php:583 +#: ../../godmode/groups/group_list.php:888 +#: ../../godmode/users/user_list.php:584 #: ../../godmode/agentes/inventory_manager.php:237 -#: ../../godmode/agentes/modificar_agente.php:700 +#: ../../godmode/agentes/modificar_agente.php:710 #: ../../godmode/agentes/planned_downtime.editor.php:1369 -#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:279 +#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:277 #: ../../godmode/alerts/alert_list.list.php:136 #: ../../godmode/alerts/alert_list.list.php:571 #: ../../godmode/alerts/alert_commands.php:753 #: ../../godmode/alerts/alert_view.php:307 #: ../../godmode/alerts/alert_list.builder.php:112 +#: ../../godmode/setup/os.list.php:69 #: ../../godmode/reporting/reporting_builder.item_editor.php:2092 #: ../../godmode/events/event_responses.list.php:69 -#: ../../godmode/tag/tag.php:309 ../../godmode/category/category.php:161 -#: ../../include/functions_reporting_html.php:3450 -#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1008 -#: ../../include/functions_treeview.php:400 +#: ../../godmode/tag/tag.php:310 ../../godmode/category/category.php:161 +#: ../../include/functions_reporting_html.php:3478 +#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1031 +#: ../../include/functions_treeview.php:404 #: ../../include/class/SatelliteAgent.class.php:148 #: ../../include/class/AgentsAlerts.class.php:254 #: ../../include/class/AgentsAlerts.class.php:332 #: ../../include/class/SnmpConsole.class.php:281 #: ../../include/class/SatelliteCollection.class.php:135 -#: ../../include/functions_reporting.php:3233 -#: ../../include/functions_filemanager.php:647 -#: ../../operation/agentes/pandora_networkmap.php:721 -#: ../../operation/agentes/status_monitor.php:1605 +#: ../../include/functions_reporting.php:3242 +#: ../../include/functions_filemanager.php:662 +#: ../../operation/agentes/pandora_networkmap.php:722 +#: ../../operation/agentes/status_monitor.php:1607 msgid "Actions" msgstr "" @@ -3796,16 +3846,17 @@ msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1390 #: ../../enterprise/include/class/AgentRepository.class.php:692 #: ../../godmode/modules/manage_inventory_modules.php:54 -#: ../../godmode/modules/manage_network_components.php:298 +#: ../../godmode/modules/manage_network_components.php:299 #: ../../godmode/modules/manage_inventory_modules_form.php:45 #: ../../godmode/agentes/planned_downtime.list.php:738 -#: ../../godmode/menu.php:255 ../../godmode/massive/massive_operations.php:332 +#: ../../godmode/menu.php:254 ../../godmode/massive/massive_operations.php:332 #: ../../godmode/massive/massive_operations.php:354 #: ../../godmode/events/events.php:138 ../../include/functions_reports.php:917 #: ../../include/functions_reports.php:921 #: ../../include/class/ConfigPEN.class.php:329 #: ../../include/class/ModuleTemplates.class.php:195 #: ../../include/class/ModuleTemplates.class.php:213 +#: ../../include/class/AgentDeployWizard.class.php:727 msgid "Configuration" msgstr "" @@ -3864,11 +3915,11 @@ msgid "Customize script execution" msgstr "" #: ../../enterprise/views/ncm/agent/details.php:690 -#: ../../include/ajax/events.php:2199 +#: ../../include/ajax/events.php:2200 #: ../../include/class/ExternalTools.class.php:646 #: ../../include/functions_snmp_browser.php:974 -#: ../../include/functions_snmp_browser.php:1134 -#: ../../include/functions_events.php:3710 +#: ../../include/functions_snmp_browser.php:1142 +#: ../../include/functions_events.php:3715 msgid "Execute" msgstr "" @@ -3883,13 +3934,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/visual_console_template.php:123 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2137 #: ../../enterprise/include/functions_reporting.php:146 -#: ../../enterprise/include/functions_reporting.php:8001 -#: ../../enterprise/include/functions_reporting.php:8029 -#: ../../enterprise/include/functions_reporting.php:8100 -#: ../../godmode/modules/manage_network_components.php:302 -#: ../../godmode/menu.php:172 ../../godmode/menu.php:275 +#: ../../enterprise/include/functions_reporting.php:8010 +#: ../../enterprise/include/functions_reporting.php:8038 +#: ../../enterprise/include/functions_reporting.php:8109 +#: ../../godmode/modules/manage_network_components.php:303 +#: ../../godmode/menu.php:172 ../../godmode/menu.php:273 #: ../../godmode/reporting/reporting_builder.item_editor.php:2027 -#: ../../include/functions_menu.php:585 +#: ../../include/functions_menu.php:587 #: ../../include/class/ConfigPEN.class.php:334 #: ../../include/class/ModuleTemplates.class.php:196 #: ../../include/class/ModuleTemplates.class.php:214 @@ -4030,7 +4081,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_excel.php:139 #: ../../enterprise/tools/ipam/ipam_ajax.php:362 #: ../../enterprise/tools/ipam/ipam_calculator.php:69 -#: ../../godmode/setup/setup_general.php:878 +#: ../../godmode/setup/setup_general.php:904 #: ../../operation/agentes/ver_agente.php:1199 msgid "Address" msgstr "" @@ -4054,14 +4105,14 @@ msgstr "" #: ../../enterprise/operation/services/services.service.php:124 #: ../../enterprise/operation/services/services.list.php:548 #: ../../enterprise/tools/ipam/ipam_list.php:738 -#: ../../extensions/agents_modules.php:317 +#: ../../extensions/agents_modules.php:325 #: ../../operation/agentes/group_view.php:80 #: ../../operation/agentes/tactical.php:63 msgid "Last update" msgstr "" #: ../../enterprise/views/ncm/devices/list.php:123 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:157 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:154 #: ../../enterprise/godmode/policies/policy_alerts.php:368 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:243 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:488 @@ -4069,7 +4120,7 @@ msgstr "" #: ../../godmode/massive/massive_copy_modules.php:185 #: ../../godmode/alerts/alert_list.list.php:572 #: ../../godmode/wizards/DiscoveryTaskList.class.php:617 -#: ../../godmode/servers/plugin.php:996 +#: ../../godmode/servers/plugin.php:988 #: ../../operation/agentes/alerts_status.php:234 #: ../../operation/agentes/alerts_status.php:235 msgid "Operations" @@ -4118,7 +4169,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:1587 #: ../../enterprise/meta/include/functions_wizard_meta.php:1707 #: ../../enterprise/meta/include/functions_wizard_meta.php:1727 -#: ../../enterprise/meta/index.php:947 ../../enterprise/meta/index.php:1016 +#: ../../enterprise/meta/index.php:948 ../../enterprise/meta/index.php:1017 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:328 #: ../../enterprise/godmode/agentes/manage_config_remote.php:344 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120 @@ -4144,52 +4195,52 @@ msgstr "" #: ../../update_manager_client/views/offline.php:80 #: ../../extensions/dbmanager.php:124 #: ../../godmode/modules/manage_network_components_form_wizard.php:384 -#: ../../godmode/groups/group_list.php:1099 -#: ../../godmode/users/configure_user.php:1013 -#: ../../godmode/users/configure_user.php:1974 +#: ../../godmode/groups/group_list.php:1111 +#: ../../godmode/users/configure_user.php:1061 +#: ../../godmode/users/configure_user.php:2026 #: ../../godmode/massive/massive_copy_modules.php:116 #: ../../godmode/massive/massive_copy_modules.php:276 #: ../../godmode/massive/massive_delete_modules.php:419 #: ../../godmode/massive/massive_delete_modules.php:440 -#: ../../godmode/massive/massive_edit_agents.php:1061 +#: ../../godmode/massive/massive_edit_agents.php:1078 #: ../../godmode/massive/massive_edit_modules.php:386 #: ../../godmode/massive/massive_edit_modules.php:472 #: ../../godmode/setup/setup_sflow.php:84 -#: ../../godmode/setup/setup_netflow.php:84 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3831 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3840 #: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70 -#: ../../include/functions_reporting_html.php:2575 +#: ../../include/functions_reporting_html.php:2596 #: ../../include/functions.php:1091 ../../include/functions.php:1329 #: ../../include/functions.php:1332 ../../include/functions.php:1371 -#: ../../include/ajax/module.php:1942 ../../include/functions_graph.php:3341 -#: ../../include/functions_graph.php:3343 -#: ../../include/functions_graph.php:4846 ../../include/functions_ui.php:314 -#: ../../include/functions_ui.php:2869 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:425 +#: ../../include/ajax/module.php:1970 ../../include/functions_graph.php:3351 +#: ../../include/functions_graph.php:3353 +#: ../../include/functions_graph.php:4856 ../../include/functions_ui.php:314 +#: ../../include/functions_ui.php:2912 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:571 #: ../../include/functions_massive_operations.php:147 #: ../../include/class/SatelliteAgent.class.php:1337 #: ../../include/class/SatelliteAgent.class.php:1362 -#: ../../include/class/Diagnostics.class.php:1837 +#: ../../include/class/Diagnostics.class.php:1841 #: ../../include/class/AgentWizard.class.php:1401 #: ../../include/class/AgentWizard.class.php:4147 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:316 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:255 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:562 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:399 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:433 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:714 -#: ../../include/functions_events.php:3222 ../../index.php:1243 -#: ../../operation/tree.php:209 ../../operation/tree.php:299 -#: ../../operation/tree.php:518 ../../operation/users/user_edit.php:305 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:402 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:437 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:707 +#: ../../include/functions_events.php:3227 ../../index.php:1244 +#: ../../operation/tree.php:209 ../../operation/tree.php:300 +#: ../../operation/tree.php:520 ../../operation/users/user_edit.php:305 #: ../../operation/agentes/estado_agente.php:274 -#: ../../operation/agentes/status_monitor.php:565 -#: ../../operation/agentes/group_view.php:245 -#: ../../operation/agentes/group_view.php:250 -#: ../../operation/agentes/estado_monitores.php:520 +#: ../../operation/agentes/status_monitor.php:564 +#: ../../operation/agentes/group_view.php:248 +#: ../../operation/agentes/group_view.php:253 +#: ../../operation/agentes/estado_monitores.php:517 #: ../../operation/agentes/tactical.php:198 -#: ../../operation/netflow/nf_live_view.php:339 -#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:149 +#: ../../operation/netflow/nf_live_view.php:348 +#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:158 msgid "Warning" msgstr "" @@ -4208,15 +4259,15 @@ msgstr "" #: ../../enterprise/views/ipam/sites/list.php:48 #: ../../enterprise/views/ipam/sites/edit.php:54 #: ../../godmode/modules/manage_nc_groups_form.php:73 -#: ../../godmode/groups/configure_group.php:206 -#: ../../godmode/groups/group_list.php:882 -#: ../../godmode/agentes/agent_manager.php:645 -#: ../../godmode/massive/massive_edit_agents.php:655 +#: ../../godmode/groups/configure_group.php:225 +#: ../../godmode/groups/group_list.php:883 +#: ../../godmode/agentes/agent_manager.php:649 +#: ../../godmode/massive/massive_edit_agents.php:672 #: ../../godmode/reporting/visual_console_builder.elements.php:124 -#: ../../include/functions_visual_map_editor.php:954 -#: ../../include/rest-api/models/VisualConsole/Item.php:2176 +#: ../../include/functions_visual_map_editor.php:1002 +#: ../../include/rest-api/models/VisualConsole/Item.php:2179 #: ../../operation/agentes/ver_agente.php:1236 -#: ../../operation/agentes/estado_generalagente.php:511 +#: ../../operation/agentes/estado_generalagente.php:482 msgid "Parent" msgstr "" @@ -4242,9 +4293,9 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:727 #: ../../enterprise/godmode/modules/configure_local_component.php:733 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1074 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:501 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:632 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:728 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:499 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:630 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:726 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:152 #: ../../enterprise/godmode/policies/policy_external_alerts.php:637 #: ../../enterprise/godmode/policies/policy_agents.php:391 @@ -4265,12 +4316,12 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:250 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:270 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:121 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:162 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:123 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:144 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:164 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 @@ -4363,8 +4414,8 @@ msgstr "" #: ../../enterprise/include/class/Omnishell.class.php:1062 #: ../../enterprise/include/class/Omnishell.class.php:1063 #: ../../enterprise/include/class/SAP.app.php:604 -#: ../../enterprise/include/class/SAP.app.php:818 #: ../../enterprise/include/class/SAP.app.php:819 +#: ../../enterprise/include/class/SAP.app.php:820 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:922 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:949 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1059 @@ -4375,7 +4426,7 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2590 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3594 #: ../../enterprise/operation/agentes/ver_agente.php:56 -#: ../../enterprise/operation/log/log_viewer.php:881 +#: ../../enterprise/operation/log/log_viewer.php:879 #: ../../enterprise/tools/ipam/ipam_network.php:622 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:565 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:748 @@ -4388,40 +4439,40 @@ msgstr "" #: ../../godmode/modules/manage_nc_groups_form.php:80 #: ../../godmode/modules/manage_network_components_form_plugin.php:41 #: ../../godmode/modules/manage_network_components_form_common.php:354 -#: ../../godmode/modules/manage_network_components_form_network.php:248 -#: ../../godmode/modules/manage_network_components_form.php:669 -#: ../../godmode/modules/manage_network_components_form.php:675 -#: ../../godmode/modules/manage_network_components_form.php:684 -#: ../../godmode/modules/manage_network_components_form.php:690 -#: ../../godmode/groups/configure_group.php:170 -#: ../../godmode/groups/configure_group.php:192 -#: ../../godmode/users/configure_user.php:1270 -#: ../../godmode/users/configure_user.php:1286 -#: ../../godmode/users/configure_user.php:1437 -#: ../../godmode/users/configure_user.php:1449 -#: ../../godmode/users/configure_user.php:1573 -#: ../../godmode/users/configure_user.php:1588 -#: ../../godmode/users/configure_user.php:1750 -#: ../../godmode/users/configure_user.php:1758 -#: ../../godmode/users/configure_user.php:1767 -#: ../../godmode/users/configure_user.php:1774 -#: ../../godmode/users/user_management.php:577 -#: ../../godmode/users/user_management.php:600 -#: ../../godmode/agentes/status_monitor_custom_fields.php:230 -#: ../../godmode/agentes/status_monitor_custom_fields.php:278 +#: ../../godmode/modules/manage_network_components_form_network.php:266 +#: ../../godmode/modules/manage_network_components_form.php:672 +#: ../../godmode/modules/manage_network_components_form.php:678 +#: ../../godmode/modules/manage_network_components_form.php:687 +#: ../../godmode/modules/manage_network_components_form.php:693 +#: ../../godmode/groups/configure_group.php:189 +#: ../../godmode/groups/configure_group.php:211 +#: ../../godmode/users/configure_user.php:1334 +#: ../../godmode/users/configure_user.php:1350 +#: ../../godmode/users/configure_user.php:1486 +#: ../../godmode/users/configure_user.php:1502 +#: ../../godmode/users/configure_user.php:1627 +#: ../../godmode/users/configure_user.php:1642 +#: ../../godmode/users/configure_user.php:1802 +#: ../../godmode/users/configure_user.php:1810 +#: ../../godmode/users/configure_user.php:1819 +#: ../../godmode/users/configure_user.php:1826 +#: ../../godmode/users/user_management.php:583 +#: ../../godmode/users/user_management.php:610 +#: ../../godmode/agentes/status_monitor_custom_fields.php:250 +#: ../../godmode/agentes/status_monitor_custom_fields.php:298 #: ../../godmode/agentes/module_manager_editor_plugin.php:55 -#: ../../godmode/agentes/module_manager_editor_network.php:181 -#: ../../godmode/agentes/module_manager_editor_network.php:514 +#: ../../godmode/agentes/module_manager_editor_network.php:182 +#: ../../godmode/agentes/module_manager_editor_network.php:519 #: ../../godmode/agentes/agent_manager.php:558 -#: ../../godmode/agentes/agent_manager.php:750 -#: ../../godmode/agentes/agent_manager.php:1008 -#: ../../godmode/agentes/module_manager_editor_common.php:766 -#: ../../godmode/agentes/module_manager_editor_common.php:1125 -#: ../../godmode/agentes/module_manager_editor_common.php:1360 -#: ../../godmode/agentes/module_manager_editor_common.php:1654 -#: ../../godmode/agentes/module_manager_editor_common.php:1661 -#: ../../godmode/agentes/module_manager_editor_common.php:1672 -#: ../../godmode/agentes/module_manager_editor_common.php:1680 +#: ../../godmode/agentes/agent_manager.php:754 +#: ../../godmode/agentes/agent_manager.php:1014 +#: ../../godmode/agentes/module_manager_editor_common.php:776 +#: ../../godmode/agentes/module_manager_editor_common.php:1135 +#: ../../godmode/agentes/module_manager_editor_common.php:1370 +#: ../../godmode/agentes/module_manager_editor_common.php:1664 +#: ../../godmode/agentes/module_manager_editor_common.php:1671 +#: ../../godmode/agentes/module_manager_editor_common.php:1682 +#: ../../godmode/agentes/module_manager_editor_common.php:1690 #: ../../godmode/snmpconsole/snmp_alert.php:40 #: ../../godmode/snmpconsole/snmp_alert.php:1781 #: ../../godmode/massive/massive_copy_modules.php:374 @@ -4438,13 +4489,13 @@ msgstr "" #: ../../godmode/massive/massive_delete_modules.php:835 #: ../../godmode/massive/massive_edit_users.php:338 #: ../../godmode/massive/massive_edit_users.php:399 -#: ../../godmode/massive/massive_edit_users.php:609 -#: ../../godmode/massive/massive_edit_users.php:617 -#: ../../godmode/massive/massive_edit_users.php:628 -#: ../../godmode/massive/massive_edit_users.php:636 +#: ../../godmode/massive/massive_edit_users.php:610 +#: ../../godmode/massive/massive_edit_users.php:618 +#: ../../godmode/massive/massive_edit_users.php:629 +#: ../../godmode/massive/massive_edit_users.php:637 #: ../../godmode/massive/massive_add_alerts.php:304 #: ../../godmode/massive/massive_edit_plugins.php:338 -#: ../../godmode/massive/massive_edit_agents.php:754 +#: ../../godmode/massive/massive_edit_agents.php:771 #: ../../godmode/massive/massive_delete_alerts.php:366 #: ../../godmode/massive/massive_add_action_alerts.php:342 #: ../../godmode/massive/massive_edit_modules.php:458 @@ -4471,23 +4522,23 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:730 #: ../../godmode/alerts/configure_alert_template.php:824 #: ../../godmode/setup/os.builder.php:51 -#: ../../godmode/setup/setup_visuals.php:611 -#: ../../godmode/setup/setup_visuals.php:651 -#: ../../godmode/setup/setup_visuals.php:1084 -#: ../../godmode/setup/setup_general.php:1051 -#: ../../godmode/setup/setup_general.php:1068 +#: ../../godmode/setup/setup_visuals.php:615 +#: ../../godmode/setup/setup_visuals.php:655 +#: ../../godmode/setup/setup_visuals.php:1088 #: ../../godmode/setup/setup_general.php:1077 #: ../../godmode/setup/setup_general.php:1094 +#: ../../godmode/setup/setup_general.php:1103 +#: ../../godmode/setup/setup_general.php:1120 #: ../../godmode/reporting/create_container.php:572 -#: ../../godmode/reporting/graph_builder.graph_editor.php:373 -#: ../../godmode/reporting/reporting_builder.item_editor.php:209 -#: ../../godmode/reporting/reporting_builder.item_editor.php:991 +#: ../../godmode/reporting/graph_builder.graph_editor.php:296 +#: ../../godmode/reporting/reporting_builder.item_editor.php:210 +#: ../../godmode/reporting/reporting_builder.item_editor.php:993 #: ../../godmode/reporting/reporting_builder.item_editor.php:2175 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2248 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2269 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2301 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3232 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3393 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2257 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2278 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2310 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3241 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3402 #: ../../godmode/reporting/visual_console_builder.elements.php:525 #: ../../godmode/reporting/visual_console_builder.elements.php:676 #: ../../godmode/reporting/visual_console_builder.elements.php:686 @@ -4501,25 +4552,25 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:783 #: ../../godmode/reporting/visual_console_builder.wizard.php:793 #: ../../godmode/reporting/visual_console_builder.wizard.php:825 -#: ../../godmode/events/event_edit_filter.php:977 +#: ../../godmode/events/event_edit_filter.php:979 #: ../../godmode/events/custom_events.php:210 #: ../../godmode/events/custom_events.php:258 -#: ../../godmode/wizards/HostDevices.class.php:1119 -#: ../../mobile/operation/events.php:930 -#: ../../include/functions_visual_map_editor.php:404 -#: ../../include/functions_visual_map_editor.php:406 -#: ../../include/functions_visual_map_editor.php:622 -#: ../../include/functions_visual_map_editor.php:955 -#: ../../include/functions_visual_map_editor.php:1008 -#: ../../include/functions_visual_map_editor.php:1070 +#: ../../godmode/wizards/HostDevices.class.php:1115 +#: ../../mobile/operation/events.php:974 +#: ../../include/functions_visual_map_editor.php:398 +#: ../../include/functions_visual_map_editor.php:400 +#: ../../include/functions_visual_map_editor.php:616 +#: ../../include/functions_visual_map_editor.php:1003 +#: ../../include/functions_visual_map_editor.php:1056 +#: ../../include/functions_visual_map_editor.php:1122 #: ../../include/functions.php:1129 ../../include/functions_cron.php:680 #: ../../include/functions_networkmap.php:1524 #: ../../include/ajax/audit_log.php:156 #: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../include/ajax/module.php:2155 ../../include/ajax/module.php:2614 +#: ../../include/ajax/module.php:2184 ../../include/ajax/module.php:2643 #: ../../include/ajax/agent.php:500 ../../include/ajax/agent.php:838 #: ../../include/ajax/agent.php:921 ../../include/ajax/agent.php:987 -#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:589 +#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:590 #: ../../include/functions_integriaims.php:135 #: ../../include/functions_profile.php:349 #: ../../include/functions_profile.php:367 @@ -4529,24 +4580,24 @@ msgstr "" #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:622 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:634 -#: ../../include/rest-api/models/VisualConsole/Item.php:2088 -#: ../../include/rest-api/models/VisualConsole/Item.php:2207 -#: ../../include/rest-api/models/VisualConsole/Item.php:2325 -#: ../../include/rest-api/models/VisualConsole/Item.php:2447 +#: ../../include/rest-api/models/VisualConsole/Item.php:2091 +#: ../../include/rest-api/models/VisualConsole/Item.php:2210 +#: ../../include/rest-api/models/VisualConsole/Item.php:2328 +#: ../../include/rest-api/models/VisualConsole/Item.php:2450 #: ../../include/functions_html.php:397 ../../include/functions_html.php:848 -#: ../../include/functions_html.php:1271 ../../include/functions_html.php:1323 -#: ../../include/functions_html.php:1370 ../../include/functions_html.php:1371 -#: ../../include/functions_html.php:1422 ../../include/functions_html.php:1472 -#: ../../include/functions_html.php:6508 -#: ../../include/class/NetworkMap.class.php:2934 -#: ../../include/class/NetworkMap.class.php:3203 -#: ../../include/class/NetworkMap.class.php:3226 -#: ../../include/class/NetworkMap.class.php:3299 -#: ../../include/class/NetworkMap.class.php:3309 -#: ../../include/class/NetworkMap.class.php:3420 -#: ../../include/class/NetworkMap.class.php:3441 +#: ../../include/functions_html.php:1276 ../../include/functions_html.php:1328 +#: ../../include/functions_html.php:1375 ../../include/functions_html.php:1376 +#: ../../include/functions_html.php:1427 ../../include/functions_html.php:1477 +#: ../../include/functions_html.php:6536 +#: ../../include/class/NetworkMap.class.php:2940 +#: ../../include/class/NetworkMap.class.php:3209 +#: ../../include/class/NetworkMap.class.php:3232 +#: ../../include/class/NetworkMap.class.php:3305 +#: ../../include/class/NetworkMap.class.php:3315 +#: ../../include/class/NetworkMap.class.php:3426 +#: ../../include/class/NetworkMap.class.php:3447 #: ../../include/class/SnmpConsole.class.php:314 -#: ../../include/class/SnmpConsole.class.php:1375 +#: ../../include/class/SnmpConsole.class.php:1377 #: ../../include/class/AgentWizard.class.php:729 #: ../../include/class/AgentWizard.class.php:785 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:369 @@ -4558,6 +4609,8 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/network_map.php:365 #: ../../include/lib/Dashboard/Widgets/events_list.php:312 #: ../../include/lib/Dashboard/Widgets/events_list.php:470 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:401 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:413 #: ../../include/lib/Dashboard/Widgets/module_icon.php:388 #: ../../include/lib/Dashboard/Widgets/module_value.php:363 #: ../../include/lib/Dashboard/Widgets/module_table_value.php:336 @@ -4573,29 +4626,28 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/single_graph.php:352 #: ../../include/lib/Dashboard/Widgets/reports.php:552 #: ../../include/lib/Dashboard/Widgets/top_n.php:241 -#: ../../include/functions_events.php:3501 -#: ../../operation/users/user_edit.php:520 -#: ../../operation/users/user_edit.php:532 -#: ../../operation/users/user_edit.php:581 -#: ../../operation/users/user_edit.php:616 -#: ../../operation/users/user_edit.php:631 -#: ../../operation/users/user_edit.php:1081 -#: ../../operation/users/user_edit.php:1088 -#: ../../operation/users/user_edit.php:1097 -#: ../../operation/users/user_edit.php:1104 +#: ../../include/functions_events.php:3506 +#: ../../operation/users/user_edit.php:525 +#: ../../operation/users/user_edit.php:578 +#: ../../operation/users/user_edit.php:613 +#: ../../operation/users/user_edit.php:628 +#: ../../operation/users/user_edit.php:1078 +#: ../../operation/users/user_edit.php:1085 +#: ../../operation/users/user_edit.php:1094 +#: ../../operation/users/user_edit.php:1101 #: ../../operation/agentes/pandora_networkmap.editor.php:488 #: ../../operation/agentes/pandora_networkmap.view.php:227 #: ../../operation/agentes/ver_agente.php:1182 #: ../../operation/agentes/ver_agente.php:1238 #: ../../operation/agentes/ver_agente.php:1253 -#: ../../operation/snmpconsole/snmp_browser.php:383 -#: ../../operation/snmpconsole/snmp_browser.php:398 -#: ../../operation/snmpconsole/snmp_browser.php:408 -#: ../../operation/snmpconsole/snmp_browser.php:527 +#: ../../operation/snmpconsole/snmp_browser.php:388 +#: ../../operation/snmpconsole/snmp_browser.php:403 +#: ../../operation/snmpconsole/snmp_browser.php:413 +#: ../../operation/snmpconsole/snmp_browser.php:532 #: ../../operation/gis_maps/render_view.php:164 #: ../../operation/incidents/list_integriaims_incidents.php:601 #: ../../operation/incidents/list_integriaims_incidents.php:605 -#: ../../operation/events/events.php:2647 +#: ../../operation/events/events.php:2701 msgid "None" msgstr "" @@ -4603,12 +4655,21 @@ msgstr "" msgid "Create visualmap" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:34 +#: ../../enterprise/meta/advanced/servers.build_table.php:33 +#: ../../godmode/servers/modificar_server.php:63 +#: ../../godmode/servers/modificar_server.php:223 +#: ../../godmode/servers/modificar_server.php:242 +#: ../../godmode/servers/modificar_server.php:284 +#, php-format +msgid "%s servers" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:50 #: ../../godmode/servers/servers.build_table.php:52 msgid "There are no servers configured into the database" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../enterprise/meta/advanced/servers.build_table.php:81 #: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:63 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:379 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:647 @@ -4619,7 +4680,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:406 #: ../../enterprise/meta/include/functions_wizard_meta.php:1821 #: ../../enterprise/meta/agentsearch.php:138 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:132 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135 #: ../../enterprise/godmode/policies/policy_modules.php:459 #: ../../enterprise/godmode/policies/policy_modules.php:472 #: ../../enterprise/godmode/policies/policies.php:581 @@ -4635,10 +4696,10 @@ msgstr "" #: ../../enterprise/operation/services/massive/services.create.php:986 #: ../../enterprise/operation/services/massive/service.create.elements.php:380 #: ../../enterprise/operation/services/services.service_map.php:153 -#: ../../extensions/agents_modules.php:841 +#: ../../extensions/agents_modules.php:865 #: ../../godmode/agentes/configurar_agente.php:423 #: ../../godmode/agentes/configurar_agente.php:735 -#: ../../godmode/agentes/modificar_agente.php:820 +#: ../../godmode/agentes/modificar_agente.php:832 #: ../../godmode/agentes/planned_downtime.list.php:85 #: ../../godmode/agentes/planned_downtime.list.php:116 #: ../../godmode/agentes/planned_downtime.editor.php:1360 @@ -4651,12 +4712,12 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:1946 #: ../../godmode/reporting/reporting_builder.item_editor.php:2167 #: ../../godmode/reporting/visual_console_builder.wizard.php:447 -#: ../../godmode/servers/servers.build_table.php:81 -#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:409 +#: ../../godmode/servers/servers.build_table.php:83 +#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:410 #: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88 -#: ../../mobile/operation/agent.php:327 -#: ../../include/functions_reporting_html.php:2094 -#: ../../include/functions_reporting_html.php:5662 +#: ../../mobile/operation/agent.php:330 +#: ../../include/functions_reporting_html.php:2115 +#: ../../include/functions_reporting_html.php:5690 #: ../../include/functions_reports.php:745 #: ../../include/functions_reports.php:749 #: ../../include/functions_reports.php:753 @@ -4666,52 +4727,52 @@ msgstr "" #: ../../include/functions_reports.php:769 #: ../../include/functions_reports.php:773 #: ../../include/functions_reports.php:777 -#: ../../include/functions_html.php:1745 ../../include/functions_html.php:5982 +#: ../../include/functions_html.php:1755 ../../include/functions_html.php:6006 #: ../../include/class/AgentsAlerts.class.php:253 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:414 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:420 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:432 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:344 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:424 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:430 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:445 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:347 #: ../../operation/search_agents.php:55 ../../operation/tree.php:115 #: ../../operation/search_results.php:159 -#: ../../operation/agentes/estado_agente.php:1046 +#: ../../operation/agentes/estado_agente.php:1054 #: ../../operation/agentes/graphs.php:203 #: ../../operation/agentes/exportdata.php:354 #: ../../operation/agentes/group_view.php:185 -#: ../../operation/agentes/group_view.php:235 +#: ../../operation/agentes/group_view.php:238 msgid "Modules" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:82 +#: ../../enterprise/meta/advanced/servers.build_table.php:82 +#: ../../godmode/servers/servers.build_table.php:84 msgid "Lag" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:82 +#: ../../enterprise/meta/advanced/servers.build_table.php:82 +#: ../../godmode/servers/servers.build_table.php:84 msgid "Avg. Delay(sec)/Modules delayed" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:67 -#: ../../godmode/servers/servers.build_table.php:83 +#: ../../enterprise/meta/advanced/servers.build_table.php:83 +#: ../../godmode/servers/servers.build_table.php:85 msgid "T/Q" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:67 -#: ../../godmode/servers/servers.build_table.php:83 +#: ../../enterprise/meta/advanced/servers.build_table.php:83 +#: ../../godmode/servers/servers.build_table.php:85 msgid "Threads / Queued modules currently" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:69 +#: ../../enterprise/meta/advanced/servers.build_table.php:85 #: ../../enterprise/include/class/DatabaseHA.class.php:800 #: ../../enterprise/tools/ipam/ipam_ajax.php:497 #: ../../godmode/agentes/agent_incidents.php:92 -#: ../../godmode/servers/servers.build_table.php:85 +#: ../../godmode/servers/servers.build_table.php:87 #: ../../operation/incidents/integriaims_export_csv.php:86 msgid "Updated" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:73 +#: ../../enterprise/meta/advanced/servers.build_table.php:89 #: ../../enterprise/meta/include/functions_autoprovision.php:701 #: ../../enterprise/godmode/modules/local_components.php:648 #: ../../enterprise/godmode/policies/policy_alerts.php:368 @@ -4720,46 +4781,52 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 #: ../../godmode/users/profile_list.php:359 #: ../../godmode/alerts/alert_list.list.php:572 -#: ../../godmode/alerts/alert_templates.php:413 +#: ../../godmode/alerts/alert_templates.php:417 #: ../../godmode/reporting/reporting_builder.list_items.php:429 #: ../../godmode/reporting/graphs.php:375 #: ../../godmode/reporting/reporting_builder.php:931 #: ../../godmode/reporting/reporting_builder.php:1151 -#: ../../godmode/servers/servers.build_table.php:89 -#: ../../godmode/servers/plugin.php:996 +#: ../../godmode/servers/servers.build_table.php:91 #: ../../include/functions_container.php:157 #: ../../operation/gis_maps/gis_map.php:122 msgid "Op." msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:92 -#: ../../godmode/servers/servers.build_table.php:138 +#: ../../enterprise/meta/advanced/servers.build_table.php:116 +#: ../../godmode/servers/servers.build_table.php:140 msgid "This is a master server" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:107 -#: ../../enterprise/meta/advanced/servers.build_table.php:113 -#: ../../godmode/servers/servers.build_table.php:157 -#: ../../godmode/servers/servers.build_table.php:163 +#: ../../enterprise/meta/advanced/servers.build_table.php:131 +#: ../../enterprise/meta/advanced/servers.build_table.php:137 +#: ../../godmode/servers/servers.build_table.php:159 +#: ../../godmode/servers/servers.build_table.php:165 msgid "of" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:143 -#: ../../godmode/servers/servers.build_table.php:274 +#: ../../enterprise/meta/advanced/servers.build_table.php:170 +#: ../../godmode/servers/servers.build_table.php:262 +msgid "Manage server conf" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:186 +#: ../../godmode/servers/servers.build_table.php:287 msgid "Modules run by this server will stop working. Do you want to continue?" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:170 -#: ../../godmode/servers/servers.build_table.php:301 +#: ../../enterprise/meta/advanced/servers.build_table.php:213 +#: ../../godmode/servers/servers.build_table.php:314 msgid "Tactical server information" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:180 +#: ../../enterprise/meta/advanced/servers.build_table.php:223 +#: ../../godmode/servers/servers.build_table.php:327 #: ../../include/help/clippy/server_queued_modules.php:35 msgid "Excesive Queued." msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:181 +#: ../../enterprise/meta/advanced/servers.build_table.php:224 +#: ../../godmode/servers/servers.build_table.php:328 msgid "" "You have too many items in the processing queue. This can happen if your " "server is overloaded and/or improperly configured. This could be something " @@ -4767,7 +4834,7 @@ msgid "" "with modules going to unknown, try increasing the number of threads." msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:182 +#: ../../enterprise/meta/advanced/servers.build_table.php:225 #: ../../enterprise/meta/advanced/cron_main.php:408 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:956 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1163 @@ -4775,39 +4842,41 @@ msgstr "" #: ../../enterprise/godmode/wizards/consoletask_js.php:47 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4106 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4416 -#: ../../enterprise/operation/log/log_viewer.php:1201 -#: ../../enterprise/operation/log/log_viewer.php:1216 +#: ../../enterprise/operation/log/log_viewer.php:1199 +#: ../../enterprise/operation/log/log_viewer.php:1214 #: ../../enterprise/operation/services/services.treeview_services.php:416 #: ../../extensions/insert_data.php:285 -#: ../../godmode/agentes/planned_downtime.editor.php:2017 +#: ../../godmode/agentes/planned_downtime.editor.php:2013 #: ../../godmode/alerts/configure_alert_template.php:1512 #: ../../godmode/alerts/configure_alert_template.php:1596 -#: ../../godmode/setup/news.php:437 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5168 +#: ../../godmode/setup/news.php:436 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5177 #: ../../godmode/wizards/HostDevices.class.php:797 -#: ../../mobile/include/ui.class.php:691 ../../mobile/include/ui.class.php:749 -#: ../../include/functions_menu.php:941 +#: ../../godmode/servers/servers.build_table.php:329 +#: ../../mobile/include/ui.class.php:717 ../../mobile/include/ui.class.php:775 +#: ../../include/functions_menu.php:946 ../../include/functions_clippy.php:323 #: ../../include/class/WelcomeWindow.class.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:743 -#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:631 -#: ../../operation/agentes/stat_win.php:591 -#: ../../operation/agentes/interface_traffic_graph_win.php:442 -#: ../../operation/agentes/datos_agente.php:318 -#: ../../operation/agentes/estado_monitores.php:470 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:736 +#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:633 +#: ../../operation/agentes/stat_win.php:607 +#: ../../operation/agentes/interface_traffic_graph_win.php:451 +#: ../../operation/agentes/datos_agente.php:320 +#: ../../operation/agentes/estado_monitores.php:467 #: ../../operation/network/network_report.php:463 #: ../../operation/network/network_usage_map.php:300 -#: ../../operation/netflow/nf_live_view.php:871 +#: ../../operation/netflow/nf_live_view.php:982 +#: ../../operation/search_modules.php:359 #: ../../operation/reporting/reporting_viewer.php:366 #: ../../operation/reporting/reporting_viewer.php:385 #: ../../operation/reporting/graph_viewer.php:472 -#: ../../operation/events/events.php:3229 +#: ../../operation/events/events.php:3288 msgid "Close" msgstr "" #: ../../enterprise/meta/advanced/massive_operations.php:55 #: ../../enterprise/meta/monitoring/wizard/wizard.php:71 #: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:64 -#: ../../general/node_deactivated.php:59 +#: ../../general/node_deactivated.php:64 msgid "command center" msgstr "" @@ -4820,7 +4889,7 @@ msgid "" msgstr "" #: ../../enterprise/meta/advanced/component_management.php:35 -#: ../../include/functions_menu.php:614 +#: ../../include/functions_menu.php:618 msgid "Tags management" msgstr "" @@ -4837,7 +4906,7 @@ msgstr "" #: ../../godmode/groups/configure_modu_group.php:43 #: ../../godmode/groups/modu_group_list.php:83 ../../godmode/menu.php:116 #: ../../godmode/reporting/reporting_builder.item_editor.php:86 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:343 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:346 #: ../../operation/tree.php:103 msgid "Module groups" msgstr "" @@ -4881,56 +4950,56 @@ msgid "Successfully update" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:100 -#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:137 +#: ../../godmode/menu.php:364 ../../godmode/setup/setup.php:137 #: ../../godmode/setup/setup.php:285 msgid "Visual styles" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:106 #: ../../enterprise/meta/include/functions_meta.php:1364 -#: ../../godmode/setup/setup_visuals.php:1757 -#: ../../include/functions_config.php:973 +#: ../../godmode/setup/setup_visuals.php:1772 +#: ../../include/functions_config.php:985 msgid "Date format string" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:108 #: ../../enterprise/tools/ipam/ipam_editor.php:147 -#: ../../godmode/setup/setup_visuals.php:1766 +#: ../../godmode/setup/setup_visuals.php:1781 msgid "Example" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:138 -#: ../../godmode/setup/setup_visuals.php:1801 +#: ../../godmode/setup/setup_visuals.php:1816 msgid "Timestamp, time comparison, or compact mode" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:140 -#: ../../godmode/setup/setup_visuals.php:1611 +#: ../../godmode/setup/setup_visuals.php:1626 msgid "Comparation in rollover" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:147 -#: ../../godmode/setup/setup_visuals.php:1618 +#: ../../godmode/setup/setup_visuals.php:1633 msgid "Timestamp in rollover" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:154 -#: ../../godmode/setup/setup_visuals.php:1625 +#: ../../godmode/setup/setup_visuals.php:1640 msgid "Compact mode" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:164 -#: ../../include/functions_config.php:985 +#: ../../include/functions_config.php:997 msgid "Graph color #1" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:175 -#: ../../include/functions_config.php:989 +#: ../../include/functions_config.php:1001 msgid "Graph color #2" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:186 -#: ../../include/functions_config.php:993 +#: ../../include/functions_config.php:1005 msgid "Graph color #3" msgstr "" @@ -4944,10 +5013,10 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:215 #: ../../enterprise/meta/include/functions_meta.php:1414 -#: ../../godmode/setup/setup_visuals.php:1256 +#: ../../godmode/setup/setup_visuals.php:1260 #: ../../godmode/reporting/visual_console_builder.elements.php:233 #: ../../godmode/reporting/visual_console_builder.wizard.php:288 -#: ../../include/functions_visual_map_editor.php:684 +#: ../../include/functions_visual_map_editor.php:734 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458 msgid "Percentile" msgstr "" @@ -4958,46 +5027,46 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:231 #: ../../enterprise/meta/include/functions_meta.php:1499 -#: ../../godmode/setup/setup_visuals.php:1160 -#: ../../include/functions_config.php:1025 +#: ../../godmode/setup/setup_visuals.php:1164 +#: ../../include/functions_config.php:1037 msgid "Value to interface graphics" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:247 #: ../../enterprise/meta/include/functions_meta.php:1512 -#: ../../godmode/users/configure_user.php:1380 -#: ../../godmode/users/user_management.php:583 +#: ../../godmode/users/configure_user.php:1429 +#: ../../godmode/users/user_management.php:589 #: ../../godmode/massive/massive_edit_users.php:263 -#: ../../godmode/setup/setup_visuals.php:92 -#: ../../godmode/events/event_edit_filter.php:457 -#: ../../include/functions_config.php:1042 +#: ../../godmode/setup/setup_visuals.php:96 +#: ../../godmode/events/event_edit_filter.php:459 +#: ../../include/functions_config.php:1054 #: ../../operation/users/user_edit.php:420 msgid "Block size for pagination" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:263 #: ../../enterprise/meta/include/functions_meta.php:1428 -#: ../../godmode/setup/setup_visuals.php:1185 +#: ../../godmode/setup/setup_visuals.php:1189 msgid "Number of elements in Custom Graph" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:278 #: ../../enterprise/meta/include/functions_meta.php:1522 -#: ../../godmode/setup/setup_visuals.php:1199 -#: ../../include/functions_config.php:1046 +#: ../../godmode/setup/setup_visuals.php:1203 +#: ../../include/functions_config.php:1058 msgid "Use round corners" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:288 #: ../../enterprise/meta/include/functions_meta.php:1533 -#: ../../godmode/setup/setup_visuals.php:1210 -#: ../../include/functions_config.php:1050 +#: ../../godmode/setup/setup_visuals.php:1214 +#: ../../include/functions_config.php:1062 msgid "Chart fit to content" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:298 #: ../../enterprise/meta/include/functions_meta.php:1544 -#: ../../include/functions_config.php:1278 +#: ../../include/functions_config.php:1294 msgid "Disable help" msgstr "" @@ -5024,10 +5093,10 @@ msgstr "" #: ../../enterprise/godmode/modules/local_components.php:555 #: ../../enterprise/godmode/modules/local_components.php:588 #: ../../enterprise/godmode/agentes/collections.data.php:485 -#: ../../enterprise/godmode/policies/policy_queue.php:292 -#: ../../enterprise/godmode/policies/policy_queue.php:304 -#: ../../enterprise/godmode/policies/policy_queue.php:329 -#: ../../enterprise/godmode/policies/policy_queue.php:732 +#: ../../enterprise/godmode/policies/policy_queue.php:294 +#: ../../enterprise/godmode/policies/policy_queue.php:306 +#: ../../enterprise/godmode/policies/policy_queue.php:331 +#: ../../enterprise/godmode/policies/policy_queue.php:734 #: ../../enterprise/godmode/policies/policy_external_alerts.php:383 #: ../../enterprise/godmode/policies/policy_agents.php:453 #: ../../enterprise/godmode/policies/policy_agents.php:588 @@ -5064,15 +5133,15 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:316 #: ../../enterprise/operation/agentes/tag_view.php:328 #: ../../enterprise/operation/agentes/tag_view.php:430 -#: ../../enterprise/operation/log/log_viewer.php:755 -#: ../../enterprise/operation/log/log_viewer.php:776 -#: ../../enterprise/operation/log/log_viewer.php:830 +#: ../../enterprise/operation/log/log_viewer.php:753 +#: ../../enterprise/operation/log/log_viewer.php:774 +#: ../../enterprise/operation/log/log_viewer.php:828 #: ../../enterprise/operation/snmpconsole/snmp_view.php:33 #: ../../extensions/resource_registration.php:1137 -#: ../../extensions/agents_modules.php:454 +#: ../../extensions/agents_modules.php:462 #: ../../extensions/files_repo/files_repo_form.php:44 #: ../../godmode/modules/manage_network_templates_form.php:303 -#: ../../godmode/modules/manage_network_components.php:665 +#: ../../godmode/modules/manage_network_components.php:668 #: ../../godmode/massive/massive_copy_modules.php:127 #: ../../godmode/massive/massive_copy_modules.php:287 #: ../../godmode/massive/massive_delete_modules.php:327 @@ -5087,12 +5156,12 @@ msgstr "" #: ../../godmode/alerts/alert_list.list.php:152 #: ../../godmode/alerts/alert_list.list.php:169 #: ../../godmode/alerts/alert_list.list.php:201 -#: ../../godmode/alerts/alert_templates.php:313 +#: ../../godmode/alerts/alert_templates.php:317 #: ../../godmode/alerts/alert_list.php:553 #: ../../godmode/alerts/alert_list.php:574 #: ../../godmode/alerts/alert_list.php:588 #: ../../godmode/setup/gis_step_2.php:238 -#: ../../godmode/setup/setup_visuals.php:1085 +#: ../../godmode/setup/setup_visuals.php:1089 #: ../../godmode/reporting/reporting_builder.list_items.php:217 #: ../../godmode/reporting/reporting_builder.list_items.php:234 #: ../../godmode/reporting/reporting_builder.list_items.php:251 @@ -5100,29 +5169,30 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:1710 #: ../../godmode/reporting/reporting_builder.item_editor.php:1728 #: ../../godmode/reporting/reporting_builder.item_editor.php:2153 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3007 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3034 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3685 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3766 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3788 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3846 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3016 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3043 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3694 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3775 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3797 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3855 #: ../../godmode/reporting/visual_console_builder.wizard.php:359 -#: ../../godmode/events/event_edit_filter.php:358 -#: ../../godmode/events/event_edit_filter.php:378 -#: ../../godmode/events/event_edit_filter.php:762 +#: ../../godmode/events/event_edit_filter.php:360 +#: ../../godmode/events/event_edit_filter.php:380 +#: ../../godmode/events/event_edit_filter.php:764 #: ../../mobile/operation/agents.php:56 ../../mobile/operation/modules.php:68 #: ../../mobile/operation/modules.php:289 #: ../../mobile/operation/modules.php:304 ../../mobile/operation/alerts.php:65 -#: ../../mobile/operation/alerts.php:72 ../../mobile/operation/events.php:974 -#: ../../mobile/operation/events.php:984 ../../mobile/operation/events.php:1460 -#: ../../mobile/operation/events.php:1489 ../../include/functions.php:1127 -#: ../../include/functions.php:1387 ../../include/ajax/events.php:521 +#: ../../mobile/operation/alerts.php:72 ../../mobile/operation/events.php:1018 +#: ../../mobile/operation/events.php:1028 +#: ../../mobile/operation/events.php:1585 +#: ../../mobile/operation/events.php:1614 ../../include/functions.php:1127 +#: ../../include/functions.php:1387 ../../include/ajax/events.php:522 #: ../../include/functions_groupview.php:96 #: ../../include/functions_modules.php:3604 #: ../../include/functions_modules.php:3606 #: ../../include/functions_users.php:428 ../../include/functions_users.php:686 #: ../../include/functions_notifications.php:105 -#: ../../include/functions_html.php:947 ../../include/functions_html.php:1606 +#: ../../include/functions_html.php:952 ../../include/functions_html.php:1614 #: ../../include/functions_massive_operations.php:158 #: ../../include/functions_massive_operations.php:172 #: ../../include/class/EventSound.class.php:347 @@ -5132,24 +5202,24 @@ msgstr "" #: ../../include/class/SnmpConsole.class.php:308 #: ../../include/class/AuditLog.class.php:232 #: ../../include/class/AuditLog.class.php:242 -#: ../../include/class/TipsWindow.class.php:719 -#: ../../include/class/TipsWindow.class.php:886 -#: ../../include/functions_reporting.php:3343 -#: ../../include/functions_reporting.php:3440 +#: ../../include/class/TipsWindow.class.php:739 +#: ../../include/class/TipsWindow.class.php:906 +#: ../../include/functions_reporting.php:3352 +#: ../../include/functions_reporting.php:3449 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:422 #: ../../include/lib/Dashboard/Widgets/events_list.php:412 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:397 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:431 -#: ../../include/functions_groups.php:646 -#: ../../include/functions_groups.php:1959 ../../operation/heatmap.php:122 -#: ../../operation/tree.php:205 ../../operation/tree.php:296 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:400 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:435 +#: ../../include/functions_groups.php:671 +#: ../../include/functions_groups.php:1984 ../../operation/heatmap.php:122 +#: ../../operation/tree.php:205 ../../operation/tree.php:297 #: ../../operation/agentes/estado_agente.php:330 -#: ../../operation/agentes/status_monitor.php:599 -#: ../../operation/agentes/status_monitor.php:680 -#: ../../operation/agentes/status_monitor.php:977 -#: ../../operation/agentes/estado_monitores.php:515 -#: ../../operation/agentes/estado_monitores.php:536 -#: ../../operation/agentes/agent_inventory.php:122 +#: ../../operation/agentes/status_monitor.php:598 +#: ../../operation/agentes/status_monitor.php:679 +#: ../../operation/agentes/status_monitor.php:979 +#: ../../operation/agentes/estado_monitores.php:512 +#: ../../operation/agentes/estado_monitores.php:533 +#: ../../operation/agentes/agent_inventory.php:124 #: ../../operation/agentes/alerts_status.functions.php:98 #: ../../operation/agentes/alerts_status.functions.php:134 #: ../../operation/agentes/alerts_status.functions.php:165 @@ -5160,25 +5230,25 @@ msgstr "" #: ../../operation/incidents/list_integriaims_incidents.php:407 #: ../../operation/inventory/inventory.php:78 #: ../../operation/inventory/inventory.php:79 -#: ../../operation/inventory/inventory.php:319 -#: ../../operation/inventory/inventory.php:320 -#: ../../operation/inventory/inventory.php:496 -#: ../../operation/inventory/inventory.php:529 -#: ../../operation/inventory/inventory.php:564 -#: ../../operation/events/events.php:840 ../../operation/events/events.php:1745 -#: ../../operation/events/events.php:1839 -#: ../../operation/events/events.php:2039 +#: ../../operation/inventory/inventory.php:321 +#: ../../operation/inventory/inventory.php:322 +#: ../../operation/inventory/inventory.php:498 +#: ../../operation/inventory/inventory.php:531 +#: ../../operation/inventory/inventory.php:566 +#: ../../operation/events/events.php:845 ../../operation/events/events.php:1799 +#: ../../operation/events/events.php:1893 +#: ../../operation/events/events.php:2093 #: ../../general/subselect_data_module.php:62 msgid "All" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:310 -#: ../../godmode/setup/setup_visuals.php:1086 +#: ../../godmode/setup/setup_visuals.php:1090 msgid "On Boolean graphs" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:313 -#: ../../godmode/setup/setup_visuals.php:1268 +#: ../../godmode/setup/setup_visuals.php:1272 msgid "Graph TIP view" msgstr "" @@ -5187,17 +5257,17 @@ msgid "This option may cause performance issues" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:328 -#: ../../godmode/setup/setup_visuals.php:1089 +#: ../../godmode/setup/setup_visuals.php:1093 msgid "Show only average by default" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:329 -#: ../../godmode/setup/setup_visuals.php:1090 +#: ../../godmode/setup/setup_visuals.php:1094 msgid "Show MAX/AVG/MIN by default" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:332 -#: ../../godmode/setup/setup_visuals.php:1284 +#: ../../godmode/setup/setup_visuals.php:1288 msgid "Graph mode" msgstr "" @@ -5206,16 +5276,16 @@ msgid "Zoom graphs:" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:369 -#: ../../godmode/setup/setup_visuals.php:1220 +#: ../../godmode/setup/setup_visuals.php:1224 msgid "Type of module charts" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:371 #: ../../enterprise/godmode/reporting/graph_template_editor.php:260 -#: ../../godmode/setup/setup_visuals.php:1227 +#: ../../godmode/setup/setup_visuals.php:1231 #: ../../godmode/reporting/create_container.php:430 #: ../../godmode/reporting/graph_builder.main.php:208 -#: ../../include/functions_visual_map_editor.php:558 +#: ../../include/functions_visual_map_editor.php:552 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:642 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:352 #: ../../operation/agentes/graphs.php:251 @@ -5228,16 +5298,16 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:378 #: ../../enterprise/godmode/reporting/graph_template_editor.php:262 -#: ../../godmode/setup/setup_visuals.php:1239 +#: ../../godmode/setup/setup_visuals.php:1243 #: ../../godmode/reporting/create_container.php:431 #: ../../godmode/reporting/visual_console_builder.elements.php:365 #: ../../godmode/reporting/graph_builder.main.php:210 #: ../../include/functions_visual_map_editor.php:72 -#: ../../include/functions_visual_map_editor.php:557 -#: ../../include/functions_visual_map_editor.php:1397 +#: ../../include/functions_visual_map_editor.php:551 +#: ../../include/functions_visual_map_editor.php:1455 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:641 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:354 -#: ../../operation/visual_console/view.php:381 +#: ../../operation/visual_console/view.php:383 #: ../../operation/agentes/graphs.php:253 #: ../../operation/agentes/graphs.php:259 #: ../../operation/agentes/graphs.php:451 @@ -5258,33 +5328,33 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:401 #: ../../enterprise/meta/advanced/metasetup.visual.php:919 #: ../../enterprise/meta/advanced/metasetup.visual.php:920 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:467 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:480 #: ../../enterprise/include/ajax/log_viewer.ajax.php:282 #: ../../godmode/snmpconsole/snmp_alert.php:1608 -#: ../../godmode/setup/setup_visuals.php:1319 -#: ../../godmode/setup/setup_visuals.php:1320 -#: ../../godmode/setup/setup_visuals.php:1898 -#: ../../include/functions_visual_map_editor.php:1221 -#: ../../include/functions_visual_map_editor.php:1222 +#: ../../godmode/setup/setup_visuals.php:1323 +#: ../../godmode/setup/setup_visuals.php:1324 +#: ../../godmode/setup/setup_visuals.php:1913 +#: ../../include/functions_visual_map_editor.php:1279 +#: ../../include/functions_visual_map_editor.php:1280 #: ../../include/functions.php:509 ../../include/functions.php:640 -#: ../../include/ajax/events.php:2352 ../../include/ajax/events.php:2353 -#: ../../include/ajax/events.php:2354 ../../include/ajax/events.php:2355 -#: ../../include/ajax/events.php:2359 ../../include/ajax/events.php:2360 -#: ../../include/ajax/events.php:2361 ../../include/ajax/events.php:2362 -#: ../../include/ajax/events.php:2363 ../../include/ajax/events.php:2364 -#: ../../include/functions_html.php:2135 -#: ../../operation/events/sound_events.php:199 -#: ../../operation/events/sound_events.php:200 -#: ../../operation/events/sound_events.php:201 -#: ../../operation/events/sound_events.php:202 -#: ../../operation/events/sound_events.php:206 -#: ../../operation/events/sound_events.php:207 -#: ../../operation/events/sound_events.php:208 -#: ../../operation/events/sound_events.php:209 -#: ../../operation/events/sound_events.php:210 -#: ../../operation/events/sound_events.php:211 +#: ../../include/ajax/events.php:2353 ../../include/ajax/events.php:2354 +#: ../../include/ajax/events.php:2355 ../../include/ajax/events.php:2356 +#: ../../include/ajax/events.php:2360 ../../include/ajax/events.php:2361 +#: ../../include/ajax/events.php:2362 ../../include/ajax/events.php:2363 +#: ../../include/ajax/events.php:2364 ../../include/ajax/events.php:2365 +#: ../../include/functions_html.php:2143 +#: ../../operation/events/sound_events.php:229 +#: ../../operation/events/sound_events.php:230 +#: ../../operation/events/sound_events.php:231 +#: ../../operation/events/sound_events.php:232 +#: ../../operation/events/sound_events.php:236 +#: ../../operation/events/sound_events.php:237 +#: ../../operation/events/sound_events.php:238 +#: ../../operation/events/sound_events.php:239 +#: ../../operation/events/sound_events.php:240 +#: ../../operation/events/sound_events.php:241 msgid "seconds" msgstr "" @@ -5294,45 +5364,45 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:923 #: ../../enterprise/meta/advanced/metasetup.visual.php:924 #: ../../enterprise/include/ajax/log_viewer.ajax.php:284 -#: ../../godmode/setup/setup_visuals.php:1321 -#: ../../godmode/setup/setup_visuals.php:1322 -#: ../../godmode/setup/setup_visuals.php:1323 -#: ../../godmode/setup/setup_visuals.php:1324 -#: ../../godmode/setup/setup_visuals.php:1899 -#: ../../include/functions_visual_map_editor.php:1223 -#: ../../include/functions_visual_map_editor.php:1224 -#: ../../include/functions_visual_map_editor.php:1225 -#: ../../include/functions_visual_map_editor.php:1226 +#: ../../godmode/setup/setup_visuals.php:1325 +#: ../../godmode/setup/setup_visuals.php:1326 +#: ../../godmode/setup/setup_visuals.php:1327 +#: ../../godmode/setup/setup_visuals.php:1328 +#: ../../godmode/setup/setup_visuals.php:1914 +#: ../../include/functions_visual_map_editor.php:1281 +#: ../../include/functions_visual_map_editor.php:1282 +#: ../../include/functions_visual_map_editor.php:1283 +#: ../../include/functions_visual_map_editor.php:1284 #: ../../include/functions.php:513 ../../include/functions.php:644 -#: ../../include/functions_html.php:2136 +#: ../../include/functions_html.php:2144 msgid "minutes" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:403 #: ../../enterprise/include/ajax/log_viewer.ajax.php:286 -#: ../../godmode/setup/setup_visuals.php:1900 ../../include/functions.php:514 +#: ../../godmode/setup/setup_visuals.php:1915 ../../include/functions.php:514 #: ../../include/functions.php:645 ../../include/functions_snmp.php:402 -#: ../../include/functions_html.php:2137 +#: ../../include/functions_html.php:2145 msgid "hours" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:404 #: ../../enterprise/include/ajax/log_viewer.ajax.php:288 #: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92 -#: ../../godmode/setup/setup_visuals.php:1901 ../../include/functions.php:510 -#: ../../include/functions.php:641 ../../include/functions_html.php:2138 +#: ../../godmode/setup/setup_visuals.php:1916 ../../include/functions.php:510 +#: ../../include/functions.php:641 ../../include/functions_html.php:2146 msgid "days" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:405 -#: ../../godmode/setup/setup_visuals.php:1902 ../../include/functions.php:511 -#: ../../include/functions.php:642 ../../include/functions_html.php:2140 +#: ../../godmode/setup/setup_visuals.php:1917 ../../include/functions.php:511 +#: ../../include/functions.php:642 ../../include/functions_html.php:2148 msgid "months" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:406 -#: ../../godmode/setup/setup_visuals.php:1903 ../../include/functions.php:512 -#: ../../include/functions.php:643 ../../include/functions_html.php:2141 +#: ../../godmode/setup/setup_visuals.php:1918 ../../include/functions.php:512 +#: ../../include/functions.php:643 ../../include/functions_html.php:2149 msgid "years" msgstr "" @@ -5392,67 +5462,67 @@ msgstr "" #: ../../godmode/snmpconsole/snmp_alert.php:2135 #: ../../godmode/gis_maps/configure_gis_map.php:642 #: ../../godmode/alerts/alert_list.list.php:893 -#: ../../godmode/setup/news.php:402 ../../godmode/setup/links.php:226 -#: ../../godmode/setup/setup_visuals.php:1833 -#: ../../godmode/setup/setup_visuals.php:1923 -#: ../../godmode/setup/setup_visuals.php:2005 -#: ../../godmode/reporting/graph_builder.graph_editor.php:397 +#: ../../godmode/setup/news.php:401 ../../godmode/setup/links.php:226 +#: ../../godmode/setup/setup_visuals.php:1848 +#: ../../godmode/setup/setup_visuals.php:1938 +#: ../../godmode/setup/setup_visuals.php:2020 +#: ../../godmode/reporting/graph_builder.graph_editor.php:324 #: ../../godmode/reporting/visual_console_builder.wizard.php:575 -#: ../../godmode/events/event_edit_filter.php:647 -#: ../../godmode/events/event_edit_filter.php:712 +#: ../../godmode/events/event_edit_filter.php:649 +#: ../../godmode/events/event_edit_filter.php:714 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:483 #: ../../include/functions_notifications.php:970 #: ../../include/class/SatelliteAgent.class.php:1147 -#: ../../include/class/ManageNetScanScripts.class.php:475 -#: ../../include/functions_snmp_browser.php:1713 +#: ../../include/class/ManageNetScanScripts.class.php:473 +#: ../../include/functions_snmp_browser.php:1722 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:287 -#: ../../operation/events/events.php:1267 -#: ../../operation/events/events.php:1341 +#: ../../operation/events/events.php:1294 +#: ../../operation/events/events.php:1386 msgid "Add" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:443 #: ../../enterprise/meta/include/functions_meta.php:1853 -#: ../../include/functions_config.php:1449 +#: ../../include/functions_config.php:1465 msgid "Delete interval" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:475 #: ../../enterprise/meta/include/functions_meta.php:1644 -#: ../../godmode/setup/setup_visuals.php:1736 +#: ../../godmode/setup/setup_visuals.php:1751 msgid "Show only the group name" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:475 -#: ../../include/functions_config.php:1306 +#: ../../include/functions_config.php:1322 msgid "Show the group name instead the group icon." msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:485 #: ../../enterprise/meta/include/functions_meta.php:1945 -#: ../../godmode/setup/setup_visuals.php:129 -#: ../../include/functions_config.php:1330 +#: ../../godmode/setup/setup_visuals.php:133 +#: ../../include/functions_config.php:1346 msgid "Display data of proc modules in other format" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:495 #: ../../enterprise/meta/include/functions_meta.php:1955 -#: ../../godmode/setup/setup_visuals.php:140 -#: ../../include/functions_config.php:1334 +#: ../../godmode/setup/setup_visuals.php:144 +#: ../../include/functions_config.php:1350 msgid "Display text proc modules have state is ok" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:507 #: ../../enterprise/meta/include/functions_meta.php:1965 -#: ../../godmode/setup/setup_visuals.php:144 -#: ../../include/functions_config.php:1338 +#: ../../godmode/setup/setup_visuals.php:148 +#: ../../include/functions_config.php:1354 msgid "Display text when proc modules have state critical" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:528 #: ../../enterprise/meta/include/functions_meta.php:1684 -#: ../../godmode/setup/setup_visuals.php:393 -#: ../../include/functions_config.php:1070 +#: ../../godmode/setup/setup_visuals.php:397 +#: ../../include/functions_config.php:1082 msgid "Custom favicon" msgstr "" @@ -5463,7 +5533,7 @@ msgid "" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:563 -#: ../../godmode/setup/setup_visuals.php:424 +#: ../../godmode/setup/setup_visuals.php:428 msgid "Custom background logo" msgstr "" @@ -5481,108 +5551,107 @@ msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:70 #: ../../godmode/agentes/configurar_agente.php:386 #: ../../godmode/agentes/modificar_agente.php:83 -#: ../../godmode/agentes/modificar_agente.php:837 ../../godmode/menu.php:596 -#: ../../godmode/setup/setup_visuals.php:375 -#: ../../godmode/setup/setup_visuals.php:442 -#: ../../godmode/setup/setup_visuals.php:465 -#: ../../godmode/setup/setup_visuals.php:490 -#: ../../godmode/setup/setup_visuals.php:516 -#: ../../godmode/setup/setup_visuals.php:541 -#: ../../godmode/setup/setup_visuals.php:582 -#: ../../godmode/setup/setup_visuals.php:620 -#: ../../godmode/setup/setup_visuals.php:660 -#: ../../godmode/setup/setup_visuals.php:698 -#: ../../godmode/setup/setup_visuals.php:738 -#: ../../godmode/setup/setup_visuals.php:924 -#: ../../godmode/reporting/visual_console_builder.php:841 +#: ../../godmode/agentes/modificar_agente.php:849 ../../godmode/menu.php:594 +#: ../../godmode/setup/setup_visuals.php:379 +#: ../../godmode/setup/setup_visuals.php:446 +#: ../../godmode/setup/setup_visuals.php:469 +#: ../../godmode/setup/setup_visuals.php:494 +#: ../../godmode/setup/setup_visuals.php:520 +#: ../../godmode/setup/setup_visuals.php:545 +#: ../../godmode/setup/setup_visuals.php:586 +#: ../../godmode/setup/setup_visuals.php:624 +#: ../../godmode/setup/setup_visuals.php:664 +#: ../../godmode/setup/setup_visuals.php:702 +#: ../../godmode/setup/setup_visuals.php:742 +#: ../../godmode/setup/setup_visuals.php:928 +#: ../../godmode/reporting/visual_console_builder.php:849 #: ../../godmode/module_library/module_library_view.php:59 -#: ../../include/functions_ui.php:1299 ../../include/functions_ui.php:1312 #: ../../include/lib/ClusterViewer/ClusterManager.php:601 -#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:212 +#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:214 #: ../../operation/visual_console/legacy_view.php:189 #: ../../operation/agentes/status_monitor.php:77 -#: ../../operation/agentes/status_monitor.php:306 +#: ../../operation/agentes/status_monitor.php:305 msgid "View" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:602 -#: ../../godmode/setup/setup_visuals.php:460 +#: ../../godmode/setup/setup_visuals.php:464 msgid "Custom logo (menu)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:633 -#: ../../godmode/setup/setup_visuals.php:485 +#: ../../godmode/setup/setup_visuals.php:489 msgid "Custom logo collapsed (menu)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:663 -#: ../../godmode/setup/setup_visuals.php:511 +#: ../../godmode/setup/setup_visuals.php:515 msgid "Custom logo (header white background)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:694 -#: ../../godmode/setup/setup_visuals.php:536 +#: ../../godmode/setup/setup_visuals.php:540 msgid "Custom logo (login)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:724 -#: ../../godmode/setup/setup_visuals.php:564 +#: ../../godmode/setup/setup_visuals.php:568 msgid "Custom Splash (login)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:754 #: ../../enterprise/meta/advanced/metasetup.visual.php:847 #: ../../enterprise/meta/include/functions_meta.php:1714 -#: ../../godmode/setup/setup_visuals.php:798 -#: ../../include/functions_config.php:1146 +#: ../../godmode/setup/setup_visuals.php:802 +#: ../../include/functions_config.php:1158 msgid "Product name" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:767 #: ../../enterprise/meta/advanced/metasetup.visual.php:859 #: ../../enterprise/meta/include/functions_meta.php:1724 -#: ../../godmode/setup/setup_visuals.php:803 -#: ../../include/functions_config.php:1150 +#: ../../godmode/setup/setup_visuals.php:807 +#: ../../include/functions_config.php:1162 msgid "Copyright notice" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:780 #: ../../enterprise/meta/include/functions_meta.php:1614 -#: ../../godmode/setup/setup_visuals.php:809 -#: ../../include/functions_config.php:1154 -#: ../../include/functions_config.php:1158 +#: ../../godmode/setup/setup_visuals.php:813 +#: ../../include/functions_config.php:1166 +#: ../../include/functions_config.php:1170 msgid "Background opacity % (login)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:786 -#: ../../godmode/setup/setup_visuals.php:762 +#: ../../godmode/setup/setup_visuals.php:766 msgid "Title (header)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:792 -#: ../../godmode/setup/setup_visuals.php:768 +#: ../../godmode/setup/setup_visuals.php:772 msgid "Subtitle (header)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:798 -#: ../../godmode/setup/setup_visuals.php:776 +#: ../../godmode/setup/setup_visuals.php:780 msgid "Title 1 (login)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:811 -#: ../../godmode/setup/setup_visuals.php:781 +#: ../../godmode/setup/setup_visuals.php:785 msgid "Title 2 (login)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:823 #: ../../enterprise/meta/include/functions_meta.php:1774 -#: ../../godmode/setup/setup_visuals.php:787 +#: ../../godmode/setup/setup_visuals.php:791 msgid "Docs URL (login)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:835 #: ../../enterprise/meta/include/functions_meta.php:1784 -#: ../../godmode/setup/setup_visuals.php:792 +#: ../../godmode/setup/setup_visuals.php:796 msgid "Support URL (login)" msgstr "" @@ -5592,17 +5661,17 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:884 #: ../../enterprise/meta/include/functions_meta.php:1594 -#: ../../godmode/setup/setup_visuals.php:864 +#: ../../godmode/setup/setup_visuals.php:868 msgid "Visual effects and animation" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:894 -#: ../../godmode/setup/setup_visuals.php:875 +#: ../../godmode/setup/setup_visuals.php:879 msgid "Random background (login)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:906 -#: ../../godmode/setup/setup_visuals.php:1340 +#: ../../godmode/setup/setup_visuals.php:1344 msgid "Legacy Visual Console View" msgstr "" @@ -5611,26 +5680,26 @@ msgid "To use the old view when using the Visual Console visor" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:925 -#: ../../godmode/setup/setup_visuals.php:1325 -#: ../../include/functions_visual_map_editor.php:1227 +#: ../../godmode/setup/setup_visuals.php:1329 +#: ../../include/functions_visual_map_editor.php:1285 msgid "hour" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:928 -#: ../../godmode/setup/setup_visuals.php:1350 +#: ../../godmode/setup/setup_visuals.php:1354 msgid "Default cache expiration" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:933 -#: ../../godmode/setup/setup_visuals.php:1355 -#: ../../include/functions_visual_map_editor.php:1253 +#: ../../godmode/setup/setup_visuals.php:1359 +#: ../../include/functions_visual_map_editor.php:1311 msgid "No cache" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:955 #: ../../enterprise/meta/include/functions_meta.php:1992 -#: ../../godmode/setup/setup_visuals.php:1369 -#: ../../include/functions_config.php:1202 +#: ../../godmode/setup/setup_visuals.php:1373 +#: ../../include/functions_config.php:1214 msgid "Default interval for refresh on Visual Console" msgstr "" @@ -5639,34 +5708,36 @@ msgid "This interval will affect to Visual Console pages" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:973 -#: ../../godmode/setup/setup_visuals.php:1710 +#: ../../godmode/setup/setup_visuals.php:1725 msgid "Use 1024 when module unit are bytes" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:974 -#: ../../godmode/setup/setup_visuals.php:1711 +#: ../../godmode/setup/setup_visuals.php:1726 msgid "Use always 1000" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:975 -#: ../../godmode/setup/setup_visuals.php:1712 +#: ../../godmode/setup/setup_visuals.php:1727 msgid "Use always 1024" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:978 -#: ../../godmode/setup/setup_visuals.php:2072 +#: ../../godmode/setup/setup_visuals.php:2087 msgid "Data multiplier to use in graphs/data" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:993 #: ../../enterprise/meta/include/functions_meta.php:1997 -#: ../../godmode/setup/setup_visuals.php:1416 -#: ../../include/functions_config.php:1218 +#: ../../godmode/setup/setup_visuals.php:1420 +#: ../../include/functions_config.php:1230 msgid "Mobile view not allow visual console orientation" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1003 #: ../../enterprise/meta/include/functions_meta.php:2002 +#: ../../godmode/setup/setup_visuals.php:1430 +#: ../../include/functions_config.php:1234 msgid "Display item frame on alert triggered" msgstr "" @@ -5675,7 +5746,7 @@ msgid "Reports configuration" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1028 -#: ../../godmode/setup/setup_visuals.php:1482 +#: ../../godmode/setup/setup_visuals.php:1497 msgid "Show report info with description" msgstr "" @@ -5686,7 +5757,7 @@ msgid "" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1042 -#: ../../godmode/setup/setup_visuals.php:1492 +#: ../../godmode/setup/setup_visuals.php:1507 msgid "Custom report front page" msgstr "" @@ -5698,21 +5769,21 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1055 #: ../../enterprise/meta/include/functions_meta.php:1459 -#: ../../godmode/setup/setup_visuals.php:1503 -#: ../../include/functions_config.php:1480 +#: ../../godmode/setup/setup_visuals.php:1518 +#: ../../include/functions_config.php:1496 msgid "PDF font size (px)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1060 #: ../../enterprise/meta/include/functions_meta.php:1449 -#: ../../godmode/setup/setup_visuals.php:1507 -#: ../../include/functions_config.php:1476 +#: ../../godmode/setup/setup_visuals.php:1522 +#: ../../include/functions_config.php:1492 msgid "HTML font size for SLA (em)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1065 #: ../../enterprise/meta/include/functions_meta.php:1574 -#: ../../godmode/setup/setup_visuals.php:1513 +#: ../../godmode/setup/setup_visuals.php:1528 msgid "Graph image height for HTML reports" msgstr "" @@ -5724,21 +5795,21 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1127 #: ../../enterprise/meta/include/functions_meta.php:1479 -#: ../../godmode/setup/setup_visuals.php:2061 -#: ../../include/functions_config.php:1508 +#: ../../godmode/setup/setup_visuals.php:2076 +#: ../../include/functions_config.php:1524 msgid "CSV divider" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1136 #: ../../enterprise/meta/include/functions_meta.php:1489 -#: ../../godmode/setup/setup_visuals.php:2066 -#: ../../include/functions_config.php:1512 +#: ../../godmode/setup/setup_visuals.php:2081 +#: ../../include/functions_config.php:1528 msgid "CSV decimal separator" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1146 #: ../../enterprise/meta/include/functions_meta.php:1469 -#: ../../godmode/setup/setup_visuals.php:1517 +#: ../../godmode/setup/setup_visuals.php:1532 msgid "Interval description" msgstr "" @@ -5753,9 +5824,9 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1905 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:113 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:125 -#: ../../godmode/setup/setup_visuals.php:1534 -#: ../../include/functions_config.php:1074 -#: ../../include/functions_config.php:1492 +#: ../../godmode/setup/setup_visuals.php:1549 +#: ../../include/functions_config.php:1086 +#: ../../include/functions_config.php:1508 msgid "Custom logo" msgstr "" @@ -5778,17 +5849,17 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1915 #: ../../enterprise/meta/include/functions_meta.php:1925 #: ../../enterprise/meta/include/functions_meta.php:1935 -#: ../../godmode/setup/setup_visuals.php:1534 #: ../../godmode/setup/setup_visuals.php:1549 -#: ../../godmode/setup/setup_visuals.php:1555 -#: ../../godmode/setup/setup_visuals.php:1568 -#: ../../godmode/setup/setup_visuals.php:1582 -#: ../../include/functions_config.php:1484 -#: ../../include/functions_config.php:1488 -#: ../../include/functions_config.php:1492 -#: ../../include/functions_config.php:1496 +#: ../../godmode/setup/setup_visuals.php:1564 +#: ../../godmode/setup/setup_visuals.php:1570 +#: ../../godmode/setup/setup_visuals.php:1583 +#: ../../godmode/setup/setup_visuals.php:1597 #: ../../include/functions_config.php:1500 #: ../../include/functions_config.php:1504 +#: ../../include/functions_config.php:1508 +#: ../../include/functions_config.php:1512 +#: ../../include/functions_config.php:1516 +#: ../../include/functions_config.php:1520 msgid "Custom report front" msgstr "" @@ -5796,8 +5867,8 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1915 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:139 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:137 -#: ../../godmode/setup/setup_visuals.php:1555 -#: ../../include/functions_config.php:1496 +#: ../../godmode/setup/setup_visuals.php:1570 +#: ../../include/functions_config.php:1512 msgid "Header" msgstr "" @@ -5806,23 +5877,91 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1925 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:149 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:147 -#: ../../godmode/setup/setup_visuals.php:1568 -#: ../../include/functions_config.php:1500 +#: ../../godmode/setup/setup_visuals.php:1583 +#: ../../include/functions_config.php:1516 msgid "First page" msgstr "" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1420 -#: ../../godmode/setup/setup_visuals.php:2356 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1266 +#: ../../godmode/setup/setup_visuals.php:73 +msgid "Legacy visual console Information" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1267 +#: ../../godmode/setup/setup_visuals.php:74 +msgid "Visual console in legacy mode will no longer be supported as of LTS 772" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1400 +#: ../../enterprise/godmode/services/services.service.php:1025 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608 +#: ../../enterprise/include/functions_reporting_csv.php:1589 +#: ../../enterprise/include/functions_reporting_csv.php:1635 +#: ../../enterprise/include/functions_reporting_csv.php:1953 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1704 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1756 +#: ../../enterprise/include/class/DatabaseHA.class.php:390 +#: ../../enterprise/include/class/DatabaseHA.class.php:625 +#: ../../enterprise/include/class/DatabaseHA.class.php:727 +#: ../../enterprise/include/class/AgentRepository.class.php:1000 +#: ../../enterprise/include/class/LogSource.class.php:820 +#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142 +#: ../../enterprise/include/class/ManageBackups.class.php:298 +#: ../../enterprise/include/class/ManageBackups.class.php:454 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:182 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:225 +#: ../../enterprise/include/functions_reporting.php:1876 +#: ../../enterprise/include/functions_reporting.php:2949 +#: ../../enterprise/include/functions_reporting.php:3206 +#: ../../enterprise/include/functions_reporting.php:3939 +#: ../../enterprise/include/functions_reporting.php:4208 +#: ../../enterprise/include/functions_reporting.php:4854 +#: ../../enterprise/include/functions_reporting.php:6176 +#: ../../enterprise/include/functions_reporting.php:6214 +#: ../../enterprise/include/functions_services.php:2091 +#: ../../enterprise/include/functions_ux_console.php:483 +#: ../../enterprise/operation/agentes/ux_console_view.php:186 +#: ../../enterprise/operation/agentes/ux_console_view.php:391 +#: ../../enterprise/operation/agentes/wux_console_view.php:407 +#: ../../extensions/module_groups.php:53 +#: ../../godmode/massive/massive_operations.php:415 +#: ../../godmode/setup/setup_visuals.php:2257 +#: ../../godmode/setup/setup_general.php:1044 +#: ../../godmode/setup/setup_general.php:1062 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2743 +#: ../../include/functions_reporting_html.php:667 +#: ../../include/functions_reporting_html.php:862 +#: ../../include/functions_reporting_html.php:3597 +#: ../../include/functions_reporting_html.php:4894 +#: ../../include/functions_db.php:1974 +#: ../../include/class/ConfigPEN.class.php:674 +#: ../../include/class/ConfigPEN.class.php:698 +#: ../../include/class/SatelliteAgent.class.php:1105 +#: ../../include/class/HelpFeedBack.class.php:370 +#: ../../include/class/CredentialStore.class.php:1655 +#: ../../include/class/ModuleTemplates.class.php:1363 +#: ../../include/class/WelcomeWindow.class.php:173 +#: ../../include/class/AgentWizard.class.php:6229 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:362 +#: ../../operation/agentes/pandora_networkmap.editor.php:745 +#: ../../operation/snmpconsole/snmp_browser.php:622 +#: ../../operation/snmpconsole/snmp_browser.php:698 +msgid "OK" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1437 +#: ../../godmode/setup/setup_visuals.php:2376 msgid "Logo preview" msgstr "" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1442 -#: ../../godmode/setup/setup_visuals.php:2386 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1459 +#: ../../godmode/setup/setup_visuals.php:2406 msgid "Splash Preview" msgstr "" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1447 -#: ../../godmode/setup/setup_visuals.php:2410 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1464 +#: ../../godmode/setup/setup_visuals.php:2430 #: ../../godmode/reporting/visual_console_builder.data.php:196 msgid "Background preview" msgstr "" @@ -5953,12 +6092,12 @@ msgstr "" #: ../../godmode/massive/massive_delete_alerts.php:312 #: ../../godmode/massive/massive_add_action_alerts.php:210 #: ../../godmode/massive/massive_edit_modules.php:370 -#: ../../include/functions_html.php:1290 ../../include/functions_html.php:1440 +#: ../../include/functions_html.php:1295 ../../include/functions_html.php:1445 #: ../../include/functions_massive_operations.php:136 #: ../../include/lib/Dashboard/Widgets/groups_status.php:243 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:334 #: ../../include/lib/Dashboard/Widgets/events_list.php:447 -#: ../../operation/events/events.php:1704 +#: ../../operation/events/events.php:1758 msgid "Group recursion" msgstr "" @@ -6003,7 +6142,7 @@ msgstr "" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:474 #: ../../enterprise/include/class/Omnishell.class.php:1119 -#: ../../enterprise/operation/services/massive/services.create.php:1305 +#: ../../enterprise/operation/services/massive/services.create.php:1317 #: ../../enterprise/operation/services/massive/service.delete.elements.php:262 #: ../../enterprise/operation/services/massive/service.create.elements.php:610 #: ../../enterprise/operation/services/massive/service.edit.elements.php:369 @@ -6063,8 +6202,8 @@ msgstr "" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:579 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130 -#: ../../include/functions_inventory.php:142 -#: ../../include/functions_inventory.php:176 +#: ../../include/functions_inventory.php:143 +#: ../../include/functions_inventory.php:177 #: ../../include/functions_events.php:250 msgid "Agent alias" msgstr "" @@ -6080,8 +6219,8 @@ msgstr "" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:582 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:333 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:478 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:538 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:591 @@ -6095,9 +6234,9 @@ msgstr "" #: ../../godmode/alerts/alert_view.php:130 #: ../../godmode/setup/setup_integria.php:444 #: ../../godmode/setup/setup_integria.php:578 -#: ../../include/functions_reporting_html.php:5374 -#: ../../include/functions_events.php:4593 -#: ../../operation/agentes/estado_generalagente.php:758 +#: ../../include/functions_reporting_html.php:5402 +#: ../../include/functions_events.php:4598 +#: ../../operation/agentes/estado_generalagente.php:727 #: ../../operation/incidents/integriaims_export_csv.php:85 #: ../../operation/incidents/configure_integriaims_incident.php:287 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:341 @@ -6128,7 +6267,7 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:270 #: ../../godmode/alerts/configure_alert_template.php:287 #: ../../godmode/alerts/configure_alert_template.php:291 -#: ../../include/functions_config.php:1729 +#: ../../include/functions_config.php:1741 msgid "Step" msgstr "" @@ -6154,8 +6293,8 @@ msgstr "" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:661 #: ../../enterprise/meta/advanced/policymanager.queue.php:261 -#: ../../enterprise/godmode/policies/policy_queue.php:711 -#: ../../enterprise/godmode/policies/policy_queue.php:714 +#: ../../enterprise/godmode/policies/policy_queue.php:713 +#: ../../enterprise/godmode/policies/policy_queue.php:716 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:453 #: ../../enterprise/include/class/Omnishell.class.php:369 #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4180 @@ -6184,12 +6323,12 @@ msgid "checking migration requirements" msgstr "" #: ../../enterprise/meta/advanced/servers.php:37 -#: ../../godmode/servers/modificar_server.php:308 +#: ../../godmode/servers/modificar_server.php:330 msgid "Server deleted successfully" msgstr "" #: ../../enterprise/meta/advanced/servers.php:39 -#: ../../godmode/servers/modificar_server.php:310 +#: ../../godmode/servers/modificar_server.php:332 msgid "There was a problem deleting the server" msgstr "" @@ -6215,12 +6354,12 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:174 #: ../../enterprise/extensions/translate_string.php:308 -#: ../../godmode/users/configure_user.php:1096 -#: ../../godmode/users/user_management.php:558 +#: ../../godmode/users/configure_user.php:1160 +#: ../../godmode/users/user_management.php:564 #: ../../godmode/massive/massive_edit_users.php:248 -#: ../../include/class/TipsWindow.class.php:453 -#: ../../include/class/TipsWindow.class.php:702 -#: ../../include/class/TipsWindow.class.php:869 +#: ../../include/class/TipsWindow.class.php:465 +#: ../../include/class/TipsWindow.class.php:722 +#: ../../include/class/TipsWindow.class.php:889 #: ../../operation/users/user_edit.php:437 msgid "Language" msgstr "" @@ -6250,7 +6389,7 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:689 #: ../../enterprise/meta/general/main_header.php:691 #: ../../enterprise/extensions/translate_string.php:334 -#: ../../enterprise/godmode/policies/policy_modules.php:1466 +#: ../../enterprise/godmode/policies/policy_modules.php:1511 #: ../../enterprise/godmode/policies/policy_collections.php:172 #: ../../enterprise/godmode/policies/policy_agents.php:440 #: ../../enterprise/godmode/policies/policy_agents.php:462 @@ -6258,8 +6397,8 @@ msgstr "" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:168 #: ../../enterprise/godmode/setup/setup_skins.php:131 #: ../../enterprise/operation/agentes/tag_view.php:229 -#: ../../enterprise/operation/log/log_viewer.php:610 -#: ../../enterprise/operation/log/log_viewer.php:957 +#: ../../enterprise/operation/log/log_viewer.php:608 +#: ../../enterprise/operation/log/log_viewer.php:955 #: ../../enterprise/operation/services/services.list.php:233 #: ../../enterprise/operation/services/services.list.php:338 #: ../../enterprise/operation/services/services.table_services.php:171 @@ -6276,23 +6415,23 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:335 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:358 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:375 -#: ../../godmode/groups/group_list.php:785 -#: ../../godmode/users/user_list.php:484 ../../godmode/users/user_list.php:504 +#: ../../godmode/groups/group_list.php:786 +#: ../../godmode/users/user_list.php:485 ../../godmode/users/user_list.php:505 #: ../../godmode/agentes/planned_downtime.list.php:372 #: ../../godmode/agentes/planned_downtime.list.php:697 #: ../../godmode/alerts/alert_actions.php:250 #: ../../godmode/alerts/alert_actions.php:317 #: ../../godmode/alerts/alert_actions.php:332 #: ../../godmode/alerts/alert_actions.php:333 -#: ../../godmode/alerts/alert_templates.php:325 -#: ../../godmode/alerts/alert_templates.php:342 +#: ../../godmode/alerts/alert_templates.php:329 +#: ../../godmode/alerts/alert_templates.php:346 #: ../../godmode/reporting/map_builder.php:357 #: ../../godmode/reporting/graphs.php:238 #: ../../godmode/reporting/visual_console_favorite.php:177 #: ../../godmode/reporting/reporting_builder.item_editor.php:1313 #: ../../godmode/module_library/module_library_view.php:102 #: ../../godmode/module_library/module_library_view.php:112 -#: ../../mobile/operation/agent.php:320 ../../include/ajax/heatmap.ajax.php:72 +#: ../../mobile/operation/agent.php:323 ../../include/ajax/heatmap.ajax.php:76 #: ../../include/functions_snmp.php:358 #: ../../include/class/SatelliteAgent.class.php:184 #: ../../include/class/CalendarManager.class.php:1071 @@ -6300,14 +6439,13 @@ msgstr "" #: ../../include/class/AgentWizard.class.php:2753 #: ../../include/lib/Dashboard/Widgets/heatmap.php:236 #: ../../include/functions_snmp_browser.php:1023 -#: ../../include/functions_snmp_browser.php:1641 +#: ../../include/functions_snmp_browser.php:1650 #: ../../operation/search_results.php:193 #: ../../operation/search_results.php:202 #: ../../operation/agentes/estado_agente.php:342 -#: ../../operation/agentes/status_monitor.php:915 -#: ../../operation/agentes/agent_inventory.php:138 -#: ../../operation/agentes/agent_inventory.php:140 -#: ../../operation/inventory/inventory.php:640 +#: ../../operation/agentes/status_monitor.php:917 +#: ../../operation/agentes/agent_inventory.php:153 +#: ../../operation/inventory/inventory.php:642 #: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 msgid "Search" msgstr "" @@ -6327,8 +6465,8 @@ msgstr "" #: ../../enterprise/godmode/modules/local_components.php:624 #: ../../enterprise/godmode/agentes/collections.php:473 #: ../../enterprise/godmode/agentes/collections.php:474 -#: ../../enterprise/godmode/policies/policy_modules.php:1512 -#: ../../enterprise/godmode/policies/policy_queue.php:378 +#: ../../enterprise/godmode/policies/policy_modules.php:1557 +#: ../../enterprise/godmode/policies/policy_queue.php:380 #: ../../enterprise/godmode/policies/policies.php:364 #: ../../enterprise/godmode/policies/policy_linking.php:175 #: ../../enterprise/godmode/policies/policy_external_alerts.php:415 @@ -6338,14 +6476,14 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_acl.php:511 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947 #: ../../enterprise/operation/agentes/tag_view.php:533 -#: ../../enterprise/operation/log/log_viewer.php:1026 +#: ../../enterprise/operation/log/log_viewer.php:1024 #: ../../enterprise/operation/services/services.list.php:497 #: ../../enterprise/operation/services/services.table_services.php:472 #: ../../enterprise/operation/services/services.table_services.php:487 #: ../../extensions/module_groups.php:322 -#: ../../extensions/realtime_graphs.php:220 -#: ../../godmode/modules/manage_network_components.php:713 -#: ../../godmode/groups/group_list.php:820 +#: ../../extensions/realtime_graphs.php:216 +#: ../../godmode/modules/manage_network_components.php:716 +#: ../../godmode/groups/group_list.php:821 #: ../../godmode/agentes/planned_downtime.list.php:661 #: ../../godmode/agentes/planned_downtime.list.php:662 #: ../../godmode/agentes/planned_downtime.list.php:711 @@ -6356,16 +6494,17 @@ msgstr "" #: ../../godmode/reporting/visual_console_favorite.php:220 #: ../../godmode/reporting/reporting_builder.php:782 #: ../../godmode/events/events.php:105 ../../godmode/events/events.php:124 -#: ../../godmode/tag/tag.php:263 ../../include/functions_ui.php:3715 -#: ../../include/functions_ui.php:3728 -#: ../../include/class/AgentsAlerts.class.php:879 +#: ../../godmode/tag/tag.php:264 ../../include/functions_ui.php:3763 +#: ../../include/functions_ui.php:3776 +#: ../../include/class/AgentsAlerts.class.php:880 #: ../../include/functions_snmp_browser.php:992 #: ../../operation/agentes/estado_agente.php:490 -#: ../../operation/agentes/status_monitor.php:1081 +#: ../../operation/agentes/status_monitor.php:1083 +#: ../../operation/agentes/agent_inventory.php:188 #: ../../operation/network/network_report.php:219 #: ../../operation/network/network_report.php:220 #: ../../operation/incidents/list_integriaims_incidents.php:502 -#: ../../operation/inventory/inventory.php:721 +#: ../../operation/inventory/inventory.php:722 #: ../../operation/reporting/reporting_viewer.php:305 #: ../../operation/reporting/graph_viewer.php:415 msgid "Filters" @@ -6394,7 +6533,7 @@ msgstr "" #: ../../include/ajax/visual_console_builder.ajax.php:343 #: ../../include/functions_visual_map.php:2843 #: ../../operation/network/network_usage_map.php:275 -#: ../../operation/netflow/nf_live_view.php:647 +#: ../../operation/netflow/nf_live_view.php:720 msgid "No data to show" msgstr "" @@ -6408,14 +6547,14 @@ msgstr "" #: ../../enterprise/include/functions_cron.php:582 #: ../../enterprise/include/lib/NetworkManager.php:87 #: ../../godmode/agentes/module_manager_editor_wmi.php:59 -#: ../../godmode/agentes/module_manager_editor_network.php:105 +#: ../../godmode/agentes/module_manager_editor_network.php:106 #: ../../godmode/massive/massive_edit_modules.php:834 -#: ../../include/functions_html.php:1917 ../../include/functions_html.php:1918 -#: ../../include/functions_html.php:2028 ../../include/functions_html.php:2029 -#: ../../include/functions_html.php:2181 ../../include/functions_html.php:2182 -#: ../../include/functions_html.php:6698 ../../include/functions_html.php:6699 +#: ../../include/functions_html.php:1928 ../../include/functions_html.php:1929 +#: ../../include/functions_html.php:2039 ../../include/functions_html.php:2040 +#: ../../include/functions_html.php:2189 ../../include/functions_html.php:2190 +#: ../../include/functions_html.php:6726 ../../include/functions_html.php:6727 #: ../../include/class/CredentialStore.class.php:959 -#: ../../operation/netflow/nf_live_view.php:274 +#: ../../operation/netflow/nf_live_view.php:283 msgid "Custom" msgstr "" @@ -6442,8 +6581,8 @@ msgid "Imei" msgstr "" #: ../../enterprise/meta/advanced/metasetup.relations.php:330 -#: ../../include/class/NetworkMap.class.php:3265 -#: ../../include/class/NetworkMap.class.php:3266 +#: ../../include/class/NetworkMap.class.php:3271 +#: ../../include/class/NetworkMap.class.php:3272 msgid "Relations" msgstr "" @@ -6479,21 +6618,21 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2731 #: ../../enterprise/operation/services/services.service.php:115 #: ../../enterprise/operation/services/services.list.php:544 -#: ../../godmode/agentes/module_manager_editor_common.php:1432 +#: ../../godmode/agentes/module_manager_editor_common.php:1442 #: ../../godmode/snmpconsole/snmp_trap_generator.php:126 #: ../../godmode/massive/massive_edit_modules.php:899 #: ../../godmode/alerts/configure_alert_template.php:839 -#: ../../godmode/setup/setup_visuals.php:1823 -#: ../../godmode/setup/setup_visuals.php:1913 -#: ../../godmode/setup/setup_visuals.php:1995 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2708 +#: ../../godmode/setup/setup_visuals.php:1838 +#: ../../godmode/setup/setup_visuals.php:1928 +#: ../../godmode/setup/setup_visuals.php:2010 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2717 #: ../../godmode/reporting/visual_console_builder.wizard.php:330 -#: ../../include/functions_visual_map_editor.php:691 +#: ../../include/functions_visual_map_editor.php:741 #: ../../include/functions_reporting_html.php:949 -#: ../../include/functions_reporting_html.php:2461 -#: ../../include/functions_reporting_html.php:4962 -#: ../../include/functions_reporting_html.php:5492 -#: ../../include/ajax/events.php:2173 ../../include/functions_graph.php:5172 +#: ../../include/functions_reporting_html.php:2482 +#: ../../include/functions_reporting_html.php:4990 +#: ../../include/functions_reporting_html.php:5520 +#: ../../include/ajax/events.php:2174 ../../include/functions_graph.php:5182 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 #: ../../include/functions_reports.php:1087 #: ../../include/functions_netflow.php:212 @@ -6511,7 +6650,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.relations.php:550 #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:255 -#: ../../enterprise/godmode/policies/policy_modules.php:1546 +#: ../../enterprise/godmode/policies/policy_modules.php:1591 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:397 @@ -6533,7 +6672,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:330 #: ../../godmode/modules/manage_nc_groups.php:266 #: ../../godmode/modules/manage_inventory_modules.php:295 -#: ../../godmode/modules/manage_network_components.php:781 +#: ../../godmode/modules/manage_network_components.php:784 #: ../../godmode/modules/manage_network_templates.php:250 #: ../../godmode/agentes/agent_template.php:277 #: ../../godmode/agentes/planned_downtime.editor.php:1446 @@ -6543,26 +6682,26 @@ msgstr "" #: ../../godmode/snmpconsole/snmp_alert.php:1915 #: ../../godmode/snmpconsole/snmp_alert.php:2075 #: ../../godmode/snmpconsole/snmp_filters.php:315 -#: ../../godmode/massive/massive_operations.php:452 +#: ../../godmode/massive/massive_operations.php:454 #: ../../godmode/massive/massive_standby_alerts.php:251 #: ../../godmode/massive/massive_delete_action_alerts.php:271 #: ../../godmode/massive/massive_enable_disable_alerts.php:223 #: ../../godmode/massive/massive_add_action_alerts.php:249 #: ../../godmode/alerts/alert_list.list.php:825 #: ../../godmode/alerts/alert_view.php:394 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4138 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4629 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4650 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4638 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4659 #: ../../godmode/reporting/visual_console_builder.elements.php:134 #: ../../godmode/events/event_filter.php:149 -#: ../../mobile/operation/tactical.php:348 -#: ../../include/functions_reporting_html.php:3451 -#: ../../include/functions_reporting_html.php:6013 +#: ../../mobile/operation/tactical.php:349 +#: ../../include/functions_reporting_html.php:3479 +#: ../../include/functions_reporting_html.php:6047 #: ../../include/functions.php:3109 ../../include/ajax/alert_list.ajax.php:294 #: ../../include/ajax/alert_list.ajax.php:319 #: ../../include/ajax/alert_list.ajax.php:495 #: ../../include/functions_profile.php:207 -#: ../../include/class/AgentsAlerts.class.php:911 +#: ../../include/class/AgentsAlerts.class.php:912 #: ../../include/class/SnmpConsole.class.php:512 #: ../../include/class/AuditLog.class.php:111 #: ../../include/class/AuditLog.class.php:230 @@ -6571,7 +6710,7 @@ msgstr "" #: ../../operation/agentes/alerts_status.php:279 #: ../../operation/agentes/alerts_status.php:280 #: ../../operation/agentes/alerts_status.functions.php:178 -#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:256 +#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:301 msgid "Action" msgstr "" @@ -6590,7 +6729,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:93 #: ../../enterprise/meta/include/functions_meta.php:377 #: ../../enterprise/godmode/setup/setup.php:318 -#: ../../include/functions_config.php:494 +#: ../../include/functions_config.php:502 msgid "Enable password policy" msgstr "" @@ -6625,7 +6764,7 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:230 #: ../../enterprise/godmode/setup/setup_auth.php:431 #: ../../enterprise/godmode/setup/setup_auth.php:479 -#: ../../enterprise/godmode/setup/setup_auth.php:1287 +#: ../../enterprise/godmode/setup/setup_auth.php:1504 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:521 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:317 #: ../../enterprise/godmode/reporting/visual_console_template.php:304 @@ -6634,11 +6773,11 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2357 #: ../../godmode/update_manager/update_manager.setup.php:395 -#: ../../godmode/users/configure_user.php:1301 +#: ../../godmode/users/configure_user.php:1365 #: ../../godmode/agentes/agent_conf_gis.php:133 -#: ../../godmode/massive/massive_edit_agents.php:671 -#: ../../godmode/massive/massive_edit_agents.php:1084 -#: ../../godmode/massive/massive_edit_agents.php:1116 +#: ../../godmode/massive/massive_edit_agents.php:688 +#: ../../godmode/massive/massive_edit_agents.php:1101 +#: ../../godmode/massive/massive_edit_agents.php:1133 #: ../../godmode/massive/massive_edit_modules.php:631 #: ../../godmode/massive/massive_edit_modules.php:653 #: ../../godmode/massive/massive_edit_modules.php:722 @@ -6653,13 +6792,13 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:382 #: ../../godmode/reporting/visual_console_builder.wizard.php:481 #: ../../godmode/servers/modificar_server.php:80 -#: ../../include/functions_reporting_html.php:1664 +#: ../../include/functions_reporting_html.php:1673 #: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304 #: ../../include/functions_snmp.php:390 #: ../../include/class/EventSound.class.php:349 #: ../../include/class/SnmpConsole.class.php:403 #: ../../operation/users/user_edit.php:433 -#: ../../operation/netflow/nf_live_view.php:340 +#: ../../operation/netflow/nf_live_view.php:349 msgid "Yes" msgstr "" @@ -6695,7 +6834,7 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:230 #: ../../enterprise/godmode/setup/setup_auth.php:434 #: ../../enterprise/godmode/setup/setup_auth.php:482 -#: ../../enterprise/godmode/setup/setup_auth.php:1290 +#: ../../enterprise/godmode/setup/setup_auth.php:1507 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:523 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:319 #: ../../enterprise/godmode/reporting/visual_console_template.php:304 @@ -6704,11 +6843,11 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2357 #: ../../godmode/update_manager/update_manager.setup.php:396 -#: ../../godmode/users/configure_user.php:1302 +#: ../../godmode/users/configure_user.php:1366 #: ../../godmode/agentes/agent_conf_gis.php:142 -#: ../../godmode/massive/massive_edit_agents.php:672 -#: ../../godmode/massive/massive_edit_agents.php:1095 -#: ../../godmode/massive/massive_edit_agents.php:1117 +#: ../../godmode/massive/massive_edit_agents.php:689 +#: ../../godmode/massive/massive_edit_agents.php:1112 +#: ../../godmode/massive/massive_edit_agents.php:1134 #: ../../godmode/massive/massive_edit_modules.php:632 #: ../../godmode/massive/massive_edit_modules.php:654 #: ../../godmode/massive/massive_edit_modules.php:723 @@ -6719,28 +6858,28 @@ msgstr "" #: ../../godmode/massive/massive_edit_modules.php:1125 #: ../../godmode/alerts/alert_view.php:135 #: ../../godmode/alerts/alert_view.php:265 -#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:390 +#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:389 #: ../../godmode/reporting/reporting_builder.php:1086 #: ../../godmode/reporting/visual_console_builder.wizard.php:393 #: ../../godmode/reporting/visual_console_builder.wizard.php:492 #: ../../godmode/servers/modificar_server.php:78 -#: ../../mobile/operation/events.php:365 ../../mobile/operation/events.php:373 -#: ../../include/functions_reporting_html.php:1664 +#: ../../mobile/operation/events.php:358 ../../mobile/operation/events.php:366 +#: ../../include/functions_reporting_html.php:1673 #: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304 #: ../../include/functions_snmp.php:382 #: ../../include/class/EventSound.class.php:348 #: ../../include/class/SnmpConsole.class.php:402 -#: ../../include/functions_events.php:4971 #: ../../include/functions_events.php:4976 +#: ../../include/functions_events.php:4981 #: ../../operation/users/user_edit.php:434 -#: ../../operation/netflow/nf_live_view.php:350 +#: ../../operation/netflow/nf_live_view.php:359 msgid "No" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:114 #: ../../enterprise/meta/include/functions_meta.php:387 #: ../../enterprise/godmode/setup/setup.php:329 -#: ../../include/functions_config.php:498 +#: ../../include/functions_config.php:506 msgid "Min. size password" msgstr "" @@ -6752,7 +6891,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:126 #: ../../enterprise/meta/include/functions_meta.php:417 #: ../../enterprise/godmode/setup/setup.php:347 -#: ../../include/functions_config.php:502 +#: ../../include/functions_config.php:510 msgid "Password expiration" msgstr "" @@ -6768,7 +6907,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:138 #: ../../enterprise/meta/include/functions_meta.php:437 #: ../../enterprise/godmode/setup/setup.php:395 -#: ../../include/functions_config.php:510 +#: ../../include/functions_config.php:518 msgid "User blocked if login fails" msgstr "" @@ -6780,7 +6919,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:150 #: ../../enterprise/meta/include/functions_meta.php:447 #: ../../enterprise/godmode/setup/setup.php:413 -#: ../../include/functions_config.php:514 +#: ../../include/functions_config.php:522 msgid "Number of failed login attempts" msgstr "" @@ -6796,56 +6935,56 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:162 #: ../../enterprise/meta/include/functions_meta.php:469 #: ../../enterprise/godmode/setup/setup.php:451 -#: ../../include/functions_config.php:534 +#: ../../include/functions_config.php:542 msgid "Compare previous password" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:174 #: ../../enterprise/meta/include/functions_meta.php:457 #: ../../enterprise/godmode/setup/setup.php:441 -#: ../../include/functions_config.php:530 +#: ../../include/functions_config.php:538 msgid "Enable password history" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:192 #: ../../enterprise/meta/include/functions_meta.php:480 #: ../../enterprise/godmode/setup/setup.php:431 -#: ../../include/functions_config.php:526 +#: ../../include/functions_config.php:534 msgid "Apply password policy to admin users" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:199 #: ../../enterprise/meta/include/functions_meta.php:427 #: ../../enterprise/godmode/setup/setup.php:385 -#: ../../include/functions_config.php:506 +#: ../../include/functions_config.php:514 msgid "Force change password on first login" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:206 #: ../../enterprise/meta/include/functions_meta.php:397 #: ../../enterprise/godmode/setup/setup.php:365 -#: ../../include/functions_config.php:518 +#: ../../include/functions_config.php:526 msgid "Password must have numbers" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:213 #: ../../enterprise/meta/include/functions_meta.php:407 #: ../../enterprise/godmode/setup/setup.php:375 -#: ../../include/functions_config.php:522 +#: ../../include/functions_config.php:530 msgid "Password must have symbols" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:220 #: ../../enterprise/meta/include/functions_meta.php:491 #: ../../enterprise/godmode/setup/setup.php:463 -#: ../../include/functions_config.php:538 +#: ../../include/functions_config.php:546 msgid "Activate reset password" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:228 #: ../../enterprise/meta/include/functions_meta.php:501 #: ../../enterprise/godmode/setup/setup.php:473 -#: ../../include/functions_config.php:542 +#: ../../include/functions_config.php:550 msgid "Exclusion word list for passwords" msgstr "" @@ -6908,56 +7047,56 @@ msgid "" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:117 -#: ../../godmode/setup/setup_general.php:725 +#: ../../godmode/setup/setup_general.php:751 msgid "Mail configuration" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:122 -#: ../../include/functions_config.php:398 +#: ../../include/functions_config.php:406 msgid "From dir" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:127 -#: ../../godmode/setup/setup_general.php:756 -#: ../../include/functions_config.php:402 +#: ../../godmode/setup/setup_general.php:782 +#: ../../include/functions_config.php:410 msgid "From name" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:132 -#: ../../include/functions_config.php:394 +#: ../../include/functions_config.php:402 msgid "Server SMTP" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:137 -#: ../../include/functions_config.php:406 +#: ../../include/functions_config.php:414 msgid "Port SMTP" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:142 -#: ../../godmode/setup/setup_general.php:817 -#: ../../include/functions_config.php:410 +#: ../../godmode/setup/setup_general.php:843 +#: ../../include/functions_config.php:418 msgid "Encryption" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:148 #: ../../godmode/gis_maps/configure_gis_map.php:586 -#: ../../godmode/setup/setup_general.php:823 +#: ../../godmode/setup/setup_general.php:849 #: ../../godmode/reporting/create_container.php:291 #: ../../godmode/reporting/create_container.php:310 -#: ../../include/ajax/module.php:2549 ../../include/ajax/events.php:1087 -#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5106 +#: ../../include/ajax/module.php:2578 ../../include/ajax/events.php:1088 +#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5130 msgid "none" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:155 -#: ../../godmode/setup/setup_general.php:792 -#: ../../include/functions_config.php:414 +#: ../../godmode/setup/setup_general.php:818 +#: ../../include/functions_config.php:422 msgid "Email user" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:160 -#: ../../godmode/setup/setup_general.php:803 -#: ../../include/functions_config.php:418 +#: ../../godmode/setup/setup_general.php:829 +#: ../../include/functions_config.php:426 msgid "Email password" msgstr "" @@ -6981,11 +7120,11 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:143 #: ../../enterprise/meta/general/main_menu.php:260 #: ../../enterprise/operation/log/elasticsearch_interface.php:30 -#: ../../enterprise/operation/log/log_viewer.php:399 -#: ../../enterprise/operation/log/log_viewer.php:439 -#: ../../enterprise/operation/log/log_viewer.php:498 +#: ../../enterprise/operation/log/log_viewer.php:397 +#: ../../enterprise/operation/log/log_viewer.php:437 +#: ../../enterprise/operation/log/log_viewer.php:496 #: ../../enterprise/operation/menu.php:162 -#: ../../operation/agentes/ver_agente.php:1893 +#: ../../operation/agentes/ver_agente.php:1889 msgid "Log viewer" msgstr "" @@ -6993,12 +7132,12 @@ msgstr "" #: ../../enterprise/godmode/menu.php:132 #: ../../enterprise/include/functions_setup.php:67 #: ../../enterprise/include/functions_setup.php:119 -#: ../../operation/agentes/datos_agente.php:180 +#: ../../operation/agentes/datos_agente.php:181 msgid "History database" msgstr "" #: ../../enterprise/meta/advanced/metasetup.php:100 -#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:360 +#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:358 #: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:274 msgid "Authentication" msgstr "" @@ -7015,7 +7154,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.php:126 #: ../../enterprise/meta/advanced/metasetup.php:225 -#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:439 +#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:437 #: ../../godmode/setup/file_manager.php:47 #: ../../godmode/setup/file_manager.php:60 msgid "File manager" @@ -7032,7 +7171,7 @@ msgid "Mail" msgstr "" #: ../../enterprise/meta/advanced/metasetup.php:150 -#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:389 +#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:387 #: ../../godmode/setup/setup.php:218 ../../godmode/setup/setup.php:325 msgid "Notifications" msgstr "" @@ -7104,8 +7243,8 @@ msgstr "" #: ../../godmode/update_manager/update_manager.php:57 #: ../../godmode/update_manager/update_manager.php:87 #: ../../godmode/agentes/configurar_agente.php:405 -#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:338 -#: ../../godmode/menu.php:345 ../../godmode/setup/setup.php:389 +#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:336 +#: ../../godmode/menu.php:343 ../../godmode/setup/setup.php:389 #: ../../godmode/setup/gis_step_2.php:63 ../../godmode/setup/gis_step_2.php:67 #: ../../godmode/setup/gis_step_2.php:100 #: ../../godmode/setup/gis_step_2.php:104 @@ -7159,39 +7298,20 @@ msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:254 #: ../../include/functions_networkmap.php:1303 #: ../../include/functions_maps.php:42 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:346 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:349 #: ../../operation/tree.php:128 ../../operation/search_results.php:172 #: ../../operation/agentes/estado_agente.php:387 -#: ../../operation/agentes/ver_agente.php:1860 +#: ../../operation/agentes/ver_agente.php:1856 #: ../../operation/search_main.php:73 msgid "Policies" msgstr "" -#: ../../enterprise/meta/advanced/policymanager.apply.php:200 -#: ../../enterprise/godmode/servers/new_HA_cluster.php:86 -#: ../../enterprise/godmode/servers/HA_cluster.php:97 -#: ../../enterprise/godmode/servers/manage_export.php:69 -#: ../../enterprise/godmode/servers/manage_export_form.php:85 -#: ../../enterprise/godmode/servers/list_satellite.php:37 -#: ../../godmode/menu.php:300 ../../godmode/setup/os.php:225 -#: ../../godmode/reporting/visual_console_builder.wizard.php:353 -#: ../../godmode/servers/modificar_server.php:59 -#: ../../godmode/servers/modificar_server.php:218 -#: ../../godmode/servers/modificar_server.php:271 -#: ../../godmode/servers/plugin_registration.php:73 -#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:355 -#: ../../godmode/servers/plugin.php:802 -#: ../../mobile/include/functions_web.php:28 -#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:370 -msgid "Servers" -msgstr "" - #: ../../enterprise/meta/advanced/policymanager.apply.php:213 #: ../../enterprise/meta/advanced/policymanager.queue.php:311 -#: ../../enterprise/godmode/policies/policy_queue.php:754 +#: ../../enterprise/godmode/policies/policy_queue.php:758 #: ../../enterprise/godmode/policies/policy_agents.php:964 #: ../../enterprise/godmode/policies/policy_agents.php:1348 -#: ../../include/functions_visual_map_editor.php:641 +#: ../../include/functions_visual_map_editor.php:637 msgid "Apply" msgstr "" @@ -7285,8 +7405,8 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:137 #: ../../enterprise/godmode/policies/policy_modules.php:529 #: ../../enterprise/godmode/setup/setup_metaconsole.php:147 -#: ../../godmode/users/user_list.php:448 -#: ../../godmode/agentes/configurar_agente.php:2188 +#: ../../godmode/users/user_list.php:449 +#: ../../godmode/agentes/configurar_agente.php:2251 #: ../../godmode/agentes/modificar_agente.php:227 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 #: ../../godmode/alerts/alert_list.php:382 @@ -7298,7 +7418,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:138 #: ../../enterprise/godmode/policies/policy_modules.php:530 #: ../../enterprise/godmode/setup/setup_metaconsole.php:148 -#: ../../godmode/agentes/configurar_agente.php:2189 +#: ../../godmode/agentes/configurar_agente.php:2252 #: ../../godmode/agentes/modificar_agente.php:228 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 #: ../../godmode/alerts/alert_list.php:383 @@ -7310,8 +7430,8 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:163 #: ../../enterprise/godmode/policies/policy_modules.php:546 #: ../../enterprise/godmode/setup/setup_metaconsole.php:156 -#: ../../godmode/users/user_list.php:442 -#: ../../godmode/agentes/configurar_agente.php:2213 +#: ../../godmode/users/user_list.php:443 +#: ../../godmode/agentes/configurar_agente.php:2276 #: ../../godmode/agentes/modificar_agente.php:270 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 #: ../../godmode/alerts/alert_list.php:418 @@ -7373,29 +7493,30 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:502 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1714 #: ../../enterprise/include/functions_reporting_csv.php:1208 -#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/graph_builder.graph_editor.php:347 #: ../../godmode/reporting/reporting_builder.item_editor.php:1290 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.elements.php:310 #: ../../godmode/reporting/visual_console_builder.wizard.php:469 #: ../../include/functions_visual_map_editor.php:67 -#: ../../include/functions_visual_map_editor.php:193 -#: ../../include/functions_visual_map_editor.php:777 -#: ../../include/functions_visual_map_editor.php:1392 -#: ../../include/functions_visual_map.php:4210 -#: ../../include/rest-api/models/VisualConsole/Item.php:1942 -#: ../../include/rest-api/models/VisualConsole/Item.php:2136 +#: ../../include/functions_visual_map_editor.php:189 +#: ../../include/functions_visual_map_editor.php:817 +#: ../../include/functions_visual_map_editor.php:1450 +#: ../../include/functions_visual_map.php:4219 +#: ../../include/rest-api/models/VisualConsole/Item.php:1947 +#: ../../include/rest-api/models/VisualConsole/Item.php:2139 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:329 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:284 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:354 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:365 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:468 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:447 #: ../../include/lib/Dashboard/Widgets/module_icon.php:347 #: ../../include/lib/Dashboard/Widgets/module_value.php:322 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:260 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:314 #: ../../include/lib/Dashboard/Widgets/module_status.php:338 -#: ../../operation/visual_console/view.php:356 +#: ../../operation/visual_console/view.php:358 msgid "Label" msgstr "" @@ -7483,12 +7604,12 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:227 #: ../../extensions/quick_shell.php:539 #: ../../godmode/agentes/module_manager_editor.php:750 -#: ../../godmode/agentes/agent_manager.php:905 -#: ../../godmode/massive/massive_edit_agents.php:1159 +#: ../../godmode/agentes/agent_manager.php:912 +#: ../../godmode/massive/massive_edit_agents.php:1175 #: ../../godmode/massive/massive_add_action_alerts.php:251 -#: ../../include/functions_visual_map_editor.php:893 -#: ../../operation/agentes/status_monitor.php:1022 -#: ../../operation/events/events.php:2271 +#: ../../include/functions_visual_map_editor.php:941 +#: ../../operation/agentes/status_monitor.php:1024 +#: ../../operation/events/events.php:2325 msgid "Advanced options" msgstr "" @@ -7588,7 +7709,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam.php:426 #: ../../operation/search_agents.php:132 ../../operation/search_agents.php:133 #: ../../operation/agentes/ver_agente.php:1375 -#: ../../operation/agentes/ver_agente.php:1831 +#: ../../operation/agentes/ver_agente.php:1827 msgid "Manage" msgstr "" @@ -7631,7 +7752,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:50 #: ../../godmode/modules/manage_nc_groups.php:108 #: ../../godmode/users/profile_list.php:278 -#: ../../godmode/users/configure_user.php:530 +#: ../../godmode/users/configure_user.php:479 #: ../../godmode/agentes/configurar_agente.php:888 #: ../../godmode/agentes/planned_downtime.editor.php:660 #: ../../godmode/snmpconsole/snmp_alert.php:302 @@ -7640,7 +7761,7 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:553 #: ../../godmode/alerts/alert_list.php:185 ../../godmode/setup/news.php:83 #: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:57 -#: ../../include/functions_alerts.php:2754 +#: ../../include/functions_alerts.php:2755 #: ../../include/class/EventSound.class.php:103 #: ../../include/class/EventSound.class.php:134 #: ../../include/class/CalendarManager.class.php:537 @@ -7660,7 +7781,7 @@ msgstr "" #: ../../enterprise/meta/advanced/links.php:69 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:126 -#: ../../enterprise/godmode/policies/policy_modules.php:1265 +#: ../../enterprise/godmode/policies/policy_modules.php:1310 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:138 @@ -7677,21 +7798,21 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_massive.php:47 #: ../../godmode/modules/manage_nc_groups.php:142 #: ../../godmode/users/profile_list.php:261 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 -#: ../../godmode/agentes/configurar_agente.php:1198 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 +#: ../../godmode/agentes/configurar_agente.php:1214 #: ../../godmode/agentes/planned_downtime.editor.php:662 -#: ../../godmode/netflow/nf_edit_form.php:140 +#: ../../godmode/netflow/nf_edit_form.php:172 #: ../../godmode/snmpconsole/snmp_alert.php:444 #: ../../godmode/snmpconsole/snmp_filters.php:110 #: ../../godmode/massive/massive_edit_modules.php:184 #: ../../godmode/alerts/configure_alert_command.php:149 -#: ../../godmode/alerts/alert_templates.php:161 +#: ../../godmode/alerts/alert_templates.php:165 #: ../../godmode/alerts/configure_alert_template.php:571 #: ../../godmode/alerts/alert_list.php:94 #: ../../godmode/alerts/alert_list.php:319 ../../godmode/setup/news.php:124 #: ../../godmode/setup/gis.php:39 ../../godmode/setup/links.php:76 -#: ../../godmode/events/event_edit_filter.php:242 -#: ../../include/functions_alerts.php:2754 +#: ../../godmode/events/event_edit_filter.php:244 +#: ../../include/functions_alerts.php:2755 #: ../../include/class/CalendarManager.class.php:534 #: ../../include/class/CalendarManager.class.php:891 #: ../../include/functions_planned_downtimes.php:125 @@ -7750,7 +7871,7 @@ msgstr "" #: ../../enterprise/include/class/CommandCenter.class.php:145 #: ../../godmode/netflow/nf_item_list.php:49 #: ../../operation/agentes/ver_agente.php:1390 -#: ../../operation/agentes/ver_agente.php:1835 +#: ../../operation/agentes/ver_agente.php:1831 msgid "Main" msgstr "" @@ -7826,52 +7947,67 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:787 #: ../../extensions/insert_data.php:226 ../../extensions/insert_data.php:230 #: ../../extensions/insert_data.php:235 -#: ../../godmode/agentes/status_monitor_custom_fields.php:113 -#: ../../godmode/agentes/status_monitor_custom_fields.php:150 +#: ../../godmode/agentes/status_monitor_custom_fields.php:133 +#: ../../godmode/agentes/status_monitor_custom_fields.php:170 #: ../../godmode/events/custom_events.php:113 -#: ../../mobile/operation/modules.php:715 -#: ../../mobile/operation/modules.php:718 -#: ../../mobile/operation/modules.php:719 -#: ../../mobile/operation/modules.php:720 -#: ../../mobile/operation/modules.php:721 -#: ../../mobile/operation/modules.php:722 -#: ../../mobile/operation/modules.php:723 -#: ../../mobile/operation/modules.php:724 -#: ../../mobile/operation/modules.php:725 -#: ../../mobile/operation/modules.php:727 +#: ../../mobile/operation/modules.php:726 #: ../../mobile/operation/modules.php:730 #: ../../mobile/operation/modules.php:731 #: ../../mobile/operation/modules.php:732 #: ../../mobile/operation/modules.php:733 #: ../../mobile/operation/modules.php:734 #: ../../mobile/operation/modules.php:735 -#: ../../mobile/operation/modules.php:736 #: ../../mobile/operation/modules.php:737 -#: ../../mobile/operation/modules.php:853 -#: ../../include/functions_reporting_html.php:2357 -#: ../../include/functions_reporting_html.php:2836 -#: ../../include/functions_reporting_html.php:2840 -#: ../../include/functions_reporting_html.php:2841 -#: ../../include/functions_reporting_html.php:2845 -#: ../../include/functions_reporting_html.php:2850 -#: ../../include/functions_reporting_html.php:2855 -#: ../../include/functions_reporting_html.php:2859 +#: ../../mobile/operation/modules.php:740 +#: ../../mobile/operation/modules.php:741 +#: ../../mobile/operation/modules.php:742 +#: ../../mobile/operation/modules.php:743 +#: ../../mobile/operation/modules.php:744 +#: ../../mobile/operation/modules.php:745 +#: ../../mobile/operation/modules.php:749 +#: ../../mobile/operation/modules.php:750 +#: ../../mobile/operation/modules.php:751 +#: ../../mobile/operation/modules.php:752 +#: ../../mobile/operation/modules.php:753 +#: ../../mobile/operation/modules.php:754 +#: ../../mobile/operation/modules.php:755 +#: ../../mobile/operation/modules.php:756 +#: ../../mobile/operation/modules.php:758 +#: ../../mobile/operation/modules.php:761 +#: ../../mobile/operation/modules.php:762 +#: ../../mobile/operation/modules.php:763 +#: ../../mobile/operation/modules.php:764 +#: ../../mobile/operation/modules.php:765 +#: ../../mobile/operation/modules.php:766 +#: ../../mobile/operation/modules.php:767 +#: ../../mobile/operation/modules.php:768 +#: ../../mobile/operation/modules.php:912 +#: ../../mobile/operation/module_data.php:164 +#: ../../include/functions_reporting_html.php:2378 #: ../../include/functions_reporting_html.php:2864 -#: ../../include/functions_reporting_html.php:2871 -#: ../../include/functions_reporting_html.php:2921 -#: ../../include/functions_reporting_html.php:2995 -#: ../../include/ajax/module.php:1005 ../../include/ajax/custom_fields.php:412 -#: ../../include/functions_graph.php:3504 +#: ../../include/functions_reporting_html.php:2868 +#: ../../include/functions_reporting_html.php:2869 +#: ../../include/functions_reporting_html.php:2873 +#: ../../include/functions_reporting_html.php:2878 +#: ../../include/functions_reporting_html.php:2883 +#: ../../include/functions_reporting_html.php:2887 +#: ../../include/functions_reporting_html.php:2892 +#: ../../include/functions_reporting_html.php:2899 +#: ../../include/functions_reporting_html.php:2949 +#: ../../include/functions_reporting_html.php:3023 +#: ../../include/ajax/heatmap.ajax.php:336 ../../include/ajax/module.php:1028 +#: ../../include/ajax/custom_fields.php:412 +#: ../../include/functions_graph.php:3514 #: ../../include/functions_netflow.php:301 -#: ../../include/functions_reporting.php:4729 -#: ../../include/functions_reporting.php:4770 +#: ../../include/functions_reporting.php:4738 +#: ../../include/functions_reporting.php:4779 #: ../../include/functions_events.php:218 #: ../../include/functions_events.php:301 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1590 +#: ../../operation/agentes/status_monitor.php:1592 #: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/search_modules.php:38 +#: ../../operation/search_modules.php:41 msgid "Data" msgstr "" @@ -7929,7 +8065,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/collections.editor.php:74 #: ../../enterprise/godmode/agentes/collections.editor.php:463 #: ../../enterprise/include/functions_collection.php:186 -#: ../../operation/agentes/ver_agente.php:1679 +#: ../../operation/agentes/ver_agente.php:1675 msgid "Files" msgstr "" @@ -8030,7 +8166,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/collections.editor.php:179 #: ../../enterprise/godmode/agentes/collections.editor.php:245 #: ../../godmode/servers/plugin.php:171 -#: ../../include/functions_filemanager.php:776 +#: ../../include/functions_filemanager.php:791 msgid "Edit file" msgstr "" @@ -8116,27 +8252,28 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4037 #: ../../enterprise/godmode/wizards/consoletask_js.php:41 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4410 -#: ../../enterprise/operation/log/log_viewer.php:1195 -#: ../../enterprise/operation/log/log_viewer.php:1210 +#: ../../enterprise/operation/log/log_viewer.php:1193 +#: ../../enterprise/operation/log/log_viewer.php:1208 #: ../../enterprise/operation/services/services.treeview_services.php:410 #: ../../extensions/insert_data.php:279 -#: ../../godmode/agentes/planned_downtime.editor.php:2011 +#: ../../godmode/agentes/planned_downtime.editor.php:2007 #: ../../godmode/alerts/configure_alert_template.php:1506 #: ../../godmode/alerts/configure_alert_template.php:1590 -#: ../../godmode/setup/news.php:431 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5162 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:737 -#: ../../operation/tree.php:625 ../../operation/agentes/stat_win.php:585 -#: ../../operation/agentes/interface_traffic_graph_win.php:436 -#: ../../operation/agentes/datos_agente.php:312 -#: ../../operation/agentes/estado_monitores.php:464 +#: ../../godmode/setup/news.php:430 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5171 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:730 +#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:601 +#: ../../operation/agentes/interface_traffic_graph_win.php:445 +#: ../../operation/agentes/datos_agente.php:314 +#: ../../operation/agentes/estado_monitores.php:461 #: ../../operation/network/network_report.php:457 #: ../../operation/network/network_usage_map.php:294 -#: ../../operation/netflow/nf_live_view.php:865 +#: ../../operation/netflow/nf_live_view.php:976 +#: ../../operation/search_modules.php:353 #: ../../operation/reporting/reporting_viewer.php:360 #: ../../operation/reporting/reporting_viewer.php:379 #: ../../operation/reporting/graph_viewer.php:466 -#: ../../operation/events/events.php:3223 +#: ../../operation/events/events.php:3282 msgid "Choose time" msgstr "" @@ -8148,28 +8285,29 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4101 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4411 #: ../../enterprise/include/lib/Metaconsole/Node.php:539 -#: ../../enterprise/operation/log/log_viewer.php:1196 -#: ../../enterprise/operation/log/log_viewer.php:1211 +#: ../../enterprise/operation/log/log_viewer.php:1194 +#: ../../enterprise/operation/log/log_viewer.php:1209 #: ../../enterprise/operation/services/services.treeview_services.php:411 #: ../../extensions/insert_data.php:280 -#: ../../godmode/agentes/planned_downtime.editor.php:2012 +#: ../../godmode/agentes/planned_downtime.editor.php:2008 #: ../../godmode/alerts/configure_alert_template.php:1507 #: ../../godmode/alerts/configure_alert_template.php:1591 -#: ../../godmode/setup/news.php:432 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5163 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:738 -#: ../../operation/tree.php:626 ../../operation/agentes/stat_win.php:586 -#: ../../operation/agentes/interface_traffic_graph_win.php:437 -#: ../../operation/agentes/datos_agente.php:313 -#: ../../operation/agentes/estado_monitores.php:465 +#: ../../godmode/setup/news.php:431 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5172 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:731 +#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:602 +#: ../../operation/agentes/interface_traffic_graph_win.php:446 +#: ../../operation/agentes/datos_agente.php:315 +#: ../../operation/agentes/estado_monitores.php:462 #: ../../operation/network/network_report.php:458 #: ../../operation/network/network_usage_map.php:295 -#: ../../operation/netflow/nf_live_view.php:866 +#: ../../operation/netflow/nf_live_view.php:977 +#: ../../operation/search_modules.php:354 #: ../../operation/reporting/reporting_viewer.php:361 #: ../../operation/reporting/reporting_viewer.php:380 #: ../../operation/reporting/graph_viewer.php:333 #: ../../operation/reporting/graph_viewer.php:467 -#: ../../operation/events/events.php:3224 +#: ../../operation/events/events.php:3283 msgid "Time" msgstr "" @@ -8180,28 +8318,29 @@ msgstr "" #: ../../enterprise/godmode/wizards/consoletask_js.php:43 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4102 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4412 -#: ../../enterprise/operation/log/log_viewer.php:1197 -#: ../../enterprise/operation/log/log_viewer.php:1212 +#: ../../enterprise/operation/log/log_viewer.php:1195 +#: ../../enterprise/operation/log/log_viewer.php:1210 #: ../../enterprise/operation/services/services.treeview_services.php:412 #: ../../extensions/insert_data.php:281 -#: ../../godmode/agentes/planned_downtime.editor.php:2013 +#: ../../godmode/agentes/planned_downtime.editor.php:2009 #: ../../godmode/alerts/configure_alert_template.php:1508 #: ../../godmode/alerts/configure_alert_template.php:1592 -#: ../../godmode/setup/news.php:433 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5164 -#: ../../include/functions_html.php:2319 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:739 -#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:587 -#: ../../operation/agentes/interface_traffic_graph_win.php:438 -#: ../../operation/agentes/datos_agente.php:314 -#: ../../operation/agentes/estado_monitores.php:466 +#: ../../godmode/setup/news.php:432 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5173 +#: ../../include/functions_html.php:2334 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:732 +#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:603 +#: ../../operation/agentes/interface_traffic_graph_win.php:447 +#: ../../operation/agentes/datos_agente.php:316 +#: ../../operation/agentes/estado_monitores.php:463 #: ../../operation/network/network_report.php:459 #: ../../operation/network/network_usage_map.php:296 -#: ../../operation/netflow/nf_live_view.php:867 +#: ../../operation/netflow/nf_live_view.php:978 +#: ../../operation/search_modules.php:355 #: ../../operation/reporting/reporting_viewer.php:362 #: ../../operation/reporting/reporting_viewer.php:381 #: ../../operation/reporting/graph_viewer.php:468 -#: ../../operation/events/events.php:3225 +#: ../../operation/events/events.php:3284 msgid "Hour" msgstr "" @@ -8212,28 +8351,29 @@ msgstr "" #: ../../enterprise/godmode/wizards/consoletask_js.php:44 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4103 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4413 -#: ../../enterprise/operation/log/log_viewer.php:1198 -#: ../../enterprise/operation/log/log_viewer.php:1213 +#: ../../enterprise/operation/log/log_viewer.php:1196 +#: ../../enterprise/operation/log/log_viewer.php:1211 #: ../../enterprise/operation/services/services.treeview_services.php:413 #: ../../extensions/insert_data.php:282 -#: ../../godmode/agentes/planned_downtime.editor.php:2014 +#: ../../godmode/agentes/planned_downtime.editor.php:2010 #: ../../godmode/alerts/configure_alert_template.php:1509 #: ../../godmode/alerts/configure_alert_template.php:1593 -#: ../../godmode/setup/news.php:434 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5165 -#: ../../include/functions_html.php:2320 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:740 -#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:588 -#: ../../operation/agentes/interface_traffic_graph_win.php:439 -#: ../../operation/agentes/datos_agente.php:315 -#: ../../operation/agentes/estado_monitores.php:467 +#: ../../godmode/setup/news.php:433 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5174 +#: ../../include/functions_html.php:2335 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:733 +#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:604 +#: ../../operation/agentes/interface_traffic_graph_win.php:448 +#: ../../operation/agentes/datos_agente.php:317 +#: ../../operation/agentes/estado_monitores.php:464 #: ../../operation/network/network_report.php:460 #: ../../operation/network/network_usage_map.php:297 -#: ../../operation/netflow/nf_live_view.php:868 +#: ../../operation/netflow/nf_live_view.php:979 +#: ../../operation/search_modules.php:356 #: ../../operation/reporting/reporting_viewer.php:363 #: ../../operation/reporting/reporting_viewer.php:382 #: ../../operation/reporting/graph_viewer.php:469 -#: ../../operation/events/events.php:3226 +#: ../../operation/events/events.php:3285 msgid "Minute" msgstr "" @@ -8244,27 +8384,28 @@ msgstr "" #: ../../enterprise/godmode/wizards/consoletask_js.php:45 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4104 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4414 -#: ../../enterprise/operation/log/log_viewer.php:1199 -#: ../../enterprise/operation/log/log_viewer.php:1214 +#: ../../enterprise/operation/log/log_viewer.php:1197 +#: ../../enterprise/operation/log/log_viewer.php:1212 #: ../../enterprise/operation/services/services.treeview_services.php:414 #: ../../extensions/insert_data.php:283 -#: ../../godmode/agentes/planned_downtime.editor.php:2015 +#: ../../godmode/agentes/planned_downtime.editor.php:2011 #: ../../godmode/alerts/configure_alert_template.php:1510 #: ../../godmode/alerts/configure_alert_template.php:1594 -#: ../../godmode/setup/news.php:435 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5166 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:741 -#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:589 -#: ../../operation/agentes/interface_traffic_graph_win.php:440 -#: ../../operation/agentes/datos_agente.php:316 -#: ../../operation/agentes/estado_monitores.php:468 +#: ../../godmode/setup/news.php:434 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5175 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:734 +#: ../../operation/tree.php:631 ../../operation/agentes/stat_win.php:605 +#: ../../operation/agentes/interface_traffic_graph_win.php:449 +#: ../../operation/agentes/datos_agente.php:318 +#: ../../operation/agentes/estado_monitores.php:465 #: ../../operation/network/network_report.php:461 #: ../../operation/network/network_usage_map.php:298 -#: ../../operation/netflow/nf_live_view.php:869 +#: ../../operation/netflow/nf_live_view.php:980 +#: ../../operation/search_modules.php:357 #: ../../operation/reporting/reporting_viewer.php:364 #: ../../operation/reporting/reporting_viewer.php:383 #: ../../operation/reporting/graph_viewer.php:470 -#: ../../operation/events/events.php:3227 +#: ../../operation/events/events.php:3286 msgid "Second" msgstr "" @@ -8275,36 +8416,37 @@ msgstr "" #: ../../enterprise/godmode/wizards/consoletask_js.php:46 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4105 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4415 -#: ../../enterprise/operation/log/log_viewer.php:1200 -#: ../../enterprise/operation/log/log_viewer.php:1215 +#: ../../enterprise/operation/log/log_viewer.php:1198 +#: ../../enterprise/operation/log/log_viewer.php:1213 #: ../../enterprise/operation/services/services.treeview_services.php:415 #: ../../extensions/insert_data.php:284 -#: ../../godmode/agentes/planned_downtime.editor.php:2016 +#: ../../godmode/agentes/planned_downtime.editor.php:2012 #: ../../godmode/alerts/configure_alert_template.php:1511 #: ../../godmode/alerts/configure_alert_template.php:1595 -#: ../../godmode/setup/news.php:436 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5167 +#: ../../godmode/setup/news.php:435 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5176 #: ../../include/functions.php:515 ../../include/functions.php:646 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:742 -#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:590 -#: ../../operation/agentes/interface_traffic_graph_win.php:441 -#: ../../operation/agentes/datos_agente.php:317 -#: ../../operation/agentes/estado_monitores.php:469 -#: ../../operation/agentes/agent_inventory.php:133 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:735 +#: ../../operation/tree.php:632 ../../operation/agentes/stat_win.php:606 +#: ../../operation/agentes/interface_traffic_graph_win.php:450 +#: ../../operation/agentes/datos_agente.php:319 +#: ../../operation/agentes/estado_monitores.php:466 +#: ../../operation/agentes/agent_inventory.php:141 #: ../../operation/network/network_report.php:462 #: ../../operation/network/network_usage_map.php:299 -#: ../../operation/netflow/nf_live_view.php:870 +#: ../../operation/netflow/nf_live_view.php:981 +#: ../../operation/search_modules.php:358 #: ../../operation/reporting/reporting_viewer.php:365 #: ../../operation/reporting/reporting_viewer.php:384 #: ../../operation/reporting/graph_viewer.php:471 -#: ../../operation/events/events.php:3228 +#: ../../operation/events/events.php:3287 msgid "Now" msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:78 #: ../../enterprise/godmode/modules/configure_local_component.php:166 #: ../../godmode/modules/manage_network_components_form_common.php:52 -#: ../../godmode/users/configure_user.php:1405 +#: ../../godmode/users/configure_user.php:1454 #: ../../godmode/alerts/alert_commands.php:143 #: ../../godmode/alerts/alert_commands.php:184 #: ../../godmode/alerts/configure_alert_template.php:953 @@ -8330,19 +8472,19 @@ msgstr "" #: ../../godmode/setup/setup_general.php:58 #: ../../mobile/operation/events.php:248 #: ../../include/functions_reporting_html.php:1142 -#: ../../include/functions_reporting_html.php:2701 +#: ../../include/functions_reporting_html.php:2720 #: ../../include/functions.php:1291 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:434 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:430 #: ../../include/functions_events.php:2609 -#: ../../include/functions_events.php:3162 -#: ../../operation/events/events.php:833 +#: ../../include/functions_events.php:3167 +#: ../../operation/events/events.php:838 msgid "System" msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:111 #: ../../godmode/setup/setup_general.php:59 -#: ../../include/functions_menu.php:937 +#: ../../include/functions_menu.php:942 msgid "Database" msgstr "" @@ -8398,7 +8540,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:192 #: ../../enterprise/godmode/setup/setup_auth.php:353 #: ../../godmode/setup/setup_general.php:80 -#: ../../include/functions_visual_map_editor.php:290 +#: ../../include/functions_visual_map_editor.php:286 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271 #: ../../include/functions_register.php:134 msgid "Africa" @@ -8407,7 +8549,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:193 #: ../../enterprise/godmode/setup/setup_auth.php:354 #: ../../godmode/setup/setup_general.php:81 -#: ../../include/functions_visual_map_editor.php:291 +#: ../../include/functions_visual_map_editor.php:287 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272 #: ../../include/functions_register.php:135 msgid "America" @@ -8416,7 +8558,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:194 #: ../../enterprise/godmode/setup/setup_auth.php:355 #: ../../godmode/setup/setup_general.php:82 -#: ../../include/functions_visual_map_editor.php:292 +#: ../../include/functions_visual_map_editor.php:288 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273 #: ../../include/functions_register.php:136 msgid "Antarctica" @@ -8425,7 +8567,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:195 #: ../../enterprise/godmode/setup/setup_auth.php:356 #: ../../godmode/setup/setup_general.php:83 -#: ../../include/functions_visual_map_editor.php:293 +#: ../../include/functions_visual_map_editor.php:289 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274 #: ../../include/functions_register.php:137 msgid "Arctic" @@ -8434,7 +8576,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:196 #: ../../enterprise/godmode/setup/setup_auth.php:357 #: ../../godmode/setup/setup_general.php:84 -#: ../../include/functions_visual_map_editor.php:294 +#: ../../include/functions_visual_map_editor.php:290 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275 #: ../../include/functions_register.php:138 msgid "Asia" @@ -8443,7 +8585,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:197 #: ../../enterprise/godmode/setup/setup_auth.php:358 #: ../../godmode/setup/setup_general.php:85 -#: ../../include/functions_visual_map_editor.php:295 +#: ../../include/functions_visual_map_editor.php:291 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276 #: ../../include/functions_register.php:139 msgid "Atlantic" @@ -8452,7 +8594,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:198 #: ../../enterprise/godmode/setup/setup_auth.php:359 #: ../../godmode/setup/setup_general.php:86 -#: ../../include/functions_visual_map_editor.php:296 +#: ../../include/functions_visual_map_editor.php:292 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277 #: ../../include/functions_register.php:140 msgid "Australia" @@ -8461,7 +8603,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:199 #: ../../enterprise/godmode/setup/setup_auth.php:360 #: ../../godmode/setup/setup_general.php:87 -#: ../../include/functions_visual_map_editor.php:297 +#: ../../include/functions_visual_map_editor.php:293 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278 #: ../../include/functions_register.php:141 msgid "Europe" @@ -8470,7 +8612,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:200 #: ../../enterprise/godmode/setup/setup_auth.php:361 #: ../../godmode/setup/setup_general.php:88 -#: ../../include/functions_visual_map_editor.php:298 +#: ../../include/functions_visual_map_editor.php:294 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279 #: ../../include/functions_register.php:142 msgid "Indian" @@ -8479,7 +8621,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:201 #: ../../enterprise/godmode/setup/setup_auth.php:362 #: ../../godmode/setup/setup_general.php:89 -#: ../../include/functions_visual_map_editor.php:299 +#: ../../include/functions_visual_map_editor.php:295 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280 #: ../../include/functions_register.php:143 msgid "Pacific" @@ -8488,7 +8630,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:202 #: ../../enterprise/godmode/setup/setup_auth.php:363 #: ../../godmode/setup/setup_general.php:90 -#: ../../include/functions_visual_map_editor.php:300 +#: ../../include/functions_visual_map_editor.php:296 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281 #: ../../include/functions_register.php:144 msgid "UTC" @@ -8501,7 +8643,6 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:232 #: ../../enterprise/meta/include/functions_meta.php:161 -#: ../../godmode/setup/setup_general.php:434 #: ../../include/functions_register.php:164 #: ../../include/functions_config.php:283 msgid "Timezone setup" @@ -8541,9 +8682,9 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:306 #: ../../godmode/setup/setup_sflow.php:75 -#: ../../godmode/setup/setup_netflow.php:75 -#: ../../include/functions_config.php:1560 -#: ../../include/functions_config.php:1603 +#: ../../godmode/setup/setup_netflow.php:71 +#: ../../include/functions_config.php:1572 +#: ../../include/functions_config.php:1615 msgid "Disable custom live view filters" msgstr "" @@ -8602,7 +8743,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:437 #: ../../enterprise/meta/include/functions_meta.php:276 #: ../../enterprise/godmode/setup/setup.php:106 -#: ../../include/functions_config.php:442 +#: ../../include/functions_config.php:450 msgid "Size of collection" msgstr "" @@ -8658,16 +8799,19 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:598 #: ../../enterprise/meta/include/functions_meta.php:326 #: ../../godmode/setup/setup_general.php:698 -#: ../../include/functions_config.php:386 +#: ../../include/functions_config.php:390 msgid "Enable console report" msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:605 #: ../../enterprise/meta/include/functions_meta.php:346 +#: ../../godmode/setup/setup_general.php:708 +#: ../../include/functions_config.php:394 msgid "Check conexion interval" msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:616 +#: ../../godmode/setup/setup_general.php:719 msgid "" "If there are any "In process" events with a specific Extra ID and " "a New event with that Extra ID is received, it will be created as "In " @@ -8676,12 +8820,13 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:639 #: ../../enterprise/meta/include/functions_meta.php:336 +#: ../../godmode/setup/setup_general.php:724 msgid "Keep In process status for new events with extra ID" msgstr "" #: ../../enterprise/meta/advanced/policymanager.sync.php:247 #: ../../enterprise/meta/include/functions_groups_meta.php:174 -#: ../../godmode/groups/group_list.php:664 +#: ../../godmode/groups/group_list.php:665 #, php-format msgid "Error connecting to %s" msgstr "" @@ -8742,25 +8887,25 @@ msgstr "" #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 #: ../../enterprise/include/class/LogSource.class.php:602 -#: ../../enterprise/operation/log/log_viewer.php:793 +#: ../../enterprise/operation/log/log_viewer.php:791 #: ../../godmode/massive/massive_copy_modules.php:144 #: ../../godmode/reporting/reporting_builder.item_editor.php:1677 -#: ../../godmode/events/event_edit_filter.php:797 +#: ../../godmode/events/event_edit_filter.php:799 #: ../../godmode/events/custom_events.php:107 #: ../../include/functions_events.php:212 #: ../../include/functions_events.php:283 -#: ../../include/functions_events.php:4554 -#: ../../include/functions_events.php:4636 +#: ../../include/functions_events.php:4559 +#: ../../include/functions_events.php:4641 #: ../../operation/agentes/log_sources_status.php:56 #: ../../operation/agentes/pandora_networkmap.editor.php:425 #: ../../operation/agentes/pandora_networkmap.view.php:173 -#: ../../operation/events/events.php:1886 +#: ../../operation/events/events.php:1940 msgid "Source" msgstr "" #: ../../enterprise/meta/advanced/policymanager.sync.php:308 #: ../../extensions/dbmanager.php:191 -#: ../../include/lib/Dashboard/Widget.php:610 +#: ../../include/lib/Dashboard/Widget.php:611 msgid "This metaconsole" msgstr "" @@ -8770,26 +8915,27 @@ msgstr "" #: ../../enterprise/extensions/resource_exportation/functions.php:35 #: ../../enterprise/godmode/agentes/collection_manager.php:260 #: ../../enterprise/godmode/agentes/plugins_manager.php:213 -#: ../../enterprise/godmode/policies/policy_queue.php:286 -#: ../../enterprise/godmode/policies/policy_queue.php:685 +#: ../../enterprise/godmode/policies/policy_queue.php:288 +#: ../../enterprise/godmode/policies/policy_queue.php:687 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:114 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462 #: ../../enterprise/include/functions_policies.php:4043 #: ../../enterprise/operation/agentes/policy_view.php:67 #: ../../enterprise/operation/agentes/collection_view.php:83 -#: ../../godmode/agentes/status_monitor_custom_fields.php:73 -#: ../../godmode/agentes/status_monitor_custom_fields.php:140 +#: ../../godmode/agentes/status_monitor_custom_fields.php:93 +#: ../../godmode/agentes/status_monitor_custom_fields.php:160 #: ../../godmode/agentes/inventory_manager.php:232 #: ../../godmode/agentes/module_manager.php:619 #: ../../godmode/alerts/alert_view.php:154 -#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:999 -#: ../../operation/agentes/alerts_status.php:249 +#: ../../include/ajax/alert_list.ajax.php:285 +#: ../../include/ajax/module.php:1022 #: ../../operation/agentes/alerts_status.php:250 -#: ../../operation/agentes/status_monitor.php:1531 +#: ../../operation/agentes/alerts_status.php:251 +#: ../../operation/agentes/status_monitor.php:1533 msgid "Policy" msgstr "" @@ -8834,12 +8980,12 @@ msgstr "" #: ../../enterprise/operation/agentes/wux_console_view.php:342 #: ../../enterprise/operation/agentes/wux_console_view.php:363 #: ../../godmode/setup/performance.php:193 -#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:199 +#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:208 msgid "ago" msgstr "" #: ../../enterprise/meta/advanced/metasetup.performance.php:112 -#: ../../godmode/menu.php:363 ../../godmode/setup/setup.php:125 +#: ../../godmode/menu.php:361 ../../godmode/setup/setup.php:125 #: ../../godmode/setup/setup.php:279 msgid "Performance" msgstr "" @@ -8858,14 +9004,14 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.performance.php:139 #: ../../enterprise/meta/include/functions_meta.php:2030 #: ../../godmode/setup/performance.php:293 -#: ../../include/functions_config.php:842 +#: ../../include/functions_config.php:854 msgid "Max. days before delete audit events" msgstr "" #: ../../enterprise/meta/advanced/metasetup.performance.php:154 #: ../../enterprise/meta/include/functions_meta.php:2040 #: ../../godmode/setup/performance.php:637 -#: ../../include/functions_config.php:882 +#: ../../include/functions_config.php:894 msgid "Default hours for event view" msgstr "" @@ -8893,21 +9039,21 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.performance.php:211 #: ../../godmode/setup/performance.php:761 -#: ../../include/functions_config.php:944 +#: ../../include/functions_config.php:956 msgid "Row limit in csv log" msgstr "" #: ../../enterprise/meta/advanced/metasetup.performance.php:226 #: ../../enterprise/meta/include/functions_meta.php:2103 #: ../../godmode/setup/performance.php:425 -#: ../../include/functions_config.php:918 +#: ../../include/functions_config.php:930 msgid "Max. macro data fields" msgstr "" #: ../../enterprise/meta/advanced/metasetup.performance.php:241 #: ../../enterprise/meta/include/functions_meta.php:2113 #: ../../godmode/setup/performance.php:601 -#: ../../include/functions_config.php:874 +#: ../../include/functions_config.php:886 msgid "Limit of events per query" msgstr "" @@ -8915,7 +9061,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2123 #: ../../godmode/setup/performance.php:338 #: ../../godmode/setup/performance.php:470 -#: ../../include/functions_config.php:850 +#: ../../include/functions_config.php:862 msgid "Max. days before purge" msgstr "" @@ -8973,7 +9119,7 @@ msgid "To manage collections you must activate centralized management" msgstr "" #: ../../enterprise/meta/advanced/collections.php:227 -#: ../../godmode/users/user_list.php:488 ../../godmode/users/user_list.php:493 +#: ../../godmode/users/user_list.php:489 ../../godmode/users/user_list.php:494 msgid "Search by username, fullname or email" msgstr "" @@ -8988,7 +9134,7 @@ msgstr "" #: ../../enterprise/include/functions_groups.php:81 #: ../../enterprise/operation/agentes/ver_agente.php:210 #: ../../godmode/agentes/configurar_agente.php:716 -#: ../../operation/agentes/ver_agente.php:1856 +#: ../../operation/agentes/ver_agente.php:1852 msgid "Collection" msgstr "" @@ -9002,7 +9148,7 @@ msgstr "" #: ../../enterprise/meta/advanced/collections.php:442 #: ../../enterprise/godmode/agentes/collections.php:537 -#: ../../operation/agentes/status_monitor.php:2257 +#: ../../operation/agentes/status_monitor.php:2259 msgid "Are you sure to delete?" msgstr "" @@ -9056,12 +9202,12 @@ msgid "There are no collections defined yet." msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:58 -#: ../../enterprise/godmode/policies/policy_queue.php:96 +#: ../../enterprise/godmode/policies/policy_queue.php:98 msgid "Operation successfully deleted from the queue" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:59 -#: ../../enterprise/godmode/policies/policy_queue.php:97 +#: ../../enterprise/godmode/policies/policy_queue.php:99 msgid "Operation cannot be deleted from the queue" msgstr "" @@ -9069,42 +9215,42 @@ msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:259 #: ../../enterprise/meta/include/functions_autoprovision.php:698 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:501 -#: ../../enterprise/godmode/policies/policy_queue.php:311 -#: ../../enterprise/godmode/policies/policy_queue.php:687 +#: ../../enterprise/godmode/policies/policy_queue.php:313 +#: ../../enterprise/godmode/policies/policy_queue.php:689 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3815 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:176 #: ../../enterprise/include/functions_reporting_csv.php:1064 #: ../../enterprise/include/class/CommandCenter.class.php:453 #: ../../extensions/api_checker.php:279 ../../godmode/extensions.php:169 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4642 -#: ../../include/functions_reporting_html.php:2460 -#: ../../include/functions_reporting_html.php:4959 -#: ../../include/functions_menu.php:675 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4651 +#: ../../include/functions_reporting_html.php:2481 +#: ../../include/functions_reporting_html.php:4987 +#: ../../include/functions_menu.php:679 #: ../../include/class/ExternalTools.class.php:571 -#: ../../general/main_menu.php:78 ../../general/main_menu.php:85 +#: ../../general/main_menu.php:79 ../../general/main_menu.php:86 msgid "Operation" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/godmode/policies/policy_queue.php:305 +#: ../../enterprise/godmode/policies/policy_queue.php:307 msgid "Apply (database and files)" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:219 #: ../../enterprise/meta/advanced/policymanager.queue.php:315 -#: ../../enterprise/godmode/policies/policy_queue.php:306 -#: ../../enterprise/godmode/policies/policy_queue.php:758 +#: ../../enterprise/godmode/policies/policy_queue.php:308 +#: ../../enterprise/godmode/policies/policy_queue.php:762 msgid "Apply (only database)" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:229 -#: ../../enterprise/godmode/policies/policy_queue.php:330 +#: ../../enterprise/godmode/policies/policy_queue.php:332 msgid "Complete" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:230 -#: ../../enterprise/godmode/policies/policy_queue.php:331 +#: ../../enterprise/godmode/policies/policy_queue.php:333 msgid "Incomplete" msgstr "" @@ -9115,13 +9261,13 @@ msgstr "" #: ../../enterprise/godmode/agentes/collection_manager.php:94 #: ../../enterprise/godmode/agentes/collection_manager.php:95 #: ../../enterprise/godmode/agentes/collections.php:458 -#: ../../enterprise/godmode/policies/policy_modules.php:1494 -#: ../../enterprise/godmode/policies/policy_queue.php:356 +#: ../../enterprise/godmode/policies/policy_modules.php:1539 +#: ../../enterprise/godmode/policies/policy_queue.php:358 #: ../../enterprise/godmode/policies/policies.php:341 #: ../../enterprise/godmode/policies/policy_linking.php:152 #: ../../enterprise/godmode/policies/policy_external_alerts.php:393 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:274 #: ../../enterprise/godmode/setup/setup_acl.php:495 #: ../../enterprise/include/class/SAPView.class.php:409 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2928 @@ -9131,19 +9277,19 @@ msgstr "" #: ../../enterprise/operation/services/services.treeview_services.php:164 #: ../../enterprise/operation/services/services.treeview_services.php:187 #: ../../enterprise/operation/services/services.list.php:482 -#: ../../extensions/agents_modules.php:665 +#: ../../extensions/agents_modules.php:673 #: ../../extensions/module_groups.php:305 #: ../../godmode/modules/manage_network_templates_form.php:277 #: ../../godmode/modules/manage_network_templates_form.php:337 -#: ../../godmode/modules/manage_network_components.php:697 -#: ../../godmode/groups/group_list.php:799 -#: ../../godmode/users/user_list.php:521 ../../godmode/users/user_list.php:522 +#: ../../godmode/modules/manage_network_components.php:700 +#: ../../godmode/groups/group_list.php:800 +#: ../../godmode/users/user_list.php:522 ../../godmode/users/user_list.php:523 #: ../../godmode/agentes/modificar_agente.php:397 #: ../../godmode/agentes/modificar_agente.php:412 #: ../../godmode/agentes/modificar_agente.php:413 #: ../../godmode/agentes/planned_downtime.list.php:647 #: ../../godmode/netflow/nf_item_list.php:174 -#: ../../godmode/netflow/nf_edit_form.php:238 +#: ../../godmode/netflow/nf_edit_form.php:283 #: ../../godmode/snmpconsole/snmp_alert.php:1797 #: ../../godmode/snmpconsole/snmp_filters.php:216 #: ../../godmode/snmpconsole/snmp_filters.php:314 @@ -9151,32 +9297,33 @@ msgstr "" #: ../../godmode/reporting/map_builder.php:384 #: ../../godmode/reporting/graphs.php:283 #: ../../godmode/reporting/visual_console_favorite.php:204 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1120 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1122 #: ../../godmode/reporting/reporting_builder.php:766 -#: ../../godmode/tag/tag.php:247 ../../include/ajax/agent.php:652 -#: ../../include/functions_ui.php:3697 +#: ../../godmode/tag/tag.php:248 ../../include/ajax/agent.php:652 +#: ../../include/functions_ui.php:3745 #: ../../include/class/ModuleTemplates.class.php:713 -#: ../../operation/tree.php:339 ../../operation/agentes/estado_agente.php:444 +#: ../../operation/tree.php:341 ../../operation/agentes/estado_agente.php:444 #: ../../operation/agentes/graphs.php:270 #: ../../operation/agentes/interface_view.functions.php:134 -#: ../../operation/agentes/status_monitor.php:1034 -#: ../../operation/agentes/estado_monitores.php:626 +#: ../../operation/agentes/status_monitor.php:1036 +#: ../../operation/agentes/estado_monitores.php:620 +#: ../../operation/agentes/agent_inventory.php:165 #: ../../operation/network/network_report.php:205 #: ../../operation/network/network_usage_map.php:249 #: ../../operation/network/network_usage_map.php:250 -#: ../../operation/netflow/nf_live_view.php:273 -#: ../../operation/netflow/nf_live_view.php:605 -#: ../../operation/netflow/nf_live_view.php:606 +#: ../../operation/netflow/nf_live_view.php:282 +#: ../../operation/netflow/nf_live_view.php:678 +#: ../../operation/netflow/nf_live_view.php:679 #: ../../operation/incidents/list_integriaims_incidents.php:470 -#: ../../operation/inventory/inventory.php:704 +#: ../../operation/inventory/inventory.php:705 #: ../../operation/reporting/graph_viewer.php:399 msgid "Filter" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:246 #: ../../enterprise/meta/agentsearch.php:111 -#: ../../godmode/alerts/alert_templates.php:357 -#: ../../godmode/alerts/alert_templates.php:358 +#: ../../godmode/alerts/alert_templates.php:361 +#: ../../godmode/alerts/alert_templates.php:362 msgid "Show Options" msgstr "" @@ -9194,21 +9341,21 @@ msgstr "" #: ../../enterprise/include/class/CSVImportAgents.class.php:157 #: ../../enterprise/include/class/SAPView.class.php:226 #: ../../enterprise/include/functions_events.php:216 -#: ../../enterprise/operation/log/log_viewer.php:749 -#: ../../godmode/modules/manage_network_components.php:775 +#: ../../enterprise/operation/log/log_viewer.php:747 +#: ../../godmode/modules/manage_network_components.php:778 #: ../../godmode/agentes/agent_manager.php:551 #: ../../godmode/agentes/module_manager.php:623 -#: ../../godmode/massive/massive_edit_agents.php:757 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1215 +#: ../../godmode/massive/massive_edit_agents.php:774 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1217 #: ../../godmode/reporting/reporting_builder.item_editor.php:1238 #: ../../godmode/reporting/reporting_builder.item_editor.php:1260 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3695 -#: ../../godmode/events/event_edit_filter.php:930 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3704 +#: ../../godmode/events/event_edit_filter.php:932 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1065 -#: ../../include/functions_reporting_html.php:2350 +#: ../../include/functions_reporting_html.php:2371 #: ../../include/class/AgentWizard.class.php:1282 -#: ../../operation/inventory/inventory.php:490 -#: ../../operation/events/events.php:1953 +#: ../../operation/inventory/inventory.php:492 +#: ../../operation/events/events.php:2007 msgid "Server" msgstr "" @@ -9218,11 +9365,11 @@ msgstr "" #: ../../enterprise/meta/monitoring/group_view.php:212 #: ../../enterprise/meta/include/functions_autoprovision.php:497 #: ../../enterprise/godmode/agentes/collections.agents.php:62 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123 #: ../../enterprise/godmode/agentes/collections.data.php:155 #: ../../enterprise/godmode/agentes/collections.data.php:321 #: ../../enterprise/godmode/agentes/collections.editor.php:83 -#: ../../enterprise/godmode/policies/policy_queue.php:686 +#: ../../enterprise/godmode/policies/policy_queue.php:688 #: ../../enterprise/godmode/policies/policies.php:438 #: ../../enterprise/godmode/policies/policies.php:603 #: ../../enterprise/godmode/policies/policy_agents.php:719 @@ -9239,8 +9386,8 @@ msgstr "" #: ../../enterprise/operation/services/massive/services.create.php:985 #: ../../enterprise/operation/services/massive/service.create.elements.php:379 #: ../../enterprise/operation/services/services.service_map.php:148 -#: ../../extensions/agents_modules.php:470 -#: ../../extensions/agents_modules.php:841 +#: ../../extensions/agents_modules.php:478 +#: ../../extensions/agents_modules.php:865 #: ../../godmode/groups/tactical.php:213 #: ../../godmode/agentes/planned_downtime.list.php:84 #: ../../godmode/agentes/planned_downtime.list.php:109 @@ -9258,34 +9405,34 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:2126 #: ../../godmode/reporting/visual_console_builder.wizard.php:430 #: ../../mobile/include/functions_web.php:23 -#: ../../mobile/operation/agents.php:204 ../../mobile/operation/home.php:81 -#: ../../mobile/operation/agent.php:155 -#: ../../include/functions_reporting_html.php:2094 -#: ../../include/functions_reporting_html.php:2566 -#: ../../include/functions_reporting_html.php:3349 -#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1685 -#: ../../include/functions_html.php:5914 +#: ../../mobile/operation/agents.php:205 ../../mobile/operation/home.php:81 +#: ../../mobile/operation/agent.php:161 +#: ../../include/functions_reporting_html.php:2115 +#: ../../include/functions_reporting_html.php:2587 +#: ../../include/functions_reporting_html.php:3377 +#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1693 +#: ../../include/functions_html.php:5938 #: ../../include/functions_massive_operations.php:217 -#: ../../include/class/Diagnostics.class.php:1184 #: ../../include/class/Diagnostics.class.php:1188 #: ../../include/class/Diagnostics.class.php:1192 #: ../../include/class/Diagnostics.class.php:1196 -#: ../../include/class/NetworkMap.class.php:3439 +#: ../../include/class/Diagnostics.class.php:1200 +#: ../../include/class/NetworkMap.class.php:3445 #: ../../include/class/AgentsAlerts.class.php:252 #: ../../include/class/AgentsAlerts.class.php:567 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:340 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:345 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:432 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:347 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:352 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:445 #: ../../include/functions_groups.php:53 ../../operation/heatmap.php:98 #: ../../operation/search_results.php:81 #: ../../operation/agentes/interface_view.functions.php:78 #: ../../operation/agentes/group_view.php:184 -#: ../../operation/agentes/group_view.php:234 +#: ../../operation/agentes/group_view.php:237 msgid "Agents" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:260 -#: ../../enterprise/godmode/policies/policy_queue.php:688 +#: ../../enterprise/godmode/policies/policy_queue.php:690 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:712 #: ../../enterprise/include/class/Omnishell.class.php:408 #: ../../enterprise/include/functions_ipam.php:1425 @@ -9295,18 +9442,18 @@ msgid "Progress" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:298 -#: ../../enterprise/godmode/policies/policy_queue.php:728 +#: ../../enterprise/godmode/policies/policy_queue.php:730 msgid "Policy " msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:339 -#: ../../enterprise/godmode/policies/policy_queue.php:788 -#: ../../enterprise/godmode/policies/policy_queue.php:797 +#: ../../enterprise/godmode/policies/policy_queue.php:792 +#: ../../enterprise/godmode/policies/policy_queue.php:801 msgid "Policy applying timeout" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:353 -#: ../../enterprise/godmode/policies/policy_queue.php:816 +#: ../../enterprise/godmode/policies/policy_queue.php:820 msgid "Delete from queue" msgstr "" @@ -9384,17 +9531,17 @@ msgstr "" #: ../../enterprise/include/functions_services.php:1666 #: ../../enterprise/include/functions_events.php:80 #: ../../enterprise/operation/agentes/tag_view.php:693 -#: ../../enterprise/operation/log/log_viewer.php:770 +#: ../../enterprise/operation/log/log_viewer.php:768 #: ../../enterprise/tools/ipam/ipam_network.php:425 #: ../../enterprise/tools/ipam/ipam_ajax.php:382 #: ../../extensions/insert_data.php:194 #: ../../godmode/modules/manage_inventory_modules.php:317 -#: ../../godmode/agentes/status_monitor_custom_fields.php:77 -#: ../../godmode/agentes/status_monitor_custom_fields.php:141 +#: ../../godmode/agentes/status_monitor_custom_fields.php:97 +#: ../../godmode/agentes/status_monitor_custom_fields.php:161 #: ../../godmode/agentes/module_manager_editor_prediction.php:134 #: ../../godmode/agentes/planned_downtime.list.php:420 -#: ../../godmode/agentes/module_manager_editor_common.php:1475 -#: ../../godmode/agentes/module_manager_editor_common.php:1534 +#: ../../godmode/agentes/module_manager_editor_common.php:1485 +#: ../../godmode/agentes/module_manager_editor_common.php:1544 #: ../../godmode/gis_maps/configure_gis_map.php:592 #: ../../godmode/massive/massive_copy_modules.php:131 #: ../../godmode/massive/massive_copy_modules.php:295 @@ -9410,55 +9557,55 @@ msgstr "" #: ../../godmode/reporting/create_container.php:473 #: ../../godmode/reporting/create_container.php:657 #: ../../godmode/reporting/create_container.php:744 -#: ../../godmode/reporting/graph_builder.graph_editor.php:212 -#: ../../godmode/reporting/reporting_builder.item_editor.php:211 -#: ../../godmode/reporting/reporting_builder.item_editor.php:890 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1168 +#: ../../godmode/reporting/graph_builder.graph_editor.php:345 +#: ../../godmode/reporting/reporting_builder.item_editor.php:212 +#: ../../godmode/reporting/reporting_builder.item_editor.php:891 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1170 #: ../../godmode/reporting/reporting_builder.item_editor.php:1735 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4093 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4611 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4635 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4102 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4620 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4644 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.wizard.php:463 #: ../../godmode/reporting/visual_console_builder.wizard.php:789 #: ../../godmode/reporting/visual_console_builder.wizard.php:812 #: ../../godmode/servers/plugin.php:85 ../../mobile/operation/agents.php:93 -#: ../../mobile/operation/agents.php:403 ../../mobile/operation/modules.php:597 -#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335 -#: ../../mobile/operation/events.php:841 -#: ../../include/functions_visual_map_editor.php:422 -#: ../../include/functions_visual_map_editor.php:455 +#: ../../mobile/operation/agents.php:404 ../../mobile/operation/modules.php:608 +#: ../../mobile/operation/home.php:112 ../../mobile/operation/services.php:225 +#: ../../mobile/operation/events.php:870 +#: ../../include/functions_visual_map_editor.php:416 +#: ../../include/functions_visual_map_editor.php:449 #: ../../include/functions_reporting_html.php:548 #: ../../include/functions_reporting_html.php:947 #: ../../include/functions_reporting_html.php:1059 #: ../../include/functions_reporting_html.php:1067 -#: ../../include/functions_reporting_html.php:2016 -#: ../../include/functions_reporting_html.php:2353 -#: ../../include/functions_reporting_html.php:2458 -#: ../../include/functions_reporting_html.php:3312 -#: ../../include/functions_reporting_html.php:3447 -#: ../../include/functions_reporting_html.php:3741 -#: ../../include/functions_reporting_html.php:3822 -#: ../../include/functions_reporting_html.php:3830 -#: ../../include/functions_reporting_html.php:3839 -#: ../../include/functions_reporting_html.php:3851 -#: ../../include/functions_reporting_html.php:4011 -#: ../../include/functions_reporting_html.php:4135 -#: ../../include/functions_reporting_html.php:4229 -#: ../../include/functions_reporting_html.php:4956 -#: ../../include/functions_reporting_html.php:5004 -#: ../../include/functions_reporting_html.php:5043 -#: ../../include/functions_reporting_html.php:5371 -#: ../../include/functions_reporting_html.php:5411 -#: ../../include/functions_reporting_html.php:5661 -#: ../../include/ajax/heatmap.ajax.php:252 -#: ../../include/ajax/heatmap.ajax.php:291 -#: ../../include/ajax/heatmap.ajax.php:326 +#: ../../include/functions_reporting_html.php:2032 +#: ../../include/functions_reporting_html.php:2374 +#: ../../include/functions_reporting_html.php:2479 +#: ../../include/functions_reporting_html.php:3340 +#: ../../include/functions_reporting_html.php:3475 +#: ../../include/functions_reporting_html.php:3769 +#: ../../include/functions_reporting_html.php:3850 +#: ../../include/functions_reporting_html.php:3858 +#: ../../include/functions_reporting_html.php:3867 +#: ../../include/functions_reporting_html.php:3879 +#: ../../include/functions_reporting_html.php:4039 +#: ../../include/functions_reporting_html.php:4163 +#: ../../include/functions_reporting_html.php:4257 +#: ../../include/functions_reporting_html.php:4984 +#: ../../include/functions_reporting_html.php:5032 +#: ../../include/functions_reporting_html.php:5071 +#: ../../include/functions_reporting_html.php:5399 +#: ../../include/functions_reporting_html.php:5439 +#: ../../include/functions_reporting_html.php:5689 +#: ../../include/ajax/heatmap.ajax.php:294 +#: ../../include/ajax/heatmap.ajax.php:419 +#: ../../include/ajax/heatmap.ajax.php:454 #: ../../include/ajax/alert_list.ajax.php:459 -#: ../../include/functions_inventory.php:393 -#: ../../include/functions_inventory.php:1063 -#: ../../include/functions_inventory.php:1119 -#: ../../include/functions_graph.php:5062 ../../include/functions_gis.php:229 +#: ../../include/functions_inventory.php:402 +#: ../../include/functions_inventory.php:1173 +#: ../../include/functions_inventory.php:1229 +#: ../../include/functions_graph.php:5072 ../../include/functions_gis.php:229 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281 @@ -9467,22 +9614,24 @@ msgstr "" #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:414 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:240 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:575 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:217 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:214 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368 #: ../../include/functions_reports.php:1332 -#: ../../include/class/NetworkMap.class.php:2979 -#: ../../include/class/NetworkMap.class.php:3031 -#: ../../include/class/NetworkMap.class.php:3363 +#: ../../include/class/NetworkMap.class.php:2985 +#: ../../include/class/NetworkMap.class.php:3037 +#: ../../include/class/NetworkMap.class.php:3369 #: ../../include/class/AgentsAlerts.class.php:430 -#: ../../include/class/AgentsAlerts.class.php:981 -#: ../../include/functions_reporting.php:7332 +#: ../../include/class/AgentsAlerts.class.php:982 +#: ../../include/functions_reporting.php:7341 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:341 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:279 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:416 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:360 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:463 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:373 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:442 #: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250 #: ../../include/lib/Dashboard/Widgets/module_icon.php:359 #: ../../include/lib/Dashboard/Widgets/module_value.php:334 @@ -9493,20 +9642,20 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/module_status.php:350 #: ../../include/lib/Dashboard/Widgets/single_graph.php:301 #: ../../include/lib/Dashboard/Widgets/top_n.php:206 -#: ../../include/functions_snmp_browser.php:1809 +#: ../../include/functions_snmp_browser.php:1818 #: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48 #: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/estado_agente.php:1023 +#: ../../operation/agentes/estado_agente.php:1030 #: ../../operation/agentes/interface_view.functions.php:499 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1536 +#: ../../operation/agentes/status_monitor.php:1538 #: ../../operation/agentes/estado_monitores.php:123 #: ../../operation/agentes/ver_agente.php:1187 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269 #: ../../operation/search_alerts.php:34 -#: ../../operation/inventory/inventory.php:628 -#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2688 +#: ../../operation/inventory/inventory.php:630 +#: ../../operation/search_modules.php:36 ../../operation/events/events.php:2742 msgid "Agent" msgstr "" @@ -9529,14 +9678,13 @@ msgstr "" #: ../../extensions/users_connected.php:178 #: ../../godmode/reporting/reporting_builder.item_editor.php:70 #: ../../godmode/reporting/visual_console_builder.elements.php:847 -#: ../../include/functions_visual_map_editor.php:1455 -#: ../../include/functions_reporting_html.php:3329 -#: ../../include/functions_reporting_html.php:3662 -#: ../../include/ajax/heatmap.ajax.php:333 +#: ../../include/functions_visual_map_editor.php:1513 +#: ../../include/functions_reporting_html.php:3357 +#: ../../include/functions_reporting_html.php:3690 +#: ../../include/ajax/heatmap.ajax.php:461 #: ../../include/class/AuditLog.class.php:223 #: ../../operation/network/network_report.php:272 -#: ../../operation/inventory/inventory.php:1000 -#: ../../operation/inventory/inventory.php:1294 +#: ../../operation/inventory/inventory.php:1246 msgid "IP" msgstr "" @@ -9558,44 +9706,44 @@ msgstr "" #: ../../enterprise/operation/services/services.treeview_services.php:321 #: ../../enterprise/operation/services/services.list.php:205 #: ../../enterprise/operation/services/services.table_services.php:141 -#: ../../godmode/groups/group_list.php:1114 +#: ../../godmode/groups/group_list.php:1126 #: ../../godmode/agentes/module_manager_editor_common.php:476 -#: ../../godmode/agentes/module_manager_editor_common.php:559 -#: ../../godmode/netflow/nf_edit_form.php:245 +#: ../../godmode/agentes/module_manager_editor_common.php:564 +#: ../../godmode/netflow/nf_edit_form.php:290 #: ../../godmode/massive/massive_copy_modules.php:115 #: ../../godmode/massive/massive_copy_modules.php:275 #: ../../godmode/massive/massive_delete_modules.php:418 #: ../../godmode/massive/massive_delete_modules.php:439 #: ../../godmode/massive/massive_edit_modules.php:385 #: ../../godmode/massive/massive_edit_modules.php:471 -#: ../../godmode/setup/setup_visuals.php:1013 -#: ../../godmode/setup/setup_visuals.php:1035 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3830 +#: ../../godmode/setup/setup_visuals.php:1017 +#: ../../godmode/setup/setup_visuals.php:1039 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3839 #: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69 -#: ../../include/functions_reporting_html.php:2573 +#: ../../include/functions_reporting_html.php:2594 #: ../../include/functions.php:1087 ../../include/functions.php:1327 #: ../../include/functions.php:1334 ../../include/functions.php:1367 -#: ../../include/ajax/module.php:1933 ../../include/functions_graph.php:3329 -#: ../../include/functions_graph.php:3331 -#: ../../include/functions_graph.php:4842 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:432 +#: ../../include/ajax/module.php:1961 ../../include/functions_graph.php:3339 +#: ../../include/functions_graph.php:3341 +#: ../../include/functions_graph.php:4852 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:578 #: ../../include/functions_massive_operations.php:146 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:315 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:253 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:557 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:398 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:432 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:729 -#: ../../include/functions_events.php:3218 ../../operation/tree.php:208 -#: ../../operation/tree.php:298 ../../operation/tree.php:533 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:401 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:436 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:722 +#: ../../include/functions_events.php:3223 ../../operation/tree.php:208 +#: ../../operation/tree.php:299 ../../operation/tree.php:535 #: ../../operation/agentes/estado_agente.php:273 -#: ../../operation/agentes/status_monitor.php:564 -#: ../../operation/agentes/group_view.php:244 -#: ../../operation/agentes/group_view.php:249 -#: ../../operation/agentes/estado_monitores.php:518 +#: ../../operation/agentes/status_monitor.php:563 +#: ../../operation/agentes/group_view.php:247 +#: ../../operation/agentes/group_view.php:252 +#: ../../operation/agentes/estado_monitores.php:515 #: ../../operation/agentes/tactical.php:199 -#: ../../operation/netflow/nf_live_view.php:274 ../../general/logon_ok.php:150 +#: ../../operation/netflow/nf_live_view.php:283 ../../general/logon_ok.php:159 msgid "Normal" msgstr "" @@ -9632,25 +9780,25 @@ msgstr "" #: ../../enterprise/operation/services/services.table_services.php:143 #: ../../extensions/module_groups.php:50 #: ../../godmode/modules/manage_network_components_form_wizard.php:418 -#: ../../godmode/groups/group_list.php:1094 +#: ../../godmode/groups/group_list.php:1106 #: ../../godmode/massive/massive_copy_modules.php:117 #: ../../godmode/massive/massive_copy_modules.php:277 #: ../../godmode/massive/massive_delete_modules.php:420 #: ../../godmode/massive/massive_delete_modules.php:441 #: ../../godmode/massive/massive_edit_modules.php:387 #: ../../godmode/massive/massive_edit_modules.php:473 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3832 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3841 #: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71 #: ../../include/functions_reporting_html.php:867 -#: ../../include/functions_reporting_html.php:2574 -#: ../../include/functions_reporting_html.php:4871 +#: ../../include/functions_reporting_html.php:2595 +#: ../../include/functions_reporting_html.php:4899 #: ../../include/functions.php:1095 ../../include/functions.php:1331 #: ../../include/functions.php:1332 ../../include/functions.php:1334 -#: ../../include/functions.php:1375 ../../include/ajax/module.php:1938 -#: ../../include/functions_graph.php:3353 -#: ../../include/functions_graph.php:3355 -#: ../../include/functions_graph.php:4850 ../../include/functions_ui.php:2869 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:418 +#: ../../include/functions.php:1375 ../../include/ajax/module.php:1966 +#: ../../include/functions_graph.php:3363 +#: ../../include/functions_graph.php:3365 +#: ../../include/functions_graph.php:4860 ../../include/functions_ui.php:2912 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564 #: ../../include/functions_massive_operations.php:148 #: ../../include/class/AgentWizard.class.php:1404 #: ../../include/class/AgentWizard.class.php:4161 @@ -9659,18 +9807,18 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:567 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:400 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:434 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:709 -#: ../../include/functions_events.php:3226 ../../operation/tree.php:210 -#: ../../operation/tree.php:300 ../../operation/tree.php:513 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:403 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:438 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:702 +#: ../../include/functions_events.php:3231 ../../operation/tree.php:210 +#: ../../operation/tree.php:301 ../../operation/tree.php:515 #: ../../operation/agentes/estado_agente.php:275 -#: ../../operation/agentes/status_monitor.php:566 -#: ../../operation/agentes/group_view.php:246 -#: ../../operation/agentes/group_view.php:251 -#: ../../operation/agentes/estado_monitores.php:516 +#: ../../operation/agentes/status_monitor.php:565 +#: ../../operation/agentes/group_view.php:249 +#: ../../operation/agentes/group_view.php:254 +#: ../../operation/agentes/estado_monitores.php:513 #: ../../operation/agentes/tactical.php:197 -#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:148 +#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:157 msgid "Critical" msgstr "" @@ -9695,15 +9843,16 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:170 #: ../../enterprise/godmode/policies/policies.php:314 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:736 -#: ../../extensions/agents_modules.php:439 +#: ../../extensions/agents_modules.php:447 #: ../../godmode/agentes/modificar_agente.php:333 #: ../../godmode/agentes/planned_downtime.editor.php:1197 #: ../../godmode/reporting/reporting_builder.item_editor.php:1667 -#: ../../include/functions_html.php:1575 -#: ../../include/class/NetworkMap.class.php:3427 +#: ../../include/functions_html.php:1581 +#: ../../include/class/NetworkMap.class.php:3433 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:254 #: ../../operation/agentes/estado_agente.php:310 #: ../../operation/agentes/interface_view.functions.php:61 -#: ../../operation/agentes/status_monitor.php:845 +#: ../../operation/agentes/status_monitor.php:844 msgid "Recursion" msgstr "" @@ -9716,21 +9865,21 @@ msgstr "" #: ../../godmode/massive/massive_delete_modules.php:443 #: ../../godmode/massive/massive_edit_modules.php:389 #: ../../godmode/massive/massive_edit_modules.php:475 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3834 -#: ../../godmode/events/event_edit_filter.php:350 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3843 +#: ../../godmode/events/event_edit_filter.php:352 #: ../../mobile/operation/modules.php:73 ../../include/functions.php:1333 #: ../../include/functions_massive_operations.php:150 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:258 #: ../../include/lib/Dashboard/Widgets/events_list.php:319 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:264 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:582 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:403 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:437 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:734 -#: ../../include/functions_events.php:3174 ../../operation/tree.php:538 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:406 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:441 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:727 +#: ../../include/functions_events.php:3179 ../../operation/tree.php:540 #: ../../operation/agentes/estado_agente.php:277 -#: ../../operation/agentes/status_monitor.php:568 -#: ../../operation/events/events.php:1739 +#: ../../operation/agentes/status_monitor.php:567 +#: ../../operation/events/events.php:1793 msgid "Not normal" msgstr "" @@ -9741,30 +9890,30 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 #: ../../enterprise/operation/agentes/tag_view.php:136 #: ../../enterprise/operation/services/services.treeview_services.php:316 -#: ../../godmode/groups/group_list.php:1109 +#: ../../godmode/groups/group_list.php:1121 #: ../../godmode/massive/massive_copy_modules.php:120 #: ../../godmode/massive/massive_copy_modules.php:280 #: ../../godmode/massive/massive_delete_modules.php:423 #: ../../godmode/massive/massive_delete_modules.php:444 #: ../../godmode/massive/massive_edit_modules.php:390 #: ../../godmode/massive/massive_edit_modules.php:476 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3835 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3844 #: ../../mobile/operation/modules.php:75 #: ../../include/functions_reporting_html.php:660 -#: ../../include/functions_reporting_html.php:2577 -#: ../../include/functions_reporting_html.php:4678 -#: ../../include/ajax/module.php:1950 +#: ../../include/functions_reporting_html.php:2598 +#: ../../include/functions_reporting_html.php:4706 +#: ../../include/ajax/module.php:1978 #: ../../include/functions_massive_operations.php:151 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:257 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:402 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:436 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:724 -#: ../../operation/tree.php:212 ../../operation/tree.php:302 -#: ../../operation/tree.php:528 ../../operation/agentes/estado_agente.php:278 -#: ../../operation/agentes/status_monitor.php:570 -#: ../../operation/agentes/group_view.php:243 -#: ../../operation/agentes/group_view.php:248 -#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:152 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:405 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:440 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:717 +#: ../../operation/tree.php:212 ../../operation/tree.php:303 +#: ../../operation/tree.php:530 ../../operation/agentes/estado_agente.php:278 +#: ../../operation/agentes/status_monitor.php:569 +#: ../../operation/agentes/group_view.php:246 +#: ../../operation/agentes/group_view.php:251 +#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:161 msgid "Not init" msgstr "" @@ -9780,14 +9929,14 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:230 #: ../../enterprise/meta/monitoring/custom_fields_view.php:231 #: ../../enterprise/include/ajax/log_viewer.ajax.php:410 -#: ../../enterprise/operation/log/log_viewer.php:994 -#: ../../enterprise/operation/log/log_viewer.php:2026 -#: ../../enterprise/operation/log/log_viewer.php:2065 -#: ../../include/ajax/audit_log.php:292 ../../include/ajax/events.php:864 +#: ../../enterprise/operation/log/log_viewer.php:992 +#: ../../enterprise/operation/log/log_viewer.php:2024 +#: ../../enterprise/operation/log/log_viewer.php:2063 +#: ../../include/ajax/audit_log.php:293 ../../include/ajax/events.php:865 #: ../../include/class/AuditLog.class.php:167 -#: ../../include/class/AuditLog.class.php:445 -#: ../../include/class/AuditLog.class.php:485 -#: ../../operation/events/events.php:1871 +#: ../../include/class/AuditLog.class.php:457 +#: ../../include/class/AuditLog.class.php:497 +#: ../../operation/events/events.php:1925 msgid "Save filter" msgstr "" @@ -9796,21 +9945,20 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:245 #: ../../enterprise/include/ajax/log_viewer.ajax.php:709 #: ../../enterprise/include/ajax/log_viewer.ajax.php:727 -#: ../../enterprise/operation/log/log_viewer.php:979 -#: ../../enterprise/operation/log/log_viewer.php:2078 -#: ../../enterprise/operation/log/log_viewer.php:2115 +#: ../../enterprise/operation/log/log_viewer.php:977 +#: ../../enterprise/operation/log/log_viewer.php:2076 +#: ../../enterprise/operation/log/log_viewer.php:2113 #: ../../include/ajax/audit_log.php:150 ../../include/ajax/audit_log.php:168 -#: ../../include/ajax/module.php:2149 ../../include/ajax/module.php:2173 +#: ../../include/ajax/module.php:2178 ../../include/ajax/module.php:2202 #: ../../include/ajax/agent.php:494 ../../include/ajax/agent.php:518 -#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:583 -#: ../../include/ajax/events.php:608 ../../include/class/AuditLog.class.php:159 -#: ../../include/class/AuditLog.class.php:502 -#: ../../include/class/AuditLog.class.php:539 +#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:584 +#: ../../include/ajax/events.php:609 ../../include/class/AuditLog.class.php:159 +#: ../../include/class/AuditLog.class.php:514 +#: ../../include/class/AuditLog.class.php:551 #: ../../operation/agentes/estado_agente.php:455 -#: ../../operation/agentes/status_monitor.php:1045 -#: ../../operation/netflow/nf_live_view.php:277 -#: ../../operation/events/sound_events.php:184 -#: ../../operation/events/events.php:1862 +#: ../../operation/agentes/status_monitor.php:1047 +#: ../../operation/netflow/nf_live_view.php:286 +#: ../../operation/events/events.php:1916 msgid "Load filter" msgstr "" @@ -9824,8 +9972,8 @@ msgid "Custom Fields Data" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:295 -#: ../../godmode/events/event_edit_filter.php:780 -#: ../../operation/events/events.php:1969 +#: ../../godmode/events/event_edit_filter.php:782 +#: ../../operation/events/events.php:2023 msgid "Module search" msgstr "" @@ -9834,8 +9982,8 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1569 #: ../../enterprise/include/class/AgentRepository.class.php:873 #: ../../enterprise/include/class/Omnishell.class.php:1359 -#: ../../enterprise/include/class/LogSource.class.php:745 -#: ../../godmode/users/configure_user.php:1024 +#: ../../enterprise/include/class/LogSource.class.php:742 +#: ../../godmode/users/configure_user.php:1072 #: ../../include/class/ConfigPEN.class.php:252 ../../operation/heatmap.php:299 #: ../../operation/agentes/interface_view.functions.php:172 msgid "Show" @@ -9844,11 +9992,11 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:321 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:565 #: ../../enterprise/include/functions_ipam.php:339 -#: ../../enterprise/operation/log/log_viewer.php:968 +#: ../../enterprise/operation/log/log_viewer.php:966 #: ../../enterprise/operation/reporting/custom_reporting.php:100 #: ../../godmode/modules/manage_network_templates.php:290 #: ../../godmode/agentes/planned_downtime.list.php:1000 -#: ../../include/graphs/functions_flot.php:382 +#: ../../include/graphs/functions_flot.php:383 #: ../../include/class/ModuleTemplates.class.php:904 #: ../../operation/network/network_report.php:230 #: ../../operation/incidents/list_integriaims_incidents.php:480 @@ -9859,175 +10007,175 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:361 #: ../../enterprise/include/class/DatabaseHA.class.php:217 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1883 -#: ../../include/functions_ui.php:3741 +#: ../../include/functions_ui.php:3789 msgid "Processing" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:386 -#: ../../mobile/operation/groups.php:153 -#: ../../include/functions_reporting_html.php:5843 +#: ../../mobile/operation/groups.php:192 +#: ../../include/functions_reporting_html.php:5871 #: ../../include/functions_agents.php:3955 msgid "Agents critical" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:399 -#: ../../include/functions_reporting_html.php:5846 +#: ../../include/functions_reporting_html.php:5874 #: ../../include/functions_agents.php:3965 msgid "Agents warning" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:412 -#: ../../include/functions_reporting_html.php:5852 +#: ../../include/functions_reporting_html.php:5880 #: ../../include/functions_agents.php:3945 #: ../../include/functions_agents.php:3999 msgid "Agents ok" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:425 -#: ../../mobile/operation/groups.php:156 -#: ../../include/functions_reporting_html.php:5855 +#: ../../mobile/operation/groups.php:195 +#: ../../include/functions_reporting_html.php:5883 #: ../../include/functions_agents.php:3975 msgid "Agents unknown" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:438 -#: ../../mobile/operation/groups.php:150 -#: ../../include/functions_reporting_html.php:5861 +#: ../../mobile/operation/groups.php:189 +#: ../../include/functions_reporting_html.php:5889 #: ../../include/functions_agents.php:3989 msgid "Agents not init" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:464 -#: ../../include/functions_reporting.php:12227 -#: ../../include/functions_groups.php:2794 +#: ../../include/functions_reporting.php:12300 +#: ../../include/functions_groups.php:2819 msgid "Monitor critical" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:475 -#: ../../include/functions_reporting.php:12231 -#: ../../include/functions_groups.php:2798 +#: ../../include/functions_reporting.php:12304 +#: ../../include/functions_groups.php:2823 msgid "Monitor warning" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:486 -#: ../../include/functions_reporting.php:12238 -#: ../../include/functions_groups.php:2805 +#: ../../include/functions_reporting.php:12311 +#: ../../include/functions_groups.php:2830 msgid "Monitor normal" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:497 -#: ../../include/functions_reporting.php:12242 -#: ../../include/functions_groups.php:2809 +#: ../../include/functions_reporting.php:12315 +#: ../../include/functions_groups.php:2834 msgid "Monitor unknown" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:508 -#: ../../include/functions_reporting.php:12249 -#: ../../include/functions_groups.php:2816 +#: ../../include/functions_reporting.php:12322 +#: ../../include/functions_groups.php:2841 msgid "Monitor not init" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:523 -#: ../../include/functions_reporting_html.php:5870 -#: ../../include/functions_reporting_html.php:5875 +#: ../../include/functions_reporting_html.php:5898 +#: ../../include/functions_reporting_html.php:5903 msgid "Agents by status" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:531 -#: ../../include/functions_reporting.php:12269 -#: ../../include/functions_reporting.php:12275 -#: ../../include/functions_groups.php:2836 -#: ../../include/functions_groups.php:2842 +#: ../../include/functions_reporting.php:12342 +#: ../../include/functions_reporting.php:12348 +#: ../../include/functions_groups.php:2861 +#: ../../include/functions_groups.php:2867 msgid "Monitors by status" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:545 #: ../../enterprise/operation/services/services.treeview_services.php:299 -#: ../../godmode/groups/group_list.php:1092 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:707 -#: ../../operation/tree.php:511 +#: ../../godmode/groups/group_list.php:1104 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:700 +#: ../../operation/tree.php:513 msgid "Critical agents" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:555 #: ../../enterprise/operation/services/services.treeview_services.php:304 -#: ../../godmode/groups/group_list.php:1097 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:712 -#: ../../operation/tree.php:516 +#: ../../godmode/groups/group_list.php:1109 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:705 +#: ../../operation/tree.php:518 msgid "Warning agents" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:565 #: ../../enterprise/operation/services/services.treeview_services.php:319 -#: ../../godmode/groups/group_list.php:1112 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:727 -#: ../../operation/tree.php:531 +#: ../../godmode/groups/group_list.php:1124 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:720 +#: ../../operation/tree.php:533 msgid "Normal agents" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:575 #: ../../enterprise/operation/services/services.treeview_services.php:309 -#: ../../godmode/groups/group_list.php:1102 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:717 -#: ../../operation/tree.php:521 +#: ../../godmode/groups/group_list.php:1114 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:710 +#: ../../operation/tree.php:523 msgid "Unknown agents" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:585 #: ../../enterprise/operation/services/services.treeview_services.php:314 -#: ../../godmode/groups/group_list.php:1107 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:722 -#: ../../operation/tree.php:526 +#: ../../godmode/groups/group_list.php:1119 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:715 +#: ../../operation/tree.php:528 msgid "Not init agents" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:614 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:300 -#: ../../godmode/groups/group_list.php:1093 -#: ../../mobile/operation/groups.php:171 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:708 -#: ../../operation/tree.php:512 +#: ../../godmode/groups/group_list.php:1105 +#: ../../mobile/operation/groups.php:210 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:701 +#: ../../operation/tree.php:514 msgid "Critical modules" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:625 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:305 -#: ../../godmode/groups/group_list.php:1098 -#: ../../mobile/operation/groups.php:168 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:713 -#: ../../operation/tree.php:517 +#: ../../godmode/groups/group_list.php:1110 +#: ../../mobile/operation/groups.php:207 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:706 +#: ../../operation/tree.php:519 msgid "Warning modules" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:636 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:320 -#: ../../godmode/groups/group_list.php:1113 -#: ../../mobile/operation/groups.php:165 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:728 -#: ../../operation/tree.php:532 +#: ../../godmode/groups/group_list.php:1125 +#: ../../mobile/operation/groups.php:204 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:721 +#: ../../operation/tree.php:534 msgid "Normal modules" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:647 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:310 -#: ../../godmode/groups/group_list.php:1103 -#: ../../mobile/operation/groups.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:718 -#: ../../operation/tree.php:522 +#: ../../godmode/groups/group_list.php:1115 +#: ../../mobile/operation/groups.php:198 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:711 +#: ../../operation/tree.php:524 msgid "Unknown modules" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:658 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:315 -#: ../../godmode/groups/group_list.php:1108 -#: ../../mobile/operation/groups.php:162 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:723 -#: ../../operation/tree.php:527 +#: ../../godmode/groups/group_list.php:1120 +#: ../../mobile/operation/groups.php:201 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:716 +#: ../../operation/tree.php:529 msgid "Not init modules" msgstr "" @@ -10059,7 +10207,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:1167 #: ../../enterprise/meta/event/custom_events.php:245 #: ../../enterprise/include/functions_login.php:114 -#: ../../godmode/agentes/status_monitor_custom_fields.php:253 +#: ../../godmode/agentes/status_monitor_custom_fields.php:273 #: ../../godmode/events/custom_events.php:233 #: ../../include/class/TreeGroupEdition.class.php:164 msgid "Confirm" @@ -10068,9 +10216,9 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:74 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:227 #: ../../godmode/agentes/configurar_agente.php:835 -#: ../../godmode/agentes/modificar_agente.php:1025 -#: ../../include/class/SnmpConsole.class.php:781 -#: ../../operation/agentes/estado_agente.php:1317 +#: ../../godmode/agentes/modificar_agente.php:1036 +#: ../../include/class/SnmpConsole.class.php:783 +#: ../../operation/agentes/estado_agente.php:1326 #: ../../operation/snmpconsole/snmp_statistics.php:195 msgid "Create agent" msgstr "" @@ -10156,18 +10304,18 @@ msgstr "" #: ../../enterprise/include/functions_services.php:1779 #: ../../enterprise/include/functions_events.php:90 #: ../../enterprise/operation/agentes/policy_view.php:259 -#: ../../extensions/agents_modules.php:513 ../../extensions/insert_data.php:195 +#: ../../extensions/agents_modules.php:521 ../../extensions/insert_data.php:195 #: ../../godmode/agentes/module_manager_editor_prediction.php:135 #: ../../godmode/agentes/planned_downtime.list.php:425 #: ../../godmode/agentes/planned_downtime.editor.php:1445 -#: ../../godmode/agentes/module_manager_editor_common.php:1481 -#: ../../godmode/agentes/module_manager_editor_common.php:1535 +#: ../../godmode/agentes/module_manager_editor_common.php:1491 +#: ../../godmode/agentes/module_manager_editor_common.php:1545 #: ../../godmode/massive/massive_standby_alerts.php:224 #: ../../godmode/massive/massive_standby_alerts.php:259 #: ../../godmode/massive/massive_enable_disable_alerts.php:196 #: ../../godmode/massive/massive_enable_disable_alerts.php:231 -#: ../../godmode/massive/massive_edit_agents.php:682 -#: ../../godmode/massive/massive_edit_agents.php:1147 +#: ../../godmode/massive/massive_edit_agents.php:699 +#: ../../godmode/massive/massive_edit_agents.php:1164 #: ../../godmode/alerts/alert_list.list.php:566 #: ../../godmode/alerts/alert_list.list.php:817 #: ../../godmode/alerts/alert_view.php:97 @@ -10176,41 +10324,41 @@ msgstr "" #: ../../godmode/reporting/create_container.php:490 #: ../../godmode/reporting/create_container.php:662 #: ../../godmode/reporting/create_container.php:745 -#: ../../godmode/reporting/graph_builder.graph_editor.php:213 -#: ../../godmode/reporting/reporting_builder.item_editor.php:212 -#: ../../godmode/reporting/reporting_builder.item_editor.php:891 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1191 +#: ../../godmode/reporting/graph_builder.graph_editor.php:346 +#: ../../godmode/reporting/reporting_builder.item_editor.php:213 +#: ../../godmode/reporting/reporting_builder.item_editor.php:892 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1193 #: ../../godmode/reporting/reporting_builder.item_editor.php:1792 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4098 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4614 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4638 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4107 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4623 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4647 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.wizard.php:462 #: ../../godmode/reporting/visual_console_builder.wizard.php:821 -#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/alerts.php:338 -#: ../../include/functions_visual_map_editor.php:497 +#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/services.php:332 +#: ../../include/functions_visual_map_editor.php:491 #: ../../include/functions_reporting_html.php:549 #: ../../include/functions_reporting_html.php:948 -#: ../../include/functions_reporting_html.php:2017 -#: ../../include/functions_reporting_html.php:2354 -#: ../../include/functions_reporting_html.php:2459 -#: ../../include/functions_reporting_html.php:3448 -#: ../../include/functions_reporting_html.php:3823 -#: ../../include/functions_reporting_html.php:3831 -#: ../../include/functions_reporting_html.php:3840 -#: ../../include/functions_reporting_html.php:3852 -#: ../../include/functions_reporting_html.php:4012 -#: ../../include/functions_reporting_html.php:4141 -#: ../../include/functions_reporting_html.php:4235 -#: ../../include/functions_reporting_html.php:4957 -#: ../../include/functions_reporting_html.php:5005 +#: ../../include/functions_reporting_html.php:2033 +#: ../../include/functions_reporting_html.php:2375 +#: ../../include/functions_reporting_html.php:2480 +#: ../../include/functions_reporting_html.php:3476 +#: ../../include/functions_reporting_html.php:3851 +#: ../../include/functions_reporting_html.php:3859 +#: ../../include/functions_reporting_html.php:3868 +#: ../../include/functions_reporting_html.php:3880 +#: ../../include/functions_reporting_html.php:4040 +#: ../../include/functions_reporting_html.php:4169 +#: ../../include/functions_reporting_html.php:4263 +#: ../../include/functions_reporting_html.php:4985 +#: ../../include/functions_reporting_html.php:5033 #: ../../include/ajax/alert_list.ajax.php:292 #: ../../include/ajax/alert_list.ajax.php:317 #: ../../include/ajax/alert_list.ajax.php:480 -#: ../../include/functions_inventory.php:1064 -#: ../../include/functions_inventory.php:1120 -#: ../../include/functions_graph.php:5169 ../../include/functions_ui.php:7393 -#: ../../include/functions_ui.php:7411 +#: ../../include/functions_inventory.php:1174 +#: ../../include/functions_inventory.php:1230 +#: ../../include/functions_graph.php:5179 ../../include/functions_ui.php:7463 +#: ../../include/functions_ui.php:7488 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299 @@ -10219,17 +10367,19 @@ msgstr "" #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:432 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:257 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:594 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:235 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:232 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385 #: ../../include/functions_reports.php:1363 #: ../../include/class/AgentsAlerts.class.php:432 -#: ../../include/class/AgentsAlerts.class.php:910 -#: ../../include/functions_reporting.php:7333 +#: ../../include/class/AgentsAlerts.class.php:911 +#: ../../include/functions_reporting.php:7342 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:359 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:278 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:434 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:359 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:462 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:391 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:441 #: ../../include/lib/Dashboard/Widgets/module_icon.php:377 #: ../../include/lib/Dashboard/Widgets/module_value.php:352 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:254 @@ -10237,16 +10387,16 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:344 #: ../../include/lib/Dashboard/Widgets/module_status.php:368 #: ../../include/lib/Dashboard/Widgets/single_graph.php:319 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:736 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:729 #: ../../include/lib/Dashboard/Widgets/top_n.php:221 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 #: ../../operation/agentes/estado_monitores.php:125 -#: ../../operation/agentes/agent_inventory.php:116 +#: ../../operation/agentes/agent_inventory.php:118 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/search_alerts.php:35 -#: ../../operation/inventory/inventory.php:634 -#: ../../operation/search_modules.php:32 +#: ../../operation/inventory/inventory.php:636 +#: ../../operation/search_modules.php:35 msgid "Module" msgstr "" @@ -10262,18 +10412,18 @@ msgstr "" #: ../../godmode/alerts/alert_list.list.php:570 #: ../../godmode/alerts/alert_view.php:101 #: ../../godmode/alerts/alert_list.builder.php:151 -#: ../../godmode/reporting/reporting_builder.item_editor.php:216 -#: ../../godmode/reporting/reporting_builder.item_editor.php:896 -#: ../../mobile/operation/alerts.php:342 -#: ../../include/functions_reporting_html.php:3449 -#: ../../include/functions_reporting_html.php:3452 +#: ../../godmode/reporting/reporting_builder.item_editor.php:217 +#: ../../godmode/reporting/reporting_builder.item_editor.php:897 +#: ../../mobile/operation/alerts.php:349 +#: ../../include/functions_reporting_html.php:3477 +#: ../../include/functions_reporting_html.php:3480 #: ../../include/functions_cron.php:691 #: ../../include/ajax/alert_list.ajax.php:293 #: ../../include/ajax/alert_list.ajax.php:318 -#: ../../include/functions_treeview.php:399 -#: ../../include/functions_treeview.php:440 +#: ../../include/functions_treeview.php:403 +#: ../../include/functions_treeview.php:444 #: ../../include/class/AgentsAlerts.class.php:359 -#: ../../include/class/AgentsAlerts.class.php:983 +#: ../../include/class/AgentsAlerts.class.php:984 #: ../../operation/search_alerts.php:36 msgid "Template" msgstr "" @@ -10353,8 +10503,8 @@ msgstr "" #: ../../godmode/alerts/configure_alert_action.php:287 #: ../../godmode/alerts/alert_view.php:367 #: ../../godmode/alerts/alert_list.builder.php:169 -#: ../../include/functions_reporting_html.php:3710 -#: ../../include/functions_reporting_html.php:5493 +#: ../../include/functions_reporting_html.php:3738 +#: ../../include/functions_reporting_html.php:5521 #: ../../include/ajax/alert_list.ajax.php:540 #: ../../include/ajax/custom_fields.php:413 #: ../../include/class/AgentsAlerts.class.php:398 @@ -10375,8 +10525,8 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:40 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:117 -#: ../../godmode/agentes/module_manager.php:1027 -#: ../../operation/snmpconsole/snmp_browser.php:633 +#: ../../godmode/agentes/module_manager.php:1041 +#: ../../operation/snmpconsole/snmp_browser.php:692 msgid "Create module" msgstr "" @@ -10415,11 +10565,11 @@ msgstr "" #: ../../enterprise/godmode/policies/policy.php:158 #: ../../enterprise/godmode/setup/setup_acl.php:664 #: ../../enterprise/include/functions_reporting.php:60 -#: ../../enterprise/include/functions_reporting.php:8008 -#: ../../enterprise/include/functions_reporting.php:8034 -#: ../../godmode/reporting/visual_console_builder.php:830 -#: ../../include/functions_menu.php:589 -#: ../../operation/visual_console/view.php:202 +#: ../../enterprise/include/functions_reporting.php:8017 +#: ../../enterprise/include/functions_reporting.php:8043 +#: ../../godmode/reporting/visual_console_builder.php:838 +#: ../../include/functions_menu.php:593 +#: ../../operation/visual_console/view.php:204 #: ../../operation/visual_console/legacy_view.php:171 msgid "Wizard" msgstr "" @@ -10434,8 +10584,8 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:720 #: ../../enterprise/meta/agentsearch.php:52 #: ../../enterprise/meta/agentsearch.php:58 -#: ../../godmode/events/event_edit_filter.php:447 -#: ../../mobile/operation/home.php:168 ../../operation/events/events.php:1946 +#: ../../godmode/events/event_edit_filter.php:449 +#: ../../mobile/operation/home.php:188 ../../operation/events/events.php:2000 msgid "Agent search" msgstr "" @@ -10449,20 +10599,22 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:744 #: ../../godmode/snmpconsole/snmp_alert.php:1688 #: ../../godmode/alerts/configure_alert_action.php:432 -#: ../../mobile/operation/agents.php:209 ../../mobile/operation/modules.php:241 -#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:148 -#: ../../mobile/operation/alerts.php:199 +#: ../../mobile/operation/agents.php:210 ../../mobile/operation/modules.php:241 +#: ../../mobile/operation/groups.php:82 ../../mobile/operation/services.php:128 +#: ../../mobile/operation/agent.php:154 ../../mobile/operation/alerts.php:199 #: ../../mobile/operation/visualmap.php:256 #: ../../mobile/operation/visualmaps.php:189 -#: ../../mobile/operation/module_graph.php:364 -#: ../../mobile/operation/module_graph.php:377 -#: ../../mobile/operation/events.php:913 +#: ../../mobile/operation/module_data.php:130 +#: ../../mobile/operation/module_graph.php:365 +#: ../../mobile/operation/module_graph.php:378 +#: ../../mobile/operation/events.php:957 +#: ../../mobile/operation/server_status.php:232 #: ../../mobile/operation/tactical.php:102 msgid "Back" msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:326 -#: ../../godmode/agentes/module_manager.php:1146 +#: ../../godmode/agentes/module_manager.php:1162 msgid "Create Module" msgstr "" @@ -10539,14 +10691,14 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wizard.php:336 #: ../../godmode/massive/massive_delete_modules.php:323 #: ../../godmode/massive/massive_edit_modules.php:309 -#: ../../include/ajax/module.php:1000 +#: ../../include/ajax/module.php:1023 msgid "Module type" msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:146 #: ../../mobile/include/functions_web.php:24 -#: ../../include/functions_reporting_html.php:5412 -#: ../../include/functions_reporting_html.php:5566 +#: ../../include/functions_reporting_html.php:5440 +#: ../../include/functions_reporting_html.php:5594 msgid "Monitor" msgstr "" @@ -10561,7 +10713,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:763 #: ../../enterprise/operation/agentes/tag_view.php:174 #: ../../enterprise/operation/agentes/ver_agente.php:53 -#: ../../extensions/agents_modules.php:448 +#: ../../extensions/agents_modules.php:456 #: ../../godmode/modules/manage_network_components_form_common.php:111 #: ../../godmode/agentes/module_manager_editor_common.php:292 #: ../../godmode/massive/massive_edit_modules.php:904 @@ -10571,18 +10723,20 @@ msgstr "" #: ../../mobile/operation/modules.php:184 #: ../../mobile/operation/modules.php:293 #: ../../mobile/operation/modules.php:294 -#: ../../include/functions_reporting_html.php:1768 -#: ../../include/ajax/heatmap.ajax.php:193 -#: ../../include/ajax/heatmap.ajax.php:263 -#: ../../include/ajax/heatmap.ajax.php:302 -#: ../../include/functions_graph.php:5085 +#: ../../mobile/operation/server_status.php:174 +#: ../../mobile/operation/server_status.php:175 +#: ../../include/functions_reporting_html.php:1777 +#: ../../include/ajax/heatmap.ajax.php:222 +#: ../../include/ajax/heatmap.ajax.php:305 +#: ../../include/ajax/heatmap.ajax.php:430 +#: ../../include/functions_graph.php:5095 #: ../../include/functions_treeview.php:121 -#: ../../include/functions_html.php:1600 +#: ../../include/functions_html.php:1607 #: ../../include/lib/Dashboard/Widgets/heatmap.php:324 -#: ../../include/functions_events.php:4478 ../../operation/heatmap.php:103 +#: ../../include/functions_events.php:4483 ../../operation/heatmap.php:103 #: ../../operation/heatmap.php:105 -#: ../../operation/agentes/status_monitor.php:859 -#: ../../operation/agentes/estado_monitores.php:592 +#: ../../operation/agentes/status_monitor.php:858 +#: ../../operation/agentes/estado_monitores.php:590 #: ../../operation/agentes/ver_agente.php:1175 msgid "Module group" msgstr "" @@ -10602,14 +10756,14 @@ msgstr "" #: ../../enterprise/godmode/agentes/plugins_manager.php:130 #: ../../enterprise/godmode/policies/policy_plugins.php:126 #: ../../godmode/modules/manage_network_components_form_common.php:53 -#: ../../godmode/users/configure_user.php:1406 -#: ../../godmode/netflow/nf_edit_form.php:251 +#: ../../godmode/users/configure_user.php:1455 +#: ../../godmode/netflow/nf_edit_form.php:296 #: ../../godmode/alerts/alert_commands.php:159 #: ../../godmode/alerts/alert_commands.php:196 #: ../../godmode/alerts/configure_alert_template.php:966 #: ../../godmode/alerts/configure_alert_template.php:1011 #: ../../godmode/alerts/configure_alert_template.php:1169 -#: ../../operation/netflow/nf_live_view.php:563 +#: ../../operation/netflow/nf_live_view.php:636 msgid "Advanced" msgstr "" @@ -10620,7 +10774,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:380 #: ../../enterprise/meta/monitoring/wizard/wizard.php:150 -#: ../../godmode/reporting/graph_builder.graph_editor.php:423 +#: ../../godmode/reporting/graph_builder.graph_editor.php:438 msgid "Please, select a module" msgstr "" @@ -10630,7 +10784,7 @@ msgstr "" #: ../../enterprise/include/class/Omnishell.class.php:975 #: ../../enterprise/include/class/Omnishell.class.php:1056 #: ../../enterprise/include/class/DB2.app.php:862 -#: ../../enterprise/include/class/SAP.app.php:924 +#: ../../enterprise/include/class/SAP.app.php:925 #: ../../enterprise/include/class/Aws.cloud.php:1467 #: ../../enterprise/include/class/MySQL.app.php:938 #: ../../enterprise/include/class/Oracle.app.php:970 @@ -10638,8 +10792,8 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:336 #: ../../godmode/alerts/configure_alert_template.php:1216 #: ../../godmode/wizards/HostDevices.class.php:1617 -#: ../../include/class/CustomNetScan.class.php:758 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1244 +#: ../../include/class/CustomNetScan.class.php:757 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1245 msgid "Finish" msgstr "" @@ -10673,8 +10827,8 @@ msgstr "" #: ../../enterprise/godmode/agentes/collections.data.php:241 #: ../../enterprise/godmode/agentes/collections.data.php:272 #: ../../enterprise/godmode/agentes/collections.data.php:336 -#: ../../include/functions_events.php:3268 -#: ../../include/functions_events.php:3542 +#: ../../include/functions_events.php:3273 +#: ../../include/functions_events.php:3547 msgid "New" msgstr "" @@ -10693,18 +10847,18 @@ msgid "Please, select an agent" msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.php:154 -#: ../../enterprise/godmode/policies/policy_modules.php:1764 +#: ../../enterprise/godmode/policies/policy_modules.php:1809 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195 #: ../../enterprise/include/class/CommandCenter.class.php:465 -#: ../../enterprise/operation/log/log_viewer.php:1051 -#: ../../enterprise/operation/log/log_viewer.php:1073 +#: ../../enterprise/operation/log/log_viewer.php:1049 +#: ../../enterprise/operation/log/log_viewer.php:1071 #: ../../enterprise/operation/services/services.treeview_services.php:197 -#: ../../godmode/groups/group_list.php:744 +#: ../../godmode/groups/group_list.php:745 #: ../../godmode/massive/massive_copy_modules.php:235 #: ../../godmode/massive/massive_operations.php:384 #: ../../godmode/massive/massive_add_profiles.php:292 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:602 -#: ../../include/functions_events.php:4282 ../../operation/tree.php:374 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:595 +#: ../../include/functions_events.php:4287 ../../operation/tree.php:376 #: ../../operation/reporting/reporting_viewer.php:340 #: ../../operation/reporting/graph_viewer.php:430 #: ../../general/ui/agents_list.php:146 @@ -10713,10 +10867,10 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.php:156 #: ../../enterprise/meta/include/functions_wizard_meta.php:642 -#: ../../godmode/tag/edit_tag.php:212 -#: ../../include/class/TipsWindow.class.php:726 -#: ../../include/class/TipsWindow.class.php:893 -#: ../../include/functions_reporting.php:7470 +#: ../../godmode/tag/edit_tag.php:216 +#: ../../include/class/TipsWindow.class.php:746 +#: ../../include/class/TipsWindow.class.php:913 +#: ../../include/functions_reporting.php:7479 #: ../../include/lib/Dashboard/Widgets/url.php:216 msgid "Url" msgstr "" @@ -10740,15 +10894,15 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.php:161 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:473 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:476 -#: ../../godmode/agentes/module_manager_editor_common.php:673 -#: ../../godmode/agentes/module_manager_editor_common.php:675 +#: ../../godmode/agentes/module_manager_editor_common.php:678 +#: ../../godmode/agentes/module_manager_editor_common.php:680 #, php-format msgid "Agent interval x %s" msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.php:365 msgid "" -"This feature will be removed in version 771 and its\n" +"This feature will be removed in version 773 and its\n" " functions transferred to different metaconsole tools " "( bulk operations, agent alert editing, etc).\n" " The current functions of the wizard is minimal and we " @@ -10761,9 +10915,10 @@ msgstr "" #: ../../enterprise/meta/monitoring/group_view.php:64 #: ../../godmode/groups/group_list.php:324 +#: ../../godmode/users/configure_user.php:61 #: ../../godmode/users/user_management.php:40 #: ../../godmode/massive/massive_edit_users.php:276 -#: ../../operation/users/user_edit.php:471 +#: ../../include/auth/mysql.php:809 ../../operation/users/user_edit.php:471 #: ../../operation/agentes/group_view.php:89 ../../operation/menu.php:176 msgid "Group view" msgstr "" @@ -10810,9 +10965,9 @@ msgid "% Monitors Not init" msgstr "" #: ../../enterprise/meta/monitoring/group_view.php:203 -#: ../../godmode/agentes/modificar_agente.php:1016 -#: ../../operation/agentes/estado_agente.php:1309 -#: ../../operation/agentes/group_view.php:600 +#: ../../godmode/agentes/modificar_agente.php:1028 +#: ../../operation/agentes/estado_agente.php:1318 +#: ../../operation/agentes/group_view.php:603 msgid "There are no defined agents" msgstr "" @@ -10827,15 +10982,15 @@ msgstr "" #: ../../enterprise/meta/monitoring/group_view.php:232 #: ../../enterprise/operation/services/services.treeview_services.php:291 -#: ../../godmode/groups/group_list.php:1084 -#: ../../include/functions_reporting_html.php:2562 -#: ../../include/functions_reporting_html.php:2572 -#: ../../include/functions_inventory.php:511 -#: ../../include/functions_inventory.php:654 -#: ../../include/functions_alerts.php:3386 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:699 -#: ../../operation/tree.php:503 ../../operation/agentes/group_view.php:241 -#: ../../operation/agentes/agent_inventory.php:266 +#: ../../godmode/groups/group_list.php:1096 +#: ../../include/functions_reporting_html.php:2583 +#: ../../include/functions_reporting_html.php:2593 +#: ../../include/functions_inventory.php:520 +#: ../../include/functions_inventory.php:663 +#: ../../include/functions_alerts.php:3387 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:692 +#: ../../operation/tree.php:505 ../../operation/agentes/group_view.php:244 +#: ../../operation/agentes/agent_inventory.php:321 msgid "Total" msgstr "" @@ -10845,18 +11000,18 @@ msgstr "" #: ../../godmode/alerts/alert_view.php:111 #: ../../mobile/operation/alerts.php:324 ../../include/functions.php:1284 #: ../../include/functions_agents.php:2998 -#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1417 -#: ../../include/class/AgentsAlerts.class.php:956 -#: ../../include/class/SnmpConsole.class.php:841 -#: ../../include/functions_reporting.php:13143 -#: ../../include/functions_events.php:2942 -#: ../../include/functions_events.php:3142 -#: ../../operation/agentes/group_view.php:252 +#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1460 +#: ../../include/class/AgentsAlerts.class.php:957 +#: ../../include/class/SnmpConsole.class.php:843 +#: ../../include/functions_reporting.php:13216 +#: ../../include/functions_events.php:2947 +#: ../../include/functions_events.php:3147 +#: ../../operation/agentes/group_view.php:255 msgid "Alert fired" msgstr "" #: ../../enterprise/meta/monitoring/group_view.php:367 -#: ../../operation/agentes/group_view.php:343 +#: ../../operation/agentes/group_view.php:346 #, php-format msgid "" "This %s installation are using the secondary groups feature. For this " @@ -10866,9 +11021,11 @@ msgstr "" #: ../../enterprise/meta/monitoring/tactical.php:46 #: ../../enterprise/meta/general/main_header.php:103 #: ../../enterprise/meta/general/main_menu.php:205 +#: ../../godmode/users/configure_user.php:62 #: ../../godmode/users/user_management.php:41 #: ../../godmode/massive/massive_edit_users.php:277 #: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97 +#: ../../include/auth/mysql.php:810 #: ../../include/lib/Dashboard/Widgets/tactical.php:176 #: ../../include/lib/Dashboard/Widgets/tactical.php:533 #: ../../operation/users/user_edit.php:472 @@ -10892,14 +11049,14 @@ msgstr "" #: ../../enterprise/meta/general/main_menu.php:271 #: ../../enterprise/include/class/CommandCenter.class.php:1087 #: ../../enterprise/tools/ipam/ipam_network.php:427 -#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:246 +#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:245 #: ../../godmode/events/events.php:142 #: ../../mobile/include/functions_web.php:25 ../../mobile/operation/home.php:51 -#: ../../mobile/operation/events.php:908 ../../include/functions.php:4167 -#: ../../include/ajax/events.php:2219 ../../include/functions_reports.php:876 +#: ../../mobile/operation/events.php:952 ../../include/functions.php:4193 +#: ../../include/ajax/events.php:2220 ../../include/functions_reports.php:876 #: ../../include/functions_reports.php:880 #: ../../include/functions_reports.php:884 ../../operation/menu.php:518 -#: ../../operation/events/events.php:1613 +#: ../../operation/events/events.php:1667 msgid "Events" msgstr "" @@ -10923,14 +11080,14 @@ msgstr "" #: ../../enterprise/meta/event/custom_events.php:42 #: ../../godmode/netflow/nf_edit.php:211 -#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../godmode/netflow/nf_edit_form.php:80 #: ../../godmode/snmpconsole/snmp_filters.php:37 #: ../../godmode/events/event_filter.php:230 #: ../../include/ajax/custom_fields.php:654 msgid "Create filter" msgstr "" -#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:241 +#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:240 #: ../../godmode/events/events.php:83 msgid "Event responses" msgstr "" @@ -10940,24 +11097,23 @@ msgstr "" #: ../../enterprise/meta/event/custom_events.php:72 #: ../../enterprise/meta/event/custom_events.php:90 #: ../../godmode/agentes/fields_manager.php:59 -#: ../../godmode/agentes/agent_manager.php:1034 ../../godmode/menu.php:103 -#: ../../godmode/massive/massive_edit_agents.php:1251 +#: ../../godmode/agentes/agent_manager.php:1040 ../../godmode/menu.php:103 +#: ../../godmode/massive/massive_edit_agents.php:1267 #: ../../godmode/reporting/reporting_builder.item_editor.php:76 -#: ../../include/functions_reporting_html.php:1620 -#: ../../include/functions_events.php:4440 +#: ../../include/functions_reporting_html.php:1629 +#: ../../include/functions_events.php:4445 #: ../../operation/agentes/status_monitor.php:64 #: ../../operation/agentes/status_monitor.php:87 -#: ../../operation/agentes/status_monitor.php:293 -#: ../../operation/agentes/status_monitor.php:316 -#: ../../operation/agentes/ver_agente.php:1565 -#: ../../operation/agentes/ver_agente.php:1823 -#: ../../operation/inventory/inventory.php:1009 -#: ../../operation/inventory/inventory.php:1303 +#: ../../operation/agentes/status_monitor.php:292 +#: ../../operation/agentes/status_monitor.php:315 +#: ../../operation/agentes/ver_agente.php:1561 +#: ../../operation/agentes/ver_agente.php:1819 +#: ../../operation/inventory/inventory.php:1255 msgid "Custom fields" msgstr "" #: ../../enterprise/meta/event/custom_events.php:77 -#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1790 +#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1791 msgid "Responses" msgstr "" @@ -10972,25 +11128,25 @@ msgid "Fields" msgstr "" #: ../../enterprise/meta/event/custom_events.php:173 -#: ../../godmode/agentes/status_monitor_custom_fields.php:168 +#: ../../godmode/agentes/status_monitor_custom_fields.php:188 #: ../../godmode/events/custom_events.php:127 msgid "Fields available" msgstr "" #: ../../enterprise/meta/event/custom_events.php:175 -#: ../../godmode/agentes/status_monitor_custom_fields.php:190 +#: ../../godmode/agentes/status_monitor_custom_fields.php:210 #: ../../godmode/events/custom_events.php:150 msgid "Fields selected" msgstr "" #: ../../enterprise/meta/event/custom_events.php:185 -#: ../../godmode/agentes/status_monitor_custom_fields.php:175 +#: ../../godmode/agentes/status_monitor_custom_fields.php:195 #: ../../godmode/events/custom_events.php:134 msgid "Add fields to select" msgstr "" #: ../../enterprise/meta/event/custom_events.php:195 -#: ../../godmode/agentes/status_monitor_custom_fields.php:184 +#: ../../godmode/agentes/status_monitor_custom_fields.php:204 #: ../../godmode/events/custom_events.php:144 msgid "Delete fields to select" msgstr "" @@ -11001,7 +11157,7 @@ msgid "Show event fields" msgstr "" #: ../../enterprise/meta/event/custom_events.php:244 -#: ../../godmode/agentes/status_monitor_custom_fields.php:252 +#: ../../godmode/agentes/status_monitor_custom_fields.php:272 #: ../../godmode/events/custom_events.php:232 msgid "" "There must be at least one custom field. Timestamp will be set by default" @@ -11045,9 +11201,9 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3007 #: ../../enterprise/include/functions_ipam.php:1665 #: ../../godmode/reporting/reporting_builder.list_items.php:442 -#: ../../godmode/reporting/reporting_builder.list_items.php:738 -#: ../../godmode/reporting/graph_builder.graph_editor.php:217 -#: ../../godmode/reporting/graph_builder.graph_editor.php:354 +#: ../../godmode/reporting/reporting_builder.list_items.php:739 +#: ../../godmode/reporting/graph_builder.graph_editor.php:267 +#: ../../godmode/reporting/graph_builder.graph_editor.php:350 msgid "Sort" msgstr "" @@ -11134,7 +11290,7 @@ msgstr "" #: ../../godmode/users/profile_list.php:61 #: ../../godmode/users/configure_profile.php:54 #: ../../godmode/users/user_list.php:251 ../../godmode/users/user_list.php:276 -#: ../../godmode/users/configure_user.php:245 +#: ../../godmode/users/configure_user.php:183 #: ../../operation/users/user_edit_header.php:89 msgid "User management" msgstr "" @@ -11144,7 +11300,7 @@ msgstr "" #: ../../godmode/users/profile_list.php:72 #: ../../godmode/users/configure_profile.php:65 #: ../../godmode/users/user_list.php:262 -#: ../../godmode/users/configure_user.php:256 ../../godmode/menu.php:159 +#: ../../godmode/users/configure_user.php:194 ../../godmode/menu.php:159 msgid "Profile management" msgstr "" @@ -11179,11 +11335,10 @@ msgstr "" #: ../../godmode/groups/tactical.php:179 #: ../../godmode/agentes/agent_manager.php:373 #: ../../godmode/reporting/reporting_builder.item_editor.php:69 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3993 -#: ../../include/functions_reporting_html.php:1592 -#: ../../include/functions_reporting_html.php:1756 -#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:999 -#: ../../operation/inventory/inventory.php:1293 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4002 +#: ../../include/functions_reporting_html.php:1601 +#: ../../include/functions_reporting_html.php:1765 +#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:1245 msgid "Alias" msgstr "" @@ -11195,11 +11350,11 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../godmode/agentes/agent_manager.php:401 #: ../../godmode/servers/modificar_server.php:95 -#: ../../include/functions_reporting_html.php:1596 -#: ../../include/functions_reporting_html.php:4139 -#: ../../include/functions_reporting_html.php:4233 -#: ../../include/functions_treeview.php:643 -#: ../../include/functions_events.php:4372 +#: ../../include/functions_reporting_html.php:1605 +#: ../../include/functions_reporting_html.php:4167 +#: ../../include/functions_reporting_html.php:4261 +#: ../../include/functions_treeview.php:647 +#: ../../include/functions_events.php:4377 #: ../../operation/gis_maps/ajax.php:290 msgid "IP Address" msgstr "" @@ -11207,7 +11362,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:236 #: ../../enterprise/meta/include/functions_wizard_meta.php:682 #: ../../enterprise/godmode/modules/configure_local_component.php:515 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:206 #: ../../enterprise/godmode/setup/setup_log_collector.php:89 #: ../../enterprise/include/functions_metaconsole.php:1339 #: ../../enterprise/include/functions_metaconsole.php:1372 @@ -11216,7 +11371,7 @@ msgstr "" #: ../../enterprise/include/functions_metaconsole.php:1471 #: ../../enterprise/include/functions_metaconsole.php:1502 #: ../../enterprise/include/functions_metaconsole.php:1535 -#: ../../godmode/agentes/module_manager_editor_web.php:179 +#: ../../godmode/agentes/module_manager_editor_web.php:182 msgid "Check" msgstr "" @@ -11230,9 +11385,9 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:246 #: ../../godmode/alerts/configure_alert_template.php:250 #: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:268 -#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1740 +#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1741 #: ../../include/functions_reports.php:783 -#: ../../include/functions_reporting.php:10176 +#: ../../include/functions_reporting.php:10185 msgid "General" msgstr "" @@ -11258,7 +11413,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:492 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753 #: ../../godmode/agentes/module_manager_editor_wmi.php:57 -#: ../../godmode/agentes/module_manager_editor_network.php:103 +#: ../../godmode/agentes/module_manager_editor_network.php:104 #: ../../godmode/massive/massive_edit_modules.php:832 msgid "Auto" msgstr "" @@ -11266,7 +11421,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:493 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 #: ../../godmode/agentes/module_manager_editor_wmi.php:58 -#: ../../godmode/agentes/module_manager_editor_network.php:104 +#: ../../godmode/agentes/module_manager_editor_network.php:105 #: ../../godmode/massive/massive_edit_modules.php:833 msgid "Force primary key" msgstr "" @@ -11281,8 +11436,8 @@ msgstr "" #: ../../enterprise/meta/general/login_page.php:267 #: ../../enterprise/extensions/disabled/check_acls.php:47 #: ../../enterprise/extensions/disabled/check_acls.php:132 -#: ../../enterprise/godmode/setup/setup_auth.php:1130 -#: ../../enterprise/godmode/setup/setup_auth.php:1162 +#: ../../enterprise/godmode/setup/setup_auth.php:1347 +#: ../../enterprise/godmode/setup/setup_auth.php:1379 #: ../../enterprise/godmode/servers/manage_export_form.php:155 #: ../../enterprise/include/functions_tasklist.php:172 #: ../../enterprise/include/class/DB2.app.php:509 @@ -11294,25 +11449,24 @@ msgstr "" #: ../../godmode/update_manager/update_manager.history.php:43 #: ../../godmode/setup/setup_ehorus.php:97 #: ../../godmode/setup/setup_integria.php:292 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3525 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3534 #: ../../godmode/events/custom_events.php:97 -#: ../../mobile/include/user.class.php:392 -#: ../../mobile/operation/tactical.php:349 -#: ../../include/functions_reporting_html.php:6011 +#: ../../mobile/operation/tactical.php:350 +#: ../../include/functions_reporting_html.php:6045 #: ../../include/functions.php:3109 ../../include/functions_cron.php:498 -#: ../../include/functions_config.php:731 -#: ../../include/functions_config.php:751 +#: ../../include/functions_config.php:743 +#: ../../include/functions_config.php:763 #: ../../include/class/CredentialStore.class.php:817 -#: ../../include/class/CredentialStore.class.php:1300 +#: ../../include/class/CredentialStore.class.php:1301 #: ../../include/class/AuditLog.class.php:110 #: ../../include/class/AuditLog.class.php:240 #: ../../include/functions_events.php:202 #: ../../include/functions_events.php:253 ../../operation/search_users.php:71 -#: ../../operation/users/user_edit.php:857 -#: ../../operation/users/user_edit.php:910 +#: ../../operation/users/user_edit.php:854 +#: ../../operation/users/user_edit.php:907 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:134 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:265 -#: ../../general/logon_ok.php:255 ../../general/login_page.php:276 +#: ../../general/logon_ok.php:300 ../../general/login_page.php:276 #: ../../general/login_page.php:335 msgid "User" msgstr "" @@ -11326,8 +11480,8 @@ msgstr "" #: ../../enterprise/meta/general/login_page.php:284 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851 #: ../../enterprise/godmode/setup/setup_module_library.php:57 -#: ../../enterprise/godmode/setup/setup_auth.php:1136 -#: ../../enterprise/godmode/setup/setup_auth.php:1168 +#: ../../enterprise/godmode/setup/setup_auth.php:1353 +#: ../../enterprise/godmode/setup/setup_auth.php:1385 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250 #: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 #: ../../enterprise/godmode/servers/manage_export_form.php:161 @@ -11343,23 +11497,22 @@ msgstr "" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:532 #: ../../extensions/api_checker.php:260 #: ../../godmode/modules/manage_network_components_form_wmi.php:49 -#: ../../godmode/users/configure_user.php:1126 +#: ../../godmode/users/configure_user.php:1190 #: ../../godmode/users/user_management.php:280 #: ../../godmode/agentes/module_manager_editor_wmi.php:148 #: ../../godmode/massive/massive_edit_modules.php:923 #: ../../godmode/setup/setup_ehorus.php:104 #: ../../godmode/setup/setup_integria.php:306 -#: ../../mobile/include/user.class.php:399 ../../include/functions_ui.php:7484 -#: ../../include/functions_config.php:735 -#: ../../include/functions_config.php:755 +#: ../../include/functions_ui.php:7561 ../../include/functions_config.php:747 +#: ../../include/functions_config.php:767 #: ../../include/class/CredentialStore.class.php:974 #: ../../include/class/CredentialStore.class.php:1024 -#: ../../include/class/CredentialStore.class.php:1301 -#: ../../include/class/CredentialStore.class.php:1324 -#: ../../include/class/CredentialStore.class.php:1346 +#: ../../include/class/CredentialStore.class.php:1302 +#: ../../include/class/CredentialStore.class.php:1328 +#: ../../include/class/CredentialStore.class.php:1352 #: ../../include/class/AgentWizard.class.php:690 -#: ../../operation/users/user_edit.php:863 -#: ../../operation/users/user_edit.php:916 ../../general/login_page.php:290 +#: ../../operation/users/user_edit.php:860 +#: ../../operation/users/user_edit.php:913 ../../general/login_page.php:290 #: ../../general/login_page.php:351 msgid "Password" msgstr "" @@ -11373,14 +11526,14 @@ msgid "Response" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:593 -#: ../../godmode/agentes/module_manager_editor_web.php:213 +#: ../../godmode/agentes/module_manager_editor_web.php:216 msgid "Check type" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:610 #: ../../enterprise/meta/include/functions_wizard_meta.php:667 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066 -#: ../../enterprise/include/functions_enterprise.php:447 +#: ../../enterprise/include/functions_enterprise.php:457 #: ../../godmode/agentes/module_manager_editor_web.php:92 #: ../../godmode/massive/massive_edit_modules.php:1156 msgid "Web checks" @@ -11400,47 +11553,47 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:674 #: ../../enterprise/godmode/modules/configure_local_component.php:506 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:217 -#: ../../godmode/agentes/module_manager_editor_web.php:168 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:218 +#: ../../godmode/agentes/module_manager_editor_web.php:171 msgid "Load basic" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:680 -#: ../../godmode/agentes/module_manager_editor_web.php:177 +#: ../../godmode/agentes/module_manager_editor_web.php:180 msgid "Load a basic structure on Web Checks" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:688 -#: ../../godmode/agentes/module_manager_editor_web.php:188 +#: ../../godmode/agentes/module_manager_editor_web.php:191 msgid "Check the correct structure of the WebCheck" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:695 -#: ../../godmode/agentes/module_manager_editor_web.php:267 +#: ../../godmode/agentes/module_manager_editor_web.php:270 msgid "First line must be \"task_begin\"" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:696 -#: ../../godmode/agentes/module_manager_editor_web.php:268 +#: ../../godmode/agentes/module_manager_editor_web.php:271 msgid "Webchecks configuration is empty" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:697 #: ../../enterprise/meta/include/functions_wizard_meta.php:698 -#: ../../godmode/agentes/module_manager_editor_web.php:269 -#: ../../godmode/agentes/module_manager_editor_web.php:270 +#: ../../godmode/agentes/module_manager_editor_web.php:272 +#: ../../godmode/agentes/module_manager_editor_web.php:273 msgid "Last line must be \"task_end\"" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:699 #: ../../enterprise/godmode/modules/configure_local_component.php:525 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256 -#: ../../godmode/agentes/module_manager_editor_web.php:271 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257 +#: ../../godmode/agentes/module_manager_editor_web.php:274 msgid "There is a line with a unknown token 'token_fail'." msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:700 -#: ../../godmode/agentes/module_manager_editor_web.php:273 +#: ../../godmode/agentes/module_manager_editor_web.php:276 msgid "Web checks are built correctly" msgstr "" @@ -11473,43 +11626,42 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:784 #: ../../enterprise/tools/ipam/ipam_list.php:724 #: ../../godmode/modules/manage_network_components_form_common.php:143 -#: ../../godmode/agentes/status_monitor_custom_fields.php:93 -#: ../../godmode/agentes/status_monitor_custom_fields.php:145 +#: ../../godmode/agentes/status_monitor_custom_fields.php:113 +#: ../../godmode/agentes/status_monitor_custom_fields.php:165 #: ../../godmode/agentes/inventory_manager.php:236 #: ../../godmode/agentes/agent_manager.php:503 -#: ../../godmode/agentes/module_manager_editor_common.php:1067 +#: ../../godmode/agentes/module_manager_editor_common.php:1077 #: ../../godmode/agentes/module_manager.php:637 -#: ../../godmode/massive/massive_edit_agents.php:714 +#: ../../godmode/massive/massive_edit_agents.php:731 #: ../../godmode/massive/massive_edit_modules.php:769 -#: ../../godmode/setup/setup_visuals.php:1919 -#: ../../godmode/setup/setup_visuals.php:2001 +#: ../../godmode/setup/setup_visuals.php:1934 +#: ../../godmode/setup/setup_visuals.php:2016 #: ../../godmode/wizards/HostDevices.class.php:799 #: ../../godmode/wizards/DiscoveryTaskList.class.php:599 -#: ../../mobile/operation/modules.php:657 -#: ../../mobile/operation/modules.php:659 -#: ../../mobile/operation/modules.php:851 -#: ../../include/functions_reporting_html.php:3712 -#: ../../include/ajax/events.php:2372 ../../include/functions_treeview.php:83 -#: ../../include/functions_treeview.php:649 ../../include/functions_ui.php:7417 +#: ../../mobile/operation/modules.php:668 +#: ../../mobile/operation/modules.php:670 +#: ../../mobile/operation/modules.php:910 +#: ../../include/functions_reporting_html.php:3740 +#: ../../include/ajax/events.php:2373 ../../include/functions_treeview.php:83 +#: ../../include/functions_treeview.php:653 ../../include/functions_ui.php:7494 #: ../../include/class/CustomNetScan.class.php:526 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:376 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:296 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:319 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:408 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:362 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:387 #: ../../include/lib/Dashboard/Widgets/single_graph.php:347 #: ../../include/lib/Dashboard/Widgets/top_n.php:236 #: ../../include/lib/Group.php:570 ../../operation/search_agents.php:45 #: ../../operation/search_agents.php:51 -#: ../../operation/agentes/estado_agente.php:1035 -#: ../../operation/agentes/status_monitor.php:1560 -#: ../../operation/agentes/estado_generalagente.php:458 +#: ../../operation/agentes/status_monitor.php:1562 +#: ../../operation/agentes/estado_generalagente.php:429 #: ../../operation/network/network_usage_map.php:114 -#: ../../operation/netflow/nf_live_view.php:389 -#: ../../operation/inventory/inventory.php:1006 -#: ../../operation/inventory/inventory.php:1300 -#: ../../operation/search_modules.php:35 -#: ../../operation/events/sound_events.php:219 +#: ../../operation/netflow/nf_live_view.php:462 +#: ../../operation/inventory/inventory.php:1252 +#: ../../operation/search_modules.php:38 +#: ../../operation/events/sound_events.php:249 msgid "Interval" msgstr "" @@ -11523,9 +11675,9 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868 #: ../../enterprise/include/functions_reporting_csv.php:2791 #: ../../godmode/modules/manage_network_components_form_common.php:323 -#: ../../godmode/agentes/module_manager_editor_common.php:1327 +#: ../../godmode/agentes/module_manager_editor_common.php:1337 #: ../../godmode/massive/massive_edit_modules.php:940 -#: ../../include/functions_reporting_html.php:3713 +#: ../../include/functions_reporting_html.php:3741 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:498 msgid "Unit" msgstr "" @@ -11548,7 +11700,7 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1344 #: ../../enterprise/include/class/DeploymentCenter.class.php:1354 #: ../../extensions/api_checker.php:331 -#: ../../godmode/wizards/HostDevices.class.php:1508 +#: ../../godmode/wizards/HostDevices.class.php:1504 msgid "Credentials" msgstr "" @@ -11573,9 +11725,9 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268 #: ../../godmode/alerts/alert_view.php:272 #: ../../godmode/reporting/reporting_builder.item_editor.php:1483 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2574 -#: ../../include/functions_reporting_html.php:5008 -#: ../../include/functions_ui.php:2869 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2583 +#: ../../include/functions_reporting_html.php:5036 +#: ../../include/functions.php:4088 ../../include/functions_ui.php:2912 #: ../../include/functions_reporting.php:1539 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:363 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:410 @@ -11604,9 +11756,9 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268 #: ../../godmode/alerts/alert_view.php:272 #: ../../godmode/reporting/reporting_builder.item_editor.php:1485 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2567 -#: ../../include/functions_reporting_html.php:5007 -#: ../../include/functions_ui.php:2869 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2576 +#: ../../include/functions_reporting_html.php:5035 +#: ../../include/functions.php:4095 ../../include/functions_ui.php:2912 #: ../../include/functions_reporting.php:1535 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:372 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:419 @@ -11637,8 +11789,8 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wizard.php:444 #: ../../godmode/agentes/module_manager_editor_common.php:477 #: ../../godmode/agentes/module_manager_editor_common.php:485 -#: ../../godmode/agentes/module_manager_editor_common.php:560 -#: ../../godmode/agentes/module_manager_editor_common.php:569 +#: ../../godmode/agentes/module_manager_editor_common.php:565 +#: ../../godmode/agentes/module_manager_editor_common.php:574 #: ../../godmode/massive/massive_edit_modules.php:625 #: ../../godmode/massive/massive_edit_modules.php:716 msgid "Inverse interval" @@ -11647,13 +11799,13 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:996 #: ../../enterprise/meta/include/functions_wizard_meta.php:1081 #: ../../enterprise/meta/include/functions_wizard_meta.php:1314 -#: ../../include/ajax/module.php:1004 +#: ../../include/ajax/module.php:1027 msgid "Thresholds" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:1087 #: ../../enterprise/meta/include/functions_wizard_meta.php:1619 -#: ../../godmode/agentes/module_manager_editor_web.php:238 +#: ../../godmode/agentes/module_manager_editor_web.php:241 msgid "Proxy URL" msgstr "" @@ -11678,7 +11830,7 @@ msgid "Alerts in module" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:1376 -#: ../../include/functions_reporting_html.php:5372 +#: ../../include/functions_reporting_html.php:5400 msgid "Alert description" msgstr "" @@ -11714,7 +11866,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:2064 #: ../../enterprise/meta/include/functions_wizard_meta.php:2159 -#: ../../enterprise/godmode/policies/policy_modules.php:933 +#: ../../enterprise/godmode/policies/policy_modules.php:937 msgid "Successfully added module." msgstr "" @@ -11791,7 +11943,7 @@ msgstr "" #: ../../enterprise/include/ajax/ipam.ajax.php:521 #: ../../enterprise/tools/ipam/ipam_editor.php:364 #: ../../godmode/alerts/alert_templates.php:71 -#: ../../include/functions_config.php:1684 +#: ../../include/functions_config.php:1696 msgid "Days" msgstr "" @@ -11806,7 +11958,7 @@ msgid "and" msgstr "" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:318 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:254 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2263 #: ../../godmode/snmpconsole/snmp_alert.php:1589 @@ -11832,8 +11984,8 @@ msgstr "" #: ../../godmode/alerts/alert_list.list.php:733 #: ../../godmode/alerts/alert_templates.php:94 #: ../../include/functions_reporting_html.php:148 -#: ../../include/functions_reporting_html.php:3202 -#: ../../include/functions_reporting_html.php:4013 +#: ../../include/functions_reporting_html.php:3230 +#: ../../include/functions_reporting_html.php:4041 #: ../../include/rest-api/index.php:375 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:513 @@ -11859,10 +12011,10 @@ msgstr "" #: ../../godmode/alerts/alert_templates.php:96 #: ../../godmode/alerts/alert_list.builder.php:126 #: ../../include/functions_reporting_html.php:149 -#: ../../include/functions_reporting_html.php:3207 +#: ../../include/functions_reporting_html.php:3235 #: ../../include/ajax/alert_list.ajax.php:527 #: ../../include/class/AgentsAlerts.class.php:321 -#: ../../include/functions_reporting.php:14866 +#: ../../include/functions_reporting.php:14939 #: ../../operation/reporting/reporting_viewer.php:272 msgid "to" msgstr "" @@ -11886,10 +12038,10 @@ msgstr "" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:587 #: ../../include/functions_reporting_html.php:1307 #: ../../include/functions_reporting_html.php:1315 -#: ../../include/functions_reporting_html.php:5304 +#: ../../include/functions_reporting_html.php:5332 #: ../../include/functions_events.php:200 #: ../../include/functions_events.php:2529 -#: ../../include/functions_events.php:4901 +#: ../../include/functions_events.php:4906 msgid "Event name" msgstr "" @@ -11897,17 +12049,17 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:921 #: ../../enterprise/include/class/Omnishell.class.php:642 #: ../../enterprise/include/functions_ipam.php:2114 -#: ../../godmode/agentes/modificar_agente.php:690 +#: ../../godmode/agentes/modificar_agente.php:700 #: ../../godmode/agentes/agent_manager.php:357 -#: ../../mobile/operation/modules.php:597 -#: ../../mobile/operation/modules.php:849 -#: ../../include/functions_reporting_html.php:3659 -#: ../../include/functions_treeview.php:607 +#: ../../mobile/operation/modules.php:608 +#: ../../mobile/operation/modules.php:908 +#: ../../include/functions_reporting_html.php:3687 +#: ../../include/functions_treeview.php:611 #: ../../include/class/SatelliteAgent.class.php:513 #: ../../include/lib/Group.php:550 ../../include/functions_events.php:201 #: ../../include/functions_events.php:247 #: ../../include/functions_events.php:2534 -#: ../../operation/events/events.php:2669 +#: ../../operation/events/events.php:2723 msgid "Agent name" msgstr "" @@ -11922,39 +12074,41 @@ msgstr "" #: ../../enterprise/include/class/LogSource.class.php:604 #: ../../enterprise/operation/agentes/tag_view.php:789 #: ../../godmode/update_manager/update_manager.history.php:44 -#: ../../godmode/agentes/status_monitor_custom_fields.php:117 -#: ../../godmode/agentes/status_monitor_custom_fields.php:151 -#: ../../godmode/setup/news.php:352 ../../godmode/events/custom_events.php:100 -#: ../../mobile/operation/modules.php:661 -#: ../../mobile/operation/modules.php:852 ../../mobile/operation/events.php:804 +#: ../../godmode/agentes/status_monitor_custom_fields.php:137 +#: ../../godmode/agentes/status_monitor_custom_fields.php:171 +#: ../../godmode/setup/news.php:356 ../../godmode/events/custom_events.php:100 +#: ../../mobile/operation/modules.php:672 +#: ../../mobile/operation/modules.php:911 +#: ../../mobile/operation/module_data.php:165 +#: ../../mobile/operation/events.php:833 #: ../../include/functions_reporting_html.php:1062 #: ../../include/functions_reporting_html.php:1070 #: ../../include/functions_reporting_html.php:1310 #: ../../include/functions_reporting_html.php:1317 -#: ../../include/functions_reporting_html.php:2646 -#: ../../include/functions_reporting_html.php:5306 +#: ../../include/functions_reporting_html.php:2665 +#: ../../include/functions_reporting_html.php:5334 #: ../../include/ajax/events_extended.php:90 #: ../../include/ajax/custom_fields.php:415 -#: ../../include/functions_inventory.php:143 -#: ../../include/functions_inventory.php:177 -#: ../../include/functions_inventory.php:379 -#: ../../include/functions_inventory.php:399 -#: ../../include/functions_inventory.php:585 +#: ../../include/functions_inventory.php:144 +#: ../../include/functions_inventory.php:178 +#: ../../include/functions_inventory.php:388 +#: ../../include/functions_inventory.php:408 +#: ../../include/functions_inventory.php:594 #: ../../include/functions_netflow.php:278 #: ../../include/class/SnmpConsole.class.php:279 #: ../../include/functions_events.php:205 #: ../../include/functions_events.php:262 #: ../../include/functions_events.php:2539 -#: ../../include/functions_events.php:4914 +#: ../../include/functions_events.php:4919 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1598 -#: ../../operation/agentes/estado_generalagente.php:751 +#: ../../operation/agentes/status_monitor.php:1600 +#: ../../operation/agentes/estado_generalagente.php:720 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/messages/message_list.php:196 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:132 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:263 -#: ../../operation/search_modules.php:39 +#: ../../operation/search_modules.php:42 msgid "Timestamp" msgstr "" @@ -11964,13 +12118,13 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1406 #: ../../enterprise/include/lib/AlertCorrelation.class.php:1127 #: ../../enterprise/include/functions_events.php:60 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3025 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3034 #: ../../godmode/events/event_filter.php:146 -#: ../../godmode/events/event_edit_filter.php:352 +#: ../../godmode/events/event_edit_filter.php:354 #: ../../include/lib/Dashboard/Widgets/events_list.php:332 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:267 #: ../../include/functions_events.php:206 -#: ../../operation/events/events.php:1749 +#: ../../operation/events/events.php:1803 msgid "Event type" msgstr "" @@ -11979,21 +12133,22 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:923 #: ../../enterprise/operation/agentes/tag_view.php:217 #: ../../godmode/modules/manage_network_templates_form.php:231 -#: ../../godmode/modules/manage_network_components.php:774 +#: ../../godmode/modules/manage_network_components.php:777 #: ../../godmode/modules/manage_network_components_form_wizard.php:272 #: ../../godmode/agentes/agent_template.php:274 -#: ../../godmode/agentes/status_monitor_custom_fields.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:143 +#: ../../godmode/agentes/status_monitor_custom_fields.php:105 +#: ../../godmode/agentes/status_monitor_custom_fields.php:163 #: ../../godmode/alerts/alert_list.list.php:104 -#: ../../mobile/operation/modules.php:594 -#: ../../mobile/operation/modules.php:848 -#: ../../include/ajax/heatmap.ajax.php:239 -#: ../../include/ajax/heatmap.ajax.php:278 ../../include/ajax/module.php:1001 +#: ../../mobile/operation/modules.php:602 +#: ../../mobile/operation/modules.php:604 +#: ../../mobile/operation/modules.php:907 +#: ../../include/ajax/heatmap.ajax.php:281 +#: ../../include/ajax/heatmap.ajax.php:406 ../../include/ajax/module.php:1024 #: ../../include/ajax/custom_fields.php:411 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:542 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:558 -#: ../../operation/agentes/status_monitor.php:902 -#: ../../operation/agentes/status_monitor.php:1548 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559 +#: ../../operation/agentes/status_monitor.php:901 +#: ../../operation/agentes/status_monitor.php:1550 msgid "Module name" msgstr "" @@ -12004,7 +12159,7 @@ msgstr "" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:380 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4422 #: ../../godmode/alerts/configure_alert_template.php:1602 -#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4174 +#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4200 #: ../../include/functions_snmp.php:324 #: ../../include/class/SnmpConsole.class.php:280 #: ../../include/class/SnmpConsole.class.php:352 @@ -12012,7 +12167,7 @@ msgstr "" #: ../../include/class/SnmpConsole.class.php:507 #: ../../include/functions_events.php:208 #: ../../include/functions_events.php:271 -#: ../../operation/agentes/estado_monitores.php:517 +#: ../../operation/agentes/estado_monitores.php:514 msgid "Alert" msgstr "" @@ -12023,18 +12178,18 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2867 #: ../../enterprise/include/functions_reporting.php:2020 #: ../../enterprise/include/functions_events.php:70 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2998 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3007 #: ../../godmode/events/event_filter.php:148 -#: ../../godmode/events/event_edit_filter.php:372 +#: ../../godmode/events/event_edit_filter.php:374 #: ../../godmode/events/custom_events.php:104 -#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679 -#: ../../mobile/operation/events.php:820 ../../mobile/operation/events.php:982 -#: ../../mobile/operation/events.php:983 +#: ../../mobile/operation/events.php:707 ../../mobile/operation/events.php:708 +#: ../../mobile/operation/events.php:849 ../../mobile/operation/events.php:1026 +#: ../../mobile/operation/events.php:1027 #: ../../include/functions_reporting_html.php:1060 #: ../../include/functions_reporting_html.php:1068 #: ../../include/functions_reporting_html.php:1308 #: ../../include/functions_reporting_html.php:1316 -#: ../../include/functions_reporting_html.php:2644 +#: ../../include/functions_reporting_html.php:2663 #: ../../include/functions_snmp.php:335 #: ../../include/class/SnmpConsole.class.php:363 #: ../../include/class/SnmpConsole.class.php:483 @@ -12042,20 +12197,20 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:396 #: ../../include/functions_events.php:209 #: ../../include/functions_events.php:274 -#: ../../include/functions_events.php:4982 -#: ../../operation/events/events.php:1850 +#: ../../include/functions_events.php:4987 +#: ../../operation/events/events.php:1904 msgid "Severity" msgstr "" #: ../../enterprise/meta/include/functions_events_meta.php:102 -#: ../../godmode/events/event_edit_filter.php:829 +#: ../../godmode/events/event_edit_filter.php:831 #: ../../godmode/events/custom_events.php:105 -#: ../../godmode/wizards/HostDevices.class.php:960 +#: ../../godmode/wizards/HostDevices.class.php:956 #: ../../include/class/CustomNetScan.class.php:474 #: ../../include/functions_events.php:210 #: ../../include/functions_events.php:277 -#: ../../include/functions_events.php:3622 -#: ../../operation/events/events.php:1906 +#: ../../include/functions_events.php:3627 +#: ../../operation/events/events.php:1960 msgid "Comment" msgstr "" @@ -12066,7 +12221,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971 #: ../../enterprise/godmode/setup/setup_auth.php:253 #: ../../enterprise/godmode/setup/setup_auth.php:603 -#: ../../enterprise/godmode/setup/setup_auth.php:1413 +#: ../../enterprise/godmode/setup/setup_auth.php:1630 #: ../../enterprise/include/functions_reporting_csv.php:763 #: ../../enterprise/operation/agentes/tag_view.php:241 #: ../../enterprise/operation/agentes/tag_view.php:781 @@ -12078,21 +12233,21 @@ msgstr "" #: ../../godmode/massive/massive_edit_modules.php:491 #: ../../godmode/massive/massive_edit_modules.php:1062 #: ../../godmode/reporting/reporting_builder.item_editor.php:85 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3964 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3973 #: ../../godmode/events/custom_events.php:106 -#: ../../mobile/operation/events.php:845 -#: ../../include/functions_reporting_html.php:1772 -#: ../../include/functions_reporting_html.php:3715 +#: ../../mobile/operation/events.php:874 +#: ../../include/functions_reporting_html.php:1781 +#: ../../include/functions_reporting_html.php:3743 #: ../../include/functions_treeview.php:152 #: ../../include/functions_profile.php:205 #: ../../include/lib/Dashboard/Widgets/events_list.php:461 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:342 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:345 #: ../../include/functions_events.php:211 #: ../../include/functions_events.php:280 -#: ../../include/functions_events.php:5080 ../../operation/tree.php:67 -#: ../../operation/users/user_edit.php:1000 -#: ../../operation/agentes/status_monitor.php:878 -#: ../../operation/agentes/group_view.php:240 +#: ../../include/functions_events.php:5085 ../../operation/tree.php:67 +#: ../../operation/users/user_edit.php:997 +#: ../../operation/agentes/status_monitor.php:877 +#: ../../operation/agentes/group_view.php:243 #: ../../operation/agentes/alerts_status.functions.php:146 #: ../../general/first_task/tags.php:22 msgid "Tags" @@ -12100,7 +12255,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_events_meta.php:114 #: ../../include/functions_events.php:213 -#: ../../include/functions_events.php:4626 +#: ../../include/functions_events.php:4631 msgid "Extra id" msgstr "" @@ -12108,14 +12263,14 @@ msgstr "" #: ../../godmode/setup/setup_integria.php:464 #: ../../godmode/setup/setup_integria.php:598 #: ../../godmode/events/custom_events.php:109 -#: ../../mobile/operation/events.php:808 ../../include/functions_events.php:214 +#: ../../mobile/operation/events.php:837 ../../include/functions_events.php:214 #: ../../include/functions_events.php:289 -#: ../../include/functions_events.php:4936 +#: ../../include/functions_events.php:4941 #: ../../operation/incidents/integriaims_export_csv.php:89 #: ../../operation/incidents/configure_integriaims_incident.php:339 #: ../../operation/incidents/list_integriaims_incidents.php:360 #: ../../operation/incidents/list_integriaims_incidents.php:593 -#: ../../operation/events/events.php:2026 +#: ../../operation/events/events.php:2080 msgid "Owner" msgstr "" @@ -12130,8 +12285,8 @@ msgstr "" #: ../../godmode/events/custom_events.php:111 #: ../../include/functions_events.php:216 #: ../../include/functions_events.php:295 -#: ../../include/functions_events.php:4614 -#: ../../operation/events/events.php:3239 +#: ../../include/functions_events.php:4619 +#: ../../operation/events/events.php:3298 msgid "Instructions" msgstr "" @@ -12147,11 +12302,11 @@ msgid "Server name" msgstr "" #: ../../enterprise/meta/include/functions_events_meta.php:138 -#: ../../include/functions_reporting_html.php:5216 +#: ../../include/functions_reporting_html.php:5244 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:172 #: ../../include/lib/Dashboard/Widgets/module_status.php:175 #: ../../include/lib/Dashboard/Widgets/module_status.php:610 -#: ../../include/functions_events.php:219 ../../operation/tree.php:315 +#: ../../include/functions_events.php:219 ../../operation/tree.php:317 msgid "Module status" msgstr "" @@ -12195,8 +12350,8 @@ msgstr "" #: ../../enterprise/meta/include/process_reset_pass.php:58 #: ../../enterprise/meta/include/reset_pass.php:58 #: ../../enterprise/godmode/modules/configure_local_component.php:657 -#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1624 -#: ../../include/class/ManageNetScanScripts.class.php:698 +#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1667 +#: ../../include/class/ManageNetScanScripts.class.php:694 msgid "Help" msgstr "" @@ -12217,8 +12372,8 @@ msgid "Change password" msgstr "" #: ../../enterprise/meta/include/process_reset_pass.php:123 -#: ../../enterprise/meta/index.php:691 -#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:856 +#: ../../enterprise/meta/index.php:692 +#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:857 msgid "Passwords must be the same" msgstr "" @@ -12243,8 +12398,7 @@ msgstr "" #: ../../enterprise/meta/general/login_page.php:316 #: ../../enterprise/include/process_reset_pass.php:239 #: ../../enterprise/include/reset_pass.php:213 -#: ../../enterprise/include/reset_pass.php:320 -#: ../../include/functions_menu.php:955 ../../general/login_page.php:460 +#: ../../enterprise/include/reset_pass.php:320 ../../general/login_page.php:460 msgid "Build" msgstr "" @@ -12306,7 +12460,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_agents_meta.php:661 #: ../../enterprise/extensions/disabled/check_acls.php:50 #: ../../enterprise/extensions/disabled/check_acls.php:137 -#: ../../include/functions_menu.php:567 +#: ../../include/functions_menu.php:569 msgid "Agents management" msgstr "" @@ -12322,7 +12476,7 @@ msgid "No admin user" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:71 -#: ../../include/functions_config.php:438 +#: ../../include/functions_config.php:446 msgid "Activate Metaconsole" msgstr "" @@ -12370,27 +12524,27 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:533 #: ../../enterprise/godmode/setup/setup_log_collector.php:64 -#: ../../include/functions_config.php:1625 +#: ../../include/functions_config.php:1637 msgid "Number of logs viewed" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:554 #: ../../godmode/setup/setup_auth.php:483 -#: ../../include/functions_config.php:559 +#: ../../include/functions_config.php:567 #: ../../include/class/CredentialStore.class.php:1162 -#: ../../include/class/CredentialStore.class.php:1455 +#: ../../include/class/CredentialStore.class.php:1464 #: ../../include/class/AgentWizard.class.php:925 msgid "Authentication method" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:564 -#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:691 +#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:703 msgid "Fallback to local authentication" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:574 #: ../../enterprise/meta/include/functions_meta.php:798 -#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:563 +#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:571 msgid "Autocreate remote users" msgstr "" @@ -12398,8 +12552,8 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:55 #: ../../enterprise/godmode/setup/setup_auth.php:325 #: ../../enterprise/godmode/setup/setup_auth.php:457 -#: ../../enterprise/godmode/setup/setup_auth.php:1250 -#: ../../include/functions_config.php:567 +#: ../../enterprise/godmode/setup/setup_auth.php:1467 +#: ../../include/functions_config.php:575 msgid "Autocreate profile" msgstr "" @@ -12407,8 +12561,8 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:61 #: ../../enterprise/godmode/setup/setup_auth.php:331 #: ../../enterprise/godmode/setup/setup_auth.php:463 -#: ../../enterprise/godmode/setup/setup_auth.php:1256 -#: ../../include/functions_config.php:571 +#: ../../enterprise/godmode/setup/setup_auth.php:1473 +#: ../../include/functions_config.php:579 msgid "Autocreate profile group" msgstr "" @@ -12416,30 +12570,30 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:68 #: ../../enterprise/godmode/setup/setup_auth.php:340 #: ../../enterprise/godmode/setup/setup_auth.php:472 -#: ../../enterprise/godmode/setup/setup_auth.php:1280 -#: ../../include/functions_config.php:575 +#: ../../enterprise/godmode/setup/setup_auth.php:1497 +#: ../../include/functions_config.php:583 msgid "Autocreate profile tags" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:614 #: ../../enterprise/godmode/setup/setup_auth.php:346 -#: ../../include/functions_config.php:579 +#: ../../include/functions_config.php:587 msgid "Automatically assigned no hierarchy" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:624 -#: ../../enterprise/godmode/setup/setup_auth.php:662 -#: ../../enterprise/godmode/setup/setup_auth.php:1477 -#: ../../include/functions_config.php:587 +#: ../../enterprise/godmode/setup/setup_auth.php:668 +#: ../../enterprise/godmode/setup/setup_auth.php:1694 +#: ../../include/functions_config.php:595 msgid "Autocreate blacklist" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:634 #: ../../enterprise/meta/include/functions_meta.php:941 -#: ../../godmode/users/configure_user.php:1493 +#: ../../godmode/users/configure_user.php:1546 #: ../../godmode/setup/setup_auth.php:392 -#: ../../include/functions_config.php:799 -#: ../../operation/users/user_edit.php:544 +#: ../../include/functions_config.php:811 +#: ../../operation/users/user_edit.php:537 msgid "Double authentication" msgstr "" @@ -12449,8 +12603,8 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:656 #: ../../enterprise/meta/include/functions_meta.php:954 -#: ../../include/functions_config.php:807 -#: ../../include/functions_config.php:813 +#: ../../include/functions_config.php:819 +#: ../../include/functions_config.php:825 msgid "Session timeout" msgstr "" @@ -12458,8 +12612,8 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1148 #: ../../enterprise/godmode/setup/setup_auth.php:82 #: ../../enterprise/godmode/setup/setup_auth.php:441 -#: ../../include/functions_config.php:704 -#: ../../include/functions_config.php:820 +#: ../../include/functions_config.php:716 +#: ../../include/functions_config.php:832 msgid "Save Password" msgstr "" @@ -12468,59 +12622,59 @@ msgid "Timezone visual" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:692 -#: ../../enterprise/godmode/setup/setup_auth.php:670 -#: ../../enterprise/godmode/setup/setup_auth.php:1485 -#: ../../include/functions_config.php:591 +#: ../../enterprise/godmode/setup/setup_auth.php:676 +#: ../../enterprise/godmode/setup/setup_auth.php:1702 +#: ../../include/functions_config.php:599 msgid "Active directory server" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:702 -#: ../../enterprise/godmode/setup/setup_auth.php:676 -#: ../../enterprise/godmode/setup/setup_auth.php:1502 -#: ../../include/functions_config.php:595 +#: ../../enterprise/godmode/setup/setup_auth.php:682 +#: ../../enterprise/godmode/setup/setup_auth.php:1719 +#: ../../include/functions_config.php:603 msgid "Active directory port" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:712 #: ../../enterprise/meta/include/functions_meta.php:996 -#: ../../enterprise/godmode/setup/setup_auth.php:682 -#: ../../enterprise/godmode/setup/setup_auth.php:1519 +#: ../../enterprise/godmode/setup/setup_auth.php:688 +#: ../../enterprise/godmode/setup/setup_auth.php:1736 #: ../../godmode/setup/setup_auth.php:146 -#: ../../include/functions_config.php:599 -#: ../../include/functions_config.php:635 +#: ../../include/functions_config.php:607 +#: ../../include/functions_config.php:647 msgid "Start TLS" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:722 #: ../../enterprise/godmode/setup/setup_auth.php:446 -#: ../../enterprise/godmode/setup/setup_auth.php:1239 -#: ../../include/functions_config.php:603 +#: ../../enterprise/godmode/setup/setup_auth.php:1456 +#: ../../include/functions_config.php:615 msgid "Advanced Config AD" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:732 -#: ../../enterprise/godmode/setup/setup_auth.php:688 -#: ../../enterprise/godmode/setup/setup_auth.php:1525 -#: ../../include/functions_config.php:611 +#: ../../enterprise/godmode/setup/setup_auth.php:694 +#: ../../enterprise/godmode/setup/setup_auth.php:1742 +#: ../../include/functions_config.php:623 msgid "Domain" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:742 #: ../../enterprise/godmode/setup/setup_auth.php:506 -#: ../../enterprise/godmode/setup/setup_auth.php:1314 -#: ../../include/functions_config.php:615 +#: ../../enterprise/godmode/setup/setup_auth.php:1531 +#: ../../include/functions_config.php:627 msgid "Advanced Permisions AD" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:752 #: ../../enterprise/godmode/setup/setup_auth.php:151 -#: ../../include/functions_config.php:619 +#: ../../include/functions_config.php:631 msgid "Advanced Permissions LDAP" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:762 #: ../../enterprise/godmode/setup/setup_auth.php:128 -#: ../../include/functions_config.php:607 +#: ../../include/functions_config.php:619 msgid "Advanced Config LDAP" msgstr "" @@ -12528,47 +12682,47 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:784 #: ../../enterprise/godmode/setup/setup_auth.php:430 #: ../../enterprise/godmode/setup/setup_auth.php:478 -#: ../../enterprise/godmode/setup/setup_auth.php:1286 +#: ../../enterprise/godmode/setup/setup_auth.php:1503 msgid "Auto enable node access" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:811 -#: ../../include/functions_config.php:759 +#: ../../include/functions_config.php:771 msgid "Saml path" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:824 -#: ../../include/functions_config.php:763 +#: ../../include/functions_config.php:775 msgid "Saml source" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:837 -#: ../../include/functions_config.php:767 +#: ../../include/functions_config.php:779 msgid "Saml user id parameter" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:850 -#: ../../include/functions_config.php:771 +#: ../../include/functions_config.php:783 msgid "Saml mail parameter" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:863 -#: ../../include/functions_config.php:775 +#: ../../include/functions_config.php:787 msgid "Saml group name parameter" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:876 -#: ../../include/functions_config.php:779 +#: ../../include/functions_config.php:791 msgid "Saml attr type parameter" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:889 -#: ../../include/functions_config.php:783 +#: ../../include/functions_config.php:795 msgid "Saml profiles and tags parameter" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:902 -#: ../../include/functions_config.php:795 +#: ../../include/functions_config.php:807 msgid "Saml profile and tag separator" msgstr "" @@ -12577,48 +12731,48 @@ msgid "SAML profile parameters" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:928 -#: ../../include/functions_config.php:791 +#: ../../include/functions_config.php:803 msgid "Saml tag parameter" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:966 -#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:623 +#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:635 msgid "LDAP server" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:976 #: ../../godmode/setup/setup_auth.php:107 -#: ../../include/functions_config.php:627 +#: ../../include/functions_config.php:639 msgid "LDAP port" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:986 #: ../../godmode/setup/setup_auth.php:129 -#: ../../include/functions_config.php:631 +#: ../../include/functions_config.php:643 msgid "LDAP version" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1006 #: ../../godmode/setup/setup_auth.php:157 -#: ../../include/functions_config.php:639 +#: ../../include/functions_config.php:651 msgid "Base DN" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1016 #: ../../godmode/setup/setup_auth.php:170 -#: ../../include/functions_config.php:643 +#: ../../include/functions_config.php:655 msgid "Login attribute" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1026 #: ../../godmode/setup/setup_auth.php:183 -#: ../../include/functions_config.php:647 +#: ../../include/functions_config.php:659 msgid "Admin LDAP login" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1036 #: ../../godmode/setup/setup_auth.php:196 -#: ../../include/functions_config.php:651 +#: ../../include/functions_config.php:663 msgid "Admin LDAP password" msgstr "" @@ -12628,25 +12782,25 @@ msgid "Ldap search timeout (secs)" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1056 -#: ../../include/functions_config.php:715 +#: ../../include/functions_config.php:727 msgid "LDAP secondary enabled" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1065 #: ../../godmode/setup/setup_auth.php:250 -#: ../../include/functions_config.php:659 +#: ../../include/functions_config.php:671 msgid "Secondary LDAP server" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1075 #: ../../godmode/setup/setup_auth.php:267 -#: ../../include/functions_config.php:663 +#: ../../include/functions_config.php:675 msgid "Secondary LDAP port" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1085 #: ../../godmode/setup/setup_auth.php:289 -#: ../../include/functions_config.php:667 +#: ../../include/functions_config.php:679 msgid "Secondary LDAP version" msgstr "" @@ -12656,41 +12810,41 @@ msgid "Secondary start TLS" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1105 -#: ../../include/functions_config.php:675 +#: ../../include/functions_config.php:687 msgid "Secondary base DN" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1115 -#: ../../include/functions_config.php:679 +#: ../../include/functions_config.php:691 msgid "Secondary login attribute" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1125 #: ../../godmode/setup/setup_auth.php:343 -#: ../../include/functions_config.php:683 +#: ../../include/functions_config.php:695 msgid "Admin secondary LDAP login" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1135 #: ../../godmode/setup/setup_auth.php:356 -#: ../../include/functions_config.php:687 +#: ../../include/functions_config.php:699 msgid "Admin secondary LDAP password" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1168 #: ../../enterprise/godmode/setup/setup_auth.php:112 -#: ../../include/functions_config.php:695 +#: ../../include/functions_config.php:707 msgid "Login user attribute" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1178 -#: ../../include/functions_config.php:711 +#: ../../include/functions_config.php:723 msgid "Save profile" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1189 #: ../../enterprise/godmode/setup/setup_auth.php:94 -#: ../../include/functions_config.php:699 +#: ../../include/functions_config.php:711 msgid "LDAP function" msgstr "" @@ -12702,10 +12856,10 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1211 #: ../../enterprise/meta/include/functions_meta.php:1265 #: ../../enterprise/meta/include/functions_meta.php:1319 -#: ../../enterprise/godmode/setup/setup_auth.php:1118 -#: ../../enterprise/godmode/setup/setup_auth.php:1150 -#: ../../include/functions_config.php:723 -#: ../../include/functions_config.php:743 +#: ../../enterprise/godmode/setup/setup_auth.php:1335 +#: ../../enterprise/godmode/setup/setup_auth.php:1367 +#: ../../include/functions_config.php:735 +#: ../../include/functions_config.php:755 msgid "MySQL port" msgstr "" @@ -12714,11 +12868,11 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1329 #: ../../enterprise/meta/include/functions_meta.php:2167 #: ../../enterprise/godmode/setup/setup_history.php:210 -#: ../../enterprise/godmode/setup/setup_auth.php:1124 -#: ../../enterprise/godmode/setup/setup_auth.php:1156 -#: ../../include/functions_config.php:727 -#: ../../include/functions_config.php:747 -#: ../../include/functions_config.php:1655 +#: ../../enterprise/godmode/setup/setup_auth.php:1341 +#: ../../enterprise/godmode/setup/setup_auth.php:1373 +#: ../../include/functions_config.php:739 +#: ../../include/functions_config.php:759 +#: ../../include/functions_config.php:1667 msgid "Database name" msgstr "" @@ -12727,13 +12881,13 @@ msgid "Babel Enterprise host" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1309 -#: ../../enterprise/godmode/setup/setup_auth.php:1144 -#: ../../include/functions_config.php:739 +#: ../../enterprise/godmode/setup/setup_auth.php:1361 +#: ../../include/functions_config.php:751 msgid "Integria host" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1374 -#: ../../include/functions_config.php:981 +#: ../../include/functions_config.php:993 msgid "Timestamp or time comparation" msgstr "" @@ -12750,7 +12904,7 @@ msgid "Graph color (max)" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1439 -#: ../../include/functions_config.php:1029 +#: ../../include/functions_config.php:1041 msgid "Data precision for reports" msgstr "" @@ -12767,8 +12921,8 @@ msgid "type mode zoom charts" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1604 -#: ../../include/functions_config.php:1270 -#: ../../include/functions_config.php:1274 +#: ../../include/functions_config.php:1286 +#: ../../include/functions_config.php:1290 msgid "Random background" msgstr "" @@ -12777,7 +12931,7 @@ msgid "Type of charts" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1664 -#: ../../include/functions_config.php:1078 +#: ../../include/functions_config.php:1090 msgid "Custom logo collapsed" msgstr "" @@ -12786,32 +12940,32 @@ msgid "Custom logo (white background)" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1694 -#: ../../include/functions_config.php:1086 +#: ../../include/functions_config.php:1098 msgid "Custom logo login" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1704 -#: ../../include/functions_config.php:1090 +#: ../../include/functions_config.php:1102 msgid "Custom splash login" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1734 -#: ../../include/functions_config.php:1126 +#: ../../include/functions_config.php:1138 msgid "Custom title1 login" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1744 -#: ../../include/functions_config.php:1130 +#: ../../include/functions_config.php:1142 msgid "Custom title2 login" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1754 -#: ../../include/functions_config.php:1118 +#: ../../include/functions_config.php:1130 msgid "Meta custom title header" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1764 -#: ../../include/functions_config.php:1122 +#: ../../include/functions_config.php:1134 msgid "Meta custom subtitle header" msgstr "" @@ -12828,42 +12982,42 @@ msgid "Custom copyright notice" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1863 -#: ../../include/functions_config.php:1062 +#: ../../include/functions_config.php:1074 msgid "Font path" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1873 -#: ../../include/functions_config.php:1516 +#: ../../include/functions_config.php:1532 msgid "Use data multiplier" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1885 -#: ../../include/functions_config.php:1472 +#: ../../include/functions_config.php:1488 msgid "Custom report info" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1895 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:102 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:122 -#: ../../include/functions_config.php:1488 +#: ../../include/functions_config.php:1504 msgid "Font family" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1935 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:159 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:157 -#: ../../godmode/setup/setup_visuals.php:1582 -#: ../../include/functions_config.php:1504 +#: ../../godmode/setup/setup_visuals.php:1597 +#: ../../include/functions_config.php:1520 msgid "Footer" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1970 -#: ../../include/functions_config.php:1194 +#: ../../include/functions_config.php:1206 msgid "Use the legacy Visual Console" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1981 -#: ../../include/functions_config.php:1198 +#: ../../include/functions_config.php:1210 msgid "Default expiration of the Visual Console item's cache" msgstr "" @@ -12873,7 +13027,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2050 #: ../../godmode/setup/performance.php:674 -#: ../../include/functions_config.php:894 +#: ../../include/functions_config.php:906 msgid "Use agent access graph" msgstr "" @@ -12894,35 +13048,35 @@ msgid "Node address default" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2153 -#: ../../include/functions_config.php:1642 +#: ../../include/functions_config.php:1654 msgid "Active and historical database cannot be the same." msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2157 #: ../../enterprise/godmode/setup/setup_history.php:178 -#: ../../include/functions_config.php:1647 +#: ../../include/functions_config.php:1659 msgid "Host" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2173 -#: ../../include/functions_config.php:1660 +#: ../../include/functions_config.php:1672 msgid "Enable history database" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2178 -#: ../../include/functions_config.php:1664 +#: ../../include/functions_config.php:1676 msgid "Enable history event" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2183 #: ../../enterprise/godmode/setup/setup_history.php:226 -#: ../../include/functions_config.php:1672 +#: ../../include/functions_config.php:1684 msgid "Database user" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2188 #: ../../enterprise/godmode/setup/setup_history.php:242 -#: ../../include/functions_config.php:1676 +#: ../../include/functions_config.php:1688 msgid "Database password" msgstr "" @@ -12935,45 +13089,45 @@ msgid "Database advanced" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2231 -#: ../../include/functions_config.php:1705 +#: ../../include/functions_config.php:1717 msgid "Event Days" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2249 #: ../../enterprise/godmode/servers/new_HA_cluster.php:143 -#: ../../include/functions_config.php:1737 +#: ../../include/functions_config.php:1749 msgid "Delay" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2282 -#: ../../include/functions_config.php:1769 +#: ../../include/functions_config.php:1781 msgid "Historical database purge" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2291 -#: ../../include/functions_config.php:1777 +#: ../../include/functions_config.php:1789 msgid "Historical database partitions" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2300 -#: ../../include/functions_config.php:1785 +#: ../../include/functions_config.php:1797 msgid "Historical database events purge" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2309 -#: ../../include/functions_config.php:1801 +#: ../../include/functions_config.php:1813 msgid "Historical database string purge" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2524 #: ../../extensions/dbmanager.php:312 ../../extensions/dbmanager.php:323 -#: ../../godmode/menu.php:478 +#: ../../godmode/menu.php:476 msgid "DB interface" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2598 #: ../../enterprise/include/functions_policies.php:935 -#: ../../include/functions_reporting.php:7569 +#: ../../include/functions_reporting.php:7578 #, php-format msgid "Failed to connect to node %s" msgstr "" @@ -12987,7 +13141,6 @@ msgstr "" #: ../../enterprise/meta/include/functions_components_meta.php:88 #: ../../enterprise/meta/include/functions_components_meta.php:139 #: ../../enterprise/godmode/menu.php:83 ../../enterprise/godmode/menu.php:175 -#: ../../godmode/menu.php:181 msgid "Local components" msgstr "" @@ -13010,13 +13163,13 @@ msgstr "" #: ../../godmode/modules/manage_inventory_modules.php:45 #: ../../godmode/modules/manage_inventory_modules.php:58 #: ../../godmode/modules/manage_inventory_modules_form.php:49 -#: ../../godmode/menu.php:187 +#: ../../godmode/menu.php:186 msgid "Inventory modules" msgstr "" #: ../../enterprise/meta/include/functions_components_meta.php:124 #: ../../enterprise/meta/include/functions_components_meta.php:164 -#: ../../godmode/servers/plugin_registration.php:109 +#: ../../godmode/servers/plugin_registration.php:105 #: ../../godmode/servers/plugin.php:346 msgid "Plugin registration" msgstr "" @@ -13051,11 +13204,11 @@ msgstr "" #: ../../enterprise/godmode/setup/setup.php:602 #: ../../enterprise/include/class/CommandCenter.class.php:475 #: ../../enterprise/include/functions_login.php:165 -#: ../../enterprise/include/functions_login.php:580 +#: ../../enterprise/include/functions_login.php:584 #: ../../enterprise/include/lib/Metaconsole/Node.php:541 #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4151 -#: ../../godmode/users/configure_user.php:2067 -#: ../../godmode/users/configure_user.php:2136 +#: ../../godmode/users/configure_user.php:2119 +#: ../../godmode/users/configure_user.php:2188 #: ../../godmode/massive/massive_edit_plugins.php:856 #: ../../godmode/massive/massive_edit_plugins.php:857 #: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1292 @@ -13063,21 +13216,21 @@ msgstr "" #: ../../include/ajax/double_auth.ajax.php:368 #: ../../include/ajax/double_auth.ajax.php:414 #: ../../include/ajax/double_auth.ajax.php:531 -#: ../../include/ajax/events.php:2273 ../../include/functions_menu.php:892 +#: ../../include/ajax/events.php:2274 ../../include/functions_menu.php:897 #: ../../include/functions_ui.php:306 #: ../../include/class/SatelliteAgent.class.php:831 -#: ../../include/class/Diagnostics.class.php:1855 -#: ../../include/functions_events.php:2966 -#: ../../include/functions_events.php:3166 ../../index.php:1555 -#: ../../operation/users/user_edit.php:1241 -#: ../../operation/users/user_edit.php:1307 ../../general/register.php:168 +#: ../../include/class/Diagnostics.class.php:1859 +#: ../../include/functions_events.php:2971 +#: ../../include/functions_events.php:3171 ../../index.php:1557 +#: ../../operation/users/user_edit.php:1238 +#: ../../operation/users/user_edit.php:1304 ../../general/register.php:168 #: ../../general/mysqlerr.php:28 ../../general/login_page.php:566 msgid "Error" msgstr "" #: ../../enterprise/meta/include/functions_alerts_meta.php:137 #: ../../enterprise/meta/include/functions_alerts_meta.php:168 -#: ../../godmode/menu.php:282 +#: ../../godmode/menu.php:280 msgid "Commands" msgstr "" @@ -13095,8 +13248,8 @@ msgid "User to reset password" msgstr "" #: ../../enterprise/meta/include/reset_pass.php:103 -#: ../../enterprise/meta/index.php:757 -#: ../../enterprise/include/reset_pass.php:195 ../../index.php:928 +#: ../../enterprise/meta/index.php:758 +#: ../../enterprise/include/reset_pass.php:195 ../../index.php:929 msgid "Reset password" msgstr "" @@ -13106,8 +13259,8 @@ msgstr "" #: ../../enterprise/include/process_reset_pass.php:174 #: ../../enterprise/include/reset_pass.php:295 #: ../../enterprise/include/reset_pass.php:298 -#: ../../include/functions_config.php:2678 -#: ../../include/functions_config.php:2730 ../../general/login_page.php:527 +#: ../../include/functions_config.php:2698 +#: ../../include/functions_config.php:2750 ../../general/login_page.php:527 #: ../../general/login_page.php:530 msgid "ONE TOOL TO RULE THEM ALL" msgstr "" @@ -13115,7 +13268,7 @@ msgstr "" #: ../../enterprise/meta/include/reset_pass.php:147 #: ../../enterprise/meta/general/login_page.php:335 #: ../../enterprise/include/reset_pass.php:285 -#: ../../include/functions_config.php:2734 +#: ../../include/functions_config.php:2754 msgid "COMMAND CENTER" msgstr "" @@ -13194,21 +13347,19 @@ msgstr "" msgid "Relation deleted successfully" msgstr "" -#: ../../enterprise/meta/index.php:221 ../../index.php:1492 +#: ../../enterprise/meta/index.php:221 ../../index.php:1494 #: ../../operation/visual_console/legacy_public_view.php:57 #: ../../operation/visual_console/public_view.php:38 #: ../../operation/agentes/stat_win.php:92 #: ../../operation/gis_maps/public_console.php:277 -#: ../../operation/events/sound_events.php:168 msgid "Connection with server has been lost" msgstr "" -#: ../../enterprise/meta/index.php:222 ../../index.php:1493 +#: ../../enterprise/meta/index.php:222 ../../index.php:1495 #: ../../operation/visual_console/legacy_public_view.php:58 #: ../../operation/visual_console/public_view.php:39 #: ../../operation/agentes/stat_win.php:93 #: ../../operation/gis_maps/public_console.php:278 -#: ../../operation/events/sound_events.php:169 msgid "" "Connection to the server has been lost. Please check your internet " "connection or contact with administrator." @@ -13232,72 +13383,72 @@ msgstr "" msgid "Login error" msgstr "" -#: ../../enterprise/meta/index.php:682 ../../index.php:845 +#: ../../enterprise/meta/index.php:683 ../../index.php:846 msgid "Password changed successfully" msgstr "" -#: ../../enterprise/meta/index.php:688 ../../index.php:851 +#: ../../enterprise/meta/index.php:689 ../../index.php:852 msgid "Failed to change password" msgstr "" -#: ../../enterprise/meta/index.php:702 ../../index.php:868 +#: ../../enterprise/meta/index.php:703 ../../index.php:869 msgid "Too much time since password change request" msgstr "" -#: ../../enterprise/meta/index.php:709 ../../index.php:875 +#: ../../enterprise/meta/index.php:710 ../../index.php:876 msgid "This user has not requested a password change" msgstr "" -#: ../../enterprise/meta/index.php:725 ../../index.php:902 +#: ../../enterprise/meta/index.php:726 ../../index.php:903 msgid "Id user cannot be empty" msgstr "" -#: ../../enterprise/meta/index.php:733 ../../index.php:910 +#: ../../enterprise/meta/index.php:734 ../../index.php:911 msgid "Error in reset password request" msgstr "" -#: ../../enterprise/meta/index.php:741 ../../index.php:918 +#: ../../enterprise/meta/index.php:742 ../../index.php:919 msgid "This user doesn't have a valid email address" msgstr "" -#: ../../enterprise/meta/index.php:758 ../../index.php:929 +#: ../../enterprise/meta/index.php:759 ../../index.php:930 msgid "This is an automatically sent message for user " msgstr "" -#: ../../enterprise/meta/index.php:761 ../../index.php:932 +#: ../../enterprise/meta/index.php:762 ../../index.php:933 msgid "Please click the link below to reset your password" msgstr "" -#: ../../enterprise/meta/index.php:763 ../../index.php:934 +#: ../../enterprise/meta/index.php:764 ../../index.php:935 msgid "Reset your password" msgstr "" -#: ../../enterprise/meta/index.php:767 ../../index.php:938 +#: ../../enterprise/meta/index.php:768 ../../index.php:939 msgid "Please do not reply to this email." msgstr "" -#: ../../enterprise/meta/index.php:773 ../../index.php:943 +#: ../../enterprise/meta/index.php:774 ../../index.php:944 msgid "Error at sending the email" msgstr "" -#: ../../enterprise/meta/index.php:933 +#: ../../enterprise/meta/index.php:934 #, php-format msgid "" "System is not centralised, please go to %s to perform a database merge " "process." msgstr "" -#: ../../enterprise/meta/index.php:1001 +#: ../../enterprise/meta/index.php:1002 #, php-format msgid "There are nodes with different MR than this (%d):" msgstr "" -#: ../../enterprise/meta/index.php:1010 ../../index.php:1237 +#: ../../enterprise/meta/index.php:1011 ../../index.php:1238 msgid "Please keep all environment updated to same version." msgstr "" -#: ../../enterprise/meta/index.php:1075 ../../enterprise/meta/index.php:1170 -#: ../../index.php:1340 +#: ../../enterprise/meta/index.php:1076 ../../enterprise/meta/index.php:1172 +#: ../../index.php:1341 msgid "Sorry! I can't find the page!" msgstr "" @@ -13317,22 +13468,21 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:703 #: ../../enterprise/operation/agentes/ver_agente.php:95 #: ../../extensions/users_connected.php:180 -#: ../../godmode/users/user_list.php:576 +#: ../../godmode/users/user_list.php:577 #: ../../godmode/agentes/planned_downtime.editor.php:1359 -#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417 -#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 -#: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:1006 -#: ../../include/functions_treeview.php:671 -#: ../../include/functions_events.php:4389 ../../operation/search_users.php:46 +#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:418 +#: ../../mobile/operation/agents.php:420 ../../mobile/operation/agents.php:423 +#: ../../mobile/operation/agent.php:199 ../../include/ajax/heatmap.ajax.php:483 +#: ../../include/ajax/module.php:1029 ../../include/functions_treeview.php:675 +#: ../../include/functions_events.php:4394 ../../operation/search_users.php:46 #: ../../operation/search_agents.php:58 #: ../../operation/agentes/log_sources_status.php:58 -#: ../../operation/agentes/estado_agente.php:1055 +#: ../../operation/agentes/estado_agente.php:1063 #: ../../operation/agentes/ver_agente.php:1046 -#: ../../operation/agentes/estado_generalagente.php:464 +#: ../../operation/agentes/estado_generalagente.php:435 #: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 #: ../../operation/gis_maps/ajax.php:466 -#: ../../operation/inventory/inventory.php:1007 -#: ../../operation/inventory/inventory.php:1301 +#: ../../operation/inventory/inventory.php:1253 msgid "Last contact" msgstr "" @@ -13341,8 +13491,8 @@ msgid "There are no agents included in this group" msgstr "" #: ../../enterprise/meta/agentsearch.php:320 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:650 -#: ../../operation/tree.php:468 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:643 +#: ../../operation/tree.php:470 msgid "Policies found" msgstr "" @@ -13373,22 +13523,25 @@ msgstr "" msgid "%s %s - %s - MR %s" msgstr "" -#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1459 +#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1460 msgid "Page generated at" msgstr "" #: ../../enterprise/meta/general/metaconsole_no_activated.php:12 #: ../../enterprise/meta/general/noaccesssaml.php:130 -#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:266 -#: ../../mobile/operation/agents.php:186 ../../mobile/operation/modules.php:218 -#: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:117 +#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:284 +#: ../../mobile/operation/agents.php:187 ../../mobile/operation/modules.php:218 +#: ../../mobile/operation/groups.php:59 ../../mobile/operation/services.php:68 +#: ../../mobile/operation/services.php:83 ../../mobile/operation/agent.php:119 #: ../../mobile/operation/alerts.php:176 #: ../../mobile/operation/visualmap.php:185 #: ../../mobile/operation/visualmaps.php:159 -#: ../../mobile/operation/module_graph.php:255 -#: ../../mobile/operation/events.php:744 ../../mobile/operation/tactical.php:79 -#: ../../general/noaccesssaml.php:130 ../../general/noaccess2.php:16 -#: ../../general/noaccess2.php:18 +#: ../../mobile/operation/module_data.php:107 +#: ../../mobile/operation/module_graph.php:256 +#: ../../mobile/operation/events.php:773 +#: ../../mobile/operation/server_status.php:209 +#: ../../mobile/operation/tactical.php:79 ../../general/noaccesssaml.php:130 +#: ../../general/noaccess2.php:16 ../../general/noaccess2.php:18 msgid "You don't have access to this page" msgstr "" @@ -13448,7 +13601,7 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:535 #: ../../mobile/include/functions_web.php:34 #: ../../mobile/include/ui.class.php:225 -#: ../../mobile/include/user.class.php:460 ../../mobile/operation/home.php:148 +#: ../../mobile/include/user.class.php:527 ../../mobile/operation/home.php:167 #: ../../general/header.php:443 ../../general/header.php:445 msgid "Logout" msgstr "" @@ -13463,7 +13616,7 @@ msgid "Please navigate to %s" msgstr "" #: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:69 -#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64 +#: ../../general/maintenance.php:58 ../../general/node_deactivated.php:69 msgid "You will be automatically redirected when all tasks finish" msgstr "" @@ -13471,8 +13624,8 @@ msgstr "" #: ../../enterprise/meta/general/main_menu.php:199 #: ../../enterprise/operation/services/services.treeview_services.php:60 #: ../../godmode/groups/group_list.php:347 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:178 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:768 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:173 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:761 #: ../../operation/tree.php:137 ../../operation/menu.php:179 msgid "Tree view" msgstr "" @@ -13497,7 +13650,7 @@ msgstr "" #: ../../enterprise/meta/general/main_menu.php:312 #: ../../enterprise/meta/general/main_menu.php:313 #: ../../enterprise/mobile/include/functions_web.php:15 -#: ../../include/functions_reporting.php:15831 +#: ../../include/functions_reporting.php:15908 #: ../../include/functions_groups.php:139 #: ../../operation/search_results.php:133 msgid "Reports" @@ -13516,7 +13669,7 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:200 #: ../../enterprise/meta/general/main_menu.php:340 #: ../../enterprise/include/functions_reporting.php:124 -#: ../../include/functions_menu.php:584 +#: ../../include/functions_menu.php:586 msgid "Templates wizard" msgstr "" @@ -13544,7 +13697,8 @@ msgstr "" #: ../../enterprise/operation/services/services.treeview_services.php:73 #: ../../enterprise/operation/services/services.list.php:70 #: ../../enterprise/operation/services/services.table_services.php:67 -#: ../../operation/agentes/ver_agente.php:1668 +#: ../../mobile/operation/home.php:103 ../../mobile/operation/services.php:123 +#: ../../operation/agentes/ver_agente.php:1664 #: ../../general/first_task/service_list.php:38 #: ../../general/first_task/service_list.php:41 msgid "Services" @@ -13559,7 +13713,7 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:240 #: ../../enterprise/meta/general/main_menu.php:436 -#: ../../enterprise/include/functions_enterprise.php:443 +#: ../../enterprise/include/functions_enterprise.php:453 #: ../../include/class/OrderInterpreter.class.php:233 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:175 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:515 @@ -13586,8 +13740,8 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:275 #: ../../enterprise/meta/general/logon_ok.php:44 #: ../../enterprise/meta/general/main_menu.php:473 -#: ../../enterprise/include/functions_enterprise.php:439 -#: ../../godmode/netflow/nf_edit_form.php:82 ../../godmode/menu.php:371 +#: ../../enterprise/include/functions_enterprise.php:449 +#: ../../godmode/netflow/nf_edit_form.php:93 ../../godmode/menu.php:369 #: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:290 #: ../../include/functions_reports.php:925 #: ../../include/functions_reports.php:929 @@ -13643,7 +13797,7 @@ msgid "Command Center" msgstr "" #: ../../enterprise/meta/general/main_header.php:369 -#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:406 +#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:404 #: ../../godmode/setup/license.php:59 msgid "License" msgstr "" @@ -13658,8 +13812,8 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:448 #: ../../enterprise/meta/general/main_menu.php:720 #: ../../enterprise/meta/general/main_menu.php:755 -#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:428 -#: ../../godmode/menu.php:550 ../../general/links_menu.php:17 +#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:426 +#: ../../godmode/menu.php:548 ../../general/links_menu.php:17 msgid "Links" msgstr "" @@ -13694,9 +13848,9 @@ msgstr "" #: ../../godmode/reporting/graph_container.php:118 #: ../../godmode/reporting/graphs.php:129 #: ../../godmode/reporting/reporting_builder.php:557 -#: ../../godmode/reporting/reporting_builder.php:3597 -#: ../../godmode/reporting/reporting_builder.php:3695 -#: ../../godmode/reporting/reporting_builder.php:3723 +#: ../../godmode/reporting/reporting_builder.php:3614 +#: ../../godmode/reporting/reporting_builder.php:3712 +#: ../../godmode/reporting/reporting_builder.php:3740 #: ../../include/ajax/consoles.ajax.php:61 ../../operation/menu.php:450 #: ../../operation/reporting/reporting_viewer.php:218 #: ../../operation/reporting/custom_reporting.php:23 @@ -13750,39 +13904,41 @@ msgstr "" #: ../../include/functions_reports.php:905 #: ../../include/functions_reports.php:909 #: ../../include/functions_reporting.php:3124 -#: ../../operation/agentes/ver_agente.php:1450 -#: ../../operation/agentes/ver_agente.php:1852 ../../operation/menu.php:203 -#: ../../operation/inventory/inventory.php:301 +#: ../../operation/agentes/ver_agente.php:1451 +#: ../../operation/agentes/ver_agente.php:1848 ../../operation/menu.php:203 +#: ../../operation/inventory/inventory.php:303 msgid "Inventory" msgstr "" #: ../../enterprise/meta/general/main_menu.php:277 -#: ../../include/ajax/events.php:2320 ../../operation/events/events.php:1604 +#: ../../include/ajax/events.php:2321 +#: ../../operation/events/sound_events.php:197 +#: ../../operation/events/events.php:1658 msgid "Events list" msgstr "" #: ../../enterprise/meta/general/main_menu.php:285 -#: ../../operation/events/events.php:1516 +#: ../../operation/events/events.php:1570 msgid "Sound Console" msgstr "" #: ../../enterprise/meta/general/main_menu.php:286 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:376 -#: ../../godmode/menu.php:52 ../../godmode/setup/setup_ehorus.php:141 -#: ../../godmode/setup/setup_integria.php:654 -#: ../../include/ajax/events.php:2493 ../../operation/users/user_edit.php:874 -#: ../../operation/users/user_edit.php:927 ../../operation/menu.php:571 -#: ../../operation/events/events.php:1517 +#: ../../godmode/menu.php:52 ../../include/ajax/events.php:2494 +#: ../../operation/users/user_edit.php:871 +#: ../../operation/users/user_edit.php:924 ../../operation/menu.php:571 +#: ../../operation/events/sound_events.php:368 +#: ../../operation/events/events.php:1571 msgid "Start" msgstr "" #: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:573 -#: ../../operation/events/events.php:1519 +#: ../../operation/events/events.php:1573 msgid "No alert" msgstr "" #: ../../enterprise/meta/general/main_menu.php:289 ../../operation/menu.php:574 -#: ../../operation/events/events.php:1520 +#: ../../operation/events/events.php:1574 msgid "Silence alarm" msgstr "" @@ -13817,7 +13973,7 @@ msgstr "" #: ../../enterprise/meta/general/main_menu.php:504 #: ../../godmode/alerts/alert_view.php:65 #: ../../godmode/alerts/alert_view.php:286 -#: ../../include/functions_events.php:4548 +#: ../../include/functions_events.php:4553 msgid "Alert details" msgstr "" @@ -13830,7 +13986,7 @@ msgstr "" msgid "Centralised management" msgstr "" -#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:204 +#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:203 #: ../../godmode/massive/massive_operations.php:313 #: ../../godmode/massive/massive_operations.php:336 #: ../../godmode/massive/massive_operations.php:342 @@ -13848,12 +14004,12 @@ msgstr "" msgid "List of Links" msgstr "" -#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:426 +#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:424 msgid "System audit log" msgstr "" #: ../../enterprise/meta/general/main_menu.php:869 -#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:608 +#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:606 msgid "About" msgstr "" @@ -13871,18 +14027,18 @@ msgid "Authentication code" msgstr "" #: ../../enterprise/meta/general/login_page.php:185 -#: ../../mobile/include/user.class.php:493 ../../general/login_page.php:393 +#: ../../mobile/include/user.class.php:595 ../../general/login_page.php:393 msgid "Check code" msgstr "" #: ../../enterprise/meta/general/login_page.php:229 #: ../../enterprise/meta/general/login_page.php:288 -#: ../../mobile/include/user.class.php:404 +#: ../../mobile/include/user.class.php:470 msgid "Login" msgstr "" #: ../../enterprise/meta/general/login_page.php:245 -#: ../../mobile/include/user.class.php:424 ../../general/login_page.php:316 +#: ../../mobile/include/user.class.php:490 ../../general/login_page.php:316 msgid "Login with SAML" msgstr "" @@ -13972,15 +14128,15 @@ msgstr "" #: ../../enterprise/godmode/reporting/aws_view.php:181 #: ../../enterprise/godmode/wizards/Cloud.class.php:330 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3239 -#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:858 +#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:887 #: ../../include/ajax/alert_list.ajax.php:280 #: ../../include/ajax/alert_list.ajax.php:306 #: ../../include/class/SnmpConsole.class.php:456 #: ../../include/class/SnmpConsole.class.php:514 -#: ../../include/class/SnmpConsole.class.php:854 -#: ../../operation/agentes/alerts_status.php:302 -#: ../../operation/agentes/alerts_status.php:441 -#: ../../operation/agentes/alerts_status.php:455 +#: ../../include/class/SnmpConsole.class.php:856 +#: ../../operation/agentes/alerts_status.php:301 +#: ../../operation/agentes/alerts_status.php:444 +#: ../../operation/agentes/alerts_status.php:458 msgid "Validate" msgstr "" @@ -14052,7 +14208,7 @@ msgstr "" #: ../../enterprise/load_enterprise.php:931 #: ../../enterprise/load_enterprise.php:1072 -#: ../../godmode/users/configure_user.php:1008 +#: ../../godmode/users/configure_user.php:1056 msgid "Renew" msgstr "" @@ -14132,7 +14288,7 @@ msgstr "" #: ../../enterprise/extensions/disabled/check_acls.php:150 #: ../../enterprise/godmode/setup/setup_metaconsole.php:276 #: ../../enterprise/godmode/servers/HA_cluster.php:182 -#: ../../godmode/users/user_list.php:579 ../../godmode/users/user_list.php:767 +#: ../../godmode/users/user_list.php:580 ../../godmode/users/user_list.php:768 #: ../../operation/search_users.php:62 msgid "Admin" msgstr "" @@ -14179,7 +14335,7 @@ msgstr "" #: ../../extensions/api_checker.php:209 ../../extensions/db_status.php:34 #: ../../extensions/files_repo.php:141 ../../extensions/files_repo.php:253 #: ../../extensions/pandora_logs.php:95 ../../godmode/extensions.php:38 -#: ../../godmode/menu.php:417 ../../godmode/setup/news.php:39 +#: ../../godmode/menu.php:415 ../../godmode/setup/news.php:39 #: ../../godmode/setup/links.php:29 ../../godmode/setup/file_manager.php:56 #: ../../include/class/EventSound.class.php:226 #: ../../include/class/Diagnostics.class.php:159 @@ -14190,7 +14346,7 @@ msgstr "" #: ../../extensions/extension_uploader.php:43 #: ../../extensions/api_checker.php:213 ../../extensions/files_repo.php:145 #: ../../extensions/files_repo.php:257 ../../extensions/pandora_logs.php:99 -#: ../../godmode/extensions.php:42 ../../godmode/menu.php:537 +#: ../../godmode/extensions.php:42 ../../godmode/menu.php:535 msgid "Extension manager" msgstr "" @@ -14245,7 +14401,7 @@ msgstr "" #: ../../enterprise/extensions/csv_import_group/main.php:131 #: ../../enterprise/include/class/CSVImportAgents.class.php:208 -#: ../../include/functions_filemanager.php:899 +#: ../../include/functions_filemanager.php:919 msgid "Go" msgstr "" @@ -14420,25 +14576,26 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1143 #: ../../mobile/operation/modules.php:548 #: ../../mobile/operation/modules.php:571 -#: ../../mobile/operation/modules.php:611 -#: ../../mobile/operation/modules.php:634 ../../include/functions.php:1416 +#: ../../mobile/operation/modules.php:622 +#: ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/services.php:427 ../../include/functions.php:1416 #: ../../include/functions.php:1455 ../../include/functions_modules.php:2905 #: ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:4235 -#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4246 -#: ../../include/functions_ui.php:4322 ../../include/class/Tree.class.php:664 +#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4320 +#: ../../include/functions_ui.php:4396 ../../include/class/Tree.class.php:687 #: ../../include/lib/Module.php:603 ../../include/functions_events.php:64 #: ../../include/functions_events.php:116 #: ../../include/functions_events.php:179 -#: ../../operation/agentes/status_monitor.php:1791 -#: ../../operation/agentes/status_monitor.php:1797 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/pandora_networkmap.view.php:1848 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/search_modules.php:115 -#: ../../operation/search_modules.php:142 ../../operation/events/events.php:633 -#: ../../operation/events/events.php:710 ../../operation/events/events.php:736 +#: ../../operation/agentes/status_monitor.php:1793 +#: ../../operation/agentes/status_monitor.php:1799 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/pandora_networkmap.view.php:1849 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/search_modules.php:118 +#: ../../operation/search_modules.php:145 ../../operation/events/events.php:638 +#: ../../operation/events/events.php:715 ../../operation/events/events.php:741 msgid "NORMAL" msgstr "" @@ -14452,25 +14609,26 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1159 #: ../../mobile/operation/modules.php:554 #: ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:617 -#: ../../mobile/operation/modules.php:642 ../../include/functions.php:1404 +#: ../../mobile/operation/modules.php:628 +#: ../../mobile/operation/modules.php:653 +#: ../../mobile/operation/services.php:435 ../../include/functions.php:1404 #: ../../include/functions.php:1436 ../../include/functions_modules.php:2899 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:4239 -#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4252 -#: ../../include/functions_ui.php:4332 ../../include/class/Tree.class.php:634 +#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4326 +#: ../../include/functions_ui.php:4406 ../../include/class/Tree.class.php:657 #: ../../include/lib/Module.php:587 ../../include/functions_events.php:67 #: ../../include/functions_events.php:120 #: ../../include/functions_events.php:164 -#: ../../operation/agentes/status_monitor.php:1805 -#: ../../operation/agentes/status_monitor.php:1818 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/pandora_networkmap.view.php:1842 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/search_modules.php:121 -#: ../../operation/search_modules.php:150 ../../operation/events/events.php:608 -#: ../../operation/events/events.php:716 ../../operation/events/events.php:741 +#: ../../operation/agentes/status_monitor.php:1807 +#: ../../operation/agentes/status_monitor.php:1820 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/pandora_networkmap.view.php:1843 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/search_modules.php:124 +#: ../../operation/search_modules.php:153 ../../operation/events/events.php:613 +#: ../../operation/events/events.php:721 ../../operation/events/events.php:746 msgid "CRITICAL" msgstr "" @@ -14485,26 +14643,27 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1175 #: ../../mobile/operation/modules.php:560 #: ../../mobile/operation/modules.php:587 -#: ../../mobile/operation/modules.php:623 -#: ../../mobile/operation/modules.php:650 ../../include/functions.php:1407 +#: ../../mobile/operation/modules.php:634 +#: ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/services.php:443 ../../include/functions.php:1407 #: ../../include/functions.php:1443 ../../include/functions_modules.php:2902 #: ../../include/functions_modules.php:2919 #: ../../include/functions_modules.php:4243 -#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4240 -#: ../../include/functions_ui.php:4327 ../../include/class/Tree.class.php:642 -#: ../../include/class/NetworkMap.class.php:2949 +#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4314 +#: ../../include/functions_ui.php:4401 ../../include/class/Tree.class.php:665 +#: ../../include/class/NetworkMap.class.php:2955 #: ../../include/lib/Module.php:591 ../../include/functions_events.php:78 #: ../../include/functions_events.php:112 #: ../../include/functions_events.php:182 -#: ../../operation/agentes/status_monitor.php:1826 -#: ../../operation/agentes/status_monitor.php:1839 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1845 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:127 -#: ../../operation/search_modules.php:158 ../../operation/events/events.php:638 -#: ../../operation/events/events.php:704 ../../operation/events/events.php:758 +#: ../../operation/agentes/status_monitor.php:1828 +#: ../../operation/agentes/status_monitor.php:1841 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1846 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:130 +#: ../../operation/search_modules.php:161 ../../operation/events/events.php:643 +#: ../../operation/events/events.php:709 ../../operation/events/events.php:763 msgid "WARNING" msgstr "" @@ -14522,33 +14681,34 @@ msgstr "" #: ../../mobile/operation/modules.php:571 #: ../../mobile/operation/modules.php:579 #: ../../mobile/operation/modules.php:587 -#: ../../mobile/operation/modules.php:634 -#: ../../mobile/operation/modules.php:642 -#: ../../mobile/operation/modules.php:650 ../../include/functions.php:1420 +#: ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/modules.php:653 +#: ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/services.php:458 ../../include/functions.php:1420 #: ../../include/functions.php:1446 ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:2919 -#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4259 -#: ../../include/functions_ui.php:4347 ../../include/class/Tree.class.php:648 +#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4333 +#: ../../include/functions_ui.php:4421 ../../include/class/Tree.class.php:671 #: ../../include/lib/Module.php:594 ../../include/functions_events.php:81 #: ../../include/functions_events.php:125 #: ../../include/functions_events.php:185 -#: ../../operation/agentes/status_monitor.php:1847 -#: ../../operation/agentes/status_monitor.php:1860 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:133 -#: ../../operation/search_modules.php:142 -#: ../../operation/search_modules.php:150 -#: ../../operation/search_modules.php:158 ../../operation/events/events.php:644 -#: ../../operation/events/events.php:723 ../../operation/events/events.php:763 +#: ../../operation/agentes/status_monitor.php:1849 +#: ../../operation/agentes/status_monitor.php:1862 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:136 +#: ../../operation/search_modules.php:145 +#: ../../operation/search_modules.php:153 +#: ../../operation/search_modules.php:161 ../../operation/events/events.php:649 +#: ../../operation/events/events.php:728 ../../operation/events/events.php:768 msgid "UNKNOWN" msgstr "" @@ -14763,7 +14923,7 @@ msgid "Power Status: " msgstr "" #: ../../enterprise/extensions/vmware/vmware_manager.php:269 -#: ../../operation/agentes/pandora_networkmap.view.php:1881 +#: ../../operation/agentes/pandora_networkmap.view.php:1882 msgid "Status: " msgstr "" @@ -14776,7 +14936,7 @@ msgid "Export agents" msgstr "" #: ../../enterprise/extensions/resource_exportation/functions.php:46 -#: ../../enterprise/include/functions_reporting.php:8156 +#: ../../enterprise/include/functions_reporting.php:8165 #: ../../extensions/resource_exportation.php:456 #: ../../extensions/resource_exportation.php:468 #: ../../operation/agentes/exportdata.php:464 @@ -14893,12 +15053,12 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_common.php:217 #: ../../godmode/modules/manage_network_components_form_wizard.php:387 #: ../../godmode/modules/manage_network_components_form_wizard.php:421 -#: ../../godmode/agentes/module_manager_editor_common.php:1141 +#: ../../godmode/agentes/module_manager_editor_common.php:1151 #: ../../godmode/massive/massive_edit_modules.php:580 #: ../../godmode/massive/massive_edit_modules.php:671 #: ../../godmode/massive/massive_edit_modules.php:900 #: ../../godmode/alerts/configure_alert_template.php:870 -#: ../../include/functions_reporting_html.php:5528 +#: ../../include/functions_reporting_html.php:5556 #: ../../include/functions_treeview.php:91 #: ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:676 @@ -14917,12 +15077,12 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_common.php:226 #: ../../godmode/modules/manage_network_components_form_wizard.php:389 #: ../../godmode/modules/manage_network_components_form_wizard.php:430 -#: ../../godmode/agentes/module_manager_editor_common.php:1142 +#: ../../godmode/agentes/module_manager_editor_common.php:1152 #: ../../godmode/massive/massive_edit_modules.php:595 #: ../../godmode/massive/massive_edit_modules.php:686 #: ../../godmode/massive/massive_edit_modules.php:902 #: ../../godmode/alerts/configure_alert_template.php:883 -#: ../../include/functions_reporting_html.php:5529 +#: ../../include/functions_reporting_html.php:5557 #: ../../include/functions_treeview.php:91 #: ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:675 @@ -14939,7 +15099,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_common.php:183 #: ../../godmode/modules/manage_network_components_form_common.php:235 #: ../../godmode/agentes/module_manager_editor_common.php:504 -#: ../../godmode/agentes/module_manager_editor_common.php:596 +#: ../../godmode/agentes/module_manager_editor_common.php:601 #: ../../godmode/massive/massive_edit_modules.php:610 #: ../../godmode/massive/massive_edit_modules.php:701 #: ../../include/functions_treeview.php:89 @@ -14956,7 +15116,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wizard.php:400 #: ../../godmode/modules/manage_network_components_form_wizard.php:448 #: ../../godmode/agentes/module_manager_editor_common.php:478 -#: ../../godmode/agentes/module_manager_editor_common.php:561 +#: ../../godmode/agentes/module_manager_editor_common.php:566 #: ../../godmode/massive/massive_edit_modules.php:645 #: ../../godmode/massive/massive_edit_modules.php:737 msgid "Percentage" @@ -14971,12 +15131,14 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:350 #: ../../godmode/modules/manage_network_components_form_common.php:201 #: ../../godmode/modules/manage_network_components_form_wizard.php:412 +#: ../../godmode/agentes/module_manager_editor_common.php:528 msgid "Change to critical status after" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:359 #: ../../godmode/modules/manage_network_components_form_common.php:210 #: ../../godmode/modules/manage_network_components_form_wizard.php:414 +#: ../../godmode/agentes/module_manager_editor_common.php:530 msgid "intervals in warning status." msgstr "" @@ -14996,7 +15158,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:267 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873 #: ../../godmode/modules/manage_network_components_form_common.php:254 -#: ../../godmode/agentes/module_manager_editor_common.php:1191 +#: ../../godmode/agentes/module_manager_editor_common.php:1201 #: ../../godmode/massive/massive_edit_modules.php:945 msgid "FF threshold" msgstr "" @@ -15004,7 +15166,7 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:406 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941 #: ../../godmode/modules/manage_network_components_form_common.php:257 -#: ../../godmode/agentes/module_manager_editor_common.php:1314 +#: ../../godmode/agentes/module_manager_editor_common.php:1324 #: ../../godmode/massive/massive_edit_modules.php:1009 msgid "Keep counters" msgstr "" @@ -15014,7 +15176,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 #: ../../godmode/modules/manage_network_components_form_common.php:271 -#: ../../godmode/agentes/module_manager_editor_common.php:1195 +#: ../../godmode/agentes/module_manager_editor_common.php:1205 #: ../../godmode/massive/massive_edit_modules.php:953 #: ../../godmode/massive/massive_edit_modules.php:968 msgid "All state changing" @@ -15025,7 +15187,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910 #: ../../godmode/modules/manage_network_components_form_common.php:287 -#: ../../godmode/agentes/module_manager_editor_common.php:1196 +#: ../../godmode/agentes/module_manager_editor_common.php:1206 #: ../../godmode/massive/massive_edit_modules.php:952 #: ../../godmode/massive/massive_edit_modules.php:978 msgid "Each state changing" @@ -15035,7 +15197,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:308 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911 #: ../../godmode/modules/manage_network_components_form_common.php:288 -#: ../../godmode/agentes/module_manager_editor_common.php:1228 +#: ../../godmode/agentes/module_manager_editor_common.php:1238 #: ../../godmode/massive/massive_edit_modules.php:979 msgid "To normal" msgstr "" @@ -15044,7 +15206,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:309 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921 #: ../../godmode/modules/manage_network_components_form_common.php:297 -#: ../../godmode/agentes/module_manager_editor_common.php:1229 +#: ../../godmode/agentes/module_manager_editor_common.php:1239 #: ../../godmode/massive/massive_edit_modules.php:989 msgid "To warning" msgstr "" @@ -15053,7 +15215,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:310 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931 #: ../../godmode/modules/manage_network_components_form_common.php:306 -#: ../../godmode/agentes/module_manager_editor_common.php:1230 +#: ../../godmode/agentes/module_manager_editor_common.php:1240 #: ../../godmode/massive/massive_edit_modules.php:999 msgid "To critical" msgstr "" @@ -15063,15 +15225,16 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966 #: ../../enterprise/include/functions_reporting_csv.php:2225 #: ../../godmode/modules/manage_network_components_form_common.php:316 -#: ../../godmode/agentes/module_manager_editor_common.php:619 +#: ../../godmode/agentes/module_manager_editor_common.php:624 #: ../../godmode/massive/massive_edit_modules.php:1057 -#: ../../include/functions_reporting.php:4664 +#: ../../mobile/operation/modules.php:860 +#: ../../include/functions_reporting.php:4673 msgid "Historical data" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:462 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 -#: ../../godmode/agentes/module_manager_editor_common.php:1282 +#: ../../godmode/agentes/module_manager_editor_common.php:1292 #: ../../godmode/massive/massive_edit_modules.php:1043 msgid "FF timeout" msgstr "" @@ -15091,9 +15254,9 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:473 #: ../../enterprise/include/functions_reporting_csv.php:1251 #: ../../godmode/modules/manage_network_components_form_common.php:319 -#: ../../godmode/agentes/module_manager_editor_common.php:1105 +#: ../../godmode/agentes/module_manager_editor_common.php:1115 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 -#: ../../include/functions_reporting.php:7102 +#: ../../include/functions_reporting.php:7111 msgid "Min. Value" msgstr "" @@ -15105,9 +15268,9 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:478 #: ../../enterprise/include/functions_reporting_csv.php:1306 #: ../../godmode/modules/manage_network_components_form_common.php:321 -#: ../../godmode/agentes/module_manager_editor_common.php:1106 +#: ../../godmode/agentes/module_manager_editor_common.php:1116 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 -#: ../../include/functions_reporting.php:7098 +#: ../../include/functions_reporting.php:7107 msgid "Max. Value" msgstr "" @@ -15119,9 +15282,9 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:485 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 #: ../../godmode/modules/manage_network_components_form_plugin.php:49 -#: ../../godmode/modules/manage_network_components_form_network.php:178 +#: ../../godmode/modules/manage_network_components_form_network.php:210 #: ../../godmode/modules/manage_network_components_form_wmi.php:55 -#: ../../godmode/agentes/module_manager_editor_common.php:1328 +#: ../../godmode/agentes/module_manager_editor_common.php:1338 #: ../../godmode/massive/massive_edit_modules.php:795 #: ../../godmode/setup/snmp_wizard.php:43 msgid "Post process" @@ -15136,55 +15299,55 @@ msgid "Check the correct structure of the data configuration" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:518 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:249 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250 msgid "First line must be \"module_begin\"" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:519 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251 msgid "Data configuration is empty" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:520 #: ../../enterprise/godmode/modules/configure_local_component.php:524 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256 msgid "Last line must be \"module_end\"" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:521 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253 msgid "" "Name is missed. Please add a line with \"module_name yourmodulename\" to " "data configuration" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:522 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254 msgid "" "Type is missed. Please add a line with \"module_type yourmoduletype\" to " "data configuration" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:523 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255 msgid "Type is wrong. Please set a correct type" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:526 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258 msgid "Error in the syntax, please check the data configuration." msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:527 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:259 msgid "Data configuration are built correctly" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:535 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 #: ../../godmode/modules/manage_network_components_form_common.php:334 -#: ../../godmode/agentes/module_manager_editor_common.php:1044 +#: ../../godmode/agentes/module_manager_editor_common.php:1053 #: ../../godmode/massive/massive_edit_modules.php:1107 msgid "Critical instructions" msgstr "" @@ -15199,7 +15362,7 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:540 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 #: ../../godmode/modules/manage_network_components_form_common.php:338 -#: ../../godmode/agentes/module_manager_editor_common.php:1043 +#: ../../godmode/agentes/module_manager_editor_common.php:1054 #: ../../godmode/massive/massive_edit_modules.php:1111 msgid "Warning instructions" msgstr "" @@ -15214,7 +15377,7 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:545 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 #: ../../godmode/modules/manage_network_components_form_common.php:342 -#: ../../godmode/agentes/module_manager_editor_common.php:1020 +#: ../../godmode/agentes/module_manager_editor_common.php:1030 #: ../../godmode/massive/massive_edit_modules.php:1115 msgid "Unknown instructions" msgstr "" @@ -15229,7 +15392,7 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:554 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984 #: ../../godmode/modules/manage_network_components_form_common.php:353 -#: ../../godmode/agentes/module_manager_editor_common.php:745 +#: ../../godmode/agentes/module_manager_editor_common.php:755 #: ../../godmode/massive/massive_edit_modules.php:1075 #: ../../godmode/module_library/module_library_view.php:123 msgid "Category" @@ -15237,13 +15400,13 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:573 #: ../../godmode/modules/manage_network_components_form_common.php:373 -#: ../../godmode/agentes/module_manager_editor_common.php:782 +#: ../../godmode/agentes/module_manager_editor_common.php:792 msgid "Tags available" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:591 #: ../../godmode/modules/manage_network_components_form_common.php:391 -#: ../../godmode/agentes/module_manager_editor_common.php:862 +#: ../../godmode/agentes/module_manager_editor_common.php:872 msgid "Add tags to module" msgstr "" @@ -15255,7 +15418,7 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:593 #: ../../enterprise/godmode/setup/setup_auth.php:196 #: ../../enterprise/godmode/setup/setup_auth.php:551 -#: ../../enterprise/godmode/setup/setup_auth.php:1359 +#: ../../enterprise/godmode/setup/setup_auth.php:1576 #: ../../godmode/modules/manage_network_components_form_common.php:393 msgid "Tags selected" msgstr "" @@ -15266,48 +15429,48 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:651 #: ../../godmode/servers/plugin.php:573 -#: ../../include/class/ManageNetScanScripts.class.php:644 +#: ../../include/class/ManageNetScanScripts.class.php:640 msgid "Default value" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:667 -#: ../../godmode/servers/plugin.php:628 -#: ../../include/class/ManageNetScanScripts.class.php:732 +#: ../../godmode/servers/plugin.php:632 +#: ../../include/class/ManageNetScanScripts.class.php:728 msgid "Add macro" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:675 -#: ../../include/class/ManageNetScanScripts.class.php:750 +#: ../../include/class/ManageNetScanScripts.class.php:746 msgid "Delete macro" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:993 #: ../../godmode/modules/manage_network_components_form_common.php:717 -#: ../../godmode/agentes/module_manager_editor_common.php:2263 +#: ../../godmode/agentes/module_manager_editor_common.php:2273 msgid "Normal Status" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:994 #: ../../godmode/modules/manage_network_components_form_common.php:718 -#: ../../godmode/agentes/module_manager_editor_common.php:2264 +#: ../../godmode/agentes/module_manager_editor_common.php:2274 msgid "Warning Status" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:995 #: ../../godmode/modules/manage_network_components_form_common.php:719 -#: ../../godmode/agentes/module_manager_editor_common.php:2265 +#: ../../godmode/agentes/module_manager_editor_common.php:2275 msgid "Critical Status" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:998 #: ../../godmode/modules/manage_network_components_form_common.php:721 -#: ../../godmode/agentes/module_manager_editor_common.php:2268 +#: ../../godmode/agentes/module_manager_editor_common.php:2278 msgid "Please introduce a maximum warning higher than the minimun warning" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:1000 #: ../../godmode/modules/manage_network_components_form_common.php:722 -#: ../../godmode/agentes/module_manager_editor_common.php:2269 +#: ../../godmode/agentes/module_manager_editor_common.php:2279 msgid "Please introduce a maximum critical higher than the minimun critical" msgstr "" @@ -15316,7 +15479,7 @@ msgid "Please introduce a positicve percentage value" msgstr "" #: ../../enterprise/godmode/modules/local_components.php:140 -#: ../../godmode/modules/manage_network_components.php:195 +#: ../../godmode/modules/manage_network_components.php:196 #: ../../godmode/alerts/configure_alert_template.php:208 #, php-format msgid "Successfully created from %s" @@ -15337,9 +15500,9 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_action.php:164 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:51 #: ../../godmode/modules/manage_nc_groups.php:109 -#: ../../godmode/modules/manage_network_components.php:198 -#: ../../godmode/modules/manage_network_components.php:436 -#: ../../godmode/users/configure_user.php:531 +#: ../../godmode/modules/manage_network_components.php:199 +#: ../../godmode/modules/manage_network_components.php:438 +#: ../../godmode/users/configure_user.php:480 #: ../../godmode/agentes/configurar_agente.php:361 #: ../../godmode/agentes/configurar_agente.php:883 #: ../../godmode/agentes/planned_downtime.editor.php:650 @@ -15348,8 +15511,8 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:544 #: ../../godmode/alerts/alert_list.php:172 ../../godmode/setup/news.php:84 #: ../../godmode/setup/gis.php:49 -#: ../../godmode/reporting/reporting_builder.item_editor.php:6025 -#: ../../include/functions_alerts.php:2755 +#: ../../godmode/reporting/reporting_builder.item_editor.php:6028 +#: ../../include/functions_alerts.php:2756 #: ../../include/functions_planned_downtimes.php:113 #: ../../include/functions_planned_downtimes.php:845 #: ../../operation/agentes/pandora_networkmap.php:140 @@ -15369,14 +15532,14 @@ msgid "" msgstr "" #: ../../enterprise/godmode/modules/local_components.php:339 -#: ../../godmode/modules/manage_network_components.php:447 +#: ../../godmode/modules/manage_network_components.php:449 #: ../../include/class/ManageNetScanScripts.class.php:228 msgid "Created successfully" msgstr "" #: ../../enterprise/godmode/modules/local_components.php:407 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:127 -#: ../../enterprise/godmode/policies/policy_modules.php:1266 +#: ../../enterprise/godmode/policies/policy_modules.php:1311 #: ../../enterprise/godmode/policies/policies.php:212 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:139 @@ -15387,23 +15550,23 @@ msgstr "" #: ../../enterprise/include/ajax/servers.ajax.php:368 #: ../../enterprise/tools/ipam/ipam_action.php:277 #: ../../enterprise/tools/ipam/ipam_massive.php:48 -#: ../../godmode/modules/manage_network_components.php:535 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/modules/manage_network_components.php:538 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 #: ../../godmode/agentes/planned_downtime.editor.php:652 #: ../../godmode/alerts/configure_alert_command.php:150 -#: ../../godmode/alerts/alert_templates.php:162 +#: ../../godmode/alerts/alert_templates.php:166 #: ../../godmode/alerts/configure_alert_template.php:572 #: ../../godmode/alerts/alert_list.php:95 #: ../../godmode/alerts/alert_list.php:320 ../../godmode/setup/gis.php:41 -#: ../../include/functions_alerts.php:2755 +#: ../../include/functions_alerts.php:2756 #: ../../include/functions_planned_downtimes.php:123 #: ../../operation/agentes/pandora_networkmap.php:216 -#: ../../operation/agentes/pandora_networkmap.php:515 +#: ../../operation/agentes/pandora_networkmap.php:516 msgid "Could not be updated" msgstr "" #: ../../enterprise/godmode/modules/local_components.php:415 -#: ../../godmode/modules/manage_network_components.php:544 +#: ../../godmode/modules/manage_network_components.php:547 #: ../../include/class/ManageNetScanScripts.class.php:315 msgid "Updated successfully" msgstr "" @@ -15412,7 +15575,7 @@ msgstr "" #: ../../godmode/modules/manage_nc_groups.php:218 #: ../../godmode/modules/manage_inventory_modules.php:234 #: ../../godmode/modules/manage_inventory_modules.php:267 -#: ../../godmode/modules/manage_network_components.php:588 +#: ../../godmode/modules/manage_network_components.php:591 #: ../../godmode/modules/manage_network_templates.php:114 msgid "Successfully multiple deleted" msgstr "" @@ -15421,14 +15584,14 @@ msgstr "" #: ../../godmode/modules/manage_nc_groups.php:219 #: ../../godmode/modules/manage_inventory_modules.php:235 #: ../../godmode/modules/manage_inventory_modules.php:268 -#: ../../godmode/modules/manage_network_components.php:589 +#: ../../godmode/modules/manage_network_components.php:592 #: ../../godmode/modules/manage_network_templates.php:115 msgid "Not deleted. Error deleting multiple data" msgstr "" #: ../../enterprise/godmode/modules/local_components.php:567 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2902 -#: ../../godmode/modules/manage_network_components.php:677 +#: ../../godmode/modules/manage_network_components.php:680 msgid "Free Search" msgstr "" @@ -15437,15 +15600,15 @@ msgid "Search by name, description or data, list matches." msgstr "" #: ../../enterprise/godmode/modules/local_components.php:732 -#: ../../enterprise/godmode/policies/policy_modules.php:1636 +#: ../../enterprise/godmode/policies/policy_modules.php:1681 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:595 #: ../../enterprise/include/class/NetworkConfigManager.class.php:628 -#: ../../godmode/modules/manage_network_components.php:841 -#: ../../godmode/agentes/module_manager.php:961 +#: ../../godmode/modules/manage_network_components.php:844 +#: ../../godmode/agentes/module_manager.php:975 #: ../../godmode/snmpconsole/snmp_alert.php:1984 #: ../../godmode/snmpconsole/snmp_alert.php:1985 #: ../../godmode/alerts/alert_actions.php:461 -#: ../../godmode/alerts/alert_templates.php:458 +#: ../../godmode/alerts/alert_templates.php:462 #: ../../godmode/reporting/reporting_builder.php:1194 msgid "Duplicate" msgstr "" @@ -15514,7 +15677,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wizard.php:661 #: ../../godmode/agentes/planned_downtime.list.php:737 #: ../../godmode/agentes/planned_downtime.editor.php:951 -#: ../../include/functions_reporting_html.php:6372 +#: ../../include/functions_reporting_html.php:6406 msgid "Execution" msgstr "" @@ -15602,8 +15765,8 @@ msgstr "" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:665 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:679 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:320 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:335 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643 @@ -15633,20 +15796,20 @@ msgstr "" #: ../../godmode/massive/massive_edit_users.php:462 #: ../../godmode/massive/massive_edit_users.php:470 #: ../../godmode/massive/massive_edit_users.php:507 -#: ../../godmode/massive/massive_edit_users.php:609 -#: ../../godmode/massive/massive_edit_users.php:628 -#: ../../godmode/massive/massive_edit_users.php:635 -#: ../../godmode/massive/massive_edit_agents.php:677 -#: ../../godmode/massive/massive_edit_agents.php:703 -#: ../../godmode/massive/massive_edit_agents.php:739 -#: ../../godmode/massive/massive_edit_agents.php:763 -#: ../../godmode/massive/massive_edit_agents.php:880 -#: ../../godmode/massive/massive_edit_agents.php:927 -#: ../../godmode/massive/massive_edit_agents.php:1020 -#: ../../godmode/massive/massive_edit_agents.php:1073 -#: ../../godmode/massive/massive_edit_agents.php:1115 -#: ../../godmode/massive/massive_edit_agents.php:1143 -#: ../../godmode/massive/massive_edit_agents.php:1237 +#: ../../godmode/massive/massive_edit_users.php:610 +#: ../../godmode/massive/massive_edit_users.php:629 +#: ../../godmode/massive/massive_edit_users.php:636 +#: ../../godmode/massive/massive_edit_agents.php:694 +#: ../../godmode/massive/massive_edit_agents.php:720 +#: ../../godmode/massive/massive_edit_agents.php:756 +#: ../../godmode/massive/massive_edit_agents.php:780 +#: ../../godmode/massive/massive_edit_agents.php:897 +#: ../../godmode/massive/massive_edit_agents.php:944 +#: ../../godmode/massive/massive_edit_agents.php:1037 +#: ../../godmode/massive/massive_edit_agents.php:1090 +#: ../../godmode/massive/massive_edit_agents.php:1132 +#: ../../godmode/massive/massive_edit_agents.php:1159 +#: ../../godmode/massive/massive_edit_agents.php:1253 #: ../../godmode/massive/massive_edit_modules.php:630 #: ../../godmode/massive/massive_edit_modules.php:652 #: ../../godmode/massive/massive_edit_modules.php:721 @@ -15668,28 +15831,27 @@ msgstr "" #: ../../godmode/massive/massive_edit_modules.php:1095 #: ../../godmode/massive/massive_edit_modules.php:1123 #: ../../godmode/massive/massive_edit_modules.php:1227 -#: ../../include/functions_html.php:1877 ../../include/functions_html.php:1978 -#: ../../include/functions_html.php:2116 +#: ../../include/functions_html.php:1888 ../../include/functions_html.php:1989 +#: ../../include/functions_html.php:2127 msgid "No change" msgstr "" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:683 -#: ../../godmode/agentes/agent_manager.php:636 +#: ../../godmode/agentes/agent_manager.php:638 #: ../../godmode/reporting/reporting_builder.item_editor.php:73 -#: ../../include/functions_events.php:5061 -#: ../../operation/agentes/estado_generalagente.php:504 -#: ../../operation/inventory/inventory.php:1003 -#: ../../operation/inventory/inventory.php:1297 +#: ../../include/functions_events.php:5066 +#: ../../operation/agentes/estado_generalagente.php:475 +#: ../../operation/inventory/inventory.php:1249 msgid "Secondary groups" msgstr "" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:730 -#: ../../godmode/massive/massive_edit_agents.php:825 +#: ../../godmode/massive/massive_edit_agents.php:842 msgid "Add secondary groups" msgstr "" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:737 -#: ../../godmode/massive/massive_edit_agents.php:851 +#: ../../godmode/massive/massive_edit_agents.php:868 msgid "Remove secondary groups" msgstr "" @@ -15700,7 +15862,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:790 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 -#: ../../operation/agentes/estado_agente.php:1063 +#: ../../operation/agentes/estado_agente.php:1071 msgid "Op" msgstr "" @@ -15780,13 +15942,13 @@ msgstr "" #: ../../enterprise/include/functions_HA_cluster.php:61 #: ../../enterprise/include/lib/Metaconsole/Node.php:1114 #: ../../enterprise/include/lib/Metaconsole/Node.php:1115 -#: ../../godmode/users/user_list.php:845 +#: ../../godmode/users/user_list.php:846 #: ../../godmode/massive/massive_edit_users.php:529 -#: ../../godmode/alerts/alert_list.list.php:1170 +#: ../../godmode/alerts/alert_list.list.php:1169 #: ../../include/class/SatelliteAgent.class.php:1195 -#: ../../include/class/TipsWindow.class.php:456 -#: ../../include/class/TipsWindow.class.php:734 -#: ../../include/class/TipsWindow.class.php:901 +#: ../../include/class/TipsWindow.class.php:468 +#: ../../include/class/TipsWindow.class.php:754 +#: ../../include/class/TipsWindow.class.php:921 #: ../../operation/users/user_edit_notifications.php:64 msgid "Enable" msgstr "" @@ -15798,15 +15960,15 @@ msgstr "" #: ../../enterprise/include/functions_HA_cluster.php:58 #: ../../enterprise/include/lib/Metaconsole/Node.php:1140 #: ../../enterprise/include/lib/Metaconsole/Node.php:1141 -#: ../../godmode/users/user_list.php:840 +#: ../../godmode/users/user_list.php:841 #: ../../godmode/massive/massive_edit_users.php:518 -#: ../../godmode/alerts/alert_list.list.php:1143 +#: ../../godmode/alerts/alert_list.list.php:1142 #: ../../include/functions.php:3413 #: ../../include/class/SatelliteAgent.class.php:1195 msgid "Disable" msgstr "" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:218 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:226 msgid "Add new configuration definition" msgstr "" @@ -15830,10 +15992,10 @@ msgstr "" #: ../../enterprise/godmode/agentes/plugins_manager.php:212 #: ../../enterprise/godmode/policies/policy_plugins.php:185 #: ../../enterprise/godmode/policies/policies.php:607 -#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:322 +#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:320 #: ../../godmode/servers/plugin.php:240 ../../godmode/servers/plugin.php:282 -#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:764 -#: ../../godmode/servers/plugin.php:806 +#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:756 +#: ../../godmode/servers/plugin.php:798 msgid "Plugins" msgstr "" @@ -15860,12 +16022,12 @@ msgid "Show files" msgstr "" #: ../../enterprise/godmode/agentes/collection_manager.php:251 -#: ../../enterprise/operation/log/log_viewer.php:1477 -#: ../../enterprise/operation/log/log_viewer.php:1485 +#: ../../enterprise/operation/log/log_viewer.php:1475 +#: ../../enterprise/operation/log/log_viewer.php:1483 #: ../../godmode/reporting/reporting_builder.php:1268 -#: ../../include/functions_reporting.php:3199 -#: ../../operation/agentes/agent_inventory.php:280 -#: ../../operation/inventory/inventory.php:776 +#: ../../include/functions_reporting.php:3208 +#: ../../operation/agentes/agent_inventory.php:334 +#: ../../operation/inventory/inventory.php:1005 msgid "No data found." msgstr "" @@ -15874,9 +16036,9 @@ msgstr "" #: ../../godmode/agentes/inventory_manager.php:232 #: ../../godmode/snmpconsole/snmp_alert.php:1891 #: ../../godmode/reporting/reporting_builder.list_items.php:373 -#: ../../godmode/reporting/graph_builder.graph_editor.php:211 +#: ../../godmode/reporting/graph_builder.graph_editor.php:344 #: ../../include/ajax/alert_list.ajax.php:285 -#: ../../operation/agentes/status_monitor.php:1531 +#: ../../operation/agentes/status_monitor.php:1533 msgid "P." msgstr "" @@ -15892,7 +16054,7 @@ msgid "Capacity planning" msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:41 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:186 #: ../../enterprise/godmode/services/services.elements.php:95 #: ../../enterprise/godmode/services/services.elements.php:184 #: ../../enterprise/include/functions_visual_map_editor.php:30 @@ -15903,7 +16065,8 @@ msgstr "" #: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288 #: ../../enterprise/include/functions_reporting.php:6152 #: ../../enterprise/include/functions_services.php:1712 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4118 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4127 +#: ../../mobile/operation/services.php:267 #: ../../include/lib/Dashboard/Widgets/service_map.php:318 msgid "Service" msgstr "" @@ -15920,59 +16083,59 @@ msgstr "" msgid "Trending module" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:138 msgid "Fixed value" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:140 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141 msgid "Add module to operation as add" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 msgid "Add module to operations as deduct" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 msgid "Add module to operations as multiplicate " msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 msgid "Add module to operations as divide" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145 msgid "Remove selected modules" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:148 msgid "Add module to average operation" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:150 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149 msgid "Remove selected modules from operations stack" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:165 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:160 msgid "Move down selected modules" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:161 msgid "Move up selected modules" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:199 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197 msgid "Select Service" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:216 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:214 msgid "Netflow filter" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:225 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:223 msgid "Select filter" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:240 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:238 msgid "Percentual value" msgstr "" @@ -16086,15 +16249,19 @@ msgstr "" msgid "No component was found" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:170 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:132 +msgid "Macro value" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:171 msgid "Show configuration data" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:181 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:182 msgid "Hide configuration data" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:189 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:190 msgid "Data configuration" msgstr "" @@ -16130,7 +16297,7 @@ msgid "Add Modules" msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:83 -#: ../../godmode/agentes/module_manager.php:1247 +#: ../../godmode/agentes/module_manager.php:1268 msgid "Delete module" msgstr "" @@ -16171,8 +16338,8 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:231 #: ../../godmode/tag/edit_tag.php:76 -#: ../../include/class/TipsWindow.class.php:718 -#: ../../include/class/TipsWindow.class.php:885 +#: ../../include/class/TipsWindow.class.php:738 +#: ../../include/class/TipsWindow.class.php:905 #: ../../operation/search_users.php:47 msgid "Profile" msgstr "" @@ -16192,7 +16359,7 @@ msgid "Only Selenium 3." msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:286 -#: ../../godmode/agentes/module_manager_editor_common.php:1206 +#: ../../godmode/agentes/module_manager_editor_common.php:1216 msgid "Change all states" msgstr "" @@ -16216,15 +16383,15 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_excel.php:220 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:419 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:792 -#: ../../godmode/groups/configure_group.php:234 +#: ../../godmode/groups/configure_group.php:253 #: ../../godmode/agentes/agent_manager.php:195 -#: ../../godmode/agentes/module_manager_editor_common.php:744 -#: ../../godmode/massive/massive_edit_agents.php:812 +#: ../../godmode/agentes/module_manager_editor_common.php:754 +#: ../../godmode/massive/massive_edit_agents.php:829 msgid "Custom ID" msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:497 -#: ../../godmode/agentes/module_manager.php:902 +#: ../../godmode/agentes/module_manager.php:916 msgid "" "The policy modules of data type will only update their intervals when policy " "is applied." @@ -16232,7 +16399,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:527 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961 -#: ../../godmode/agentes/module_manager_editor_common.php:1281 +#: ../../godmode/agentes/module_manager_editor_common.php:1291 #: ../../godmode/massive/massive_edit_modules.php:1029 msgid "FF interval" msgstr "" @@ -16245,7 +16412,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:546 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057 -#: ../../godmode/agentes/module_manager_editor_common.php:1410 +#: ../../godmode/agentes/module_manager_editor_common.php:1420 #: ../../godmode/massive/massive_edit_modules.php:1150 msgid "Retries" msgstr "" @@ -16259,7 +16426,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:619 #: ../../enterprise/godmode/policies/policy_modules.php:418 #: ../../godmode/agentes/module_manager_editor.php:762 -#: ../../godmode/agentes/module_manager_editor_common.php:1444 +#: ../../godmode/agentes/module_manager_editor_common.php:1454 msgid "Custom macros" msgstr "" @@ -16285,13 +16452,15 @@ msgstr "" #: ../../enterprise/operation/services/services.table_services.php:63 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104 #: ../../godmode/gis_maps/configure_gis_map.php:116 -#: ../../godmode/reporting/visual_console_builder.php:865 +#: ../../godmode/reporting/visual_console_builder.php:873 #: ../../godmode/reporting/map_builder.php:129 #: ../../godmode/reporting/visual_console_favorite.php:126 -#: ../../operation/visual_console/view.php:247 +#: ../../operation/visual_console/view.php:249 +#: ../../operation/visual_console/legacy_view.php:215 +#: ../../operation/agentes/networkmap.dinamic.php:146 #: ../../operation/agentes/pandora_networkmap.editor.php:232 -#: ../../operation/agentes/pandora_networkmap.php:681 -#: ../../operation/agentes/pandora_networkmap.view.php:2409 +#: ../../operation/agentes/pandora_networkmap.php:682 +#: ../../operation/agentes/pandora_networkmap.view.php:2410 #: ../../operation/menu.php:439 ../../operation/gis_maps/gis_map.php:47 #: ../../operation/gis_maps/render_view.php:189 msgid "Topology maps" @@ -16300,15 +16469,15 @@ msgstr "" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108 #: ../../operation/agentes/pandora_networkmap.editor.php:236 -#: ../../operation/agentes/pandora_networkmap.php:685 -#: ../../operation/agentes/pandora_networkmap.view.php:2311 +#: ../../operation/agentes/pandora_networkmap.php:686 +#: ../../operation/agentes/pandora_networkmap.view.php:2312 msgid "Networkmap" msgstr "" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115 #: ../../operation/agentes/pandora_networkmap.editor.php:274 -#: ../../operation/agentes/pandora_networkmap.view.php:2317 +#: ../../operation/agentes/pandora_networkmap.view.php:2318 msgid "Not found networkmap." msgstr "" @@ -16413,7 +16582,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:75 #: ../../enterprise/godmode/policies/configure_policy.php:92 #: ../../enterprise/godmode/policies/policy_modules.php:488 -#: ../../enterprise/godmode/policies/policy_queue.php:218 +#: ../../enterprise/godmode/policies/policy_queue.php:220 #: ../../enterprise/godmode/policies/policies.php:275 #: ../../enterprise/godmode/policies/policy_linking.php:127 #: ../../enterprise/godmode/policies/policy_external_alerts.php:329 @@ -16445,7 +16614,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_plugins.php:70 #: ../../enterprise/godmode/policies/policy_alerts.php:270 -#: ../../enterprise/godmode/policies/policy_modules.php:1332 +#: ../../enterprise/godmode/policies/policy_modules.php:1377 #: ../../enterprise/godmode/policies/policy_external_alerts.php:162 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:177 #: ../../enterprise/godmode/policies/policy_collections.php:122 @@ -16456,7 +16625,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_plugins.php:71 #: ../../enterprise/godmode/policies/policy_alerts.php:271 -#: ../../enterprise/godmode/policies/policy_modules.php:1333 +#: ../../enterprise/godmode/policies/policy_modules.php:1378 #: ../../enterprise/godmode/policies/policy_external_alerts.php:163 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:180 #: ../../enterprise/godmode/policies/policy_collections.php:123 @@ -16478,7 +16647,7 @@ msgid "There are no defined plugins" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:105 -#: ../../enterprise/godmode/policies/policy_modules.php:611 +#: ../../enterprise/godmode/policies/policy_modules.php:615 #: ../../enterprise/godmode/policies/policies.php:256 #: ../../enterprise/godmode/policies/policy_linking.php:51 #: ../../enterprise/godmode/policies/policy_external_alerts.php:87 @@ -16492,7 +16661,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:164 #: ../../enterprise/godmode/policies/policy_modules.php:547 #: ../../enterprise/godmode/setup/setup_metaconsole.php:157 -#: ../../godmode/agentes/configurar_agente.php:2214 +#: ../../godmode/agentes/configurar_agente.php:2277 #: ../../godmode/agentes/modificar_agente.php:271 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 #: ../../godmode/alerts/alert_list.php:419 @@ -16578,8 +16747,8 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_external_alerts.php:510 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3443 #: ../../godmode/alerts/alert_list.list.php:724 -#: ../../include/class/Diagnostics.class.php:1204 #: ../../include/class/Diagnostics.class.php:1208 +#: ../../include/class/Diagnostics.class.php:1212 msgid "On" msgstr "" @@ -16591,7 +16760,7 @@ msgid "Until" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:577 -#: ../../enterprise/godmode/policies/policy_modules.php:1653 +#: ../../enterprise/godmode/policies/policy_modules.php:1698 #: ../../enterprise/godmode/policies/policy_external_alerts.php:583 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:303 #: ../../enterprise/godmode/policies/policy_agents.php:1192 @@ -16604,12 +16773,12 @@ msgid "There is not alerts configured in this policy." msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:695 -#: ../../godmode/alerts/alert_list.list.php:1197 +#: ../../godmode/alerts/alert_list.list.php:1196 msgid "Set off standby" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:704 -#: ../../godmode/alerts/alert_list.list.php:1224 +#: ../../godmode/alerts/alert_list.list.php:1223 msgid "Set standby" msgstr "" @@ -16628,9 +16797,9 @@ msgstr "" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:476 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:544 #: ../../godmode/snmpconsole/snmp_alert.php:2020 -#: ../../godmode/alerts/alert_list.list.php:995 -#: ../../godmode/alerts/alert_list.list.php:1006 -#: ../../godmode/alerts/alert_list.list.php:1270 +#: ../../godmode/alerts/alert_list.list.php:994 +#: ../../godmode/alerts/alert_list.list.php:1005 +#: ../../godmode/alerts/alert_list.list.php:1269 msgid "Add action" msgstr "" @@ -16684,249 +16853,249 @@ msgstr "" msgid "Could not be added module(s). You must select a policy" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:593 +#: ../../enterprise/godmode/policies/policy_modules.php:597 #, php-format msgid "Successfully added module(s) (%s/%s) to policy %s" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:599 +#: ../../enterprise/godmode/policies/policy_modules.php:603 #, php-format msgid "Could not be added module(s) (%s/%s) to policy %s" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:635 +#: ../../enterprise/godmode/policies/policy_modules.php:639 msgid "To define plugins please use plugin configuration tab." msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:934 +#: ../../enterprise/godmode/policies/policy_modules.php:938 msgid "Could not be added module." msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1281 +#: ../../enterprise/godmode/policies/policy_modules.php:1326 msgid "" "The module type in Data configuration is empty, take from combo box of form." msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1285 +#: ../../enterprise/godmode/policies/policy_modules.php:1330 msgid "" "The module name in Data configuration is empty, take from text field of form." msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1315 -#: ../../enterprise/godmode/policies/policy_modules.php:1328 +#: ../../enterprise/godmode/policies/policy_modules.php:1360 +#: ../../enterprise/godmode/policies/policy_modules.php:1373 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:171 msgid "" "Successfully added to delete pending modules. Will be deleted in the next " "policy application." msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1319 +#: ../../enterprise/godmode/policies/policy_modules.php:1364 msgid "Could not be added to deleted all modules." msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1379 -#: ../../godmode/agentes/configurar_agente.php:2127 +#: ../../enterprise/godmode/policies/policy_modules.php:1424 +#: ../../godmode/agentes/configurar_agente.php:2190 #: ../../include/functions_reports.php:975 #, php-format msgid "copy of %s" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1397 -#: ../../godmode/agentes/configurar_agente.php:2141 +#: ../../enterprise/godmode/policies/policy_modules.php:1442 +#: ../../godmode/agentes/configurar_agente.php:2204 #, php-format msgid "copy of %s (%d)" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1427 +#: ../../enterprise/godmode/policies/policy_modules.php:1472 msgid "Successfully duplicate the module." msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1428 -#: ../../operation/agentes/pandora_networkmap.php:540 +#: ../../enterprise/godmode/policies/policy_modules.php:1473 +#: ../../operation/agentes/pandora_networkmap.php:541 msgid "Could not be duplicated" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1482 -#: ../../operation/agentes/estado_monitores.php:610 +#: ../../enterprise/godmode/policies/policy_modules.php:1527 +#: ../../operation/agentes/estado_monitores.php:608 msgid "Show in hierachy mode" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1577 +#: ../../enterprise/godmode/policies/policy_modules.php:1622 msgid "Local component" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1590 -#: ../../enterprise/godmode/policies/policy_modules.php:1591 +#: ../../enterprise/godmode/policies/policy_modules.php:1635 +#: ../../enterprise/godmode/policies/policy_modules.php:1636 msgid "Disabled module" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1598 -#: ../../enterprise/godmode/policies/policy_modules.php:1599 +#: ../../enterprise/godmode/policies/policy_modules.php:1643 +#: ../../enterprise/godmode/policies/policy_modules.php:1644 msgid "Enabled module" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1609 -#: ../../enterprise/godmode/policies/policy_modules.php:1610 -#: ../../godmode/agentes/module_manager.php:940 +#: ../../enterprise/godmode/policies/policy_modules.php:1654 +#: ../../enterprise/godmode/policies/policy_modules.php:1655 +#: ../../godmode/agentes/module_manager.php:954 msgid "Enable module" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1619 -#: ../../enterprise/godmode/policies/policy_modules.php:1620 -#: ../../godmode/agentes/module_manager.php:949 +#: ../../enterprise/godmode/policies/policy_modules.php:1664 +#: ../../enterprise/godmode/policies/policy_modules.php:1665 +#: ../../godmode/agentes/module_manager.php:963 msgid "Disable module" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1719 +#: ../../enterprise/godmode/policies/policy_modules.php:1764 msgid "There are no defined modules" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1840 +#: ../../enterprise/godmode/policies/policy_modules.php:1885 #: ../../godmode/agentes/module_manager_editor.php:868 msgid "No module name provided" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1841 +#: ../../enterprise/godmode/policies/policy_modules.php:1886 #: ../../godmode/agentes/module_manager_editor.php:878 msgid "No target IP provided" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1842 +#: ../../enterprise/godmode/policies/policy_modules.php:1887 #: ../../godmode/agentes/module_manager_editor.php:888 msgid "No SNMP OID provided" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:2008 +#: ../../enterprise/godmode/policies/policy_modules.php:2053 msgid "Are you sure to copy modules into policy?\\n" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:2028 +#: ../../enterprise/godmode/policies/policy_modules.php:2071 msgid "Please select any module to copy" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:63 +#: ../../enterprise/godmode/policies/policy_queue.php:65 msgid "No policies with this id" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:78 +#: ../../enterprise/godmode/policies/policy_queue.php:80 #: ../../enterprise/godmode/policies/policy_agents.php:61 msgid "" "Starting with Pandora FMS version 760, assigning an entire group to a policy " "will apply it automatically to all the new agents added to that group." msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:146 +#: ../../enterprise/godmode/policies/policy_queue.php:148 #, php-format msgid "%s: Operations successfully deleted from the queue" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:153 +#: ../../enterprise/godmode/policies/policy_queue.php:155 msgid "Operations successfully deleted from the queue" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:154 +#: ../../enterprise/godmode/policies/policy_queue.php:156 msgid "Operations cannot be deleted from the queue" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:261 +#: ../../enterprise/godmode/policies/policy_queue.php:263 #, php-format msgid "Some nodes (%s) are unreachebles. Some information may be missing." msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:418 +#: ../../enterprise/godmode/policies/policy_queue.php:420 msgid "Update pending" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:424 +#: ../../enterprise/godmode/policies/policy_queue.php:426 msgid "Update pending agents" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:447 +#: ../../enterprise/godmode/policies/policy_queue.php:449 #: ../../enterprise/godmode/policies/policy_agents.php:1135 #: ../../enterprise/godmode/policies/policy_agents.php:1477 msgid "Add to apply queue" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:453 +#: ../../enterprise/godmode/policies/policy_queue.php:455 msgid "Add to apply queue only for database" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:464 +#: ../../enterprise/godmode/policies/policy_queue.php:466 msgid "Update pending groups" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:478 +#: ../../enterprise/godmode/policies/policy_queue.php:480 msgid "Link pending modules" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:486 +#: ../../enterprise/godmode/policies/policy_queue.php:488 msgid "Will be linked in the next policy application" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:492 +#: ../../enterprise/godmode/policies/policy_queue.php:494 msgid "Unlink pending modules" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:498 +#: ../../enterprise/godmode/policies/policy_queue.php:500 msgid "Will be unlinked in the next policy application" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:503 +#: ../../enterprise/godmode/policies/policy_queue.php:505 msgid "Delete pending" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:509 +#: ../../enterprise/godmode/policies/policy_queue.php:511 msgid "Delete pending agents" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:517 -#: ../../enterprise/godmode/policies/policy_queue.php:532 -#: ../../enterprise/godmode/policies/policy_queue.php:547 -#: ../../enterprise/godmode/policies/policy_queue.php:562 -#: ../../enterprise/godmode/policies/policy_queue.php:577 -#: ../../enterprise/godmode/policies/policy_queue.php:592 -#: ../../enterprise/godmode/policies/policy_queue.php:607 -#: ../../enterprise/godmode/policies/policy_queue.php:622 +#: ../../enterprise/godmode/policies/policy_queue.php:519 +#: ../../enterprise/godmode/policies/policy_queue.php:534 +#: ../../enterprise/godmode/policies/policy_queue.php:549 +#: ../../enterprise/godmode/policies/policy_queue.php:564 +#: ../../enterprise/godmode/policies/policy_queue.php:579 +#: ../../enterprise/godmode/policies/policy_queue.php:594 +#: ../../enterprise/godmode/policies/policy_queue.php:609 +#: ../../enterprise/godmode/policies/policy_queue.php:624 msgid "Will be deleted in the next policy application" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:524 +#: ../../enterprise/godmode/policies/policy_queue.php:526 msgid "Delete pending groups" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:539 +#: ../../enterprise/godmode/policies/policy_queue.php:541 msgid "Delete pending modules" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:554 +#: ../../enterprise/godmode/policies/policy_queue.php:556 msgid "Delete pending inventory modules" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:569 +#: ../../enterprise/godmode/policies/policy_queue.php:571 msgid "Delete pending alerts" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:584 +#: ../../enterprise/godmode/policies/policy_queue.php:586 msgid "Delete pending external alerts" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:599 +#: ../../enterprise/godmode/policies/policy_queue.php:601 msgid "Delete pending file collections" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:614 +#: ../../enterprise/godmode/policies/policy_queue.php:616 msgid "Delete pending plugins" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:628 +#: ../../enterprise/godmode/policies/policy_queue.php:630 msgid "Advices" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:633 +#: ../../enterprise/godmode/policies/policy_queue.php:635 msgid "Queue summary" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:634 +#: ../../enterprise/godmode/policies/policy_queue.php:636 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:186 #: ../../godmode/snmpconsole/snmp_alert.php:1812 #: ../../godmode/alerts/alert_list.list.php:260 @@ -16934,28 +17103,28 @@ msgstr "" msgid "Toggle filter(s)" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:710 +#: ../../enterprise/godmode/policies/policy_queue.php:712 #: ../../enterprise/godmode/policies/policy_linking.php:203 #: ../../include/functions_massive_operations.php:189 -#: ../../include/lib/Dashboard/Widget.php:603 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544 -#: ../../include/functions_events.php:4908 +#: ../../include/lib/Dashboard/Widget.php:604 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545 +#: ../../include/functions_events.php:4913 msgid "Node" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:838 +#: ../../enterprise/godmode/policies/policy_queue.php:842 msgid "Empty queue" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:852 +#: ../../enterprise/godmode/policies/policy_queue.php:856 msgid "This operation could take a long time" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:864 +#: ../../enterprise/godmode/policies/policy_queue.php:868 msgid "Apply all queues" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:877 +#: ../../enterprise/godmode/policies/policy_queue.php:881 msgid "Clear all items" msgstr "" @@ -17273,7 +17442,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_agents.php:851 #: ../../enterprise/godmode/setup/setup_auth.php:252 #: ../../enterprise/godmode/setup/setup_auth.php:602 -#: ../../enterprise/godmode/setup/setup_auth.php:1412 +#: ../../enterprise/godmode/setup/setup_auth.php:1629 #: ../../extensions/files_repo/files_repo_form.php:54 #: ../../extensions/module_groups.php:350 #: ../../godmode/reporting/visual_console_builder.wizard.php:368 @@ -17287,13 +17456,13 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/events_list.php:431 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:334 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:341 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:350 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:372 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:344 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:353 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:375 #: ../../include/lib/Dashboard/Widgets/tactical.php:331 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 #: ../../operation/tree.php:91 -#: ../../operation/agentes/pandora_networkmap.php:719 +#: ../../operation/agentes/pandora_networkmap.php:720 msgid "Groups" msgstr "" @@ -17312,10 +17481,10 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_agents.php:959 #: ../../godmode/agentes/configurar_agente.php:623 #: ../../godmode/agentes/configurar_agente.php:762 -#: ../../godmode/agentes/agent_manager.php:862 -#: ../../godmode/massive/massive_edit_agents.php:966 +#: ../../godmode/agentes/agent_manager.php:870 +#: ../../godmode/massive/massive_edit_agents.php:983 #: ../../godmode/reporting/reporting_builder.item_editor.php:79 -#: ../../godmode/servers/servers.build_table.php:260 +#: ../../godmode/servers/servers.build_table.php:273 #: ../../operation/agentes/estado_generalagente.php:313 msgid "Remote configuration" msgstr "" @@ -17333,7 +17502,7 @@ msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:167 #: ../../enterprise/operation/agentes/policy_view.php:258 #: ../../enterprise/operation/agentes/policy_view.php:263 -#: ../../mobile/operation/agents.php:406 +#: ../../mobile/operation/agents.php:407 #: ../../include/ajax/alert_list.ajax.php:286 #: ../../include/ajax/alert_list.ajax.php:311 #: ../../include/class/AuditLog.class.php:130 @@ -17352,7 +17521,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_agents.php:1348 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../godmode/reporting/visual_console_builder.elements.php:134 -#: ../../mobile/operation/agents.php:407 +#: ../../mobile/operation/agents.php:408 #: ../../include/class/AuditLog.class.php:130 msgid "A." msgstr "" @@ -17436,16 +17605,20 @@ msgstr "" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:55 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 +#: ../../godmode/snmpconsole/snmp_filters.php:59 #: ../../include/class/CredentialStore.class.php:965 #: ../../include/class/SnmpConsole.class.php:221 #: ../../operation/snmpconsole/snmp_statistics.php:104 +#: ../../operation/snmpconsole/snmp_browser.php:92 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 #: ../../operation/menu.php:259 msgid "SNMP" msgstr "" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:115 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:403 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:304 #: ../../godmode/setup/snmp_wizard.php:42 #: ../../include/functions_snmp_browser.php:556 msgid "OID" @@ -17461,13 +17634,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2232 #: ../../enterprise/include/functions_reporting_csv.php:2437 #: ../../enterprise/include/functions_reporting_csv.php:2451 -#: ../../godmode/setup/news.php:287 ../../godmode/setup/setup_visuals.php:1829 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2349 +#: ../../godmode/setup/news.php:291 ../../godmode/setup/setup_visuals.php:1844 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2358 #: ../../include/functions_reports.php:847 -#: ../../include/class/TipsWindow.class.php:455 -#: ../../include/class/TipsWindow.class.php:730 -#: ../../include/class/TipsWindow.class.php:897 -#: ../../include/functions_reporting.php:7509 +#: ../../include/class/TipsWindow.class.php:467 +#: ../../include/class/TipsWindow.class.php:750 +#: ../../include/class/TipsWindow.class.php:917 +#: ../../include/functions_reporting.php:7518 #: ../../include/lib/Dashboard/Widgets/post.php:214 msgid "Text" msgstr "" @@ -17475,8 +17648,8 @@ msgstr "" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 #: ../../enterprise/operation/snmpconsole/snmp_view.php:82 #: ../../enterprise/operation/menu.php:151 -#: ../../include/class/SnmpConsole.class.php:915 -#: ../../include/class/SnmpConsole.class.php:916 +#: ../../include/class/SnmpConsole.class.php:917 +#: ../../include/class/SnmpConsole.class.php:918 msgid "SNMP trap editor" msgstr "" @@ -17744,7 +17917,7 @@ msgid "Failed: create the alerts for this modules, please check." msgstr "" #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:127 #: ../../enterprise/include/ajax/policy.ajax.php:263 #: ../../godmode/massive/massive_standby_alerts.php:218 #: ../../godmode/massive/massive_add_alerts.php:280 @@ -17755,8 +17928,9 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:140 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2200 #: ../../include/functions_alerts.php:673 msgid "Regular expression" msgstr "" @@ -17839,8 +18013,9 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:341 #: ../../enterprise/godmode/setup/setup_auth.php:473 #: ../../enterprise/godmode/setup/setup_auth.php:639 -#: ../../enterprise/godmode/setup/setup_auth.php:1281 -#: ../../enterprise/godmode/setup/setup_auth.php:1451 +#: ../../enterprise/godmode/setup/setup_auth.php:1197 +#: ../../enterprise/godmode/setup/setup_auth.php:1498 +#: ../../enterprise/godmode/setup/setup_auth.php:1668 #: ../../enterprise/godmode/setup/setup_acl.php:487 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:719 #: ../../enterprise/include/functions_tasklist.php:606 @@ -17860,32 +18035,32 @@ msgstr "" #: ../../godmode/massive/massive_copy_modules.php:178 #: ../../godmode/massive/massive_delete_modules.php:407 #: ../../godmode/massive/massive_delete_modules.php:521 -#: ../../godmode/massive/massive_edit_agents.php:650 -#: ../../godmode/massive/massive_edit_agents.php:1153 +#: ../../godmode/massive/massive_edit_agents.php:667 +#: ../../godmode/massive/massive_edit_agents.php:1170 #: ../../godmode/massive/massive_add_action_alerts.php:217 #: ../../godmode/massive/massive_edit_modules.php:411 #: ../../godmode/massive/massive_edit_modules.php:497 #: ../../godmode/reporting/create_container.php:674 -#: ../../godmode/events/event_edit_filter.php:510 -#: ../../godmode/events/event_edit_filter.php:526 -#: ../../include/functions_visual_map_editor.php:498 -#: ../../include/functions_visual_map_editor.php:1454 -#: ../../include/functions_visual_map_editor.php:1548 +#: ../../godmode/events/event_edit_filter.php:512 +#: ../../godmode/events/event_edit_filter.php:528 +#: ../../include/functions_visual_map_editor.php:492 +#: ../../include/functions_visual_map_editor.php:1512 +#: ../../include/functions_visual_map_editor.php:1606 #: ../../include/ajax/visual_console_builder.ajax.php:1186 #: ../../include/functions_profile.php:390 -#: ../../include/functions_html.php:2327 ../../include/functions_html.php:2328 -#: ../../include/functions_html.php:2329 ../../include/functions_html.php:2330 -#: ../../include/functions_html.php:2331 ../../include/functions_html.php:2333 -#: ../../include/functions_html.php:2334 ../../include/functions_html.php:2335 -#: ../../include/functions_html.php:2336 ../../include/functions_html.php:2337 -#: ../../include/functions_html.php:2352 ../../include/functions_html.php:2374 -#: ../../include/functions_html.php:2396 ../../include/functions_html.php:2418 -#: ../../include/functions_html.php:2440 +#: ../../include/functions_html.php:2342 ../../include/functions_html.php:2343 +#: ../../include/functions_html.php:2344 ../../include/functions_html.php:2345 +#: ../../include/functions_html.php:2346 ../../include/functions_html.php:2348 +#: ../../include/functions_html.php:2349 ../../include/functions_html.php:2350 +#: ../../include/functions_html.php:2351 ../../include/functions_html.php:2352 +#: ../../include/functions_html.php:2367 ../../include/functions_html.php:2389 +#: ../../include/functions_html.php:2411 ../../include/functions_html.php:2433 +#: ../../include/functions_html.php:2455 #: ../../include/lib/Dashboard/Widgets/events_list.php:340 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:275 -#: ../../operation/events/events.php:1999 -#: ../../operation/events/events.php:2017 -#: ../../operation/events/events.php:3028 +#: ../../operation/events/events.php:2053 +#: ../../operation/events/events.php:2071 +#: ../../operation/events/events.php:3087 msgid "Any" msgstr "" @@ -17900,7 +18075,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:365 #: ../../godmode/massive/massive_add_alerts.php:324 -#: ../../godmode/massive/massive_edit_agents.php:1391 +#: ../../godmode/massive/massive_edit_agents.php:1407 #: ../../godmode/massive/massive_delete_alerts.php:389 msgid "" "Unsucessful sending the data, please contact with your administrator or make " @@ -17926,7 +18101,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 #: ../../godmode/massive/massive_delete_modules.php:372 #: ../../godmode/massive/massive_edit_modules.php:356 -#: ../../include/functions_reporting_html.php:1776 +#: ../../include/functions_reporting_html.php:1785 msgid "Agent group" msgstr "" @@ -17945,8 +18120,8 @@ msgid "When select agents" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265 -#: ../../extensions/agents_modules.php:489 -#: ../../extensions/agents_modules.php:493 +#: ../../extensions/agents_modules.php:497 +#: ../../extensions/agents_modules.php:501 #: ../../godmode/agentes/planned_downtime.editor.php:1235 #: ../../godmode/massive/massive_delete_action_alerts.php:246 #: ../../godmode/massive/massive_delete_modules.php:555 @@ -17955,12 +18130,12 @@ msgstr "" #: ../../godmode/massive/massive_add_action_alerts.php:225 #: ../../godmode/massive/massive_edit_modules.php:528 #: ../../godmode/reporting/reporting_builder.item_editor.php:1923 -#: ../../include/functions_html.php:5947 +#: ../../include/functions_html.php:5971 msgid "Show common modules" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 -#: ../../extensions/agents_modules.php:490 +#: ../../extensions/agents_modules.php:498 #: ../../godmode/agentes/planned_downtime.editor.php:1236 #: ../../godmode/massive/massive_delete_action_alerts.php:247 #: ../../godmode/massive/massive_delete_modules.php:556 @@ -17969,7 +18144,7 @@ msgstr "" #: ../../godmode/massive/massive_add_action_alerts.php:226 #: ../../godmode/massive/massive_edit_modules.php:529 #: ../../godmode/reporting/reporting_builder.item_editor.php:1924 -#: ../../include/functions_html.php:5948 +#: ../../include/functions_html.php:5972 msgid "Show all modules" msgstr "" @@ -18001,7 +18176,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 #: ../../godmode/snmpconsole/snmp_alert.php:41 #: ../../include/class/SnmpConsole.class.php:315 -#: ../../include/class/SnmpConsole.class.php:1379 +#: ../../include/class/SnmpConsole.class.php:1381 msgid "Cold start (0)" msgstr "" @@ -18009,7 +18184,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 #: ../../godmode/snmpconsole/snmp_alert.php:42 #: ../../include/class/SnmpConsole.class.php:316 -#: ../../include/class/SnmpConsole.class.php:1383 +#: ../../include/class/SnmpConsole.class.php:1385 msgid "Warm start (1)" msgstr "" @@ -18017,7 +18192,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 #: ../../godmode/snmpconsole/snmp_alert.php:43 #: ../../include/class/SnmpConsole.class.php:317 -#: ../../include/class/SnmpConsole.class.php:1387 +#: ../../include/class/SnmpConsole.class.php:1389 msgid "Link down (2)" msgstr "" @@ -18025,7 +18200,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 #: ../../godmode/snmpconsole/snmp_alert.php:44 #: ../../include/class/SnmpConsole.class.php:318 -#: ../../include/class/SnmpConsole.class.php:1391 +#: ../../include/class/SnmpConsole.class.php:1393 msgid "Link up (3)" msgstr "" @@ -18033,7 +18208,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 #: ../../godmode/snmpconsole/snmp_alert.php:45 #: ../../include/class/SnmpConsole.class.php:319 -#: ../../include/class/SnmpConsole.class.php:1395 +#: ../../include/class/SnmpConsole.class.php:1397 msgid "Authentication failure (4)" msgstr "" @@ -18043,14 +18218,15 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_acl.php:534 #: ../../enterprise/include/class/Aws.cloud.php:347 #: ../../extensions/api_checker.php:303 -#: ../../godmode/groups/configure_group.php:249 +#: ../../godmode/groups/configure_group.php:268 +#: ../../godmode/users/configure_user.php:65 #: ../../godmode/users/user_management.php:44 #: ../../godmode/snmpconsole/snmp_alert.php:46 #: ../../godmode/massive/massive_edit_users.php:279 -#: ../../include/functions_graph.php:3543 +#: ../../include/auth/mysql.php:813 ../../include/functions_graph.php:3553 #: ../../include/class/SnmpConsole.class.php:320 -#: ../../include/class/SnmpConsole.class.php:1372 -#: ../../include/class/SnmpConsole.class.php:1399 +#: ../../include/class/SnmpConsole.class.php:1374 +#: ../../include/class/SnmpConsole.class.php:1401 #: ../../operation/users/user_edit.php:474 #: ../../operation/gis_maps/render_view.php:168 msgid "Other" @@ -18069,20 +18245,20 @@ msgid "Unsuccessfully deleted alerts (%s / %s)" msgstr "" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:237 msgid "You must select a SNMP alert" msgstr "" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:263 msgid "" "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " "Single value, each Custom OIDs/Datas." msgstr "" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:267 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:310 #: ../../godmode/snmpconsole/snmp_alert.php:863 #: ../../godmode/snmpconsole/snmp_alert.php:1757 #: ../../include/functions_snmp.php:433 @@ -18095,30 +18271,34 @@ msgid "SNMP Alerts to be deleted" msgstr "" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:295 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:410 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:414 msgid "No snmp alert found." msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216 #, php-format msgid "Successfully updated alerts (%s / %s)" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:224 #, php-format msgid "Unsuccessfully updated alerts (%s / %s)" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +msgid "At least one parameter must be modified" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:282 msgid "SNMP Alerts to be edit" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:306 #: ../../godmode/snmpconsole/snmp_alert.php:783 msgid "Custom Value/OID" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:308 #: ../../godmode/snmpconsole/snmp_trap_generator.php:138 #: ../../godmode/snmpconsole/snmp_alert.php:814 #: ../../godmode/snmpconsole/snmp_alert.php:1896 @@ -18126,38 +18306,38 @@ msgstr "" msgid "SNMP Agent" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:312 #: ../../godmode/snmpconsole/snmp_alert.php:884 msgid "Single value" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:314 #: ../../godmode/snmpconsole/snmp_alert.php:1537 #: ../../godmode/alerts/configure_alert_template.php:744 msgid "Min. number of alerts" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:316 #: ../../godmode/snmpconsole/snmp_alert.php:1554 #: ../../godmode/alerts/configure_alert_template.php:784 msgid "Max. number of alerts" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:331 #: ../../godmode/snmpconsole/snmp_alert.php:1583 msgid "Other value" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:337 #: ../../godmode/snmpconsole/snmp_alert.php:1651 #: ../../godmode/snmpconsole/snmp_alert.php:1891 #: ../../godmode/reporting/reporting_builder.list_items.php:373 -#: ../../godmode/reporting/reporting_builder.list_items.php:717 -#: ../../godmode/reporting/graph_builder.graph_editor.php:331 +#: ../../godmode/reporting/reporting_builder.list_items.php:718 +#: ../../godmode/reporting/graph_builder.graph_editor.php:244 #: ../../godmode/reporting/visual_console_builder.elements.php:123 -#: ../../include/functions_visual_map_editor.php:920 +#: ../../include/functions_visual_map_editor.php:968 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 -#: ../../include/rest-api/models/VisualConsole/Item.php:2024 +#: ../../include/rest-api/models/VisualConsole/Item.php:2027 msgid "Position" msgstr "" @@ -18169,15 +18349,15 @@ msgstr "" msgid "Modules used" msgstr "" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90 msgid "Success: remove the alerts." msgstr "" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90 msgid "Failed: remove the alerts for this modules, please check." msgstr "" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:143 msgid "Modules agents in policy" msgstr "" @@ -18188,23 +18368,25 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:270 -#: ../../godmode/modules/manage_network_components_form_network.php:82 -#: ../../godmode/agentes/module_manager_editor_network.php:196 +#: ../../godmode/modules/manage_network_components_form_network.php:85 +#: ../../godmode/agentes/module_manager_editor_network.php:197 +#: ../../godmode/massive/massive_edit_modules.php:811 #: ../../include/class/CredentialStore.class.php:1094 -#: ../../include/class/CredentialStore.class.php:1369 +#: ../../include/class/CredentialStore.class.php:1378 #: ../../include/class/AgentWizard.class.php:796 msgid "SNMP community" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742 -#: ../../godmode/agentes/module_manager_editor_network.php:198 +#: ../../godmode/agentes/module_manager_editor_network.php:199 #: ../../godmode/massive/massive_edit_modules.php:821 msgid "SNMP OID" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757 +#: ../../godmode/modules/manage_network_components_form_network.php:53 #: ../../godmode/agentes/module_manager_editor_wmi.php:97 -#: ../../godmode/agentes/module_manager_editor_network.php:81 +#: ../../godmode/agentes/module_manager_editor_network.php:82 #: ../../godmode/massive/massive_edit_modules.php:836 #: ../../include/class/AgentWizard.class.php:633 #: ../../include/functions_snmp_browser.php:709 @@ -18214,55 +18396,55 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:990 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:288 -#: ../../godmode/modules/manage_network_components_form_network.php:55 -#: ../../godmode/agentes/module_manager_editor_network.php:197 +#: ../../godmode/modules/manage_network_components_form_network.php:66 +#: ../../godmode/agentes/module_manager_editor_network.php:198 #: ../../godmode/massive/massive_edit_modules.php:854 -#: ../../godmode/wizards/HostDevices.class.php:1220 +#: ../../godmode/wizards/HostDevices.class.php:1216 #: ../../include/class/CredentialStore.class.php:1106 -#: ../../include/class/CredentialStore.class.php:1382 +#: ../../include/class/CredentialStore.class.php:1391 #: ../../include/class/AgentWizard.class.php:818 msgid "SNMP version" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:322 -#: ../../godmode/modules/manage_network_components_form_network.php:96 -#: ../../godmode/agentes/module_manager_editor_network.php:377 +#: ../../godmode/modules/manage_network_components_form_network.php:127 +#: ../../godmode/agentes/module_manager_editor_network.php:378 #: ../../godmode/massive/massive_edit_modules.php:867 -#: ../../godmode/wizards/HostDevices.class.php:1298 +#: ../../godmode/wizards/HostDevices.class.php:1294 #: ../../include/functions_snmp_browser.php:839 msgid "Auth user" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:338 -#: ../../godmode/modules/manage_network_components_form_network.php:105 -#: ../../godmode/agentes/module_manager_editor_network.php:390 +#: ../../godmode/modules/manage_network_components_form_network.php:107 +#: ../../godmode/agentes/module_manager_editor_network.php:391 #: ../../godmode/massive/massive_edit_modules.php:876 -#: ../../godmode/wizards/HostDevices.class.php:1340 +#: ../../godmode/wizards/HostDevices.class.php:1336 #: ../../include/functions_snmp_browser.php:851 msgid "Auth password" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 -#: ../../godmode/agentes/module_manager_editor_network.php:390 -#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/agentes/module_manager_editor_network.php:391 +#: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:876 #: ../../godmode/massive/massive_edit_modules.php:880 -#: ../../godmode/wizards/HostDevices.class.php:1342 -#: ../../godmode/wizards/HostDevices.class.php:1373 +#: ../../godmode/wizards/HostDevices.class.php:1338 +#: ../../godmode/wizards/HostDevices.class.php:1369 msgid "The pass length must be eight character minimum." msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360 -#: ../../godmode/modules/manage_network_components_form_network.php:123 -#: ../../godmode/agentes/module_manager_editor_network.php:410 +#: ../../godmode/modules/manage_network_components_form_network.php:149 +#: ../../godmode/agentes/module_manager_editor_network.php:413 #: ../../godmode/massive/massive_edit_modules.php:878 -#: ../../godmode/wizards/HostDevices.class.php:1356 +#: ../../godmode/wizards/HostDevices.class.php:1352 #: ../../include/class/CredentialStore.class.php:1196 -#: ../../include/class/CredentialStore.class.php:1489 +#: ../../include/class/CredentialStore.class.php:1498 #: ../../include/class/AgentWizard.class.php:954 #: ../../include/functions_snmp_browser.php:870 msgid "Privacy method" @@ -18270,24 +18452,24 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363 -#: ../../godmode/modules/manage_network_components_form_network.php:126 -#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/modules/manage_network_components_form_network.php:152 +#: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:879 -#: ../../godmode/wizards/HostDevices.class.php:1361 +#: ../../godmode/wizards/HostDevices.class.php:1357 #: ../../include/class/CredentialStore.class.php:1205 -#: ../../include/class/CredentialStore.class.php:1498 +#: ../../include/class/CredentialStore.class.php:1507 #: ../../include/functions_snmp_browser.php:873 msgid "DES" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364 -#: ../../godmode/modules/manage_network_components_form_network.php:127 -#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/modules/manage_network_components_form_network.php:153 +#: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:879 -#: ../../godmode/wizards/HostDevices.class.php:1362 +#: ../../godmode/wizards/HostDevices.class.php:1358 #: ../../include/class/CredentialStore.class.php:1204 -#: ../../include/class/CredentialStore.class.php:1496 +#: ../../include/class/CredentialStore.class.php:1505 #: ../../include/functions_snmp_browser.php:874 msgid "AES" msgstr "" @@ -18295,11 +18477,11 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:379 #: ../../godmode/modules/manage_network_components_form_network.php:136 -#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:880 -#: ../../godmode/wizards/HostDevices.class.php:1371 +#: ../../godmode/wizards/HostDevices.class.php:1367 #: ../../include/class/CredentialStore.class.php:1213 -#: ../../include/class/CredentialStore.class.php:1510 +#: ../../include/class/CredentialStore.class.php:1519 #: ../../include/class/AgentWizard.class.php:968 #: ../../include/functions_snmp_browser.php:886 msgid "Privacy pass" @@ -18307,47 +18489,47 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:396 -#: ../../godmode/modules/manage_network_components_form_network.php:148 -#: ../../godmode/agentes/module_manager_editor_network.php:432 +#: ../../godmode/modules/manage_network_components_form_network.php:180 +#: ../../godmode/agentes/module_manager_editor_network.php:437 #: ../../godmode/massive/massive_edit_modules.php:882 -#: ../../godmode/wizards/HostDevices.class.php:1325 +#: ../../godmode/wizards/HostDevices.class.php:1321 #: ../../include/functions_snmp_browser.php:898 msgid "Auth method" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:399 -#: ../../godmode/modules/manage_network_components_form_network.php:151 -#: ../../godmode/agentes/module_manager_editor_network.php:435 +#: ../../godmode/modules/manage_network_components_form_network.php:183 +#: ../../godmode/agentes/module_manager_editor_network.php:440 #: ../../godmode/massive/massive_edit_modules.php:883 -#: ../../godmode/wizards/HostDevices.class.php:1330 -#: ../../include/class/Diagnostics.class.php:2203 +#: ../../godmode/wizards/HostDevices.class.php:1326 +#: ../../include/class/Diagnostics.class.php:2207 #: ../../include/class/CredentialStore.class.php:1170 -#: ../../include/class/CredentialStore.class.php:1462 +#: ../../include/class/CredentialStore.class.php:1471 #: ../../include/functions_snmp_browser.php:901 msgid "MD5" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:400 -#: ../../godmode/modules/manage_network_components_form_network.php:152 -#: ../../godmode/agentes/module_manager_editor_network.php:436 +#: ../../godmode/modules/manage_network_components_form_network.php:184 +#: ../../godmode/agentes/module_manager_editor_network.php:441 #: ../../godmode/massive/massive_edit_modules.php:883 -#: ../../godmode/wizards/HostDevices.class.php:1331 +#: ../../godmode/wizards/HostDevices.class.php:1327 #: ../../include/class/CredentialStore.class.php:1171 -#: ../../include/class/CredentialStore.class.php:1464 +#: ../../include/class/CredentialStore.class.php:1473 #: ../../include/functions_snmp_browser.php:902 msgid "SHA" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:415 -#: ../../godmode/modules/manage_network_components_form_network.php:161 -#: ../../godmode/agentes/module_manager_editor_network.php:449 +#: ../../godmode/modules/manage_network_components_form_network.php:162 +#: ../../godmode/agentes/module_manager_editor_network.php:454 #: ../../godmode/massive/massive_edit_modules.php:884 -#: ../../godmode/wizards/HostDevices.class.php:1309 +#: ../../godmode/wizards/HostDevices.class.php:1305 #: ../../include/class/CredentialStore.class.php:1125 -#: ../../include/class/CredentialStore.class.php:1414 +#: ../../include/class/CredentialStore.class.php:1423 #: ../../include/class/AgentWizard.class.php:895 #: ../../include/functions_snmp_browser.php:914 msgid "Security level" @@ -18355,30 +18537,30 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:418 -#: ../../godmode/modules/manage_network_components_form_network.php:164 -#: ../../godmode/agentes/module_manager_editor_network.php:452 +#: ../../godmode/modules/manage_network_components_form_network.php:165 +#: ../../godmode/agentes/module_manager_editor_network.php:457 #: ../../godmode/massive/massive_edit_modules.php:887 -#: ../../godmode/wizards/HostDevices.class.php:1314 +#: ../../godmode/wizards/HostDevices.class.php:1310 #: ../../include/functions_snmp_browser.php:917 msgid "Not auth and not privacy method" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:419 -#: ../../godmode/modules/manage_network_components_form_network.php:165 -#: ../../godmode/agentes/module_manager_editor_network.php:453 +#: ../../godmode/modules/manage_network_components_form_network.php:166 +#: ../../godmode/agentes/module_manager_editor_network.php:458 #: ../../godmode/massive/massive_edit_modules.php:888 -#: ../../godmode/wizards/HostDevices.class.php:1315 +#: ../../godmode/wizards/HostDevices.class.php:1311 #: ../../include/functions_snmp_browser.php:918 msgid "Auth and not privacy method" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:420 -#: ../../godmode/modules/manage_network_components_form_network.php:166 -#: ../../godmode/agentes/module_manager_editor_network.php:454 +#: ../../godmode/modules/manage_network_components_form_network.php:167 +#: ../../godmode/agentes/module_manager_editor_network.php:459 #: ../../godmode/massive/massive_edit_modules.php:889 -#: ../../godmode/wizards/HostDevices.class.php:1316 +#: ../../godmode/wizards/HostDevices.class.php:1312 #: ../../include/functions_snmp_browser.php:919 msgid "Auth and privacy method" msgstr "" @@ -18386,15 +18568,15 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835 #: ../../enterprise/operation/agentes/tag_view.php:157 #: ../../godmode/agentes/module_manager_editor_common.php:301 -#: ../../godmode/agentes/module_manager_editor_common.php:974 +#: ../../godmode/agentes/module_manager_editor_common.php:984 #: ../../godmode/massive/massive_edit_modules.php:907 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3928 -#: ../../include/ajax/heatmap.ajax.php:199 -#: ../../include/functions_graph.php:5035 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3937 +#: ../../include/ajax/heatmap.ajax.php:228 +#: ../../include/functions_graph.php:5045 #: ../../include/functions_treeview.php:115 #: ../../include/lib/Dashboard/Widgets/heatmap.php:334 #: ../../operation/heatmap.php:103 -#: ../../operation/agentes/status_monitor.php:573 +#: ../../operation/agentes/status_monitor.php:572 msgid "Not assigned" msgstr "" @@ -18404,15 +18586,15 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wmi.php:47 #: ../../godmode/agentes/module_manager_editor_wmi.php:128 #: ../../godmode/massive/massive_edit_modules.php:921 -#: ../../include/functions_ui.php:7468 +#: ../../include/functions_ui.php:7545 #: ../../include/class/CredentialStore.class.php:973 -#: ../../include/class/CredentialStore.class.php:1345 +#: ../../include/class/CredentialStore.class.php:1351 #: ../../include/class/AgentWizard.class.php:677 msgid "Username" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855 -#: ../../godmode/agentes/module_manager_editor_common.php:1355 +#: ../../godmode/agentes/module_manager_editor_common.php:1365 #: ../../godmode/massive/massive_edit_modules.php:927 msgid "Export target" msgstr "" @@ -18443,16 +18625,16 @@ msgid "Linked" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../godmode/agentes/module_manager.php:844 -#: ../../godmode/agentes/module_manager.php:847 +#: ../../godmode/agentes/module_manager.php:854 +#: ../../godmode/agentes/module_manager.php:857 #: ../../godmode/massive/massive_edit_modules.php:1082 -#: ../../include/ajax/module.php:1072 ../../include/ajax/module.php:1075 +#: ../../include/ajax/module.php:1095 ../../include/ajax/module.php:1098 msgid "Unlinked" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000 #: ../../godmode/modules/manage_network_components_form_common.php:326 -#: ../../godmode/agentes/module_manager_editor_common.php:1385 +#: ../../godmode/agentes/module_manager_editor_common.php:1395 #: ../../godmode/massive/massive_edit_modules.php:1091 msgid "Discard unknown events" msgstr "" @@ -18463,7 +18645,7 @@ msgid "The module still store data but the alerts and events will be stop" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044 -#: ../../godmode/agentes/module_manager_editor_common.php:1409 +#: ../../godmode/agentes/module_manager_editor_common.php:1419 #: ../../godmode/massive/massive_edit_modules.php:1137 msgid "Timeout" msgstr "" @@ -18474,15 +18656,15 @@ msgid "Seconds that agent will wait for the execution of the module." msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070 -#: ../../godmode/modules/manage_network_components_form_network.php:209 -#: ../../godmode/agentes/module_manager_editor_network.php:322 +#: ../../godmode/modules/manage_network_components_form_network.php:227 +#: ../../godmode/agentes/module_manager_editor_network.php:323 #: ../../godmode/massive/massive_edit_modules.php:1163 msgid "TCP send" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073 -#: ../../godmode/modules/manage_network_components_form_network.php:216 -#: ../../godmode/agentes/module_manager_editor_network.php:323 +#: ../../godmode/modules/manage_network_components_form_network.php:234 +#: ../../godmode/agentes/module_manager_editor_network.php:324 #: ../../godmode/massive/massive_edit_modules.php:1166 msgid "TCP receive" msgstr "" @@ -18514,13 +18696,13 @@ msgstr "" #: ../../godmode/agentes/module_manager_editor_plugin.php:49 #: ../../godmode/massive/massive_edit_plugins.php:346 #: ../../godmode/massive/massive_edit_modules.php:1178 -#: ../../godmode/servers/plugin_registration.php:513 +#: ../../godmode/servers/plugin_registration.php:509 msgid "Plugin" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103 -#: ../../godmode/modules/manage_network_components_form_network.php:223 -#: ../../godmode/agentes/module_manager_editor_network.php:474 +#: ../../godmode/modules/manage_network_components_form_network.php:241 +#: ../../godmode/agentes/module_manager_editor_network.php:479 #: ../../godmode/massive/massive_edit_plugins.php:480 #: ../../godmode/massive/massive_edit_modules.php:1196 #: ../../godmode/alerts/configure_alert_command.php:266 @@ -18529,7 +18711,7 @@ msgstr "" #: ../../godmode/alerts/configure_alert_action.php:271 #: ../../godmode/events/event_responses.editor.php:230 #: ../../godmode/events/event_responses.editor.php:255 -#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:994 +#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:986 #: ../../include/class/ManageNetScanScripts.class.php:434 #: ../../include/class/ExternalTools.class.php:382 msgid "Command" @@ -18537,33 +18719,33 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120 #: ../../enterprise/include/class/DeploymentCenter.class.php:1429 -#: ../../godmode/modules/manage_network_components_form_network.php:242 -#: ../../godmode/agentes/module_manager_editor_network.php:501 +#: ../../godmode/modules/manage_network_components_form_network.php:260 +#: ../../godmode/agentes/module_manager_editor_network.php:506 #: ../../godmode/massive/massive_edit_modules.php:1213 msgid "Credential identifier" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135 -#: ../../godmode/modules/manage_network_components_form_network.php:258 -#: ../../godmode/agentes/module_manager_editor_network.php:534 +#: ../../godmode/modules/manage_network_components_form_network.php:276 +#: ../../godmode/agentes/module_manager_editor_network.php:539 #: ../../godmode/massive/massive_edit_modules.php:1228 msgid "Inherited" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136 -#: ../../godmode/modules/manage_network_components_form_network.php:259 +#: ../../godmode/modules/manage_network_components_form_network.php:277 #: ../../godmode/massive/massive_edit_modules.php:1229 msgid "Linux" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137 -#: ../../godmode/modules/manage_network_components_form_network.php:260 +#: ../../godmode/modules/manage_network_components_form_network.php:278 #: ../../godmode/massive/massive_edit_modules.php:1230 msgid "Windows" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140 -#: ../../godmode/modules/manage_network_components_form_network.php:263 +#: ../../godmode/modules/manage_network_components_form_network.php:281 #: ../../godmode/massive/massive_edit_modules.php:1233 msgid "Target OS" msgstr "" @@ -18586,11 +18768,11 @@ msgstr "" msgid "Security check is fail." msgstr "" -#: ../../enterprise/godmode/admin_access_logs.php:213 +#: ../../enterprise/godmode/admin_access_logs.php:216 msgid "Extended info:" msgstr "" -#: ../../enterprise/godmode/admin_access_logs.php:221 +#: ../../enterprise/godmode/admin_access_logs.php:224 msgid "Changes:" msgstr "" @@ -18601,7 +18783,7 @@ msgstr "" #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:237 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:414 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2584 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2723 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2732 msgid "Condition" msgstr "" @@ -18640,11 +18822,11 @@ msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:262 #: ../../godmode/snmpconsole/snmp_alert.php:1912 #: ../../godmode/alerts/alert_view.php:105 -#: ../../include/functions_reporting_html.php:5494 +#: ../../include/functions_reporting_html.php:5522 #: ../../include/ajax/alert_list.ajax.php:295 #: ../../include/ajax/alert_list.ajax.php:320 -#: ../../include/functions_treeview.php:442 -#: ../../include/class/AgentsAlerts.class.php:912 +#: ../../include/functions_treeview.php:446 +#: ../../include/class/AgentsAlerts.class.php:913 msgid "Last fired" msgstr "" @@ -18653,9 +18835,9 @@ msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:349 #: ../../godmode/alerts/alert_list.list.php:648 #: ../../godmode/alerts/alert_view.php:114 -#: ../../mobile/operation/alerts.php:327 ../../include/functions_ui.php:1420 -#: ../../include/class/AgentsAlerts.class.php:959 -#: ../../include/functions_reporting.php:13152 +#: ../../mobile/operation/alerts.php:327 ../../include/functions_ui.php:1463 +#: ../../include/class/AgentsAlerts.class.php:960 +#: ../../include/functions_reporting.php:13225 msgid "Alert disabled" msgstr "" @@ -18692,25 +18874,25 @@ msgstr "" #: ../../enterprise/godmode/alerts/alert_inventory.php:92 #: ../../godmode/agentes/planned_downtime.editor.php:58 #: ../../godmode/alerts/alert_list.php:517 -#: ../../include/functions_html.php:1933 ../../include/functions_html.php:1934 -#: ../../include/functions_html.php:2044 ../../include/functions_html.php:2045 -#: ../../include/functions_html.php:2227 ../../include/functions_html.php:2228 -#: ../../include/functions_html.php:6713 ../../include/functions_html.php:6714 +#: ../../include/functions_html.php:1944 ../../include/functions_html.php:1945 +#: ../../include/functions_html.php:2055 ../../include/functions_html.php:2056 +#: ../../include/functions_html.php:2235 ../../include/functions_html.php:2236 +#: ../../include/functions_html.php:6741 ../../include/functions_html.php:6742 #: ../../include/class/SnmpConsole.class.php:196 #: ../../operation/snmpconsole/snmp_statistics.php:67 -#: ../../operation/events/events.php:1592 +#: ../../operation/events/events.php:1646 msgid "List" msgstr "" #: ../../enterprise/godmode/alerts/alert_inventory.php:111 -#: ../../godmode/reporting/visual_console_builder.php:835 +#: ../../godmode/reporting/visual_console_builder.php:843 #: ../../operation/visual_console/legacy_view.php:179 msgid "Builder" msgstr "" #: ../../enterprise/godmode/services/services.massive.meta.php:54 #: ../../enterprise/godmode/services/services.massive.elements.php:106 -#: ../../godmode/massive/massive_edit_agents.php:985 +#: ../../godmode/massive/massive_edit_agents.php:1002 msgid "Not available" msgstr "" @@ -18813,7 +18995,7 @@ msgstr "" #: ../../enterprise/godmode/services/services.service.php:495 #: ../../enterprise/godmode/services/services.elements.php:894 #: ../../enterprise/operation/services/services.php:193 -#: ../../godmode/reporting/reporting_builder.list_items.php:816 +#: ../../godmode/reporting/reporting_builder.list_items.php:817 msgid "Delete items" msgstr "" @@ -18865,7 +19047,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_list.php:779 #: ../../godmode/wizards/HostDevices.class.php:808 #: ../../godmode/wizards/DiscoveryTaskList.class.php:717 -#: ../../include/class/CustomNetScan.class.php:535 +#: ../../include/class/CustomNetScan.class.php:537 msgid "Manual" msgstr "" @@ -18956,61 +19138,6 @@ msgstr "" msgid "S.L.A. critical service alert" msgstr "" -#: ../../enterprise/godmode/services/services.service.php:1025 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608 -#: ../../enterprise/include/functions_reporting_csv.php:1589 -#: ../../enterprise/include/functions_reporting_csv.php:1635 -#: ../../enterprise/include/functions_reporting_csv.php:1953 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1704 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1756 -#: ../../enterprise/include/class/DatabaseHA.class.php:390 -#: ../../enterprise/include/class/DatabaseHA.class.php:625 -#: ../../enterprise/include/class/DatabaseHA.class.php:727 -#: ../../enterprise/include/class/AgentRepository.class.php:1000 -#: ../../enterprise/include/class/LogSource.class.php:823 -#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142 -#: ../../enterprise/include/class/ManageBackups.class.php:298 -#: ../../enterprise/include/class/ManageBackups.class.php:454 -#: ../../enterprise/include/class/NewDatabaseHA.class.php:182 -#: ../../enterprise/include/class/NewDatabaseHA.class.php:225 -#: ../../enterprise/include/functions_reporting.php:1876 -#: ../../enterprise/include/functions_reporting.php:2949 -#: ../../enterprise/include/functions_reporting.php:3206 -#: ../../enterprise/include/functions_reporting.php:3939 -#: ../../enterprise/include/functions_reporting.php:4208 -#: ../../enterprise/include/functions_reporting.php:4854 -#: ../../enterprise/include/functions_reporting.php:6176 -#: ../../enterprise/include/functions_reporting.php:6214 -#: ../../enterprise/include/functions_services.php:2091 -#: ../../enterprise/include/functions_ux_console.php:483 -#: ../../enterprise/operation/agentes/ux_console_view.php:186 -#: ../../enterprise/operation/agentes/ux_console_view.php:391 -#: ../../enterprise/operation/agentes/wux_console_view.php:407 -#: ../../extensions/module_groups.php:53 -#: ../../godmode/massive/massive_operations.php:415 -#: ../../godmode/setup/setup_general.php:1018 -#: ../../godmode/setup/setup_general.php:1036 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2734 -#: ../../include/functions_reporting_html.php:667 -#: ../../include/functions_reporting_html.php:862 -#: ../../include/functions_reporting_html.php:3569 -#: ../../include/functions_reporting_html.php:4866 -#: ../../include/functions_db.php:1974 -#: ../../include/class/ConfigPEN.class.php:674 -#: ../../include/class/ConfigPEN.class.php:698 -#: ../../include/class/SatelliteAgent.class.php:1105 -#: ../../include/class/HelpFeedBack.class.php:370 -#: ../../include/class/CredentialStore.class.php:1646 -#: ../../include/class/ModuleTemplates.class.php:1359 -#: ../../include/class/WelcomeWindow.class.php:173 -#: ../../include/class/AgentWizard.class.php:6233 -#: ../../include/lib/Dashboard/Widgets/maps_status.php:362 -#: ../../operation/agentes/pandora_networkmap.editor.php:745 -#: ../../operation/snmpconsole/snmp_browser.php:639 -msgid "OK" -msgstr "" - #: ../../enterprise/godmode/services/services.service.php:1028 msgid "" "This change in the service configuration will delete the history of the " @@ -19033,8 +19160,8 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4476 #: ../../include/functions_maps.php:50 #: ../../include/functions_reporting.php:1075 -#: ../../include/functions_reporting.php:9702 -#: ../../operation/agentes/pandora_networkmap.php:789 +#: ../../include/functions_reporting.php:9711 +#: ../../operation/agentes/pandora_networkmap.php:790 msgid "Dynamic" msgstr "" @@ -19218,7 +19345,7 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_history.php:416 msgid "" "Automatically create partitions on specific database IDB files " -"(tagente_datos, tagente_datos_string, tevento). Monthly partitions." +"(tagente_datos, tagente_datos_string). Monthly partitions." msgstr "" #: ../../enterprise/godmode/setup/setup_history.php:420 @@ -19401,12 +19528,12 @@ msgid "Yes without changing status" msgstr "" #: ../../enterprise/godmode/setup/setup.php:81 -#: ../../include/functions_config.php:430 +#: ../../include/functions_config.php:438 msgid "Forward SNMP traps to agent (if exist)" msgstr "" #: ../../enterprise/godmode/setup/setup.php:92 -#: ../../include/functions_config.php:434 +#: ../../include/functions_config.php:442 msgid "Use Enterprise ACL System" msgstr "" @@ -19440,7 +19567,7 @@ msgid "Metaconsole DB password" msgstr "" #: ../../enterprise/godmode/setup/setup.php:210 -#: ../../include/functions_config.php:470 +#: ../../include/functions_config.php:478 msgid "Activate Log Collector" msgstr "" @@ -19563,7 +19690,7 @@ msgid "Port of ElasticSearch server" msgstr "" #: ../../enterprise/godmode/setup/setup_log_collector.php:77 -#: ../../include/functions_config.php:1629 +#: ../../include/functions_config.php:1641 msgid "Days to purge old information" msgstr "" @@ -19595,21 +19722,21 @@ msgstr "" #: ../../enterprise/include/functions_tasklist.php:283 #: ../../enterprise/include/functions_tasklist.php:370 #: ../../enterprise/operation/reporting/custom_reporting.php:20 -#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:306 -#: ../../godmode/tag/edit_tag.php:224 ../../include/functions_cron.php:613 +#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:307 +#: ../../godmode/tag/edit_tag.php:228 ../../include/functions_cron.php:613 #: ../../include/functions_cron.php:704 ../../operation/search_users.php:45 msgid "Email" msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:194 #: ../../enterprise/godmode/setup/setup_auth.php:549 -#: ../../enterprise/godmode/setup/setup_auth.php:1357 +#: ../../enterprise/godmode/setup/setup_auth.php:1574 msgid "Profiles selected" msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:195 #: ../../enterprise/godmode/setup/setup_auth.php:550 -#: ../../enterprise/godmode/setup/setup_auth.php:1358 +#: ../../enterprise/godmode/setup/setup_auth.php:1575 msgid "Groups selected" msgstr "" @@ -19628,15 +19755,15 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:256 #: ../../enterprise/godmode/setup/setup_auth.php:553 #: ../../enterprise/godmode/setup/setup_auth.php:605 -#: ../../enterprise/godmode/setup/setup_auth.php:1361 -#: ../../enterprise/godmode/setup/setup_auth.php:1415 +#: ../../enterprise/godmode/setup/setup_auth.php:1578 +#: ../../enterprise/godmode/setup/setup_auth.php:1632 #: ../../godmode/setup/snmp_wizard.php:44 msgid "OP" msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:251 #: ../../enterprise/godmode/setup/setup_auth.php:601 -#: ../../enterprise/godmode/setup/setup_auth.php:1411 +#: ../../enterprise/godmode/setup/setup_auth.php:1628 #: ../../enterprise/godmode/setup/setup_acl.php:68 #: ../../godmode/groups/configure_group.php:108 #: ../../godmode/groups/group_list.php:377 @@ -19644,19 +19771,20 @@ msgstr "" #: ../../godmode/users/profile_list.php:332 #: ../../godmode/users/configure_profile.php:86 #: ../../godmode/users/user_list.php:297 -#: ../../godmode/users/configure_user.php:276 ../../godmode/menu.php:165 +#: ../../godmode/users/configure_user.php:214 ../../godmode/menu.php:165 msgid "Profiles" msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:264 #: ../../enterprise/godmode/setup/setup_auth.php:612 -#: ../../enterprise/godmode/setup/setup_auth.php:1422 +#: ../../enterprise/godmode/setup/setup_auth.php:1112 +#: ../../enterprise/godmode/setup/setup_auth.php:1639 msgid "Select profile" msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:309 #: ../../enterprise/godmode/setup/setup_auth.php:650 -#: ../../enterprise/godmode/setup/setup_auth.php:1465 +#: ../../enterprise/godmode/setup/setup_auth.php:1682 msgid "Add new permissions" msgstr "" @@ -19669,89 +19797,95 @@ msgid "Change timezone visual" msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:478 -#: ../../enterprise/godmode/setup/setup_auth.php:1286 +#: ../../enterprise/godmode/setup/setup_auth.php:1503 msgid "New users will be able to log in to the nodes." msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:552 #: ../../enterprise/godmode/setup/setup_auth.php:604 -#: ../../enterprise/godmode/setup/setup_auth.php:1360 -#: ../../enterprise/godmode/setup/setup_auth.php:1414 +#: ../../enterprise/godmode/setup/setup_auth.php:1577 +#: ../../enterprise/godmode/setup/setup_auth.php:1631 msgid "AD Groups" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:831 -#: ../../enterprise/godmode/setup/setup_auth.php:947 +#: ../../enterprise/godmode/setup/setup_auth.php:661 +msgid "Recursive group search" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:837 +#: ../../enterprise/godmode/setup/setup_auth.php:956 +#: ../../enterprise/godmode/setup/setup_auth.php:1067 msgid "You must select a profile from the list of profiles." msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:836 -#: ../../enterprise/godmode/setup/setup_auth.php:952 +#: ../../enterprise/godmode/setup/setup_auth.php:842 +#: ../../enterprise/godmode/setup/setup_auth.php:961 +#: ../../enterprise/godmode/setup/setup_auth.php:1071 msgid "You must select a group from the list of groups." msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1112 -#: ../../include/functions_config.php:719 +#: ../../enterprise/godmode/setup/setup_auth.php:1329 +#: ../../include/functions_config.php:731 msgid "MySQL host" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1175 +#: ../../enterprise/godmode/setup/setup_auth.php:1392 msgid "SimpleSAML path" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1176 +#: ../../enterprise/godmode/setup/setup_auth.php:1393 msgid "Directory where your 'simplesamlphp' folder is located." msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1182 +#: ../../enterprise/godmode/setup/setup_auth.php:1399 msgid "SAML source" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1183 +#: ../../enterprise/godmode/setup/setup_auth.php:1400 msgid "Authsource name, e.g. 'example-userpass'" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1190 +#: ../../enterprise/godmode/setup/setup_auth.php:1407 msgid "SAML user id attribute" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1195 +#: ../../enterprise/godmode/setup/setup_auth.php:1412 msgid "SAML mail attribute" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1196 +#: ../../enterprise/godmode/setup/setup_auth.php:1413 msgid "" "SAML field where search for the user email (while autocreate remote users is " "enabled)" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1203 +#: ../../enterprise/godmode/setup/setup_auth.php:1420 msgid "SAML group name attribute" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1204 +#: ../../enterprise/godmode/setup/setup_auth.php:1421 msgid "" "SAML field where search for the group name (while autocreate remote users is " "enabled)" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1211 +#: ../../enterprise/godmode/setup/setup_auth.php:1428 msgid "Simple attribute / Multivalue attribute" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1216 +#: ../../enterprise/godmode/setup/setup_auth.php:1433 msgid "SAML profiles and tag attribute" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1221 +#: ../../enterprise/godmode/setup/setup_auth.php:1438 msgid "Profile attribute" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1226 +#: ../../enterprise/godmode/setup/setup_auth.php:1443 msgid "Tag attribute" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1231 +#: ../../enterprise/godmode/setup/setup_auth.php:1448 msgid "SAML profile and tags prefix" msgstr "" @@ -19829,7 +19963,7 @@ msgstr "" #: ../../godmode/massive/massive_delete_profiles.php:152 #: ../../godmode/massive/massive_add_profiles.php:202 #: ../../include/functions_profile.php:203 -#: ../../operation/users/user_edit.php:998 +#: ../../operation/users/user_edit.php:995 msgid "Profile name" msgstr "" @@ -19950,10 +20084,12 @@ msgstr "" #: ../../mobile/operation/modules.php:195 #: ../../mobile/operation/modules.php:308 #: ../../mobile/operation/modules.php:309 -#: ../../include/ajax/heatmap.ajax.php:129 -#: ../../include/ajax/heatmap.ajax.php:310 +#: ../../mobile/operation/server_status.php:185 +#: ../../mobile/operation/server_status.php:186 +#: ../../include/ajax/heatmap.ajax.php:158 +#: ../../include/ajax/heatmap.ajax.php:438 #: ../../include/lib/Dashboard/Widgets/heatmap.php:301 -#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:350 +#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:353 msgid "Tag" msgstr "" @@ -19973,8 +20109,8 @@ msgstr "" #: ../../enterprise/godmode/reporting/graph_template_wizard.php:313 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:822 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:824 -#: ../../include/functions_snmp_browser.php:1653 -#: ../../include/functions_snmp_browser.php:1660 +#: ../../include/functions_snmp_browser.php:1662 +#: ../../include/functions_snmp_browser.php:1669 msgid "Select all" msgstr "" @@ -20144,15 +20280,18 @@ msgstr "" #: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:133 #: ../../enterprise/godmode/reporting/visual_console_template.php:136 #: ../../extensions/resource_exportation.php:459 +#: ../../godmode/users/configure_user.php:59 #: ../../godmode/users/user_management.php:38 #: ../../godmode/massive/massive_edit_users.php:274 -#: ../../godmode/reporting/visual_console_builder.php:869 +#: ../../godmode/reporting/visual_console_builder.php:877 #: ../../godmode/reporting/map_builder.php:133 #: ../../godmode/reporting/visual_console_favorite.php:130 +#: ../../include/auth/mysql.php:807 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:360 #: ../../operation/users/user_edit.php:469 -#: ../../operation/visual_console/view.php:251 ../../operation/menu.php:299 -#: ../../operation/menu.php:306 +#: ../../operation/visual_console/view.php:253 +#: ../../operation/visual_console/legacy_view.php:219 +#: ../../operation/menu.php:299 ../../operation/menu.php:306 msgid "Visual console" msgstr "" @@ -20249,7 +20388,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:155 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:61 #: ../../godmode/modules/manage_nc_groups.php:119 -#: ../../godmode/netflow/nf_edit_form.php:119 +#: ../../godmode/netflow/nf_edit_form.php:146 #: ../../godmode/events/event_edit_filter.php:232 msgid "Not updated. Blank name" msgstr "" @@ -20268,8 +20407,9 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:173 #: ../../godmode/events/event_responses.editor.php:186 #: ../../include/functions_visual_map_editor.php:97 +#: ../../include/functions_visual_map_editor.php:698 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:475 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:930 #: ../../include/functions_reports.php:1267 msgid "Width" msgstr "" @@ -20278,18 +20418,18 @@ msgstr "" #: ../../godmode/setup/gis_step_2.php:399 #: ../../godmode/reporting/visual_console_builder.wizard.php:175 #: ../../godmode/events/event_responses.editor.php:198 -#: ../../include/functions_visual_map_editor.php:672 +#: ../../include/functions_visual_map_editor.php:712 #: ../../include/functions_reports.php:1283 #: ../../include/functions_reports.php:1383 msgid "Height" msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:235 -#: ../../enterprise/operation/log/log_viewer.php:672 +#: ../../enterprise/operation/log/log_viewer.php:670 #: ../../godmode/setup/performance.php:627 #: ../../godmode/reporting/create_container.php:418 #: ../../include/functions.php:2755 ../../include/functions.php:3423 -#: ../../include/ajax/module.php:221 ../../include/ajax/graph.ajax.php:146 +#: ../../include/ajax/module.php:244 ../../include/ajax/graph.ajax.php:146 #: ../../operation/gis_maps/render_view.php:157 msgid "1 hour" msgstr "" @@ -20304,19 +20444,19 @@ msgid "3 hours" msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:238 -#: ../../include/ajax/module.php:222 +#: ../../include/ajax/module.php:245 msgid "6 hours" msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:239 -#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:223 +#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:246 msgid "12 hours" msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:240 -#: ../../enterprise/operation/log/log_viewer.php:676 +#: ../../enterprise/operation/log/log_viewer.php:674 #: ../../godmode/reporting/create_container.php:422 -#: ../../include/functions.php:2758 ../../include/ajax/module.php:224 +#: ../../include/functions.php:2758 ../../include/ajax/module.php:247 #: ../../include/ajax/graph.ajax.php:150 #: ../../include/class/AuditLog.class.php:211 msgid "1 day" @@ -20337,9 +20477,9 @@ msgid "Last week" msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:244 -#: ../../enterprise/operation/log/log_viewer.php:680 +#: ../../enterprise/operation/log/log_viewer.php:678 #: ../../godmode/reporting/create_container.php:426 -#: ../../include/functions.php:2760 ../../include/ajax/module.php:226 +#: ../../include/functions.php:2760 ../../include/ajax/module.php:249 #: ../../include/ajax/graph.ajax.php:154 #: ../../include/class/AuditLog.class.php:213 msgid "15 days" @@ -20355,12 +20495,12 @@ msgid "2 months" msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:247 -#: ../../include/ajax/module.php:229 ../../include/class/AuditLog.class.php:216 +#: ../../include/ajax/module.php:252 ../../include/class/AuditLog.class.php:216 msgid "6 months" msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:248 -#: ../../include/functions.php:2764 ../../include/ajax/module.php:230 +#: ../../include/functions.php:2764 ../../include/ajax/module.php:253 msgid "1 year" msgstr "" @@ -20390,7 +20530,7 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:123 #: ../../godmode/reporting/visual_console_builder.wizard.php:246 #: ../../godmode/reporting/graph_builder.main.php:189 -#: ../../include/functions_visual_map_editor.php:786 +#: ../../include/functions_visual_map_editor.php:826 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:629 @@ -20423,7 +20563,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 #: ../../enterprise/include/functions_reporting_csv.php:950 #: ../../include/functions_reports.php:801 -#: ../../include/functions_reporting.php:3560 +#: ../../include/functions_reporting.php:3569 msgid "Exception" msgstr "" @@ -20472,7 +20612,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1756 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:5074 #: ../../godmode/reporting/reporting_builder.item_editor.php:1419 -#: ../../godmode/reporting/reporting_builder.item_editor.php:7472 +#: ../../godmode/reporting/reporting_builder.item_editor.php:7477 msgid "" "Warning: period 0 reports cannot be used to show information back in time. " "Information contained in this kind of reports will be always reporting the " @@ -20488,13 +20628,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:247 #: ../../enterprise/include/functions_reporting_csv.php:1080 -#: ../../include/functions_reporting_html.php:5009 +#: ../../include/functions_reporting_html.php:5037 msgid "Sum" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:259 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:389 -#: ../../include/functions_reporting.php:10584 +#: ../../include/functions_reporting.php:10593 msgid "Rate" msgstr "" @@ -20504,25 +20644,25 @@ msgstr "" #: ../../enterprise/operation/services/services.list.php:764 #: ../../godmode/snmpconsole/snmp_alert.php:2159 #: ../../include/class/ModuleTemplates.class.php:943 -#: ../../operation/events/events.php:2548 +#: ../../operation/events/events.php:2602 msgid "Delete selected" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:310 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2368 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2491 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2500 msgid "Group by agent" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:322 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2418 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3196 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3205 msgid "Show in the same row" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:323 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2420 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3207 msgid "Show one module per row with all its operations" msgstr "" @@ -20530,10 +20670,10 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2438 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3015 -#: ../../enterprise/operation/log/log_viewer.php:570 +#: ../../enterprise/operation/log/log_viewer.php:568 #: ../../godmode/netflow/nf_item_list.php:173 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2505 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3219 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2514 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3228 #: ../../include/lib/Dashboard/Widgets/top_n.php:267 msgid "Order" msgstr "" @@ -20543,9 +20683,9 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2441 -#: ../../enterprise/operation/log/log_viewer.php:566 +#: ../../enterprise/operation/log/log_viewer.php:564 #: ../../godmode/reporting/reporting_builder.item_editor.php:64 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2508 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2517 #: ../../include/lib/Dashboard/Widgets/top_n.php:261 msgid "Ascending" msgstr "" @@ -20555,9 +20695,9 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2448 -#: ../../enterprise/operation/log/log_viewer.php:565 +#: ../../enterprise/operation/log/log_viewer.php:563 #: ../../godmode/reporting/reporting_builder.item_editor.php:65 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2515 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2524 #: ../../include/lib/Dashboard/Widgets/top_n.php:262 msgid "Descending" msgstr "" @@ -20565,30 +20705,30 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:344 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:321 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2455 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2522 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2531 #: ../../include/lib/Dashboard/Widgets/top_n.php:263 msgid "By agent name" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:352 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2467 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2534 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2543 #: ../../include/lib/Dashboard/Widgets/top_n.php:249 msgid "Quantity (n)" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:364 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2482 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2564 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2573 #: ../../include/lib/Dashboard/Widgets/top_n.php:286 -#: ../../operation/agentes/ver_agente.php:1646 +#: ../../operation/agentes/ver_agente.php:1642 msgid "Display" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:419 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2587 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2727 -#: ../../include/functions_reporting.php:3582 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2736 +#: ../../include/functions_reporting.php:3591 msgid "Everything" msgstr "" @@ -20604,22 +20744,22 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:427 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2615 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2735 -#: ../../include/functions_reporting_html.php:3582 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2744 +#: ../../include/functions_reporting_html.php:3610 msgid "Not OK" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:435 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:445 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2627 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2747 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2756 msgid "Show graph" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:447 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:336 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2740 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2857 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2866 msgid "Show resume" msgstr "" @@ -20634,7 +20774,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:801 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:465 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3428 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3641 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3650 msgid "Show item in landscape format (only PDF)" msgstr "" @@ -20642,7 +20782,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:817 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:479 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3437 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3650 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3659 msgid "Page break at the end of the item (only PDF)" msgstr "" @@ -20655,13 +20795,13 @@ msgid "Page orientation" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:93 -#: ../../include/functions_visual_map_editor.php:841 +#: ../../include/functions_visual_map_editor.php:889 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:386 msgid "Vertical" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:100 -#: ../../include/functions_visual_map_editor.php:842 +#: ../../include/functions_visual_map_editor.php:890 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:385 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:413 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:510 @@ -20695,20 +20835,20 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:358 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2720 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2837 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2846 msgid "Show address instead module name" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:359 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2721 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2838 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2847 msgid "Show the main address of agent." msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:428 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2294 #: ../../extensions/dbmanager.php:226 ../../extensions/dbmanager.php:227 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2385 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2394 #: ../../include/functions_reports.php:821 msgid "SQL query" msgstr "" @@ -20716,14 +20856,14 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:452 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:391 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3081 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3275 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3284 msgid "Failover mode" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:453 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:392 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3082 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3276 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3285 msgid "" "SLA calculation must be performed taking into account the failover modules " "assigned to the primary module" @@ -20732,72 +20872,72 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:470 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:405 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3101 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3295 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3304 msgid "Failover type" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:475 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:409 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3106 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3300 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3309 msgid "Failover normal" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:487 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:421 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3118 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3312 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3321 msgid "Failover simple" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:527 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2512 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2595 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2604 msgid "Graph render" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:533 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2518 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2601 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2610 msgid "Avg, max & min" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:534 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2519 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2602 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2611 msgid "Max only" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:535 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2520 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2603 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2612 msgid "Min only" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:536 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2521 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2604 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2613 msgid "Avg only" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:547 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2688 -#: ../../mobile/operation/module_graph.php:436 -#: ../../operation/agentes/stat_win.php:369 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2697 +#: ../../mobile/operation/module_graph.php:437 +#: ../../operation/agentes/stat_win.php:377 msgid "Time compare (Overlapped)" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:563 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2534 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2651 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2660 msgid "Full resolution graph (TIP)" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:564 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2535 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2652 -#: ../../operation/agentes/stat_win.php:397 -#: ../../operation/agentes/interface_traffic_graph_win.php:242 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2661 +#: ../../operation/agentes/stat_win.php:405 +#: ../../operation/agentes/interface_traffic_graph_win.php:258 msgid "" "TIP mode charts do not support average - maximum - minimum series, you can " "only enable TIP or average, maximum or minimum series" @@ -20805,15 +20945,15 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:580 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2671 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2680 msgid "Show threshold" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:594 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2553 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2703 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2712 #: ../../godmode/reporting/graph_builder.main.php:250 -#: ../../include/functions.php:4189 ../../include/functions.php:4197 +#: ../../include/functions.php:4215 ../../include/functions.php:4223 msgid "Percentil" msgstr "" @@ -20826,19 +20966,19 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:609 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2835 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2966 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2975 msgid "Show Summary group" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:673 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2921 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3052 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3061 msgid "Event Status" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:699 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2948 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3113 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3122 #: ../../operation/agentes/tactical.php:276 msgid "Event graphs" msgstr "" @@ -20877,37 +21017,37 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2258 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2412 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2421 msgid "Serialized header" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2259 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2413 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2422 msgid "The separator character is |" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2449 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2458 msgid "Field separator" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2327 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2450 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2459 msgid "Separator for different fields in the serialized text chain" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2347 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2470 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2479 msgid "Line separator" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2348 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2471 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2480 msgid "" "Separator in different lines (composed by fields) of the serialized text " "chain" @@ -20915,13 +21055,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:834 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3412 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3478 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3487 msgid "Uncompress module" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:835 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3413 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3479 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3488 msgid "Use uncompressed module data." msgstr "" @@ -21001,7 +21141,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3016 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3220 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3229 msgid "SLA items sorted by fulfillment value" msgstr "" @@ -21013,11 +21153,11 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:451 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3134 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3328 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3337 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1439 -#: ../../include/functions_reporting_html.php:4845 -#: ../../include/functions_reporting_html.php:5117 -#: ../../include/functions_reporting_html.php:5273 +#: ../../include/functions_reporting_html.php:4873 +#: ../../include/functions_reporting_html.php:5145 +#: ../../include/functions_reporting_html.php:5301 #: ../../include/functions_netflow.php:1202 #: ../../include/lib/Dashboard/Widgets/tactical.php:299 msgid "Summary" @@ -21047,17 +21187,17 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:148 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:215 -#: ../../enterprise/include/functions_reporting.php:8044 -#: ../../enterprise/include/functions_reporting.php:8110 -#: ../../godmode/reporting/reporting_builder.php:3642 +#: ../../enterprise/include/functions_reporting.php:8053 +#: ../../enterprise/include/functions_reporting.php:8119 +#: ../../godmode/reporting/reporting_builder.php:3659 #: ../../operation/reporting/reporting_viewer.php:156 msgid "Item editor" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:159 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:202 -#: ../../godmode/reporting/reporting_builder.php:3638 -#: ../../include/functions_menu.php:587 +#: ../../godmode/reporting/reporting_builder.php:3655 +#: ../../include/functions_menu.php:591 #: ../../operation/reporting/reporting_viewer.php:147 msgid "List items" msgstr "" @@ -21071,9 +21211,9 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:334 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:361 #: ../../godmode/reporting/reporting_builder.php:561 -#: ../../godmode/reporting/reporting_builder.php:3601 -#: ../../godmode/reporting/reporting_builder.php:3699 -#: ../../godmode/reporting/reporting_builder.php:3727 +#: ../../godmode/reporting/reporting_builder.php:3618 +#: ../../godmode/reporting/reporting_builder.php:3716 +#: ../../godmode/reporting/reporting_builder.php:3744 #: ../../operation/reporting/reporting_viewer.php:222 msgid "Custom reports" msgstr "" @@ -21150,14 +21290,14 @@ msgid "Set start and end date" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:768 -#: ../../include/ajax/module.php:270 -#: ../../operation/agentes/datos_agente.php:198 +#: ../../include/ajax/module.php:293 +#: ../../operation/agentes/datos_agente.php:200 msgid "Timestamp from:" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:786 -#: ../../include/ajax/module.php:290 -#: ../../operation/agentes/datos_agente.php:204 +#: ../../include/ajax/module.php:313 +#: ../../operation/agentes/datos_agente.php:206 msgid "Timestamp to:" msgstr "" @@ -21200,9 +21340,9 @@ msgstr "" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:181 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244 -#: ../../godmode/reporting/graph_builder.graph_editor.php:215 -#: ../../godmode/reporting/graph_builder.graph_editor.php:389 -#: ../../include/functions.php:4049 +#: ../../godmode/reporting/graph_builder.graph_editor.php:314 +#: ../../godmode/reporting/graph_builder.graph_editor.php:348 +#: ../../include/functions.php:4075 msgid "Weight" msgstr "" @@ -21214,7 +21354,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3881 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4319 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4464 -#: ../../enterprise/operation/log/log_viewer.php:540 +#: ../../enterprise/operation/log/log_viewer.php:538 msgid "Exact match" msgstr "" @@ -21307,18 +21447,18 @@ msgstr "" #: ../../enterprise/godmode/reporting/mysql_builder.php:244 #: ../../enterprise/include/functions_reporting_csv.php:1134 -#: ../../include/functions_reporting.php:7540 +#: ../../include/functions_reporting.php:7549 msgid "SQL" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1647 -#: ../../godmode/reporting/reporting_builder.php:3749 +#: ../../godmode/reporting/reporting_builder.php:3766 msgid "Successfull action" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1648 -#: ../../godmode/servers/modificar_server.php:285 -#: ../../godmode/servers/modificar_server.php:296 +#: ../../godmode/servers/modificar_server.php:307 +#: ../../godmode/servers/modificar_server.php:318 msgid "Unsuccessfull action" msgstr "" @@ -21353,13 +21493,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1997 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2016 -#: ../../godmode/reporting/reporting_builder.item_editor.php:204 +#: ../../godmode/reporting/reporting_builder.item_editor.php:205 #: ../../godmode/reporting/reporting_builder.item_editor.php:1264 msgid "Local metaconsole" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2075 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1169 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1171 #: ../../include/lib/Dashboard/Widgets/top_n.php:207 msgid "" "Case insensitive regular expression for agent name. For example: Network.* " @@ -21369,7 +21509,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2099 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3707 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3939 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1192 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1194 msgid "" "Case insensitive regular expression or string for module name. For example: " "if you use this field with \"Module exact match\" enabled then this field " @@ -21410,31 +21550,31 @@ msgstr "" #: ../../godmode/reporting/create_container.php:571 #: ../../godmode/reporting/create_container.php:600 #: ../../godmode/reporting/create_container.php:741 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2236 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2245 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.elements.php:618 -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map_editor.php:400 +#: ../../include/functions_visual_map_editor.php:391 +#: ../../include/functions_visual_map_editor.php:394 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:615 #: ../../include/functions_reports.php:573 #: ../../include/functions_reports.php:660 #: ../../include/functions_reports.php:666 -#: ../../include/functions_reporting.php:10655 +#: ../../include/functions_reporting.php:10664 msgid "Custom graph" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2241 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2400 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2409 msgid "Max items" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2274 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2365 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2374 msgid "Custom SQL template" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2295 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2386 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2395 msgid "" "The entities of the fields that contain them must be included. Also is " "possible use macros like `_start_date_` or `_end_date_`." @@ -21446,157 +21586,157 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2473 #: ../../extensions/api_checker.php:365 #: ../../godmode/reporting/reporting_builder.item_editor.php:75 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2432 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2441 #: ../../godmode/events/event_responses.editor.php:229 #: ../../godmode/events/event_responses.editor.php:255 -#: ../../include/functions_reporting_html.php:1616 +#: ../../include/functions_reporting_html.php:1625 #: ../../operation/gis_maps/ajax.php:316 msgid "URL" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2320 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2443 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2452 msgid "Protocol must be specified in URL (e.g.: \"https://\")" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2384 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3606 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3615 msgid "Group by" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2499 #: ../../enterprise/include/functions_reporting_csv.php:1080 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2581 -#: ../../include/functions_reporting_html.php:5006 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2590 +#: ../../include/functions_reporting_html.php:5034 #: ../../include/functions_reporting.php:1545 msgid "Avg" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2641 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2761 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2770 msgid "Select fields to show" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2649 #: ../../enterprise/include/functions_reporting_csv.php:501 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2769 -#: ../../include/functions_reporting_html.php:4145 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2778 +#: ../../include/functions_reporting_html.php:4173 msgid "Total time" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2657 #: ../../enterprise/include/functions_reporting_csv.php:505 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2777 -#: ../../include/functions_reporting_html.php:4151 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2786 +#: ../../include/functions_reporting_html.php:4179 msgid "Time failed" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2665 #: ../../enterprise/include/functions_reporting_csv.php:509 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2785 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2794 msgid "Time in OK status" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2673 #: ../../enterprise/include/functions_reporting_csv.php:513 #: ../../enterprise/include/functions_reporting.php:4990 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2793 -#: ../../include/functions_reporting_html.php:4163 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2802 +#: ../../include/functions_reporting_html.php:4191 msgid "Time in warning status" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2681 #: ../../enterprise/include/functions_reporting_csv.php:517 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2801 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2810 msgid "Time in unknown status" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2693 #: ../../enterprise/include/functions_reporting_csv.php:521 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2813 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2822 msgid "Time of not initialized module" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2705 #: ../../enterprise/include/functions_reporting_csv.php:525 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2825 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2834 msgid "Time of downtime" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2759 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2877 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2886 msgid "

Select fields to show

" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2767 #: ../../enterprise/include/functions_reporting_csv.php:533 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2885 -#: ../../include/functions_reporting_html.php:4239 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2894 +#: ../../include/functions_reporting_html.php:4267 msgid "Total checks" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2775 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2893 -#: ../../include/functions_reporting_html.php:4245 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2902 +#: ../../include/functions_reporting_html.php:4273 msgid "Checks failed" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2783 #: ../../enterprise/include/functions_reporting_csv.php:541 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2901 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2910 msgid "Checks in OK status" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2795 #: ../../enterprise/include/functions_reporting_csv.php:545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2925 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2934 msgid "Unknown checks" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2807 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2937 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2946 msgid "

Select fields to show

" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2815 #: ../../enterprise/include/functions_reporting_csv.php:668 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2945 -#: ../../include/functions_reporting_html.php:4560 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2954 +#: ../../include/functions_reporting_html.php:4588 msgid "Agent max value" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2823 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2953 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2962 msgid "Agent min values" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2852 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3589 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3598 msgid "Show Summary" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2996 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3177 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3186 msgid "Height (dynamic graphs)" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3036 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3161 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3170 msgid "Query History Database" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3048 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3242 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3251 msgid "Priority mode" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3053 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3247 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3256 msgid "Priority ok mode" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3065 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3259 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3268 msgid "Priority unknown mode" msgstr "" @@ -21627,39 +21767,39 @@ msgid "" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3305 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3367 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3376 msgid "Calculate for custom intervals" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3316 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3462 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3471 msgid "Use prefix notation" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3328 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3379 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3388 msgid "Time lapse intervals" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3330 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3382 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3391 msgid "" "Lapses of time in which the period is divided to make more precise " "calculations" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3375 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3423 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3432 msgid "Table only" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3385 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3434 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3443 msgid "Graph only" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3395 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3445 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3454 msgid "Graph and table" msgstr "" @@ -21680,28 +21820,28 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3513 #: ../../godmode/netflow/nf_item_list.php:282 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4025 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4034 msgid "Create item" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3526 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4033 -#: ../../include/functions_visual_map_editor.php:1419 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4042 +#: ../../include/functions_visual_map_editor.php:1477 msgid "Update item" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3584 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4123 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4132 msgid "SLA Min. (value)" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3589 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4128 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4137 msgid "SLA Max. (value)" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3594 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4133 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4142 msgid "SLA Limit (%)" msgstr "" @@ -21732,13 +21872,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4005 #: ../../godmode/reporting/create_container.php:484 #: ../../godmode/reporting/reporting_builder.item_editor.php:1843 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4357 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4394 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4563 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4836 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4870 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4924 -#: ../../include/functions_ui.php:6311 ../../include/functions_html.php:5807 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4366 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4403 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4572 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4845 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4879 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4933 +#: ../../include/functions_ui.php:6386 ../../include/functions_html.php:5831 msgid "Select an Agent first" msgstr "" @@ -21752,17 +21892,17 @@ msgstr "" #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:151 #: ../../godmode/modules/module_list.php:98 -#: ../../godmode/groups/configure_group.php:145 -#: ../../godmode/groups/group_list.php:878 +#: ../../godmode/groups/configure_group.php:164 +#: ../../godmode/groups/group_list.php:879 #: ../../godmode/setup/os.builder.php:77 ../../godmode/setup/os.list.php:65 #: ../../godmode/reporting/visual_console_builder.elements.php:321 #: ../../include/functions_visual_map_editor.php:68 -#: ../../include/functions_visual_map_editor.php:1393 -#: ../../include/functions_visual_map.php:4225 -#: ../../include/rest-api/models/VisualConsole/Item.php:2148 +#: ../../include/functions_visual_map_editor.php:1451 +#: ../../include/functions_visual_map.php:4234 +#: ../../include/rest-api/models/VisualConsole/Item.php:2151 #: ../../include/lib/Dashboard/Widgets/module_icon.php:428 #: ../../include/lib/Dashboard/Widgets/module_status.php:419 -#: ../../operation/visual_console/view.php:361 +#: ../../operation/visual_console/view.php:363 msgid "Icon" msgstr "" @@ -21829,7 +21969,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:412 #: ../../godmode/reporting/reporting_builder.list_items.php:447 -#: ../../include/functions_graph.php:1514 +#: ../../include/functions_graph.php:1518 msgid "No items." msgstr "" @@ -21893,14 +22033,14 @@ msgstr "" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:366 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:281 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:357 -#: ../../godmode/modules/manage_network_components_form.php:393 -#: ../../godmode/groups/configure_group.php:286 +#: ../../godmode/modules/manage_network_components_form.php:396 +#: ../../godmode/groups/configure_group.php:305 #: ../../godmode/reporting/graph_builder.main.php:312 #: ../../godmode/wizards/HostDevices.class.php:651 #: ../../godmode/wizards/HostDevices.class.php:754 #: ../../godmode/wizards/Wizard.main.php:416 #: ../../godmode/wizards/DiscoveryTaskList.class.php:184 -#: ../../include/functions_html.php:6615 +#: ../../include/functions_html.php:6643 #: ../../include/class/CustomNetScan.class.php:314 #: ../../include/class/CustomNetScan.class.php:425 #: ../../include/class/HTML.class.php:419 @@ -21926,10 +22066,10 @@ msgstr "" #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:576 #: ../../enterprise/include/ajax/cron.ajax.php:183 #: ../../godmode/events/event_responses.editor.php:213 -#: ../../include/ajax/events.php:2168 ../../include/ajax/events.php:2684 +#: ../../include/ajax/events.php:2169 ../../include/ajax/events.php:2685 #: ../../include/class/ExternalTools.class.php:383 #: ../../include/lib/Dashboard/Widgets/events_list.php:640 -#: ../../operation/events/events.php:2627 +#: ../../operation/events/events.php:2681 msgid "Parameters" msgstr "" @@ -22047,7 +22187,7 @@ msgstr "" #: ../../enterprise/godmode/servers/new_HA_cluster.php:140 #: ../../enterprise/godmode/servers/HA_cluster.php:172 #: ../../extensions/quick_shell.php:197 -#: ../../godmode/agentes/module_manager_editor_network.php:535 +#: ../../godmode/agentes/module_manager_editor_network.php:540 msgid "SSH" msgstr "" @@ -22132,7 +22272,7 @@ msgstr "" #: ../../enterprise/godmode/servers/HA_cluster.php:168 #: ../../enterprise/include/functions_reporting_csv.php:2398 -#: ../../operation/tree.php:264 +#: ../../operation/tree.php:265 msgid "Agent status" msgstr "" @@ -22265,21 +22405,21 @@ msgid "Default value: " msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:356 -#: ../../include/functions_servers.php:556 -#: ../../include/functions_servers.php:1221 ../../include/functions_ui.php:7271 +#: ../../include/functions_servers.php:564 +#: ../../include/functions_servers.php:1244 ../../include/functions_ui.php:7341 msgid "Data server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:362 -#: ../../include/functions_servers.php:569 -#: ../../include/functions_servers.php:1224 ../../include/functions_ui.php:7276 +#: ../../include/functions_servers.php:577 +#: ../../include/functions_servers.php:1247 ../../include/functions_ui.php:7346 #: ../../include/class/AgentWizard.class.php:1382 msgid "Network server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:368 -#: ../../include/functions_servers.php:855 -#: ../../include/functions_servers.php:1269 +#: ../../include/functions_servers.php:863 +#: ../../include/functions_servers.php:1292 msgid "Alert server" msgstr "" @@ -22297,59 +22437,59 @@ msgstr "" #: ../../enterprise/include/class/Oracle.app.php:463 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:468 #: ../../enterprise/tools/ipam/ipam_editor.php:200 -#: ../../godmode/wizards/HostDevices.class.php:849 -#: ../../include/functions_servers.php:595 -#: ../../include/functions_servers.php:1257 +#: ../../godmode/wizards/HostDevices.class.php:845 +#: ../../include/functions_servers.php:603 +#: ../../include/functions_servers.php:1280 #: ../../include/class/CustomNetScan.class.php:485 #: ../../general/first_task/recon_view.php:22 msgid "Discovery server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:380 -#: ../../include/functions_servers.php:621 ../../include/functions_ui.php:7286 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:843 +#: ../../include/functions_servers.php:629 ../../include/functions_ui.php:7356 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:844 msgid "Prediction server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:386 -#: ../../include/functions_servers.php:608 -#: ../../include/functions_servers.php:1236 ../../include/functions_ui.php:7281 +#: ../../include/functions_servers.php:616 +#: ../../include/functions_servers.php:1259 ../../include/functions_ui.php:7351 #: ../../include/class/AgentWizard.class.php:1363 msgid "Plugin server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:392 -#: ../../include/functions_menu.php:609 ../../operation/menu.php:243 +#: ../../include/functions_menu.php:613 ../../operation/menu.php:243 msgid "SNMP console" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:398 -#: ../../include/functions_servers.php:1227 +#: ../../include/functions_servers.php:1250 msgid "SNMP server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:404 -#: ../../include/functions_servers.php:673 -#: ../../include/functions_servers.php:1245 +#: ../../include/functions_servers.php:681 +#: ../../include/functions_servers.php:1268 msgid "Web server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:410 -#: ../../include/functions_servers.php:660 -#: ../../include/functions_servers.php:1251 +#: ../../include/functions_servers.php:668 +#: ../../include/functions_servers.php:1274 msgid "Inventory server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:416 #: ../../enterprise/godmode/servers/manage_export_form.php:111 -#: ../../include/functions_servers.php:647 -#: ../../include/functions_servers.php:1248 +#: ../../include/functions_servers.php:655 +#: ../../include/functions_servers.php:1271 msgid "Export server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:422 -#: ../../include/functions_servers.php:686 -#: ../../include/functions_servers.php:1254 +#: ../../include/functions_servers.php:694 +#: ../../include/functions_servers.php:1277 msgid "Event server" msgstr "" @@ -22358,19 +22498,19 @@ msgid "ICMP server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:434 -#: ../../include/functions_servers.php:1263 ../../include/functions_ui.php:7301 +#: ../../include/functions_servers.php:1286 ../../include/functions_ui.php:7371 msgid "WUX server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:440 -#: ../../include/functions_servers.php:816 -#: ../../include/functions_servers.php:1272 +#: ../../include/functions_servers.php:824 +#: ../../include/functions_servers.php:1295 msgid "NCM server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 -#: ../../include/functions_servers.php:634 -#: ../../include/functions_servers.php:1242 ../../include/functions_ui.php:7291 +#: ../../include/functions_servers.php:642 +#: ../../include/functions_servers.php:1265 ../../include/functions_ui.php:7361 #: ../../include/class/AgentWizard.class.php:1373 msgid "WMI server" msgstr "" @@ -23235,7 +23375,7 @@ msgid "Delete remote conf server files" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1388 -#: ../../godmode/agentes/agent_manager.php:853 +#: ../../godmode/agentes/agent_manager.php:861 msgid "Delete remote configuration file" msgstr "" @@ -23292,8 +23432,8 @@ msgstr "" #: ../../enterprise/godmode/servers/list_satellite.php:41 #: ../../godmode/setup/license.php:261 #: ../../godmode/servers/modificar_server.php:75 -#: ../../include/functions_ui.php:961 -#: ../../include/class/Diagnostics.class.php:1207 +#: ../../include/functions_ui.php:987 +#: ../../include/class/Diagnostics.class.php:1211 msgid "Satellite" msgstr "" @@ -23306,16 +23446,16 @@ msgstr "" #: ../../enterprise/include/functions_cron.php:186 #: ../../enterprise/include/functions_cron.php:236 -#: ../../enterprise/include/functions_reporting.php:8199 +#: ../../enterprise/include/functions_reporting.php:8208 #: ../../enterprise/operation/reporting/custom_reporting.php:153 msgid "Send to emails (separated by comma)" msgstr "" #: ../../enterprise/include/functions_cron.php:190 #: ../../enterprise/include/functions_cron.php:240 -#: ../../enterprise/include/functions_reporting.php:8207 +#: ../../enterprise/include/functions_reporting.php:8216 #: ../../enterprise/operation/reporting/custom_reporting.php:161 -#: ../../godmode/setup/news.php:200 ../../godmode/setup/news.php:349 +#: ../../godmode/setup/news.php:204 ../../godmode/setup/news.php:353 #: ../../operation/messages/message_list.php:195 #: ../../operation/messages/message_edit.php:376 msgid "Subject" @@ -23323,7 +23463,7 @@ msgstr "" #: ../../enterprise/include/functions_cron.php:194 #: ../../enterprise/include/functions_cron.php:244 -#: ../../enterprise/include/functions_reporting.php:8225 +#: ../../enterprise/include/functions_reporting.php:8234 #: ../../enterprise/operation/reporting/custom_reporting.php:179 #: ../../operation/messages/message_edit.php:389 msgid "Message" @@ -23419,8 +23559,8 @@ msgstr "" #: ../../enterprise/include/functions_cron.php:799 #: ../../enterprise/include/functions_cron.php:832 -#: ../../enterprise/include/functions_reporting.php:8219 -#: ../../enterprise/include/functions_reporting.php:8233 +#: ../../enterprise/include/functions_reporting.php:8228 +#: ../../enterprise/include/functions_reporting.php:8242 #: ../../enterprise/operation/reporting/custom_reporting.php:173 #: ../../enterprise/operation/reporting/custom_reporting.php:187 msgid "This is an optional field" @@ -23435,7 +23575,7 @@ msgid "Scheduled report had an attempt to send an email with some attachments." msgstr "" #: ../../enterprise/include/functions_cron.php:1801 -#: ../../include/functions_reporting.php:15834 +#: ../../include/functions_reporting.php:15911 msgid "Greetings" msgstr "" @@ -23446,22 +23586,22 @@ msgstr "" #: ../../enterprise/include/functions_cron.php:1805 #: ../../mobile/include/functions_web.php:84 #: ../../mobile/include/ui.class.php:327 -#: ../../include/functions_reporting.php:15840 +#: ../../include/functions_reporting.php:15917 msgid "Generated at" msgstr "" #: ../../enterprise/include/functions_cron.php:1807 -#: ../../include/functions_reporting.php:15842 +#: ../../include/functions_reporting.php:15919 msgid "Thanks for your time." msgstr "" #: ../../enterprise/include/functions_cron.php:1809 -#: ../../include/functions_reporting.php:15844 +#: ../../include/functions_reporting.php:15921 msgid "Best regards, Pandora FMS" msgstr "" #: ../../enterprise/include/functions_cron.php:1811 -#: ../../include/functions_reporting.php:15846 +#: ../../include/functions_reporting.php:15923 msgid "" "This is an automatically generated email from Pandora FMS, please do not " "reply." @@ -23545,8 +23685,8 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../enterprise/include/functions_reporting_csv.php:1424 #: ../../enterprise/include/functions_reporting_csv.php:1479 -#: ../../enterprise/include/functions_reporting.php:8142 -#: ../../enterprise/include/functions_reporting.php:8179 +#: ../../enterprise/include/functions_reporting.php:8151 +#: ../../enterprise/include/functions_reporting.php:8188 #: ../../enterprise/operation/reporting/custom_reporting.php:138 #: ../../include/functions_cron.php:612 ../../include/functions_cron.php:705 #: ../../include/functions_cron.php:829 @@ -23569,7 +23709,7 @@ msgstr "" #: ../../enterprise/include/functions_tasklist.php:464 #: ../../enterprise/include/class/ManageBackups.class.php:169 #: ../../include/functions_cron.php:787 ../../include/functions_cron.php:828 -#: ../../include/class/Diagnostics.class.php:2203 +#: ../../include/class/Diagnostics.class.php:2207 msgid "Path" msgstr "" @@ -23585,9 +23725,9 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_ajax.php:505 #: ../../godmode/db/db_main.php:189 #: ../../godmode/snmpconsole/snmp_alert.php:1967 -#: ../../include/functions_cron.php:907 -#: ../../include/functions_treeview.php:663 ../../include/functions_ui.php:606 -#: ../../operation/agentes/estado_generalagente.php:431 +#: ../../include/functions_cron.php:907 ../../include/ajax/heatmap.ajax.php:479 +#: ../../include/functions_treeview.php:667 ../../include/functions_ui.php:606 +#: ../../operation/agentes/estado_generalagente.php:402 #: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362 #: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479 msgid "Never" @@ -23617,17 +23757,17 @@ msgid "avg" msgstr "" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:80 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4597 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4606 msgid "max" msgstr "" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:81 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4598 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4607 msgid "min" msgstr "" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:82 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4599 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4608 msgid "sum" msgstr "" @@ -23776,11 +23916,11 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_supernet_network.php:58 #: ../../enterprise/tools/ipam/ipam_supernet_network.php:83 #: ../../enterprise/tools/ipam/ipam_editor.php:127 -#: ../../godmode/wizards/HostDevices.class.php:917 +#: ../../godmode/wizards/HostDevices.class.php:913 #: ../../godmode/wizards/DiscoveryTaskList.class.php:602 -#: ../../include/functions_ui.php:973 +#: ../../include/functions_ui.php:1002 #: ../../operation/network/network_usage_map.php:52 -#: ../../operation/netflow/nf_live_view.php:143 +#: ../../operation/netflow/nf_live_view.php:148 #: ../../operation/netflow/netflow_explorer.php:59 ../../operation/menu.php:210 msgid "Network" msgstr "" @@ -23831,9 +23971,9 @@ msgstr "" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:296 #: ../../godmode/agentes/configure_field.php:79 -#: ../../include/functions_treeview.php:902 +#: ../../include/functions_treeview.php:906 #: ../../operation/agentes/agent_fields.php:44 -#: ../../operation/agentes/estado_generalagente.php:623 +#: ../../operation/agentes/estado_generalagente.php:592 msgid "Custom field" msgstr "" @@ -23865,7 +24005,7 @@ msgstr "" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 #: ../../godmode/alerts/alert_list.list.php:774 -#: ../../godmode/alerts/alert_list.list.php:1307 +#: ../../godmode/alerts/alert_list.list.php:1306 msgid "Update action" msgstr "" @@ -23939,13 +24079,13 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2837 #: ../../godmode/setup/setup_integria.php:396 #: ../../godmode/setup/setup_integria.php:529 -#: ../../include/graphs/fgraph.php:879 ../../include/functions_ui.php:7855 +#: ../../include/graphs/fgraph.php:879 ../../include/functions_ui.php:7950 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 -#: ../../include/class/TipsWindow.class.php:454 -#: ../../include/class/TipsWindow.class.php:722 -#: ../../include/class/TipsWindow.class.php:889 -#: ../../include/lib/Dashboard/Widget.php:564 -#: ../../operation/agentes/estado_generalagente.php:756 +#: ../../include/class/TipsWindow.class.php:466 +#: ../../include/class/TipsWindow.class.php:742 +#: ../../include/class/TipsWindow.class.php:909 +#: ../../include/lib/Dashboard/Widget.php:565 +#: ../../operation/agentes/estado_generalagente.php:725 #: ../../operation/incidents/integriaims_export_csv.php:81 #: ../../operation/incidents/configure_integriaims_incident.php:228 #: ../../operation/incidents/list_integriaims_incidents.php:587 @@ -23959,8 +24099,8 @@ msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:93 #: ../../enterprise/include/functions_reporting_pdf.php:548 #: ../../enterprise/include/functions_reporting_pdf.php:604 -#: ../../include/functions_reporting_html.php:3841 -#: ../../include/functions_reporting_html.php:3911 +#: ../../include/functions_reporting_html.php:3869 +#: ../../include/functions_reporting_html.php:3939 msgid "Average" msgstr "" @@ -23973,51 +24113,51 @@ msgid "Curl Error: " msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:323 -#: ../../include/ajax/audit_log.php:270 ../../include/ajax/module.php:2224 -#: ../../include/ajax/agent.php:571 ../../include/ajax/events.php:775 +#: ../../include/ajax/audit_log.php:271 ../../include/ajax/module.php:2253 +#: ../../include/ajax/agent.php:571 ../../include/ajax/events.php:776 msgid "New filter" msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:331 #: ../../enterprise/include/ajax/log_viewer.ajax.php:427 -#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../godmode/netflow/nf_edit_form.php:80 #: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../include/ajax/audit_log.php:278 ../../include/ajax/audit_log.php:329 -#: ../../include/ajax/module.php:2340 ../../include/ajax/agent.php:699 -#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:783 -#: ../../include/ajax/events.php:881 +#: ../../include/ajax/audit_log.php:279 ../../include/ajax/audit_log.php:331 +#: ../../include/ajax/module.php:2369 ../../include/ajax/agent.php:699 +#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:784 +#: ../../include/ajax/events.php:882 msgid "Update filter" msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:347 -#: ../../godmode/events/event_edit_filter.php:282 -#: ../../include/ajax/audit_log.php:288 ../../include/ajax/module.php:2247 +#: ../../godmode/events/event_edit_filter.php:284 +#: ../../include/ajax/audit_log.php:289 ../../include/ajax/module.php:2276 #: ../../include/ajax/agent.php:594 ../../include/ajax/custom_fields.php:573 #: ../../include/ajax/custom_fields.php:620 -#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:799 +#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:800 msgid "Filter name" msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:350 -#: ../../include/ajax/module.php:2253 ../../include/ajax/agent.php:600 -#: ../../include/ajax/events.php:802 +#: ../../include/ajax/module.php:2282 ../../include/ajax/agent.php:600 +#: ../../include/ajax/events.php:803 msgid "Save in Group" msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:386 -#: ../../include/ajax/audit_log.php:314 ../../include/ajax/module.php:2292 -#: ../../include/ajax/events.php:838 +#: ../../include/ajax/audit_log.php:316 ../../include/ajax/module.php:2321 +#: ../../include/ajax/events.php:839 msgid "Overwrite filter" msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:482 -#: ../../include/ajax/audit_log.php:383 ../../include/ajax/module.php:2401 -#: ../../include/ajax/agent.php:761 ../../include/ajax/events.php:936 +#: ../../include/ajax/audit_log.php:386 ../../include/ajax/module.php:2430 +#: ../../include/ajax/agent.php:761 ../../include/ajax/events.php:937 msgid "Filter name cannot be left blank" msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:525 -#: ../../include/ajax/audit_log.php:411 +#: ../../include/ajax/audit_log.php:414 msgid "Filter name already on use" msgstr "" @@ -24068,8 +24208,8 @@ msgid "File of collection is bigger than the limit (%s bytes)" msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:75 -#: ../../include/class/Diagnostics.class.php:2158 -#: ../../include/class/Diagnostics.class.php:2276 +#: ../../include/class/Diagnostics.class.php:2162 +#: ../../include/class/Diagnostics.class.php:2280 #, php-format msgid "Automated %s report for user defined report" msgstr "" @@ -24081,24 +24221,24 @@ msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:618 #: ../../enterprise/include/functions_reporting_pdf.php:625 #: ../../enterprise/include/functions_reporting_csv.php:1340 -#: ../../include/functions_reporting_html.php:3824 -#: ../../include/functions_reporting_html.php:3853 -#: ../../include/functions_reporting_html.php:3896 -#: ../../include/functions_reporting_html.php:3919 -#: ../../include/functions_reporting_html.php:3922 -#: ../../include/functions_reporting_html.php:3929 -#: ../../include/functions_reporting.php:7334 -#: ../../include/functions_reporting.php:7357 -#: ../../include/functions_reporting.php:7372 -#: ../../include/functions_reporting.php:7388 -#: ../../include/functions_reporting.php:7403 +#: ../../include/functions_reporting_html.php:3852 +#: ../../include/functions_reporting_html.php:3881 +#: ../../include/functions_reporting_html.php:3924 +#: ../../include/functions_reporting_html.php:3947 +#: ../../include/functions_reporting_html.php:3950 +#: ../../include/functions_reporting_html.php:3957 +#: ../../include/functions_reporting.php:7343 +#: ../../include/functions_reporting.php:7366 +#: ../../include/functions_reporting.php:7381 +#: ../../include/functions_reporting.php:7397 +#: ../../include/functions_reporting.php:7412 msgid "Maximun" msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:540 #: ../../enterprise/include/functions_reporting_pdf.php:597 -#: ../../include/functions_reporting_html.php:3832 -#: ../../include/functions_reporting_html.php:3903 +#: ../../include/functions_reporting_html.php:3860 +#: ../../include/functions_reporting_html.php:3931 msgid "Minimun" msgstr "" @@ -24110,53 +24250,53 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1285 #: ../../enterprise/include/functions_reporting_csv.php:1340 #: ../../enterprise/include/functions_reporting_csv.php:1444 -#: ../../include/functions_reporting_html.php:3895 -#: ../../include/functions_reporting_html.php:3902 -#: ../../include/functions_reporting_html.php:3910 -#: ../../include/functions_reporting_html.php:3921 -#: ../../include/functions_reporting_html.php:3926 -#: ../../include/functions_reporting.php:7352 +#: ../../include/functions_reporting_html.php:3923 +#: ../../include/functions_reporting_html.php:3930 +#: ../../include/functions_reporting_html.php:3938 +#: ../../include/functions_reporting_html.php:3949 +#: ../../include/functions_reporting_html.php:3954 +#: ../../include/functions_reporting.php:7361 msgid "Lapse" msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:972 -#: ../../include/functions_reporting_html.php:2256 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:517 +#: ../../include/functions_reporting_html.php:2277 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:530 #, php-format msgid "%s in %s : NORMAL" msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:989 -#: ../../include/functions_reporting_html.php:2168 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:533 +#: ../../include/functions_reporting_html.php:2189 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:546 #, php-format msgid "%s in %s : CRITICAL" msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:1006 -#: ../../include/functions_reporting_html.php:2185 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:549 +#: ../../include/functions_reporting_html.php:2206 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:562 #, php-format msgid "%s in %s : WARNING" msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:1023 -#: ../../include/functions_reporting_html.php:2202 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:565 +#: ../../include/functions_reporting_html.php:2223 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:578 #, php-format msgid "%s in %s : UNKNOWN" msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:1040 -#: ../../include/functions_reporting_html.php:2238 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:581 +#: ../../include/functions_reporting_html.php:2259 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:594 #, php-format msgid "%s in %s : Not initialize" msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:1057 -#: ../../include/functions_reporting_html.php:2221 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:598 +#: ../../include/functions_reporting_html.php:2242 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:611 #, php-format msgid "%s in %s : ALERTS FIRED" msgstr "" @@ -24172,7 +24312,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../godmode/agentes/planned_downtime.list.php:331 #: ../../godmode/agentes/planned_downtime.editor.php:997 -#: ../../include/functions_reporting_html.php:4014 +#: ../../include/functions_reporting_html.php:4042 #: ../../include/functions_snmp.php:413 ../../include/functions_snmp.php:421 #: ../../include/rest-api/index.php:377 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460 @@ -24183,7 +24323,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:1989 #: ../../include/functions_reporting_html.php:91 -#: ../../include/functions_reporting_html.php:5816 +#: ../../include/functions_reporting_html.php:5844 #: ../../include/functions_treeview.php:303 #: ../../operation/agentes/interface_view.functions.php:560 msgid "Last data" @@ -24310,7 +24450,7 @@ msgid "Trap status agent recovered" msgstr "" #: ../../enterprise/include/functions_servicemap.php:80 -#: ../../enterprise/include/functions_servicemap.php:1203 +#: ../../enterprise/include/functions_servicemap.php:1215 msgid "Failed to retrieve service elements: " msgstr "" @@ -24338,11 +24478,16 @@ msgstr "" #: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:236 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.wizard.php:148 -#: ../../include/functions_visual_map_editor.php:250 -#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175 +#: ../../mobile/operation/module_data.php:263 +#: ../../mobile/operation/server_status.php:282 +#: ../../mobile/operation/server_status.php:320 +#: ../../mobile/operation/server_status.php:350 +#: ../../mobile/operation/server_status.php:446 +#: ../../include/functions_visual_map_editor.php:246 +#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:180 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:344 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:524 -#: ../../include/functions_filemanager.php:681 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:670 +#: ../../include/functions_filemanager.php:696 msgid "Image" msgstr "" @@ -24361,8 +24506,8 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:480 #: ../../enterprise/include/functions_reporting.php:1221 #: ../../include/functions_reports.php:842 -#: ../../include/functions_reporting.php:8898 -#: ../../include/functions_reporting.php:9293 +#: ../../include/functions_reporting.php:8907 +#: ../../include/functions_reporting.php:9302 msgid "Availability" msgstr "" @@ -24381,7 +24526,7 @@ msgid "Maximum value" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:673 -#: ../../include/functions_reporting_html.php:4562 +#: ../../include/functions_reporting_html.php:4590 msgid "Agent min value" msgstr "" @@ -24400,7 +24545,8 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../enterprise/operation/agentes/tag_view.php:695 -#: ../../operation/agentes/estado_generalagente.php:464 +#: ../../include/ajax/heatmap.ajax.php:483 +#: ../../operation/agentes/estado_generalagente.php:435 #: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 msgid "Remote" msgstr "" @@ -24423,7 +24569,7 @@ msgid "Agent groups" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:763 -#: ../../include/functions_reporting_html.php:1780 +#: ../../include/functions_reporting_html.php:1789 msgid "Agent secondary groups" msgstr "" @@ -24438,7 +24584,7 @@ msgid "Prediction date" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:838 -#: ../../include/functions_reporting.php:6800 +#: ../../include/functions_reporting.php:6809 msgid "Projection Graph" msgstr "" @@ -24459,19 +24605,19 @@ msgid "Top %d" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1019 -#: ../../include/functions_reporting.php:4186 +#: ../../include/functions_reporting.php:4195 msgid "Group Report" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:289 -#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1082 -#: ../../mobile/operation/groups.php:147 -#: ../../include/functions_reporting_html.php:5896 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1094 +#: ../../mobile/operation/groups.php:186 +#: ../../include/functions_reporting_html.php:5924 #: ../../include/class/Diagnostics.class.php:583 -#: ../../include/functions_reporting.php:12308 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:697 -#: ../../include/functions_groups.php:2642 ../../operation/tree.php:501 +#: ../../include/functions_reporting.php:12381 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:690 +#: ../../include/functions_groups.php:2667 ../../operation/tree.php:503 msgid "Total agents" msgstr "" @@ -24481,17 +24627,17 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:290 -#: ../../godmode/groups/group_list.php:1083 +#: ../../godmode/groups/group_list.php:1095 #: ../../godmode/module_library/module_library_view.php:159 #: ../../include/class/Diagnostics.class.php:587 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:698 -#: ../../operation/tree.php:502 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:691 +#: ../../operation/tree.php:504 msgid "Total modules" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../include/functions_reporting.php:12155 -#: ../../include/functions_groups.php:2700 +#: ../../include/functions_reporting.php:12228 +#: ../../include/functions_groups.php:2725 msgid "Defined alerts" msgstr "" @@ -24499,18 +24645,21 @@ msgstr "" #: ../../enterprise/operation/services/services.treeview_services.php:294 #: ../../enterprise/operation/services/services.treeview_services.php:295 #: ../../enterprise/operation/services/services.treeview_services.php:296 -#: ../../godmode/groups/group_list.php:1087 -#: ../../godmode/groups/group_list.php:1088 -#: ../../godmode/groups/group_list.php:1089 -#: ../../include/functions_graph.php:2608 -#: ../../include/functions_reporting.php:12171 -#: ../../include/functions_reporting.php:12192 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:702 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:703 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:704 -#: ../../include/functions_groups.php:2718 -#: ../../include/functions_groups.php:2741 ../../operation/tree.php:506 -#: ../../operation/tree.php:507 ../../operation/tree.php:508 +#: ../../godmode/groups/group_list.php:1099 +#: ../../godmode/groups/group_list.php:1100 +#: ../../godmode/groups/group_list.php:1101 +#: ../../include/functions_graph.php:2618 +#: ../../include/functions_reporting.php:12244 +#: ../../include/functions_reporting.php:12265 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:407 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:442 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:695 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:696 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:697 +#: ../../include/functions_groups.php:2743 +#: ../../include/functions_groups.php:2766 ../../operation/tree.php:213 +#: ../../operation/tree.php:304 ../../operation/tree.php:508 +#: ../../operation/tree.php:509 ../../operation/tree.php:510 msgid "Fired alerts" msgstr "" @@ -24547,8 +24696,8 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1238 #: ../../enterprise/include/functions_reporting_csv.php:1240 #: ../../include/functions_reports.php:766 -#: ../../include/functions_reporting.php:7106 -#: ../../include/functions_reporting.php:10571 +#: ../../include/functions_reporting.php:7115 +#: ../../include/functions_reporting.php:10580 msgid "Summatory" msgstr "" @@ -24560,7 +24709,7 @@ msgid "Minimum Value" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1285 -#: ../../include/functions_reporting.php:10575 +#: ../../include/functions_reporting.php:10584 msgid "Minimum" msgstr "" @@ -24575,37 +24724,37 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../enterprise/include/functions_reporting_csv.php:1379 #: ../../enterprise/include/functions_reporting_csv.php:1390 -#: ../../include/functions_reporting_html.php:4017 +#: ../../include/functions_reporting_html.php:4045 #: ../../include/functions_reports.php:774 -#: ../../include/functions_reporting.php:10031 +#: ../../include/functions_reporting.php:10040 msgid "Increment" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../include/functions_reporting_html.php:4015 +#: ../../include/functions_reporting_html.php:4043 msgid "From data" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../include/functions_reporting_html.php:4016 +#: ../../include/functions_reporting_html.php:4044 msgid "To data" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1381 #: ../../enterprise/include/functions_reporting_csv.php:1392 -#: ../../include/functions_reporting_html.php:4044 +#: ../../include/functions_reporting_html.php:4072 msgid "Negative increase: " msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1383 #: ../../enterprise/include/functions_reporting_csv.php:1394 -#: ../../include/functions_reporting_html.php:4046 +#: ../../include/functions_reporting_html.php:4074 msgid "Positive increase: " msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1385 #: ../../enterprise/include/functions_reporting_csv.php:1396 -#: ../../include/functions_reporting_html.php:4048 +#: ../../include/functions_reporting_html.php:4076 msgid "Neutral increase: " msgstr "" @@ -24614,7 +24763,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1431 #: ../../enterprise/include/functions_reporting_csv.php:1437 #: ../../enterprise/include/functions_reporting_csv.php:1439 -#: ../../include/functions_reporting.php:7111 +#: ../../include/functions_reporting.php:7120 msgid "AVG. Value" msgstr "" @@ -24625,7 +24774,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1465 #: ../../enterprise/include/functions_reporting_csv.php:1483 #: ../../enterprise/include/functions_reporting_csv.php:1485 -#: ../../include/functions_reporting.php:6442 +#: ../../include/functions_reporting.php:6451 msgid "Monitor Report" msgstr "" @@ -24742,8 +24891,8 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:3988 #: ../../enterprise/include/functions_reporting.php:6182 #: ../../include/functions_reporting_html.php:670 -#: ../../include/functions_config.php:1337 -#: ../../include/functions_config.php:3541 +#: ../../include/functions_config.php:1353 +#: ../../include/functions_config.php:3565 msgid "Fail" msgstr "" @@ -24924,7 +25073,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1787 #: ../../enterprise/include/functions_reporting_csv.php:2095 -#: ../../include/functions_html.php:2322 +#: ../../include/functions_html.php:2337 msgid "Month" msgstr "" @@ -25030,7 +25179,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:2336 #: ../../godmode/events/custom_events.php:94 #: ../../include/functions_events.php:244 -#: ../../operation/events/events.php:2665 +#: ../../operation/events/events.php:2719 msgid "Agent ID" msgstr "" @@ -25042,16 +25191,16 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_ajax.php:295 #: ../../enterprise/tools/ipam/ipam_ajax.php:482 #: ../../enterprise/tools/ipam/ipam_massive.php:105 -#: ../../godmode/users/configure_user.php:1218 -#: ../../godmode/users/user_management.php:684 -#: ../../mobile/operation/events.php:849 -#: ../../include/functions_reporting_html.php:6016 -#: ../../include/functions.php:3109 ../../include/ajax/events.php:1763 +#: ../../godmode/users/configure_user.php:1282 +#: ../../godmode/users/user_management.php:710 +#: ../../mobile/operation/events.php:878 +#: ../../include/functions_reporting_html.php:6050 +#: ../../include/functions.php:3109 ../../include/ajax/events.php:1764 #: ../../include/class/AuditLog.class.php:114 -#: ../../operation/users/user_edit.php:743 +#: ../../operation/users/user_edit.php:740 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:333 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:426 -#: ../../general/logon_ok.php:259 +#: ../../general/logon_ok.php:304 msgid "Comments" msgstr "" @@ -25084,7 +25233,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2031 #: ../../enterprise/include/functions_reporting.php:4991 #: ../../include/functions_reporting_html.php:588 -#: ../../include/functions_reporting_html.php:4157 +#: ../../include/functions_reporting_html.php:4185 msgid "Time OK" msgstr "" @@ -25095,7 +25244,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2033 #: ../../enterprise/include/functions_reporting.php:4992 #: ../../include/functions_reporting_html.php:589 -#: ../../include/functions_reporting_html.php:4169 +#: ../../include/functions_reporting_html.php:4197 msgid "Time Unknown" msgstr "" @@ -25106,7 +25255,7 @@ msgid "Time Not Init" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2035 -#: ../../include/functions_reporting_html.php:4181 +#: ../../include/functions_reporting_html.php:4209 msgid "Time Downtime" msgstr "" @@ -25119,7 +25268,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2037 #: ../../enterprise/include/functions_reporting.php:5086 #: ../../include/functions_reporting_html.php:622 -#: ../../include/functions_reporting_html.php:4251 +#: ../../include/functions_reporting_html.php:4279 msgid "Checks OK" msgstr "" @@ -25286,17 +25435,17 @@ msgid "Custom Graph" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2493 -#: ../../include/functions_reporting.php:6150 +#: ../../include/functions_reporting.php:6159 msgid "Alert Report Module" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2495 -#: ../../include/functions_reporting.php:5983 +#: ../../include/functions_reporting.php:5992 msgid "Alert Report Agent" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2497 -#: ../../include/functions_reporting.php:5803 +#: ../../include/functions_reporting.php:5812 msgid "Alert Report Group" msgstr "" @@ -25315,20 +25464,20 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2581 #: ../../include/functions_reports.php:951 #: ../../include/functions_reports.php:952 -#: ../../include/functions_reporting.php:5108 +#: ../../include/functions_reporting.php:5117 msgid "Permissions report" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../godmode/users/user_list.php:572 -#: ../../godmode/users/configure_user.php:1001 -#: ../../godmode/users/configure_user.php:1060 +#: ../../godmode/users/user_list.php:573 +#: ../../godmode/users/configure_user.php:1049 +#: ../../godmode/users/configure_user.php:1124 #: ../../godmode/users/user_management.php:143 #: ../../godmode/users/user_management.php:155 -#: ../../include/functions_reporting_html.php:5305 -#: ../../include/functions_reporting_html.php:6436 -#: ../../include/functions_reporting_html.php:6459 +#: ../../include/functions_reporting_html.php:5333 +#: ../../include/functions_reporting_html.php:6470 +#: ../../include/functions_reporting_html.php:6493 #: ../../include/class/SnmpConsole.class.php:278 #: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:291 msgid "User ID" @@ -25337,15 +25486,15 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 #: ../../godmode/users/user_management.php:166 -#: ../../include/functions_reporting_html.php:6437 -#: ../../include/functions_reporting_html.php:6460 +#: ../../include/functions_reporting_html.php:6471 +#: ../../include/functions_reporting_html.php:6494 msgid "Full name" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../include/functions_reporting_html.php:6438 -#: ../../include/functions_reporting_html.php:6461 +#: ../../include/functions_reporting_html.php:6472 +#: ../../include/functions_reporting_html.php:6495 msgid "Permissions" msgstr "" @@ -25398,23 +25547,23 @@ msgid "Agent/module status" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2792 -#: ../../include/functions_reporting_html.php:2358 +#: ../../include/functions_reporting_html.php:2379 msgid "Last time" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2836 #: ../../include/functions_reports.php:938 -#: ../../include/functions_reporting.php:6597 +#: ../../include/functions_reporting.php:6606 msgid "Netflow top-N connections" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../mobile/operation/tactical.php:351 -#: ../../include/functions_reporting_html.php:6015 +#: ../../mobile/operation/tactical.php:352 +#: ../../include/functions_reporting_html.php:6049 #: ../../include/functions.php:3109 ../../include/functions_netflow.php:347 #: ../../include/class/AuditLog.class.php:113 #: ../../operation/snmpconsole/snmp_statistics.php:183 -#: ../../general/logon_ok.php:258 +#: ../../general/logon_ok.php:303 msgid "Source IP" msgstr "" @@ -25424,8 +25573,8 @@ msgid "Destination IP" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../include/functions_config.php:1024 -#: ../../include/functions_config.php:3453 +#: ../../include/functions_config.php:1036 +#: ../../include/functions_config.php:3477 #: ../../include/functions_netflow.php:349 #: ../../operation/network/network_report.php:294 #: ../../operation/network/network_report.php:326 @@ -25496,6 +25645,8 @@ msgid "Public Key Authentication Failed" msgstr "" #: ../../enterprise/include/functions_HA_cluster.php:268 +#: ../../godmode/setup/setup_ehorus.php:136 +#: ../../godmode/setup/setup_integria.php:666 msgid "Connection failed" msgstr "" @@ -25508,7 +25659,7 @@ msgid "Register new node" msgstr "" #: ../../enterprise/include/functions_HA_cluster.php:496 -#: ../../include/class/NetworkMap.class.php:3156 +#: ../../include/class/NetworkMap.class.php:3162 msgid "Update node" msgstr "" @@ -25571,7 +25722,7 @@ msgstr "" #: ../../enterprise/include/class/Google.cloud.php:762 #: ../../enterprise/include/class/Oracle.app.php:452 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:457 -#: ../../godmode/wizards/HostDevices.class.php:839 +#: ../../godmode/wizards/HostDevices.class.php:835 #: ../../godmode/wizards/DiscoveryTaskList.class.php:593 #: ../../include/class/CustomNetScan.class.php:452 msgid "Task name" @@ -25628,27 +25779,27 @@ msgstr "" #: ../../enterprise/include/class/VMware.app.php:1040 #: ../../enterprise/include/class/DB2.app.php:888 #: ../../enterprise/include/class/Aws.S3.php:665 -#: ../../enterprise/include/class/SAP.app.php:950 +#: ../../enterprise/include/class/SAP.app.php:951 #: ../../enterprise/include/class/Aws.cloud.php:1621 #: ../../enterprise/include/class/MySQL.app.php:963 #: ../../enterprise/include/class/Google.cloud.php:955 #: ../../enterprise/include/class/Oracle.app.php:995 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:850 #: ../../godmode/wizards/HostDevices.class.php:1637 -#: ../../include/class/CustomNetScan.class.php:775 +#: ../../include/class/CustomNetScan.class.php:774 msgid "Task configured." msgstr "" #: ../../enterprise/include/class/Azure.cloud.php:997 #: ../../enterprise/include/class/VMware.app.php:1044 #: ../../enterprise/include/class/DB2.app.php:892 -#: ../../enterprise/include/class/SAP.app.php:954 +#: ../../enterprise/include/class/SAP.app.php:955 #: ../../enterprise/include/class/MySQL.app.php:967 #: ../../enterprise/include/class/Google.cloud.php:959 #: ../../enterprise/include/class/Oracle.app.php:999 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:854 #: ../../godmode/wizards/HostDevices.class.php:1641 -#: ../../include/class/CustomNetScan.class.php:779 +#: ../../include/class/CustomNetScan.class.php:778 msgid "Wizard failed. Cannot configure task." msgstr "" @@ -25734,8 +25885,8 @@ msgstr "" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:587 #: ../../godmode/setup/setup_integria.php:736 #: ../../godmode/wizards/HostDevices.class.php:782 -#: ../../include/class/CustomNetScan.class.php:559 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1240 +#: ../../include/class/CustomNetScan.class.php:558 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1241 msgid "Update and continue" msgstr "" @@ -25755,7 +25906,7 @@ msgstr "" #: ../../enterprise/include/class/MySQL.app.php:462 #: ../../enterprise/include/class/Oracle.app.php:464 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:469 -#: ../../godmode/wizards/HostDevices.class.php:850 +#: ../../godmode/wizards/HostDevices.class.php:846 #: ../../include/class/CustomNetScan.class.php:486 msgid "" "You must select a Discovery Server to run the Task, otherwise the Recon Task " @@ -25789,8 +25940,8 @@ msgstr "" #: ../../enterprise/include/class/Oracle.app.php:561 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:565 #: ../../godmode/wizards/HostDevices.class.php:807 -#: ../../include/functions_reporting_html.php:2590 -#: ../../include/class/CustomNetScan.class.php:534 +#: ../../include/functions_reporting_html.php:2611 +#: ../../include/class/CustomNetScan.class.php:536 msgid "Defined" msgstr "" @@ -25815,7 +25966,7 @@ msgstr "" #: ../../enterprise/include/class/VMware.app.php:762 #: ../../enterprise/include/class/DB2.app.php:478 #: ../../enterprise/include/class/Aws.S3.php:442 -#: ../../enterprise/include/class/SAP.app.php:635 +#: ../../enterprise/include/class/SAP.app.php:636 #: ../../enterprise/include/class/Aws.cloud.php:1253 #: ../../enterprise/include/class/MySQL.app.php:483 #: ../../enterprise/include/class/Oracle.app.php:485 @@ -26088,16 +26239,16 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1296 #: ../../enterprise/include/class/SAP.app.php:593 #: ../../enterprise/include/class/SAP.app.php:596 -#: ../../godmode/wizards/HostDevices.class.php:1472 -#: ../../godmode/wizards/HostDevices.class.php:1475 +#: ../../godmode/wizards/HostDevices.class.php:1468 +#: ../../godmode/wizards/HostDevices.class.php:1471 msgid "No credentials available" msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1160 #: ../../enterprise/include/class/DeploymentCenter.class.php:1294 #: ../../enterprise/include/class/SAP.app.php:594 -#: ../../godmode/agentes/module_manager_editor_network.php:525 -#: ../../godmode/wizards/HostDevices.class.php:1473 +#: ../../godmode/agentes/module_manager_editor_network.php:530 +#: ../../godmode/wizards/HostDevices.class.php:1469 msgid "Manage credentials" msgstr "" @@ -26110,7 +26261,7 @@ msgid "Scan from" msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1202 -#: ../../godmode/wizards/HostDevices.class.php:1485 +#: ../../godmode/wizards/HostDevices.class.php:1481 msgid "Credentials to try with" msgstr "" @@ -26212,13 +26363,14 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_ajax.php:422 #: ../../enterprise/tools/ipam/ipam_massive.php:140 #: ../../godmode/modules/manage_network_components_form_wizard.php:247 -#: ../../godmode/groups/group_list.php:942 -#: ../../godmode/agentes/module_manager_editor_common.php:698 -#: ../../godmode/agentes/module_manager_editor_common.php:708 -#: ../../godmode/massive/massive_edit_agents.php:1137 +#: ../../godmode/groups/group_list.php:954 +#: ../../godmode/agentes/module_manager_editor_common.php:703 +#: ../../godmode/agentes/module_manager_editor_common.php:706 +#: ../../godmode/agentes/module_manager_editor_common.php:717 +#: ../../godmode/massive/massive_edit_agents.php:1153 #: ../../godmode/alerts/configure_alert_template.php:919 -#: ../../include/functions_visual_map_editor.php:823 -#: ../../include/functions_reporting_html.php:3674 +#: ../../include/functions_visual_map_editor.php:871 +#: ../../include/functions_reporting_html.php:3702 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:406 #: ../../operation/agentes/estado_generalagente.php:314 msgid "Enabled" @@ -26447,8 +26599,8 @@ msgstr "" #: ../../enterprise/include/lib/Metaconsole/Node.php:1454 #: ../../include/class/CalendarManager.class.php:570 #: ../../include/class/CalendarManager.class.php:946 -#: ../../include/functions_reporting.php:5462 -#: ../../include/functions_reporting.php:5490 +#: ../../include/functions_reporting.php:5471 +#: ../../include/functions_reporting.php:5499 #, php-format msgid "Error: %s" msgstr "" @@ -26884,7 +27036,7 @@ msgid "Log monitoring is disabled. %s" msgstr "" #: ../../enterprise/include/class/LogSource.class.php:658 -#: ../../enterprise/include/class/LogSource.class.php:825 +#: ../../enterprise/include/class/LogSource.class.php:822 msgid "Add log source" msgstr "" @@ -26892,7 +27044,7 @@ msgstr "" msgid "Source name" msgstr "" -#: ../../enterprise/include/class/LogSource.class.php:829 +#: ../../enterprise/include/class/LogSource.class.php:826 msgid "Update log source" msgstr "" @@ -27189,130 +27341,130 @@ msgid "SAP System Number" msgstr "" #: ../../enterprise/include/class/SAP.app.php:606 -#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/SAP.app.php:621 msgid "SAP Credentials" msgstr "" #: ../../enterprise/include/class/SAP.app.php:606 -#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/SAP.app.php:621 msgid "Optional" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:651 +#: ../../enterprise/include/class/SAP.app.php:652 msgid "SAP License" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:747 +#: ../../enterprise/include/class/SAP.app.php:748 #: ../../include/functions_agents.php:4095 msgid "SAP Login OK" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:748 +#: ../../enterprise/include/class/SAP.app.php:749 #: ../../include/functions_agents.php:4096 msgid "SAP Dumps" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:749 +#: ../../enterprise/include/class/SAP.app.php:750 #: ../../include/functions_agents.php:4097 msgid "SAP lock entry list" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:750 +#: ../../enterprise/include/class/SAP.app.php:751 #: ../../include/functions_agents.php:4098 msgid "SAP canceled Jobs" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:751 +#: ../../enterprise/include/class/SAP.app.php:752 #: ../../include/functions_agents.php:4099 msgid "SAP Batch inputs erroneous" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:752 +#: ../../enterprise/include/class/SAP.app.php:753 #: ../../include/functions_agents.php:4100 msgid "SAP IDOC erroneous" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:753 +#: ../../enterprise/include/class/SAP.app.php:754 #: ../../include/functions_agents.php:4101 msgid "SAP IDOC OK" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:754 +#: ../../enterprise/include/class/SAP.app.php:755 #: ../../include/functions_agents.php:4102 msgid "SAP WP without active restart" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:755 +#: ../../enterprise/include/class/SAP.app.php:756 #: ../../include/functions_agents.php:4103 msgid "SAP WP stopped" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:756 +#: ../../enterprise/include/class/SAP.app.php:757 #: ../../include/functions_agents.php:4104 msgid "Average time of SAPGUI response" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:757 +#: ../../enterprise/include/class/SAP.app.php:758 #: ../../include/functions_agents.php:4106 msgid "Dialog Logged users" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:758 +#: ../../enterprise/include/class/SAP.app.php:759 #: ../../include/functions_agents.php:4107 msgid "TRFC in error" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:759 +#: ../../enterprise/include/class/SAP.app.php:760 #: ../../include/functions_agents.php:4108 msgid "QRFC in error SMQ2" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:760 +#: ../../enterprise/include/class/SAP.app.php:761 #: ../../include/functions_agents.php:4109 msgid "Number of Update WPs in error" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:784 +#: ../../enterprise/include/class/SAP.app.php:785 #, php-format msgid "" "Module 180 must be customized before being used, please use advanced options " "to define the module following the documentation:
%s" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:805 +#: ../../enterprise/include/class/SAP.app.php:806 #: ../../godmode/agentes/planned_downtime.editor.php:1257 msgid "Available modules" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:829 +#: ../../enterprise/include/class/SAP.app.php:830 msgid "Add monitors" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:842 +#: ../../enterprise/include/class/SAP.app.php:843 msgid "Remove monitors" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:853 -#: ../../enterprise/operation/services/massive/services.create.php:1321 +#: ../../enterprise/include/class/SAP.app.php:854 +#: ../../enterprise/operation/services/massive/services.create.php:1333 #: ../../enterprise/operation/services/massive/service.delete.elements.php:278 #: ../../enterprise/operation/services/massive/service.create.elements.php:626 #: ../../enterprise/operation/services/massive/service.edit.elements.php:385 msgid "Selected modules" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:893 +#: ../../enterprise/include/class/SAP.app.php:894 msgid "Define your custom SAP modules." msgstr "" -#: ../../enterprise/include/class/SAP.app.php:892 +#: ../../enterprise/include/class/SAP.app.php:893 msgid "Advanced module configuration" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:902 +#: ../../enterprise/include/class/SAP.app.php:903 msgid "Custom module definitions" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:903 +#: ../../enterprise/include/class/SAP.app.php:904 msgid "" "Each line is a module definition using following format: module name ; " "module_type ; SAP check definition." @@ -27856,7 +28008,7 @@ msgid "Remove item" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1979 -#: ../../operation/agentes/estado_monitores.php:639 +#: ../../operation/agentes/estado_monitores.php:631 msgid "Reset" msgstr "" @@ -27986,9 +28138,10 @@ msgid "Fields used on execution when the alert is fired" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2802 +#: ../../godmode/users/configure_user.php:63 #: ../../godmode/users/user_management.php:42 #: ../../godmode/massive/massive_edit_users.php:278 -#: ../../operation/users/user_edit.php:473 +#: ../../include/auth/mysql.php:811 ../../operation/users/user_edit.php:473 #: ../../operation/agentes/alerts_status.php:189 ../../operation/menu.php:194 msgid "Alert detail" msgstr "" @@ -28016,9 +28169,9 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3011 #: ../../godmode/alerts/alert_list.list.php:170 #: ../../mobile/operation/alerts.php:66 -#: ../../include/functions_reporting_html.php:2591 -#: ../../include/functions_reporting_html.php:3451 -#: ../../include/functions_reporting_html.php:3452 +#: ../../include/functions_reporting_html.php:2612 +#: ../../include/functions_reporting_html.php:3479 +#: ../../include/functions_reporting_html.php:3480 #: ../../operation/agentes/alerts_status.functions.php:99 msgid "Fired" msgstr "" @@ -28068,7 +28221,7 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3385 #: ../../enterprise/operation/agentes/policy_view.php:293 #: ../../godmode/alerts/alert_list.list.php:192 -#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1274 +#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1311 #: ../../operation/agentes/alerts_status.functions.php:104 msgid "Standby on" msgstr "" @@ -28134,7 +28287,7 @@ msgstr "" #: ../../enterprise/include/class/CommandCenter.class.php:171 #: ../../enterprise/include/functions_groups.php:49 -#: ../../include/ajax/module.php:1834 +#: ../../include/ajax/module.php:1862 msgid "Metaconsole" msgstr "" @@ -28182,7 +28335,7 @@ msgid "Please restore your backups" msgstr "" #: ../../enterprise/include/class/CommandCenter.class.php:454 -#: ../../include/functions_ui.php:7102 +#: ../../include/functions_ui.php:7174 msgid "Query" msgstr "" @@ -28192,8 +28345,8 @@ msgid "Table" msgstr "" #: ../../enterprise/include/class/CommandCenter.class.php:456 -#: ../../include/class/Heatmap.class.php:1302 -#: ../../general/reporting_console_node.php:65 +#: ../../include/class/Heatmap.class.php:1358 +#: ../../general/reporting_console_node.php:70 msgid "Info" msgstr "" @@ -28222,8 +28375,8 @@ msgstr "" #: ../../enterprise/include/class/CommandCenter.class.php:463 #: ../../enterprise/include/functions_login.php:213 -#: ../../include/functions_menu.php:883 -#: ../../include/class/Diagnostics.class.php:1846 +#: ../../include/functions_menu.php:888 +#: ../../include/class/Diagnostics.class.php:1850 msgid "Successfully" msgstr "" @@ -28389,12 +28542,12 @@ msgstr "" #: ../../extensions/files_repo/files_repo_list.php:57 #: ../../godmode/events/event_responses.editor.php:175 #: ../../include/functions_visual_map_editor.php:125 -#: ../../include/functions_visual_map_editor.php:178 -#: ../../include/functions_visual_map_editor.php:836 -#: ../../include/functions_visual_map_editor.php:931 +#: ../../include/functions_visual_map_editor.php:174 +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/functions_visual_map_editor.php:979 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:214 -#: ../../include/rest-api/models/VisualConsole/Item.php:1992 -#: ../../include/functions_filemanager.php:646 +#: ../../include/rest-api/models/VisualConsole/Item.php:1995 +#: ../../include/functions_filemanager.php:661 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:135 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:266 msgid "Size" @@ -28433,7 +28586,7 @@ msgid "Missed id parameter." msgstr "" #: ../../enterprise/include/class/ManageBackups.class.php:433 -#: ../../include/class/AuditLog.class.php:412 +#: ../../include/class/AuditLog.class.php:424 msgid "There is no additional information to display" msgstr "" @@ -28447,30 +28600,30 @@ msgstr "" msgid "Do you like perform a database restoration?" msgstr "" -#: ../../enterprise/include/functions_enterprise.php:451 +#: ../../enterprise/include/functions_enterprise.php:461 msgid "Tree view by tags" msgstr "" -#: ../../enterprise/include/functions_enterprise.php:481 +#: ../../enterprise/include/functions_enterprise.php:491 msgid "" "If the interval of days until events data purge is shorter than the events " "data history storage interval, data will be lost. It is recommended that the " "storage frequency is higher than the purge frequency." msgstr "" -#: ../../enterprise/include/functions_enterprise.php:483 +#: ../../enterprise/include/functions_enterprise.php:493 msgid "" "Problems with event days purge and event days that pass data to history DB." msgstr "" -#: ../../enterprise/include/functions_enterprise.php:494 +#: ../../enterprise/include/functions_enterprise.php:504 msgid "" "If days purge is less than history days pass to history db, you will have a " "problems and you lost data. Recommended that days purge will more taller " "than days to history DB" msgstr "" -#: ../../enterprise/include/functions_enterprise.php:496 +#: ../../enterprise/include/functions_enterprise.php:506 msgid "Problems with days purge and days that pass data to history DB" msgstr "" @@ -28521,7 +28674,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4223 #: ../../enterprise/include/functions_reporting.php:4874 #: ../../include/functions_reporting_html.php:877 -#: ../../include/functions_reporting_html.php:4881 +#: ../../include/functions_reporting_html.php:4909 msgid "Not Init" msgstr "" @@ -28567,7 +28720,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:3458 #: ../../enterprise/include/functions_reporting.php:4434 #: ../../include/functions_reporting.php:1011 -#: ../../include/functions_reporting.php:9335 +#: ../../include/functions_reporting.php:9344 msgid "There are no SLAs defined" msgstr "" @@ -28575,7 +28728,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:3511 #: ../../enterprise/include/functions_reporting.php:4487 #: ../../include/functions_reporting.php:1086 -#: ../../include/functions_reporting.php:9713 +#: ../../include/functions_reporting.php:9722 msgid "Inverse" msgstr "" @@ -28624,7 +28777,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:6224 #: ../../enterprise/include/functions_services.php:1453 #: ../../include/functions_reporting_html.php:872 -#: ../../include/functions_reporting_html.php:4876 +#: ../../include/functions_reporting_html.php:4904 msgid "Unknow" msgstr "" @@ -28632,7 +28785,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4228 #: ../../enterprise/include/functions_reporting.php:6229 #: ../../include/functions_reporting_html.php:882 -#: ../../include/functions_reporting_html.php:4886 +#: ../../include/functions_reporting_html.php:4914 msgid "Downtimes" msgstr "" @@ -28666,8 +28819,8 @@ msgstr "" #: ../../include/functions_reporting_html.php:680 #: ../../include/functions_reporting_html.php:751 #: ../../include/functions_reporting_html.php:829 -#: ../../include/functions_reporting_html.php:4333 -#: ../../include/functions_reporting_html.php:4480 +#: ../../include/functions_reporting_html.php:4361 +#: ../../include/functions_reporting_html.php:4508 msgid "24 x 7" msgstr "" @@ -28690,17 +28843,17 @@ msgid "Checks Critical" msgstr "" #: ../../enterprise/include/functions_reporting.php:5085 -#: ../../include/functions_reporting_html.php:4257 +#: ../../include/functions_reporting_html.php:4285 msgid "Checks Warning" msgstr "" #: ../../enterprise/include/functions_reporting.php:5168 #: ../../include/functions_reporting_html.php:809 -#: ../../include/functions_reporting_html.php:4523 -#: ../../include/functions_reporting_html.php:5075 -#: ../../include/functions_reporting_html.php:5078 +#: ../../include/functions_reporting_html.php:4551 +#: ../../include/functions_reporting_html.php:5103 +#: ../../include/functions_reporting_html.php:5106 #: ../../include/functions_reporting.php:1656 -#: ../../include/functions_reporting.php:3735 +#: ../../include/functions_reporting.php:3744 msgid "There are no Agent/Modules defined" msgstr "" @@ -28724,51 +28877,51 @@ msgid "Scheduled shutdow" msgstr "" #: ../../enterprise/include/functions_reporting.php:6600 -#: ../../enterprise/include/functions_reporting.php:7490 +#: ../../enterprise/include/functions_reporting.php:7499 #, php-format msgid "Graph agents(%s) - %s" msgstr "" -#: ../../enterprise/include/functions_reporting.php:7398 +#: ../../enterprise/include/functions_reporting.php:7407 #, php-format msgid "Graph agent(%s) - %s" msgstr "" -#: ../../enterprise/include/functions_reporting.php:7845 +#: ../../enterprise/include/functions_reporting.php:7854 msgid "There is not data for the selected conditions" msgstr "" -#: ../../enterprise/include/functions_reporting.php:8039 -#: ../../enterprise/include/functions_reporting.php:8105 +#: ../../enterprise/include/functions_reporting.php:8048 +#: ../../enterprise/include/functions_reporting.php:8114 msgid "Template editor" msgstr "" -#: ../../enterprise/include/functions_reporting.php:8171 +#: ../../enterprise/include/functions_reporting.php:8180 #: ../../enterprise/operation/reporting/custom_reporting.php:130 msgid "ID Report" msgstr "" -#: ../../enterprise/include/functions_reporting.php:8239 +#: ../../enterprise/include/functions_reporting.php:8248 #: ../../enterprise/operation/reporting/custom_reporting.php:116 #: ../../enterprise/operation/reporting/custom_reporting.php:193 msgid "Send by email" msgstr "" -#: ../../enterprise/include/functions_reporting.php:8327 +#: ../../enterprise/include/functions_reporting.php:8336 #: ../../enterprise/operation/reporting/custom_reporting.php:229 msgid "Send by email " msgstr "" -#: ../../enterprise/include/functions_reporting.php:8368 +#: ../../enterprise/include/functions_reporting.php:8377 #: ../../include/functions_reports.php:655 msgid "Simple baseline graph" msgstr "" -#: ../../enterprise/include/functions_reporting.php:8538 +#: ../../enterprise/include/functions_reporting.php:8547 msgid "Configuration changes" msgstr "" -#: ../../enterprise/include/functions_reporting.php:8555 +#: ../../enterprise/include/functions_reporting.php:8564 msgid "No NCM capabilities detected" msgstr "" @@ -28925,40 +29078,52 @@ msgstr "" #: ../../enterprise/include/functions_services.php:1672 #: ../../enterprise/include/functions_services.php:1717 #: ../../enterprise/include/functions_services.php:1785 +#: ../../mobile/operation/services.php:231 +#: ../../mobile/operation/services.php:272 +#: ../../mobile/operation/services.php:338 msgid "Nonexistent. This element should be deleted" msgstr "" #: ../../enterprise/include/functions_services.php:1700 #: ../../enterprise/include/functions_services.php:1767 #: ../../enterprise/include/functions_services.php:1813 +#: ../../mobile/operation/services.php:255 +#: ../../mobile/operation/services.php:320 +#: ../../mobile/operation/services.php:363 msgid "This element does not affect service weigth because is disabled." msgstr "" #: ../../enterprise/include/functions_services.php:1828 +#: ../../mobile/operation/services.php:386 #, php-format msgid "Dynamic element (%d) '%s' does not match any target" msgstr "" #: ../../enterprise/include/functions_services.php:1837 +#: ../../mobile/operation/services.php:395 #, php-format msgid "Dynamic element (%d) '%s' causes an error: %s" msgstr "" #: ../../enterprise/include/functions_services.php:1849 +#: ../../mobile/operation/services.php:377 msgid "Dynamic element" msgstr "" #: ../../enterprise/include/functions_services.php:1855 +#: ../../mobile/operation/services.php:405 #, php-format msgid "agents like \"%s\"" msgstr "" #: ../../enterprise/include/functions_services.php:1860 +#: ../../mobile/operation/services.php:410 #, php-format msgid "modules like \"%s\"" msgstr "" #: ../../enterprise/include/functions_services.php:1995 +#: ../../mobile/operation/services.php:450 msgid "NOT INITIALIZED" msgstr "" @@ -29054,46 +29219,46 @@ msgstr "" msgid "Invalid old password" msgstr "" -#: ../../enterprise/include/functions_login.php:451 +#: ../../enterprise/include/functions_login.php:455 msgid "Password confirm does not match" msgstr "" -#: ../../enterprise/include/functions_login.php:458 +#: ../../enterprise/include/functions_login.php:462 msgid "Password empty" msgstr "" -#: ../../enterprise/include/functions_login.php:577 -#: ../../godmode/users/configure_user.php:2065 -#: ../../godmode/users/configure_user.php:2134 -#: ../../godmode/users/configure_user.php:2205 +#: ../../enterprise/include/functions_login.php:581 +#: ../../godmode/users/configure_user.php:2117 +#: ../../godmode/users/configure_user.php:2186 +#: ../../godmode/users/configure_user.php:2257 #: ../../include/ajax/double_auth.ajax.php:267 #: ../../include/ajax/double_auth.ajax.php:365 #: ../../include/ajax/double_auth.ajax.php:411 #: ../../include/ajax/double_auth.ajax.php:527 -#: ../../operation/users/user_edit.php:1238 -#: ../../operation/users/user_edit.php:1304 -#: ../../operation/users/user_edit.php:1375 ../../general/register.php:165 +#: ../../operation/users/user_edit.php:1235 +#: ../../operation/users/user_edit.php:1301 +#: ../../operation/users/user_edit.php:1372 ../../general/register.php:165 #: ../../general/logon_failed.php:18 msgid "Authentication error" msgstr "" -#: ../../enterprise/include/functions_login.php:584 -#: ../../godmode/users/configure_user.php:2071 -#: ../../godmode/users/configure_user.php:2140 +#: ../../enterprise/include/functions_login.php:588 +#: ../../godmode/users/configure_user.php:2123 +#: ../../godmode/users/configure_user.php:2192 #: ../../include/ajax/double_auth.ajax.php:274 #: ../../include/ajax/double_auth.ajax.php:372 #: ../../include/ajax/double_auth.ajax.php:418 #: ../../include/ajax/double_auth.ajax.php:535 -#: ../../operation/users/user_edit.php:1245 -#: ../../operation/users/user_edit.php:1311 ../../general/register.php:172 +#: ../../operation/users/user_edit.php:1242 +#: ../../operation/users/user_edit.php:1308 ../../general/register.php:172 msgid "There was an error loading the data" msgstr "" -#: ../../enterprise/include/functions_login.php:593 -#: ../../godmode/users/configure_user.php:2148 -#: ../../godmode/users/configure_user.php:2224 -#: ../../operation/users/user_edit.php:1319 -#: ../../operation/users/user_edit.php:1395 ../../general/register.php:181 +#: ../../enterprise/include/functions_login.php:597 +#: ../../godmode/users/configure_user.php:2200 +#: ../../godmode/users/configure_user.php:2276 +#: ../../operation/users/user_edit.php:1316 +#: ../../operation/users/user_edit.php:1392 ../../general/register.php:181 msgid "Double authentication activation" msgstr "" @@ -29141,10 +29306,11 @@ msgid "Invalid plugin definition" msgstr "" #: ../../enterprise/include/lib/NetworkManager.php:82 -#: ../../godmode/setup/setup_ehorus.php:139 -#: ../../godmode/setup/setup_integria.php:652 -#: ../../operation/users/user_edit.php:872 -#: ../../operation/users/user_edit.php:925 +#: ../../godmode/setup/setup_ehorus.php:141 +#: ../../godmode/setup/setup_websocket_engine.php:91 +#: ../../godmode/setup/setup_integria.php:654 +#: ../../operation/users/user_edit.php:869 +#: ../../operation/users/user_edit.php:922 msgid "Test" msgstr "" @@ -29235,7 +29401,7 @@ msgstr "" #: ../../enterprise/include/lib/AlertCorrelation.class.php:1130 #: ../../include/functions_reporting_html.php:1057 #: ../../include/functions_reporting_html.php:1309 -#: ../../include/functions_reporting_html.php:2640 +#: ../../include/functions_reporting_html.php:2659 #: ../../include/class/SnmpConsole.class.php:276 msgid "Count" msgstr "" @@ -29943,23 +30109,23 @@ msgstr "" #: ../../enterprise/include/functions_events.php:40 #: ../../godmode/events/event_filter.php:147 -#: ../../godmode/events/event_edit_filter.php:391 +#: ../../godmode/events/event_edit_filter.php:393 #: ../../include/lib/Dashboard/Widgets/events_list.php:389 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:305 -#: ../../operation/events/events.php:1763 -#: ../../operation/events/events.php:2385 +#: ../../operation/events/events.php:1817 +#: ../../operation/events/events.php:2439 msgid "Event status" msgstr "" #: ../../enterprise/include/functions_events.php:101 -#: ../../godmode/events/event_edit_filter.php:501 -#: ../../operation/events/events.php:2008 +#: ../../godmode/events/event_edit_filter.php:503 +#: ../../operation/events/events.php:2062 msgid "User ack." msgstr "" #: ../../enterprise/include/functions_events.php:111 -#: ../../godmode/events/event_edit_filter.php:558 -#: ../../godmode/events/event_edit_filter.php:574 +#: ../../godmode/events/event_edit_filter.php:560 +#: ../../godmode/events/event_edit_filter.php:576 msgid "Date from" msgstr "" @@ -29968,16 +30134,16 @@ msgid "Date to" msgstr "" #: ../../enterprise/include/functions_events.php:131 -#: ../../godmode/events/event_edit_filter.php:542 -#: ../../mobile/operation/events.php:816 -#: ../../include/functions_events.php:4968 -#: ../../operation/events/events.php:1795 +#: ../../godmode/events/event_edit_filter.php:544 +#: ../../mobile/operation/events.php:845 +#: ../../include/functions_events.php:4973 +#: ../../operation/events/events.php:1849 msgid "Repeated" msgstr "" #: ../../enterprise/include/functions_events.php:141 -#: ../../godmode/events/event_edit_filter.php:759 -#: ../../operation/events/events.php:2054 +#: ../../godmode/events/event_edit_filter.php:761 +#: ../../operation/events/events.php:2108 msgid "Alert events" msgstr "" @@ -29986,16 +30152,16 @@ msgid "Id source events" msgstr "" #: ../../enterprise/include/functions_events.php:162 -#: ../../godmode/events/event_edit_filter.php:475 -#: ../../mobile/operation/events.php:997 ../../include/functions_snmp.php:401 +#: ../../godmode/events/event_edit_filter.php:477 +#: ../../mobile/operation/events.php:1041 ../../include/functions_snmp.php:401 #: ../../include/class/SnmpConsole.class.php:407 #: ../../include/class/AuditLog.class.php:204 #: ../../include/lib/Dashboard/Widgets/events_list.php:347 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:286 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270 -#: ../../operation/events/events.php:1776 -#: ../../operation/events/events.php:2415 +#: ../../operation/events/events.php:1830 +#: ../../operation/events/events.php:2469 msgid "Max. hours old" msgstr "" @@ -30005,16 +30171,16 @@ msgid "More than 5 tags" msgstr "" #: ../../enterprise/include/functions_events.php:184 -#: ../../godmode/events/event_edit_filter.php:629 -#: ../../operation/events/events.php:2255 -#: ../../operation/events/events.php:2258 +#: ../../godmode/events/event_edit_filter.php:631 +#: ../../operation/events/events.php:2309 +#: ../../operation/events/events.php:2312 msgid "Events with following tags" msgstr "" #: ../../enterprise/include/functions_events.php:206 -#: ../../godmode/events/event_edit_filter.php:694 -#: ../../operation/events/events.php:2256 -#: ../../operation/events/events.php:2259 +#: ../../godmode/events/event_edit_filter.php:696 +#: ../../operation/events/events.php:2310 +#: ../../operation/events/events.php:2313 msgid "Events without following tags" msgstr "" @@ -30082,8 +30248,8 @@ msgid "Subscription" msgstr "" #: ../../enterprise/include/functions_license.php:120 -#: ../../include/functions_menu.php:956 -#: ../../include/class/Diagnostics.class.php:1179 +#: ../../include/functions_menu.php:961 +#: ../../include/class/Diagnostics.class.php:1183 msgid "Support expires" msgstr "" @@ -30105,7 +30271,7 @@ msgstr "" #: ../../enterprise/include/functions_ipam.php:1343 #: ../../enterprise/tools/ipam/ipam_ajax.php:486 -#: ../../include/ajax/events.php:1753 +#: ../../include/ajax/events.php:1754 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:73 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:394 msgid "Details" @@ -30113,12 +30279,12 @@ msgstr "" #: ../../enterprise/include/functions_ipam.php:1388 #: ../../enterprise/operation/services/services.list.php:677 -#: ../../godmode/agentes/inventory_manager.php:270 +#: ../../godmode/agentes/inventory_manager.php:271 #: ../../godmode/wizards/DiscoveryTaskList.class.php:589 #: ../../godmode/wizards/DiscoveryTaskList.class.php:679 -#: ../../operation/visual_console/view.php:424 -#: ../../operation/agentes/group_view.php:239 -#: ../../operation/agentes/group_view.php:302 +#: ../../operation/visual_console/view.php:426 +#: ../../operation/agentes/group_view.php:242 +#: ../../operation/agentes/group_view.php:305 msgid "Force" msgstr "" @@ -30520,7 +30686,7 @@ msgstr "" #: ../../enterprise/operation/agentes/ux_console_view.php:297 #: ../../enterprise/operation/agentes/ux_console_view.php:384 #: ../../enterprise/operation/agentes/wux_console_view.php:337 -#: ../../include/functions_ui.php:6749 +#: ../../include/functions_ui.php:6824 msgid "Snapshot view" msgstr "" @@ -30531,10 +30697,11 @@ msgstr "" #: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 #: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 #: ../../godmode/reporting/visual_console_builder.wizard.php:589 -#: ../../mobile/operation/agents.php:463 ../../mobile/operation/modules.php:799 -#: ../../mobile/operation/module_graph.php:477 -#: ../../mobile/operation/events.php:1150 -#: ../../mobile/operation/tactical.php:239 +#: ../../mobile/operation/agents.php:471 ../../mobile/operation/modules.php:823 +#: ../../mobile/operation/module_graph.php:478 +#: ../../mobile/operation/events.php:1197 +#: ../../mobile/operation/server_status.php:389 +#: ../../mobile/operation/tactical.php:240 msgid "Loading..." msgstr "" @@ -30586,8 +30753,8 @@ msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:346 #: ../../godmode/alerts/alert_list.list.php:645 #: ../../godmode/alerts/alert_view.php:111 -#: ../../mobile/operation/alerts.php:324 ../../include/functions_ui.php:1417 -#: ../../include/class/AgentsAlerts.class.php:956 +#: ../../mobile/operation/alerts.php:324 ../../include/functions_ui.php:1460 +#: ../../include/class/AgentsAlerts.class.php:957 msgid "time(s)" msgstr "" @@ -30596,10 +30763,10 @@ msgstr "" #: ../../godmode/alerts/alert_view.php:117 #: ../../mobile/operation/alerts.php:330 #: ../../include/functions_agents.php:3000 -#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1423 -#: ../../include/class/AgentsAlerts.class.php:962 -#: ../../include/class/SnmpConsole.class.php:843 -#: ../../include/functions_reporting.php:13066 +#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1466 +#: ../../include/class/AgentsAlerts.class.php:963 +#: ../../include/class/SnmpConsole.class.php:845 +#: ../../include/functions_reporting.php:13139 msgid "Alert not fired" msgstr "" @@ -30633,7 +30800,7 @@ msgid "(Adopted) (Unlinked)" msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:458 -#: ../../godmode/agentes/module_manager.php:881 +#: ../../godmode/agentes/module_manager.php:895 msgid "Non initialized module" msgstr "" @@ -30649,24 +30816,24 @@ msgstr "" #: ../../mobile/operation/modules.php:571 #: ../../mobile/operation/modules.php:579 #: ../../mobile/operation/modules.php:587 -#: ../../mobile/operation/modules.php:634 -#: ../../mobile/operation/modules.php:642 -#: ../../mobile/operation/modules.php:650 +#: ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/modules.php:653 +#: ../../mobile/operation/modules.php:661 #: ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:2919 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:142 -#: ../../operation/search_modules.php:150 -#: ../../operation/search_modules.php:158 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:145 +#: ../../operation/search_modules.php:153 +#: ../../operation/search_modules.php:161 msgid "Last status" msgstr "" @@ -30676,116 +30843,117 @@ msgid "Tag view" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:54 -#: ../../extensions/agents_modules.php:556 +#: ../../extensions/agents_modules.php:564 #: ../../extensions/module_groups.php:264 #: ../../extensions/realtime_graphs.php:71 +#: ../../godmode/agentes/status_monitor_custom_fields.php:48 #: ../../include/class/AgentsAlerts.class.php:755 #: ../../operation/heatmap.php:144 #: ../../operation/agentes/alerts_status.php:202 #: ../../operation/agentes/estado_agente.php:250 #: ../../operation/agentes/interface_view.php:76 -#: ../../operation/agentes/status_monitor.php:340 +#: ../../operation/agentes/status_monitor.php:339 #: ../../operation/agentes/group_view.php:102 #: ../../operation/agentes/tactical.php:85 ../../operation/menu.php:165 msgid "Views" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:139 -#: ../../operation/agentes/status_monitor.php:884 +#: ../../operation/agentes/status_monitor.php:883 msgid "Monitor status" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:241 -#: ../../operation/agentes/status_monitor.php:609 +#: ../../operation/agentes/status_monitor.php:608 #: ../../operation/agentes/alerts_status.functions.php:146 msgid "Only it is show tags in use." msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:288 #: ../../godmode/agentes/module_manager_editor_data.php:15 -#: ../../operation/agentes/status_monitor.php:655 +#: ../../operation/agentes/status_monitor.php:654 msgid "Data server module" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:290 -#: ../../godmode/agentes/module_manager_editor_network.php:78 -#: ../../operation/agentes/status_monitor.php:657 +#: ../../godmode/agentes/module_manager_editor_network.php:79 +#: ../../operation/agentes/status_monitor.php:656 msgid "Network server module" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:294 #: ../../godmode/agentes/module_manager_editor_plugin.php:46 -#: ../../operation/agentes/status_monitor.php:661 +#: ../../operation/agentes/status_monitor.php:660 msgid "Plugin server module" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:298 #: ../../godmode/agentes/module_manager_editor_wmi.php:33 -#: ../../operation/agentes/status_monitor.php:665 +#: ../../operation/agentes/status_monitor.php:664 msgid "WMI server module" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:302 #: ../../godmode/agentes/module_manager_editor_prediction.php:117 -#: ../../operation/agentes/status_monitor.php:669 +#: ../../operation/agentes/status_monitor.php:668 msgid "Prediction server module" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:306 #: ../../godmode/agentes/module_manager_editor_web.php:57 -#: ../../operation/agentes/status_monitor.php:673 +#: ../../operation/agentes/status_monitor.php:672 msgid "Web server module" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:310 #: ../../enterprise/operation/agentes/tag_view.php:783 -#: ../../godmode/agentes/status_monitor_custom_fields.php:89 -#: ../../godmode/agentes/status_monitor_custom_fields.php:144 -#: ../../operation/agentes/status_monitor.php:935 -#: ../../operation/agentes/status_monitor.php:1553 +#: ../../godmode/agentes/status_monitor_custom_fields.php:109 +#: ../../godmode/agentes/status_monitor_custom_fields.php:164 +#: ../../operation/agentes/status_monitor.php:937 +#: ../../operation/agentes/status_monitor.php:1555 msgid "Server type" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:329 #: ../../godmode/agentes/modificar_agente.php:290 -#: ../../operation/agentes/status_monitor.php:681 +#: ../../operation/agentes/status_monitor.php:680 msgid "Only enabled" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:330 #: ../../godmode/agentes/modificar_agente.php:289 #: ../../include/class/SatelliteAgent.class.php:153 -#: ../../operation/agentes/status_monitor.php:682 +#: ../../operation/agentes/status_monitor.php:681 msgid "Only disabled" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:334 -#: ../../operation/agentes/status_monitor.php:953 +#: ../../operation/agentes/status_monitor.php:955 msgid "Show monitors..." msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:358 #: ../../enterprise/operation/agentes/tag_view.php:782 -#: ../../godmode/agentes/status_monitor_custom_fields.php:81 -#: ../../godmode/agentes/status_monitor_custom_fields.php:142 -#: ../../operation/agentes/status_monitor.php:976 +#: ../../godmode/agentes/status_monitor_custom_fields.php:101 +#: ../../godmode/agentes/status_monitor_custom_fields.php:162 +#: ../../operation/agentes/status_monitor.php:978 msgid "Data type" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:503 #: ../../operation/agentes/estado_agente.php:431 #: ../../operation/agentes/agent_fields.php:37 -#: ../../operation/agentes/status_monitor.php:1007 +#: ../../operation/agentes/status_monitor.php:1009 msgid "Agent custom fields" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:672 -#: ../../operation/agentes/status_monitor.php:2280 +#: ../../operation/agentes/status_monitor.php:2282 msgid "Sorry no search parameters" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:748 -#: ../../operation/agentes/estado_agente.php:1206 +#: ../../operation/agentes/estado_agente.php:1215 msgid "Remote config" msgstr "" @@ -30793,69 +30961,70 @@ msgstr "" #: ../../enterprise/operation/services/services.service.php:121 #: ../../enterprise/operation/services/services.list.php:547 #: ../../extensions/realtime_graphs.php:112 -#: ../../godmode/agentes/status_monitor_custom_fields.php:105 -#: ../../godmode/agentes/status_monitor_custom_fields.php:148 +#: ../../godmode/agentes/status_monitor_custom_fields.php:125 +#: ../../godmode/agentes/status_monitor_custom_fields.php:168 +#: ../../mobile/operation/modules.php:856 #: ../../include/functions_visual_map_editor.php:58 -#: ../../include/class/NetworkMap.class.php:3065 +#: ../../include/class/NetworkMap.class.php:3071 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:340 -#: ../../include/functions_events.php:4508 +#: ../../include/functions_events.php:4513 #: ../../operation/agentes/interface_view.functions.php:558 -#: ../../operation/agentes/status_monitor.php:1579 -#: ../../operation/search_modules.php:37 +#: ../../operation/agentes/status_monitor.php:1581 +#: ../../operation/search_modules.php:40 msgid "Graph" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:786 -#: ../../godmode/agentes/status_monitor_custom_fields.php:109 -#: ../../godmode/agentes/status_monitor_custom_fields.php:149 +#: ../../godmode/agentes/status_monitor_custom_fields.php:129 +#: ../../godmode/agentes/status_monitor_custom_fields.php:169 #: ../../godmode/agentes/module_manager.php:646 msgid "Warn" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1083 #: ../../mobile/operation/modules.php:542 -#: ../../mobile/operation/modules.php:605 +#: ../../mobile/operation/modules.php:616 #: ../../include/functions_modules.php:2896 #: ../../include/functions_modules.php:4251 #: ../../include/functions_events.php:70 -#: ../../operation/agentes/status_monitor.php:1784 -#: ../../operation/search_modules.php:109 ../../operation/events/events.php:746 +#: ../../operation/agentes/status_monitor.php:1786 +#: ../../operation/search_modules.php:112 ../../operation/events/events.php:751 msgid "NOT INIT" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1223 -#: ../../include/functions_reporting.php:13188 -#: ../../include/functions_reporting.php:13197 +#: ../../include/functions_reporting.php:13261 +#: ../../include/functions_reporting.php:13270 #, php-format msgid "%d Total modules" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1224 -#: ../../include/functions_reporting.php:13189 +#: ../../include/functions_reporting.php:13262 #, php-format msgid "%d Modules in normal status" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1225 -#: ../../include/functions_reporting.php:13190 +#: ../../include/functions_reporting.php:13263 #, php-format msgid "%d Modules in critical status" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1226 -#: ../../include/functions_reporting.php:13191 +#: ../../include/functions_reporting.php:13264 #, php-format msgid "%d Modules in warning status" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1227 -#: ../../include/functions_reporting.php:13192 +#: ../../include/functions_reporting.php:13265 #, php-format msgid "%d Modules in unknown status" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1228 -#: ../../include/functions_reporting.php:13193 +#: ../../include/functions_reporting.php:13266 #, php-format msgid "%d Modules in not init status" msgstr "" @@ -30866,7 +31035,8 @@ msgid "Main IP" msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:96 -#: ../../include/functions_events.php:4435 +#: ../../godmode/groups/tactical.php:182 +#: ../../include/functions_events.php:4440 #: ../../operation/agentes/ver_agente.php:1047 msgid "Last remote contact" msgstr "" @@ -30877,24 +31047,24 @@ msgid "Monitors down" msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:182 -#: ../../mobile/operation/groups.php:174 +#: ../../mobile/operation/groups.php:213 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:600 #: ../../operation/agentes/ver_agente.php:1133 msgid "Alerts fired" msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:297 -#: ../../operation/agentes/ver_agente.php:1877 +#: ../../operation/agentes/ver_agente.php:1873 msgid "URL Route Analyzer" msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:316 -#: ../../operation/agentes/ver_agente.php:1868 +#: ../../operation/agentes/ver_agente.php:1864 msgid "UX Console" msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:335 -#: ../../operation/agentes/ver_agente.php:1872 +#: ../../operation/agentes/ver_agente.php:1868 msgid "WUX Console" msgstr "" @@ -30994,10 +31164,10 @@ msgid "View all stats" msgstr "" #: ../../enterprise/operation/agentes/wux_console_view.php:570 -#: ../../include/class/SnmpConsole.class.php:893 -#: ../../include/class/SnmpConsole.class.php:894 ../../operation/menu.php:379 -#: ../../operation/menu.php:381 ../../operation/events/events.php:590 -#: ../../operation/events/events.php:855 +#: ../../include/class/SnmpConsole.class.php:895 +#: ../../include/class/SnmpConsole.class.php:896 ../../operation/menu.php:379 +#: ../../operation/menu.php:381 ../../operation/events/events.php:595 +#: ../../operation/events/events.php:860 msgid "Show more" msgstr "" @@ -31007,7 +31177,7 @@ msgstr "" #: ../../enterprise/operation/log/elasticsearch_interface.php:37 #: ../../enterprise/operation/log/elasticsearch_interface.php:50 -#: ../../enterprise/operation/log/log_viewer.php:413 +#: ../../enterprise/operation/log/log_viewer.php:411 #: ../../enterprise/operation/menu.php:192 msgid "Elasticsearch Interface" msgstr "" @@ -31021,50 +31191,50 @@ msgid "" "Elasticsearch" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:427 -#: ../../enterprise/operation/log/log_viewer.php:445 -#: ../../enterprise/operation/log/log_viewer.php:455 +#: ../../enterprise/operation/log/log_viewer.php:425 +#: ../../enterprise/operation/log/log_viewer.php:443 +#: ../../enterprise/operation/log/log_viewer.php:453 msgid "Log sources" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:519 +#: ../../enterprise/operation/log/log_viewer.php:517 #: ../../godmode/modules/manage_inventory_modules.php:83 #: ../../godmode/modules/manage_inventory_modules_form.php:57 #: ../../godmode/netflow/nf_edit.php:70 -#: ../../operation/netflow/nf_live_view.php:150 +#: ../../operation/netflow/nf_live_view.php:155 msgid "Not supported in Windows systems" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:541 +#: ../../enterprise/operation/log/log_viewer.php:539 msgid "All words" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:542 +#: ../../enterprise/operation/log/log_viewer.php:540 msgid "Any word" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:547 +#: ../../enterprise/operation/log/log_viewer.php:545 msgid "Search mode" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:607 +#: ../../enterprise/operation/log/log_viewer.php:605 #: ../../godmode/reporting/reporting_builder.item_editor.php:1325 msgid "Full context" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:660 +#: ../../enterprise/operation/log/log_viewer.php:658 msgid "Select dates by range" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:671 +#: ../../enterprise/operation/log/log_viewer.php:669 #: ../../godmode/reporting/create_container.php:417 #: ../../include/functions.php:2744 msgid "custom" msgstr "" +#: ../../enterprise/operation/log/log_viewer.php:671 +#: ../../enterprise/operation/log/log_viewer.php:672 #: ../../enterprise/operation/log/log_viewer.php:673 -#: ../../enterprise/operation/log/log_viewer.php:674 -#: ../../enterprise/operation/log/log_viewer.php:675 #: ../../godmode/reporting/create_container.php:419 #: ../../godmode/reporting/create_container.php:420 #: ../../godmode/reporting/create_container.php:421 @@ -31075,8 +31245,8 @@ msgstr "" msgid "%s hours" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:677 -#: ../../enterprise/operation/log/log_viewer.php:678 +#: ../../enterprise/operation/log/log_viewer.php:675 +#: ../../enterprise/operation/log/log_viewer.php:676 #: ../../godmode/reporting/create_container.php:423 #: ../../godmode/reporting/create_container.php:424 #: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152 @@ -31084,117 +31254,117 @@ msgstr "" msgid "%s days" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:679 +#: ../../enterprise/operation/log/log_viewer.php:677 #: ../../godmode/reporting/create_container.php:425 -#: ../../include/functions.php:2759 ../../include/ajax/module.php:225 +#: ../../include/functions.php:2759 ../../include/ajax/module.php:248 #: ../../include/ajax/graph.ajax.php:153 msgid "1 week" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:681 +#: ../../enterprise/operation/log/log_viewer.php:679 #: ../../godmode/reporting/create_container.php:427 -#: ../../include/functions.php:2761 ../../include/ajax/module.php:227 +#: ../../include/functions.php:2761 ../../include/ajax/module.php:250 #: ../../include/ajax/graph.ajax.php:155 #: ../../include/class/AuditLog.class.php:214 msgid "1 month" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:684 -#: ../../enterprise/operation/log/log_viewer.php:704 +#: ../../enterprise/operation/log/log_viewer.php:682 +#: ../../enterprise/operation/log/log_viewer.php:702 #: ../../operation/network/network_report.php:114 #: ../../operation/network/network_usage_map.php:128 -#: ../../operation/netflow/nf_live_view.php:403 +#: ../../operation/netflow/nf_live_view.php:476 msgid "Start date" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:736 +#: ../../enterprise/operation/log/log_viewer.php:734 #: ../../operation/agentes/exportdata.php:427 #: ../../operation/network/network_report.php:157 #: ../../operation/network/network_usage_map.php:161 -#: ../../operation/netflow/nf_live_view.php:436 +#: ../../operation/netflow/nf_live_view.php:509 msgid "End date" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:806 -#: ../../enterprise/operation/log/log_viewer.php:807 +#: ../../enterprise/operation/log/log_viewer.php:804 +#: ../../enterprise/operation/log/log_viewer.php:805 msgid "Edit sources" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:853 +#: ../../enterprise/operation/log/log_viewer.php:851 msgid "Show log entries" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:854 +#: ../../enterprise/operation/log/log_viewer.php:852 msgid "Graph log results" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:857 +#: ../../enterprise/operation/log/log_viewer.php:855 msgid "Display mode" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:875 +#: ../../enterprise/operation/log/log_viewer.php:873 msgid "Use capture model" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:910 +#: ../../enterprise/operation/log/log_viewer.php:908 msgid "Create new model" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:918 +#: ../../enterprise/operation/log/log_viewer.php:916 #: ../../godmode/reporting/graph_builder.main.php:214 msgid "Horizontal bars" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:919 +#: ../../enterprise/operation/log/log_viewer.php:917 #: ../../godmode/reporting/graph_builder.main.php:215 msgid "Vertical bars" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:922 +#: ../../enterprise/operation/log/log_viewer.php:920 msgid "Graph type" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:942 +#: ../../enterprise/operation/log/log_viewer.php:940 msgid "Advanced options " msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1101 +#: ../../enterprise/operation/log/log_viewer.php:1099 msgid "" "The maximum limit of rows has been exceeded. Please enter an email to send " "the csv file" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1103 +#: ../../enterprise/operation/log/log_viewer.php:1101 msgid "e-mail address" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1106 +#: ../../enterprise/operation/log/log_viewer.php:1104 msgid "" "WARNING: If your email size exceeds your mail attachment size limit, the " "file will be saved in the local attachment folder." msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1239 +#: ../../enterprise/operation/log/log_viewer.php:1237 msgid "The start date cannot be greater than the end date" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1676 +#: ../../enterprise/operation/log/log_viewer.php:1674 msgid "Add new capture model" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1679 +#: ../../enterprise/operation/log/log_viewer.php:1677 msgid "Edit capture model" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1762 +#: ../../enterprise/operation/log/log_viewer.php:1760 msgid "Error create new model" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1789 +#: ../../enterprise/operation/log/log_viewer.php:1787 msgid "Error delete model" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1835 +#: ../../enterprise/operation/log/log_viewer.php:1833 msgid "Error update model" msgstr "" @@ -31207,8 +31377,8 @@ msgid "AWS view" msgstr "" #: ../../enterprise/operation/menu.php:48 -#: ../../operation/agentes/ver_agente.php:1698 -#: ../../operation/agentes/ver_agente.php:1905 +#: ../../operation/agentes/ver_agente.php:1694 +#: ../../operation/agentes/ver_agente.php:1901 msgid "SAP view" msgstr "" @@ -31342,55 +31512,55 @@ msgstr "" msgid "Add selected" msgstr "" -#: ../../enterprise/operation/services/massive/services.create.php:1170 +#: ../../enterprise/operation/services/massive/services.create.php:1182 msgid "" "Weights configured are common for every item added to the service, if you " "want to customize them, please edit the service." msgstr "" -#: ../../enterprise/operation/services/massive/services.create.php:1174 +#: ../../enterprise/operation/services/massive/services.create.php:1186 #: ../../enterprise/operation/services/massive/service.delete.elements.php:209 #: ../../enterprise/operation/services/massive/service.create.elements.php:532 #: ../../enterprise/operation/services/massive/service.edit.elements.php:290 msgid "Service items summary" msgstr "" -#: ../../enterprise/operation/services/massive/services.create.php:1181 +#: ../../enterprise/operation/services/massive/services.create.php:1193 #: ../../enterprise/operation/services/massive/service.create.elements.php:539 #: ../../enterprise/operation/services/massive/service.edit.elements.php:298 -#: ../../include/functions_visual_map_editor.php:1146 -#: ../../include/rest-api/models/VisualConsole/Item.php:2528 +#: ../../include/functions_visual_map_editor.php:1198 +#: ../../include/rest-api/models/VisualConsole/Item.php:2531 msgid "Critical weight" msgstr "" -#: ../../enterprise/operation/services/massive/services.create.php:1193 +#: ../../enterprise/operation/services/massive/services.create.php:1205 #: ../../enterprise/operation/services/massive/service.create.elements.php:552 #: ../../enterprise/operation/services/massive/service.edit.elements.php:311 -#: ../../include/functions_visual_map_editor.php:1172 -#: ../../include/rest-api/models/VisualConsole/Item.php:2542 +#: ../../include/functions_visual_map_editor.php:1224 +#: ../../include/rest-api/models/VisualConsole/Item.php:2545 msgid "Warning weight" msgstr "" -#: ../../enterprise/operation/services/massive/services.create.php:1205 +#: ../../enterprise/operation/services/massive/services.create.php:1217 #: ../../enterprise/operation/services/massive/service.create.elements.php:565 #: ../../enterprise/operation/services/massive/service.edit.elements.php:324 msgid "Unknown weight" msgstr "" -#: ../../enterprise/operation/services/massive/services.create.php:1217 +#: ../../enterprise/operation/services/massive/services.create.php:1229 #: ../../enterprise/operation/services/massive/service.create.elements.php:578 #: ../../enterprise/operation/services/massive/service.edit.elements.php:337 msgid "Normal weight" msgstr "" -#: ../../enterprise/operation/services/massive/services.create.php:1289 +#: ../../enterprise/operation/services/massive/services.create.php:1301 #: ../../enterprise/operation/services/massive/service.delete.elements.php:246 #: ../../enterprise/operation/services/massive/service.create.elements.php:594 #: ../../enterprise/operation/services/massive/service.edit.elements.php:353 msgid "Selected services" msgstr "" -#: ../../enterprise/operation/services/massive/services.create.php:1370 +#: ../../enterprise/operation/services/massive/services.create.php:1382 msgid "Create service" msgstr "" @@ -31510,10 +31680,10 @@ msgid "Show sunburst" msgstr "" #: ../../enterprise/operation/services/services.service_map.php:129 -#: ../../extensions/agents_modules.php:1043 +#: ../../extensions/agents_modules.php:1067 #: ../../extensions/module_groups.php:464 #: ../../godmode/snmpconsole/snmp_alert.php:2203 -#: ../../include/functions_reporting_html.php:2281 +#: ../../include/functions_reporting_html.php:2302 #: ../../include/class/SnmpConsole.class.php:522 msgid "Legend" msgstr "" @@ -31552,23 +31722,24 @@ msgstr "" #: ../../enterprise/operation/services/services.treeview_services.php:281 #: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:89 -#: ../../godmode/groups/group_list.php:1074 -#: ../../include/functions_inventory.php:301 -#: ../../include/class/Heatmap.class.php:1234 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:694 -#: ../../operation/tree.php:463 ../../operation/tree.php:493 +#: ../../godmode/groups/group_list.php:1086 +#: ../../include/functions_inventory.php:310 +#: ../../include/class/Heatmap.class.php:1272 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:687 +#: ../../operation/tree.php:465 ../../operation/tree.php:495 #: ../../operation/network/network_report.php:391 msgid "No data found" msgstr "" #: ../../enterprise/operation/services/services.treeview_services.php:282 -#: ../../godmode/groups/group_list.php:1075 +#: ../../godmode/groups/group_list.php:1087 msgid "Found groups" msgstr "" #: ../../enterprise/operation/services/services.treeview_services.php:376 -#: ../../operation/tree.php:591 ../../operation/agentes/status_monitor.php:2419 -#: ../../operation/agentes/estado_monitores.php:430 +#: ../../operation/tree.php:593 ../../operation/agentes/status_monitor.php:2421 +#: ../../operation/agentes/estado_monitores.php:427 +#: ../../operation/search_modules.php:302 msgid "Module: " msgstr "" @@ -31971,8 +32142,8 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1515 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:990 -#: ../../include/functions_visual_map_editor.php:791 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564 +#: ../../include/functions_visual_map_editor.php:831 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:727 msgid "Show statistics" msgstr "" @@ -32036,7 +32207,7 @@ msgstr "" #: ../../operation/agentes/interface_view.functions.php:97 #: ../../operation/agentes/interface_view.functions.php:150 #: ../../operation/agentes/ver_agente.php:1419 -#: ../../operation/agentes/ver_agente.php:1844 +#: ../../operation/agentes/ver_agente.php:1840 msgid "Interfaces" msgstr "" @@ -32061,7 +32232,7 @@ msgid "Please enter adress, for search vlans" msgstr "" #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:435 -#: ../../godmode/wizards/HostDevices.class.php:1287 +#: ../../godmode/wizards/HostDevices.class.php:1283 msgid "Context" msgstr "" @@ -32104,13 +32275,13 @@ msgid "Network name already exists in supernet %s (%s)" msgstr "" #: ../../enterprise/tools/ipam/ipam_action.php:445 -#: ../../operation/agentes/pandora_networkmap.view.php:1689 +#: ../../operation/agentes/pandora_networkmap.view.php:1690 msgid "Could not be updated." msgstr "" #: ../../enterprise/tools/ipam/ipam_action.php:451 #: ../../update_manager_client/views/offline.php:78 -#: ../../update_manager_client/views/online.php:94 +#: ../../update_manager_client/views/online.php:96 msgid "Successfully updated." msgstr "" @@ -32126,8 +32297,8 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:72 #: ../../godmode/modules/manage_nc_groups.php:143 -#: ../../godmode/netflow/nf_edit_form.php:141 ../../godmode/setup/news.php:125 -#: ../../godmode/events/event_edit_filter.php:243 +#: ../../godmode/netflow/nf_edit_form.php:173 ../../godmode/setup/news.php:125 +#: ../../godmode/events/event_edit_filter.php:245 msgid "Not updated. Error updating data" msgstr "" @@ -32197,7 +32368,7 @@ msgid "leased expiration" msgstr "" #: ../../enterprise/tools/ipam/ipam_ajax.php:476 -#: ../../include/class/NetworkMap.class.php:3067 +#: ../../include/class/NetworkMap.class.php:3073 msgid "MAC" msgstr "" @@ -32219,7 +32390,7 @@ msgid "Executing command: %s" msgstr "" #: ../../enterprise/tools/ipam/ipam_ajax.php:554 -#: ../../include/functions_events.php:5965 +#: ../../include/functions_events.php:5970 msgid "Execute again" msgstr "" @@ -32462,8 +32633,8 @@ msgid "Click on the file below to begin." msgstr "" #: ../../update_manager_client/views/offline.php:70 -#: ../../update_manager_client/views/online.php:123 -#: ../../update_manager_client/views/online.php:164 +#: ../../update_manager_client/views/online.php:125 +#: ../../update_manager_client/views/online.php:166 msgid "This action will upgrade this console to version " msgstr "" @@ -32472,27 +32643,27 @@ msgid "This action will upgrade all servers to version " msgstr "" #: ../../update_manager_client/views/offline.php:73 -#: ../../update_manager_client/views/online.php:89 +#: ../../update_manager_client/views/online.php:91 msgid "Updating to" msgstr "" #: ../../update_manager_client/views/offline.php:74 -#: ../../update_manager_client/views/online.php:90 +#: ../../update_manager_client/views/online.php:92 msgid "Do you really want to leave our brilliant application?" msgstr "" #: ../../update_manager_client/views/offline.php:75 -#: ../../update_manager_client/views/online.php:91 +#: ../../update_manager_client/views/online.php:93 msgid "There are no updates available" msgstr "" #: ../../update_manager_client/views/offline.php:76 -#: ../../update_manager_client/views/online.php:92 +#: ../../update_manager_client/views/online.php:94 msgid "Searching for updates..." msgstr "" #: ../../update_manager_client/views/offline.php:77 -#: ../../update_manager_client/views/online.php:93 +#: ../../update_manager_client/views/online.php:95 msgid "Package" msgstr "" @@ -32555,16 +32726,16 @@ msgid "" "manager settings." msgstr "" -#: ../../update_manager_client/views/register.php:47 +#: ../../update_manager_client/views/register.php:48 msgid "Register to Warp Update" msgstr "" -#: ../../update_manager_client/views/register.php:54 +#: ../../update_manager_client/views/register.php:55 #, php-format msgid "Keep this %s console up to date with latest updates." msgstr "" -#: ../../update_manager_client/views/register.php:61 +#: ../../update_manager_client/views/register.php:62 #, php-format msgid "" "When you subscribe to the Warp update service for %s, you accept that we\n" @@ -32575,34 +32746,34 @@ msgid "" " said database at any time from the Warp update options." msgstr "" -#: ../../update_manager_client/views/register.php:74 +#: ../../update_manager_client/views/register.php:75 msgid "Visit our privacy policy for more information" msgstr "" -#: ../../update_manager_client/views/register.php:78 -#: ../../include/class/Diagnostics.class.php:1938 +#: ../../update_manager_client/views/register.php:79 +#: ../../include/class/Diagnostics.class.php:1942 msgid "Your email" msgstr "" -#: ../../update_manager_client/views/register.php:97 +#: ../../update_manager_client/views/register.php:98 msgid "OK!" msgstr "" -#: ../../update_manager_client/views/register.php:112 +#: ../../update_manager_client/views/register.php:113 msgid "Are you sure you don't want to use Warp update?" msgstr "" -#: ../../update_manager_client/views/register.php:116 +#: ../../update_manager_client/views/register.php:117 msgid "" "You will need to update your system manually, through source code or RPM\n" " packages to be up to date with latest updates." msgstr "" -#: ../../update_manager_client/views/register.php:208 +#: ../../update_manager_client/views/register.php:209 msgid "Unsuccessful subscription" msgstr "" -#: ../../update_manager_client/views/register.php:213 +#: ../../update_manager_client/views/register.php:214 msgid "Pandora successfully subscribed with UID: " msgstr "" @@ -32610,25 +32781,25 @@ msgstr "" msgid "The latest version of package installed is" msgstr "" -#: ../../update_manager_client/views/online.php:64 +#: ../../update_manager_client/views/online.php:65 msgid "Update to next version" msgstr "" -#: ../../update_manager_client/views/online.php:65 +#: ../../update_manager_client/views/online.php:66 msgid "Update to latest version" msgstr "" -#: ../../update_manager_client/views/online.php:124 -#: ../../update_manager_client/views/online.php:165 +#: ../../update_manager_client/views/online.php:126 +#: ../../update_manager_client/views/online.php:167 msgid "Update to" msgstr "" -#: ../../update_manager_client/views/online.php:145 -#: ../../update_manager_client/views/online.php:149 +#: ../../update_manager_client/views/online.php:147 +#: ../../update_manager_client/views/online.php:151 msgid "Failed to update to " msgstr "" -#: ../../update_manager_client/views/online.php:188 +#: ../../update_manager_client/views/online.php:190 msgid "Failed to update:" msgstr "" @@ -32657,25 +32828,25 @@ msgstr "" msgid "Failed storing uploaded file." msgstr "" -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:648 #, php-format msgid "Invalid extension. The package needs to be in `%s` or `%s` format." msgstr "" -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:657 msgid "Failed uploading file." msgstr "" -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:692 msgid "Signatures does not match." msgstr "" -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:751 #, php-format msgid "Update %s successfully installed." msgstr "" -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:754 #, php-format msgid "Failed while updating: %s" msgstr "" @@ -32747,6 +32918,7 @@ msgid "Matrix events" msgstr "" #: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:251 +#: ../../godmode/setup/setup_websocket_engine.php:162 msgid "WebService engine has not been started, please check documentation." msgstr "" @@ -32975,7 +33147,7 @@ msgstr "" #: ../../godmode/netflow/nf_edit.php:59 ../../godmode/menu.php:132 #: ../../godmode/category/category.php:81 #: ../../godmode/category/edit_category.php:92 -#: ../../operation/agentes/ver_agente.php:1934 +#: ../../operation/agentes/ver_agente.php:1930 msgid "Resources" msgstr "" @@ -33025,8 +33197,8 @@ msgid "%s Console URL" msgstr "" #: ../../extensions/api_checker.php:243 -#: ../../godmode/users/configure_user.php:1006 -#: ../../godmode/users/configure_user.php:1029 +#: ../../godmode/users/configure_user.php:1054 +#: ../../godmode/users/configure_user.php:1077 #: ../../operation/users/user_edit.php:299 #: ../../operation/users/user_edit.php:338 msgid "API Token" @@ -33085,7 +33257,7 @@ msgid "Show URL" msgstr "" #: ../../extensions/db_status.php:25 ../../extensions/db_status.php:520 -#: ../../godmode/menu.php:478 +#: ../../godmode/menu.php:476 msgid "DB Schema check" msgstr "" @@ -33252,84 +33424,84 @@ msgstr "" msgid "Error querying database node" msgstr "" -#: ../../extensions/agents_modules.php:396 +#: ../../extensions/agents_modules.php:404 #: ../../godmode/reporting/reporting_builder.item_editor.php:2000 #: ../../include/lib/Dashboard/Widgets/agent_module.php:255 msgid "Show module status" msgstr "" -#: ../../extensions/agents_modules.php:397 +#: ../../extensions/agents_modules.php:405 #: ../../godmode/reporting/reporting_builder.item_editor.php:2001 #: ../../include/lib/Dashboard/Widgets/agent_module.php:256 msgid "Show module data" msgstr "" -#: ../../extensions/agents_modules.php:401 +#: ../../extensions/agents_modules.php:409 #: ../../godmode/reporting/reporting_builder.item_editor.php:1996 #: ../../include/lib/Dashboard/Widgets/agent_module.php:265 msgid "Information to be shown" msgstr "" -#: ../../extensions/agents_modules.php:543 +#: ../../extensions/agents_modules.php:551 #: ../../include/functions_reports.php:807 msgid "Agents/Modules" msgstr "" -#: ../../extensions/agents_modules.php:636 +#: ../../extensions/agents_modules.php:644 msgid "Agent/module view" msgstr "" -#: ../../extensions/agents_modules.php:681 +#: ../../extensions/agents_modules.php:690 msgid "Filters " msgstr "" -#: ../../extensions/agents_modules.php:681 +#: ../../extensions/agents_modules.php:690 msgid "Secondary groups and agent subgroups will be taken into account." msgstr "" -#: ../../extensions/agents_modules.php:833 -#: ../../include/functions_reporting.php:3376 +#: ../../extensions/agents_modules.php:857 +#: ../../include/functions_reporting.php:3385 msgid "There are no agents with modules" msgstr "" -#: ../../extensions/agents_modules.php:848 +#: ../../extensions/agents_modules.php:872 msgid "Previous modules" msgstr "" -#: ../../extensions/agents_modules.php:874 +#: ../../extensions/agents_modules.php:898 msgid "More modules" msgstr "" -#: ../../extensions/agents_modules.php:1030 -#: ../../include/functions_reporting_html.php:2282 +#: ../../extensions/agents_modules.php:1054 +#: ../../include/functions_reporting_html.php:2303 msgid "Orange cell when the module has fired alerts" msgstr "" -#: ../../extensions/agents_modules.php:1032 -#: ../../include/functions_reporting_html.php:2283 +#: ../../extensions/agents_modules.php:1056 +#: ../../include/functions_reporting_html.php:2304 msgid "Red cell when the module has a critical status" msgstr "" -#: ../../extensions/agents_modules.php:1035 -#: ../../include/functions_reporting_html.php:2284 +#: ../../extensions/agents_modules.php:1059 +#: ../../include/functions_reporting_html.php:2305 msgid "Yellow cell when the module has a warning status" msgstr "" -#: ../../extensions/agents_modules.php:1037 -#: ../../include/functions_reporting_html.php:2285 +#: ../../extensions/agents_modules.php:1061 +#: ../../include/functions_reporting_html.php:2306 msgid "Green cell when the module has a normal status" msgstr "" -#: ../../extensions/agents_modules.php:1039 -#: ../../include/functions_reporting_html.php:2286 +#: ../../extensions/agents_modules.php:1063 +#: ../../include/functions_reporting_html.php:2307 msgid "Grey cell when the module has an unknown status" msgstr "" -#: ../../extensions/agents_modules.php:1041 +#: ../../extensions/agents_modules.php:1065 msgid "Cell turns blue when the module is in 'not initialize' status" msgstr "" -#: ../../extensions/agents_modules.php:1055 +#: ../../extensions/agents_modules.php:1079 msgid "Agents/Modules view" msgstr "" @@ -33418,7 +33590,7 @@ msgid "Public link" msgstr "" #: ../../extensions/files_repo/files_repo_list.php:58 -#: ../../include/functions_filemanager.php:645 +#: ../../include/functions_filemanager.php:660 msgid "Last modification" msgstr "" @@ -33427,8 +33599,8 @@ msgid "Copy to clipboard" msgstr "" #: ../../extensions/files_repo/files_repo_list.php:167 -#: ../../include/functions_reporting_html.php:2314 -#: ../../include/functions_reporting_html.php:2318 +#: ../../include/functions_reporting_html.php:2335 +#: ../../include/functions_reporting_html.php:2339 msgid "No items" msgstr "" @@ -33532,7 +33704,7 @@ msgid "Save agent (%s), module (%s) data xml." msgstr "" #: ../../extensions/realtime_graphs.php:58 -#: ../../extensions/realtime_graphs.php:295 +#: ../../extensions/realtime_graphs.php:301 msgid "Realtime graphs" msgstr "" @@ -33579,12 +33751,12 @@ msgstr "" msgid "Incremental" msgstr "" -#: ../../extensions/realtime_graphs.php:203 +#: ../../extensions/realtime_graphs.php:199 msgid "Clear graph" msgstr "" -#: ../../extensions/realtime_graphs.php:276 -#: ../../godmode/agentes/module_manager_editor_network.php:44 +#: ../../extensions/realtime_graphs.php:282 +#: ../../godmode/agentes/module_manager_editor_network.php:45 msgid "Use this OID" msgstr "" @@ -33673,8 +33845,8 @@ msgid "No modules for this profile" msgstr "" #: ../../godmode/modules/manage_network_templates_form.php:260 -#: ../../operation/snmpconsole/snmp_browser.php:155 -#: ../../operation/snmpconsole/snmp_browser.php:175 +#: ../../operation/snmpconsole/snmp_browser.php:160 +#: ../../operation/snmpconsole/snmp_browser.php:180 msgid "Add modules" msgstr "" @@ -33746,15 +33918,15 @@ msgid "You can find more information at:" msgstr "" #: ../../godmode/modules/manage_network_components_form_common.php:723 -#: ../../godmode/agentes/module_manager_editor_common.php:2270 +#: ../../godmode/agentes/module_manager_editor_common.php:2280 msgid "Please introduce a positive percentage value" msgstr "" -#: ../../godmode/modules/manage_network_components_form_network.php:72 +#: ../../godmode/modules/manage_network_components_form_network.php:98 msgid "SNMP Enterprise String" msgstr "" -#: ../../godmode/modules/manage_network_components_form_network.php:191 +#: ../../godmode/modules/manage_network_components_form_network.php:193 #: ../../godmode/modules/manage_network_components_form_wizard.php:315 msgid "Name OID" msgstr "" @@ -33762,58 +33934,58 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wmi.php:41 #: ../../godmode/agentes/module_manager_editor_wmi.php:106 #: ../../include/class/CredentialStore.class.php:1009 -#: ../../include/class/CredentialStore.class.php:1347 +#: ../../include/class/CredentialStore.class.php:1353 msgid "Namespace" msgstr "" -#: ../../godmode/modules/manage_network_components_form.php:358 +#: ../../godmode/modules/manage_network_components_form.php:361 msgid "Update Network Component" msgstr "" -#: ../../godmode/modules/manage_network_components_form.php:360 +#: ../../godmode/modules/manage_network_components_form.php:363 msgid "Create Network Component" msgstr "" -#: ../../godmode/modules/manage_network_components.php:289 +#: ../../godmode/modules/manage_network_components.php:290 msgid "Remote component management" msgstr "" -#: ../../godmode/modules/manage_network_components.php:321 +#: ../../godmode/modules/manage_network_components.php:322 #, php-format msgid "" "This node is configured with centralized mode. All remote components are " "read only. Go to %s to manage them." msgstr "" -#: ../../godmode/modules/manage_network_components.php:433 +#: ../../godmode/modules/manage_network_components.php:435 msgid "Could not be created because the component exists" msgstr "" -#: ../../godmode/modules/manage_network_components.php:686 +#: ../../godmode/modules/manage_network_components.php:689 msgid "Search by name, description, tcp send or tcp rcv, list matches." msgstr "" -#: ../../godmode/modules/manage_network_components.php:779 +#: ../../godmode/modules/manage_network_components.php:782 msgid "Max/Min" msgstr "" -#: ../../godmode/modules/manage_network_components.php:888 +#: ../../godmode/modules/manage_network_components.php:891 msgid "There are no defined network components" msgstr "" -#: ../../godmode/modules/manage_network_components.php:921 +#: ../../godmode/modules/manage_network_components.php:924 msgid "Create a new network component" msgstr "" -#: ../../godmode/modules/manage_network_components.php:922 +#: ../../godmode/modules/manage_network_components.php:925 msgid "Create a new plugin component" msgstr "" -#: ../../godmode/modules/manage_network_components.php:923 +#: ../../godmode/modules/manage_network_components.php:926 msgid "Create a new WMI component" msgstr "" -#: ../../godmode/modules/manage_network_components.php:924 +#: ../../godmode/modules/manage_network_components.php:927 msgid "Create a new wizard component" msgstr "" @@ -33928,6 +34100,7 @@ msgstr "" #: ../../godmode/massive/massive_enable_disable_alerts.php:196 #: ../../godmode/massive/massive_enable_disable_alerts.php:231 #: ../../include/class/ModuleTemplates.class.php:1184 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:491 msgid "Format" msgstr "" @@ -34011,7 +34184,7 @@ msgstr "" #: ../../godmode/db/db_main.php:108 #: ../../include/class/Diagnostics.class.php:603 -#: ../../include/functions_reporting.php:14740 +#: ../../include/functions_reporting.php:14813 msgid "Total events" msgstr "" @@ -34064,7 +34237,7 @@ msgid "Update group" msgstr "" #: ../../godmode/groups/configure_group.php:95 -#: ../../godmode/groups/group_list.php:1006 +#: ../../godmode/groups/group_list.php:1018 msgid "Create group" msgstr "" @@ -34073,44 +34246,44 @@ msgstr "" msgid "Manage agents group" msgstr "" -#: ../../godmode/groups/configure_group.php:160 +#: ../../godmode/groups/configure_group.php:179 msgid "You have not access to the parent." msgstr "" -#: ../../godmode/groups/configure_group.php:218 +#: ../../godmode/groups/configure_group.php:237 msgid "Group Password" msgstr "" -#: ../../godmode/groups/configure_group.php:224 +#: ../../godmode/groups/configure_group.php:243 msgid "Enable alert use in this group." msgstr "" -#: ../../godmode/groups/configure_group.php:229 +#: ../../godmode/groups/configure_group.php:248 msgid "Propagate ACL" msgstr "" -#: ../../godmode/groups/configure_group.php:229 +#: ../../godmode/groups/configure_group.php:248 msgid "Propagate the same ACL security into the child subgroups." msgstr "" -#: ../../godmode/groups/configure_group.php:244 -#: ../../include/functions_events.php:5068 +#: ../../godmode/groups/configure_group.php:263 +#: ../../include/functions_events.php:5073 msgid "Contact" msgstr "" -#: ../../godmode/groups/configure_group.php:244 +#: ../../godmode/groups/configure_group.php:263 msgid "Contact information accessible through the _groupcontact_ macro" msgstr "" -#: ../../godmode/groups/configure_group.php:249 +#: ../../godmode/groups/configure_group.php:268 msgid "Information accessible through the _group_other_ macro" msgstr "" -#: ../../godmode/groups/configure_group.php:254 +#: ../../godmode/groups/configure_group.php:273 msgid "Max agents allowed" msgstr "" -#: ../../godmode/groups/configure_group.php:254 +#: ../../godmode/groups/configure_group.php:273 msgid "Set the maximum of agents allowed for this group. 0 is unlimited." msgstr "" @@ -34128,8 +34301,8 @@ msgid "Groups defined in %s" msgstr "" #: ../../godmode/groups/group_list.php:352 -#: ../../godmode/agentes/module_manager_editor_network.php:172 -#: ../../godmode/menu.php:226 ../../include/class/AgentWizard.class.php:723 +#: ../../godmode/agentes/module_manager_editor_network.php:173 +#: ../../godmode/menu.php:225 ../../include/class/AgentWizard.class.php:723 #: ../../include/class/AgentWizard.class.php:779 msgid "Credential store" msgstr "" @@ -34152,70 +34325,70 @@ msgid "There was a problem creating group" msgstr "" #: ../../godmode/groups/group_list.php:470 -#: ../../godmode/groups/group_list.php:542 +#: ../../godmode/groups/group_list.php:543 msgid "Each group must have a different name" msgstr "" #: ../../godmode/groups/group_list.php:473 -#: ../../godmode/groups/group_list.php:545 +#: ../../godmode/groups/group_list.php:546 msgid "Group must have a name" msgstr "" -#: ../../godmode/groups/group_list.php:537 +#: ../../godmode/groups/group_list.php:538 #: ../../godmode/groups/modu_group_list.php:165 msgid "Group successfully updated" msgstr "" -#: ../../godmode/groups/group_list.php:539 +#: ../../godmode/groups/group_list.php:540 #: ../../godmode/groups/modu_group_list.php:168 msgid "There was a problem modifying group" msgstr "" -#: ../../godmode/groups/group_list.php:602 +#: ../../godmode/groups/group_list.php:603 #, php-format msgid "The group %s could not be deleted because it is not empty in the nodes" msgstr "" -#: ../../godmode/groups/group_list.php:676 +#: ../../godmode/groups/group_list.php:677 msgid "" "The group has not been deleted in the metaconsole due to an error in the " "node database" msgstr "" -#: ../../godmode/groups/group_list.php:685 +#: ../../godmode/groups/group_list.php:686 #, php-format msgid "The group %s has been deleted in the nodes" msgstr "" -#: ../../godmode/groups/group_list.php:725 +#: ../../godmode/groups/group_list.php:726 #: ../../godmode/groups/modu_group_list.php:238 msgid "Group successfully deleted" msgstr "" -#: ../../godmode/groups/group_list.php:728 +#: ../../godmode/groups/group_list.php:729 #: ../../godmode/groups/modu_group_list.php:239 msgid "There was a problem deleting group" msgstr "" -#: ../../godmode/groups/group_list.php:735 +#: ../../godmode/groups/group_list.php:736 #, php-format msgid "The group is not empty. It is use in %s." msgstr "" -#: ../../godmode/groups/group_list.php:774 -#: ../../godmode/groups/group_list.php:994 +#: ../../godmode/groups/group_list.php:775 +#: ../../godmode/groups/group_list.php:1006 msgid "There are no defined groups" msgstr "" -#: ../../godmode/groups/group_list.php:832 +#: ../../godmode/groups/group_list.php:833 msgid "Edit or delete groups can cause problems with synchronization" msgstr "" -#: ../../godmode/groups/group_list.php:958 +#: ../../godmode/groups/group_list.php:970 msgid "Are you sure? This group will also be deleted in all the nodes." msgstr "" -#: ../../godmode/groups/group_list.php:964 +#: ../../godmode/groups/group_list.php:976 msgid "" "The child groups will be updated to use the parent id of the deleted group" msgstr "" @@ -34261,24 +34434,20 @@ msgstr "" msgid "Tactical group view" msgstr "" -#: ../../godmode/groups/tactical.php:115 +#: ../../godmode/groups/tactical.php:114 msgid "Distribution by os" msgstr "" -#: ../../godmode/groups/tactical.php:146 +#: ../../godmode/groups/tactical.php:145 #: ../../include/functions_reporting_html.php:1204 -#: ../../include/functions_reporting_html.php:1419 +#: ../../include/functions_reporting_html.php:1428 msgid "Events by agent" msgstr "" -#: ../../godmode/groups/tactical.php:155 +#: ../../godmode/groups/tactical.php:154 msgid "Alerts and events" msgstr "" -#: ../../godmode/groups/tactical.php:182 -msgid "Ultimo contacto remoto" -msgstr "" - #: ../../godmode/extensions.php:46 msgid "Defined extensions" msgstr "" @@ -34421,7 +34590,7 @@ msgstr "" #: ../../godmode/users/configure_profile.php:90 #: ../../godmode/users/configure_profile.php:389 #: ../../godmode/users/user_list.php:301 -#: ../../godmode/users/configure_user.php:280 +#: ../../godmode/users/configure_user.php:218 msgid "Manage users" msgstr "" @@ -34573,7 +34742,7 @@ msgid "Create Profile" msgstr "" #: ../../godmode/users/configure_profile.php:283 -#: ../../operation/agentes/ver_agente.php:1938 +#: ../../operation/agentes/ver_agente.php:1934 msgid "View agents" msgstr "" @@ -34594,7 +34763,7 @@ msgid "Edit events" msgstr "" #: ../../godmode/users/configure_profile.php:317 -#: ../../operation/events/events.php:1545 +#: ../../operation/events/events.php:1599 msgid "Manage events" msgstr "" @@ -34623,7 +34792,7 @@ msgid "Manage network maps" msgstr "" #: ../../godmode/users/configure_profile.php:354 -#: ../../include/functions_menu.php:571 +#: ../../include/functions_menu.php:573 msgid "View visual console" msgstr "" @@ -34653,36 +34822,36 @@ msgid "Profile name already on use, please, change the name before save" msgstr "" #: ../../godmode/users/user_list.php:351 -#: ../../godmode/users/configure_user.php:115 +#: ../../godmode/users/configure_user.php:885 #, php-format msgid "Deleted user %s" msgstr "" #: ../../godmode/users/user_list.php:358 ../../godmode/users/user_list.php:400 -#: ../../godmode/users/configure_user.php:122 +#: ../../godmode/users/configure_user.php:892 msgid "There was a problem deleting the user" msgstr "" #: ../../godmode/users/user_list.php:376 -#: ../../godmode/users/configure_user.php:137 +#: ../../godmode/users/configure_user.php:907 #, php-format msgid "Deleted user %s from metaconsole" msgstr "" #: ../../godmode/users/user_list.php:388 -#: ../../godmode/users/configure_user.php:149 +#: ../../godmode/users/configure_user.php:919 #, php-format msgid "Deleted user %s from %s" msgstr "" #: ../../godmode/users/user_list.php:394 -#: ../../godmode/users/configure_user.php:158 +#: ../../godmode/users/configure_user.php:928 #, php-format msgid "Successfully deleted from %s" msgstr "" #: ../../godmode/users/user_list.php:395 -#: ../../godmode/users/configure_user.php:159 +#: ../../godmode/users/configure_user.php:929 #, php-format msgid "There was a problem deleting the user from %s" msgstr "" @@ -34691,15 +34860,15 @@ msgstr "" msgid "ID user cannot be empty" msgstr "" -#: ../../godmode/users/user_list.php:443 +#: ../../godmode/users/user_list.php:444 msgid "There was a problem disabling user" msgstr "" -#: ../../godmode/users/user_list.php:449 +#: ../../godmode/users/user_list.php:450 msgid "There was a problem enabling user" msgstr "" -#: ../../godmode/users/user_list.php:544 +#: ../../godmode/users/user_list.php:545 #: ../../operation/users/user_edit.php:284 #, php-format msgid "" @@ -34707,235 +34876,253 @@ msgid "" "only. Go to %s to manage it." msgstr "" -#: ../../godmode/users/user_list.php:580 +#: ../../godmode/users/user_list.php:581 msgid "Profile / Group" msgstr "" -#: ../../godmode/users/user_list.php:768 ../../operation/search_users.php:63 +#: ../../godmode/users/user_list.php:769 ../../operation/search_users.php:63 msgid "Administrator" msgstr "" -#: ../../godmode/users/user_list.php:794 +#: ../../godmode/users/user_list.php:795 msgid "Show profiles" msgstr "" -#: ../../godmode/users/user_list.php:812 +#: ../../godmode/users/user_list.php:813 msgid "Other profiles are also assigned." msgstr "" -#: ../../godmode/users/user_list.php:814 +#: ../../godmode/users/user_list.php:815 msgid "" "Other profiles you cannot manage are also assigned. These profiles are not " "shown. You cannot enable/disable or delete this user." msgstr "" -#: ../../godmode/users/user_list.php:823 -#: ../../include/functions_reporting.php:5140 -#: ../../include/functions_reporting.php:5187 +#: ../../godmode/users/user_list.php:824 +#: ../../include/functions_reporting.php:5149 +#: ../../include/functions_reporting.php:5196 #: ../../operation/search_users.php:87 msgid "The user doesn't have any assigned profile/group" msgstr "" -#: ../../godmode/users/user_list.php:935 +#: ../../godmode/users/user_list.php:936 #: ../../operation/users/user_edit_header.php:129 msgid "Edit user" msgstr "" -#: ../../godmode/users/user_list.php:1032 +#: ../../godmode/users/user_list.php:1034 msgid "Create user" msgstr "" -#: ../../godmode/users/user_list.php:1046 -#: ../../godmode/users/configure_user.php:357 +#: ../../godmode/users/user_list.php:1048 +#: ../../godmode/users/configure_user.php:295 #, php-format msgid "The current authentication scheme doesn't support creating users on %s" msgstr "" -#: ../../godmode/users/configure_user.php:267 +#: ../../godmode/users/configure_user.php:60 +#: ../../godmode/users/user_management.php:39 +#: ../../godmode/massive/massive_edit_users.php:275 +#: ../../godmode/events/events.php:56 ../../include/auth/mysql.php:808 +#: ../../operation/users/user_edit.php:470 +#: ../../operation/events/events.php:1525 +msgid "Event list" +msgstr "" + +#: ../../godmode/users/configure_user.php:64 +#: ../../godmode/users/user_management.php:43 ../../include/auth/mysql.php:812 +msgid "External link" +msgstr "" + +#: ../../godmode/users/configure_user.php:205 msgid "Update User" msgstr "" -#: ../../godmode/users/configure_user.php:267 +#: ../../godmode/users/configure_user.php:205 msgid "Create User" msgstr "" -#: ../../godmode/users/configure_user.php:284 +#: ../../godmode/users/configure_user.php:222 msgid "User Detail Editor" msgstr "" -#: ../../godmode/users/configure_user.php:449 +#: ../../godmode/users/configure_user.php:391 msgid "User ID cannot be empty" msgstr "" -#: ../../godmode/users/configure_user.php:456 +#: ../../godmode/users/configure_user.php:399 +msgid "User ID already exists" +msgstr "" + +#: ../../godmode/users/configure_user.php:405 msgid "Invalid user ID: leading or trailing blank spaces not allowed" msgstr "" -#: ../../godmode/users/configure_user.php:464 +#: ../../godmode/users/configure_user.php:413 msgid "Passwords cannot be empty" msgstr "" -#: ../../godmode/users/configure_user.php:471 +#: ../../godmode/users/configure_user.php:420 msgid "Passwords didn't match" msgstr "" -#: ../../godmode/users/configure_user.php:478 +#: ../../godmode/users/configure_user.php:427 msgid "The password provided is not valid. Please set another one." msgstr "" -#: ../../godmode/users/configure_user.php:540 +#: ../../godmode/users/configure_user.php:489 msgid "" "Strict ACL is not recommended for admin users because performance could be " "affected." msgstr "" -#: ../../godmode/users/configure_user.php:624 -#: ../../godmode/users/configure_user.php:963 +#: ../../godmode/users/configure_user.php:573 +#: ../../godmode/users/configure_user.php:1011 msgid "Profile added successfully" msgstr "" -#: ../../godmode/users/configure_user.php:625 -#: ../../godmode/users/configure_user.php:964 +#: ../../godmode/users/configure_user.php:574 +#: ../../godmode/users/configure_user.php:1012 msgid "Profile cannot be added" msgstr "" -#: ../../godmode/users/configure_user.php:754 -#: ../../godmode/users/configure_user.php:778 -#: ../../godmode/users/configure_user.php:852 -#: ../../godmode/users/configure_user.php:859 -#: ../../godmode/users/configure_user.php:891 +#: ../../godmode/users/configure_user.php:715 +#: ../../godmode/users/configure_user.php:743 +#: ../../godmode/users/configure_user.php:817 +#: ../../godmode/users/configure_user.php:824 +#: ../../godmode/users/configure_user.php:939 #: ../../operation/users/user_edit.php:216 #: ../../operation/users/user_edit.php:262 msgid "User info successfully updated" msgstr "" -#: ../../godmode/users/configure_user.php:755 -#: ../../godmode/users/configure_user.php:779 -#: ../../godmode/users/configure_user.php:853 -#: ../../godmode/users/configure_user.php:860 -#: ../../godmode/users/configure_user.php:892 +#: ../../godmode/users/configure_user.php:716 +#: ../../godmode/users/configure_user.php:744 +#: ../../godmode/users/configure_user.php:818 +#: ../../godmode/users/configure_user.php:825 +#: ../../godmode/users/configure_user.php:940 msgid "Error updating user info (no change?)" msgstr "" -#: ../../godmode/users/configure_user.php:784 +#: ../../godmode/users/configure_user.php:749 msgid "Password of the active user is required to perform password change" msgstr "" -#: ../../godmode/users/configure_user.php:786 +#: ../../godmode/users/configure_user.php:751 msgid "Password of active user is not correct" msgstr "" -#: ../../godmode/users/configure_user.php:802 +#: ../../godmode/users/configure_user.php:767 msgid "Passwords does not match" msgstr "" -#: ../../godmode/users/configure_user.php:852 +#: ../../godmode/users/configure_user.php:817 #: ../../operation/users/user_edit.php:214 msgid "You have generated a new API Token." msgstr "" -#: ../../godmode/users/configure_user.php:881 +#: ../../godmode/users/configure_user.php:846 msgid "" "Strict ACL is not recommended for this user. Performance could be affected." msgstr "" -#: ../../godmode/users/configure_user.php:1014 +#: ../../godmode/users/configure_user.php:1062 #: ../../operation/users/user_edit.php:306 msgid "" "The API token will be renewed. After this action, the last token you were " "using will not work. Are you sure?" msgstr "" -#: ../../godmode/users/configure_user.php:1030 +#: ../../godmode/users/configure_user.php:1078 #: ../../operation/users/user_edit.php:339 msgid "Your API Token is:" msgstr "" -#: ../../godmode/users/configure_user.php:1030 +#: ../../godmode/users/configure_user.php:1078 #: ../../operation/users/user_edit.php:339 msgid "Please, avoid share this string with others." msgstr "" -#: ../../godmode/users/configure_user.php:1091 +#: ../../godmode/users/configure_user.php:1155 #: ../../godmode/users/user_management.php:178 #: ../../operation/users/user_edit.php:384 msgid "Full (display) name" msgstr "" -#: ../../godmode/users/configure_user.php:1109 -#: ../../godmode/users/user_management.php:664 +#: ../../godmode/users/configure_user.php:1173 +#: ../../godmode/users/user_management.php:690 #: ../../godmode/massive/massive_edit_users.php:469 -#: ../../operation/users/user_edit.php:537 +#: ../../operation/users/user_edit.php:530 msgid "The timezone must be that of the associated server." msgstr "" -#: ../../godmode/users/configure_user.php:1142 +#: ../../godmode/users/configure_user.php:1206 #: ../../godmode/users/user_management.php:299 #: ../../operation/users/user_edit.php:411 msgid "Password confirmation" msgstr "" -#: ../../godmode/users/configure_user.php:1160 +#: ../../godmode/users/configure_user.php:1224 #: ../../godmode/users/user_management.php:319 msgid "Own password confirmation" msgstr "" -#: ../../godmode/users/configure_user.php:1170 +#: ../../godmode/users/configure_user.php:1234 #: ../../godmode/users/user_management.php:233 msgid "Administrator user" msgstr "" -#: ../../godmode/users/configure_user.php:1197 +#: ../../godmode/users/configure_user.php:1261 #: ../../godmode/users/user_management.php:198 #: ../../operation/users/user_edit.php:404 msgid "E-mail" msgstr "" -#: ../../godmode/users/configure_user.php:1213 +#: ../../godmode/users/configure_user.php:1277 #: ../../godmode/users/user_management.php:206 #: ../../godmode/users/user_management.php:218 #: ../../operation/users/user_edit.php:406 msgid "Phone number" msgstr "" -#: ../../godmode/users/configure_user.php:1229 -#: ../../godmode/users/user_management.php:695 -#: ../../operation/users/user_edit.php:755 +#: ../../godmode/users/configure_user.php:1293 +#: ../../godmode/users/user_management.php:721 +#: ../../operation/users/user_edit.php:752 msgid "Login allowed IP list" msgstr "" -#: ../../godmode/users/configure_user.php:1230 -#: ../../godmode/users/user_management.php:712 -#: ../../operation/users/user_edit.php:756 +#: ../../godmode/users/configure_user.php:1294 +#: ../../godmode/users/user_management.php:738 +#: ../../operation/users/user_edit.php:753 msgid "" "Add the source IPs that will allow console access. Each IP must be separated " "only by comma. * allows all." msgstr "" -#: ../../godmode/users/configure_user.php:1269 +#: ../../godmode/users/configure_user.php:1333 msgid "Skin" msgstr "" -#: ../../godmode/users/configure_user.php:1280 +#: ../../godmode/users/configure_user.php:1344 msgid "Search custom field view" msgstr "" -#: ../../godmode/users/configure_user.php:1294 +#: ../../godmode/users/configure_user.php:1358 msgid "Load by default the selected view in custom field view" msgstr "" -#: ../../godmode/users/configure_user.php:1300 +#: ../../godmode/users/configure_user.php:1364 msgid "Use global conf" msgstr "" -#: ../../godmode/users/configure_user.php:1305 -#: ../../godmode/users/user_management.php:614 +#: ../../godmode/users/configure_user.php:1369 +#: ../../godmode/users/user_management.php:629 #: ../../godmode/massive/massive_edit_users.php:270 #: ../../operation/users/user_edit.php:466 msgid "Home screen" msgstr "" -#: ../../godmode/users/configure_user.php:1306 +#: ../../godmode/users/configure_user.php:1370 #: ../../godmode/massive/massive_edit_users.php:270 #: ../../operation/users/user_edit.php:466 msgid "" @@ -34944,114 +35131,103 @@ msgid "" "ver_agente&id_agente=1 to show agent detail view" msgstr "" -#: ../../godmode/users/configure_user.php:1410 +#: ../../godmode/users/configure_user.php:1459 msgid "Metaconsole access" msgstr "" -#: ../../godmode/users/configure_user.php:1442 +#: ../../godmode/users/configure_user.php:1495 msgid "Default event filter" msgstr "" -#: ../../godmode/users/configure_user.php:1456 +#: ../../godmode/users/configure_user.php:1509 msgid "eHorus user access enabled" msgstr "" -#: ../../godmode/users/configure_user.php:1464 -#: ../../include/functions_config.php:1820 +#: ../../godmode/users/configure_user.php:1517 +#: ../../include/functions_config.php:1832 msgid "eHorus user" msgstr "" -#: ../../godmode/users/configure_user.php:1473 -#: ../../include/functions_config.php:1824 +#: ../../godmode/users/configure_user.php:1526 +#: ../../include/functions_config.php:1836 msgid "eHorus password" msgstr "" -#: ../../godmode/users/configure_user.php:1502 +#: ../../godmode/users/configure_user.php:1555 msgid "User must be created before activating double authentication." msgstr "" -#: ../../godmode/users/configure_user.php:1529 -#: ../../operation/users/user_edit.php:559 +#: ../../godmode/users/configure_user.php:1582 +#: ../../operation/users/user_edit.php:552 msgid "Show information" msgstr "" -#: ../../godmode/users/configure_user.php:1608 +#: ../../godmode/users/configure_user.php:1662 msgid "Enable agents managment" msgstr "" -#: ../../godmode/users/configure_user.php:1616 +#: ../../godmode/users/configure_user.php:1670 msgid "Enable node access" msgstr "" -#: ../../godmode/users/configure_user.php:1617 +#: ../../godmode/users/configure_user.php:1671 msgid "With this option enabled, the user will can access to nodes console" msgstr "" -#: ../../godmode/users/configure_user.php:1849 +#: ../../godmode/users/configure_user.php:1901 msgid "yes" msgstr "" -#: ../../godmode/users/configure_user.php:1852 +#: ../../godmode/users/configure_user.php:1904 msgid "no" msgstr "" -#: ../../godmode/users/configure_user.php:1856 +#: ../../godmode/users/configure_user.php:1908 msgid "Please select profile and group" msgstr "" -#: ../../godmode/users/configure_user.php:1870 -#: ../../godmode/users/configure_user.php:1921 +#: ../../godmode/users/configure_user.php:1922 +#: ../../godmode/users/configure_user.php:1973 msgid "This profile is already defined" msgstr "" -#: ../../godmode/users/configure_user.php:1935 +#: ../../godmode/users/configure_user.php:1987 msgid "Deleting last profile will delete this user" msgstr "" -#: ../../godmode/users/configure_user.php:1975 +#: ../../godmode/users/configure_user.php:2027 msgid "" "User will be created without profiles assigned and won't be able to log in, " "are you sure?" msgstr "" -#: ../../godmode/users/configure_user.php:2082 -#: ../../operation/users/user_edit.php:1256 +#: ../../godmode/users/configure_user.php:2134 +#: ../../operation/users/user_edit.php:1253 msgid "Double autentication information" msgstr "" -#: ../../godmode/users/configure_user.php:2171 -#: ../../operation/users/user_edit.php:1345 +#: ../../godmode/users/configure_user.php:2223 +#: ../../operation/users/user_edit.php:1342 msgid "The double authentication will be deactivated" msgstr "" -#: ../../godmode/users/configure_user.php:2172 -#: ../../operation/users/user_edit.php:1346 +#: ../../godmode/users/configure_user.php:2224 +#: ../../operation/users/user_edit.php:1343 msgid "Deactivate" msgstr "" -#: ../../godmode/users/configure_user.php:2207 -#: ../../operation/users/user_edit.php:1378 +#: ../../godmode/users/configure_user.php:2259 +#: ../../operation/users/user_edit.php:1375 msgid "The double autentication was deactivated successfully" msgstr "" -#: ../../godmode/users/configure_user.php:2210 -#: ../../godmode/users/configure_user.php:2214 -#: ../../operation/users/user_edit.php:1381 -#: ../../operation/users/user_edit.php:1385 +#: ../../godmode/users/configure_user.php:2262 +#: ../../godmode/users/configure_user.php:2266 +#: ../../operation/users/user_edit.php:1378 +#: ../../operation/users/user_edit.php:1382 msgid "There was an error deactivating the double autentication" msgstr "" -#: ../../godmode/users/user_management.php:39 -#: ../../godmode/massive/massive_edit_users.php:275 -#: ../../godmode/events/events.php:56 ../../operation/users/user_edit.php:470 -#: ../../operation/events/events.php:1471 -msgid "Event list" -msgstr "" - -#: ../../godmode/users/user_management.php:43 -msgid "External link" -msgstr "" - #: ../../godmode/users/user_management.php:136 msgid "Profile information" msgstr "" @@ -35091,102 +35267,98 @@ msgid "" "authentication." msgstr "" -#: ../../godmode/users/user_management.php:384 +#: ../../godmode/users/user_management.php:390 msgid "Session time" msgstr "" -#: ../../godmode/users/user_management.php:394 +#: ../../godmode/users/user_management.php:400 msgid "" "This is defined in minutes, If you wish a permanent session should putting " "-1 in this field." msgstr "" -#: ../../godmode/users/user_management.php:399 +#: ../../godmode/users/user_management.php:405 #: ../../godmode/massive/massive_edit_users.php:378 -#: ../../operation/users/user_edit.php:645 +#: ../../operation/users/user_edit.php:642 msgid "Autorefresh" msgstr "" -#: ../../godmode/users/user_management.php:434 +#: ../../godmode/users/user_management.php:440 #: ../../godmode/massive/massive_edit_users.php:418 -#: ../../operation/users/user_edit.php:681 +#: ../../operation/users/user_edit.php:678 msgid "Full list of pages" msgstr "" -#: ../../godmode/users/user_management.php:445 +#: ../../godmode/users/user_management.php:451 msgid "Pages with autorefresh" msgstr "" -#: ../../godmode/users/user_management.php:466 -#: ../../godmode/users/user_management.php:467 +#: ../../godmode/users/user_management.php:472 +#: ../../godmode/users/user_management.php:473 #: ../../godmode/massive/massive_edit_users.php:427 #: ../../godmode/massive/massive_edit_users.php:428 -#: ../../include/functions_html.php:1381 ../../include/functions_html.php:1382 -#: ../../operation/users/user_edit.php:690 -#: ../../operation/users/user_edit.php:691 +#: ../../include/functions_html.php:1386 ../../include/functions_html.php:1387 +#: ../../operation/users/user_edit.php:687 +#: ../../operation/users/user_edit.php:688 msgid "Push selected pages into autorefresh list" msgstr "" -#: ../../godmode/users/user_management.php:483 -#: ../../godmode/users/user_management.php:484 +#: ../../godmode/users/user_management.php:489 +#: ../../godmode/users/user_management.php:490 #: ../../godmode/massive/massive_edit_users.php:437 #: ../../godmode/massive/massive_edit_users.php:438 -#: ../../include/functions_html.php:1393 ../../include/functions_html.php:1394 -#: ../../operation/users/user_edit.php:699 -#: ../../operation/users/user_edit.php:700 +#: ../../include/functions_html.php:1398 ../../include/functions_html.php:1399 +#: ../../operation/users/user_edit.php:696 +#: ../../operation/users/user_edit.php:697 msgid "Pop selected pages out of autorefresh list" msgstr "" -#: ../../godmode/users/user_management.php:530 +#: ../../godmode/users/user_management.php:536 msgid "Autorefresh pages" msgstr "" -#: ../../godmode/users/user_management.php:536 +#: ../../godmode/users/user_management.php:542 msgid "Time for autorefresh" msgstr "" -#: ../../godmode/users/user_management.php:549 +#: ../../godmode/users/user_management.php:555 #: ../../godmode/massive/massive_edit_users.php:454 -#: ../../operation/users/user_edit.php:716 +#: ../../operation/users/user_edit.php:713 msgid "" "Interval of autorefresh of the elements, by default they are 30 seconds, " "needing to enable the autorefresh first" msgstr "" -#: ../../godmode/users/user_management.php:554 +#: ../../godmode/users/user_management.php:560 msgid "Language and Appearance" msgstr "" -#: ../../godmode/users/user_management.php:576 +#: ../../godmode/users/user_management.php:582 msgid "User color scheme" msgstr "" -#: ../../godmode/users/user_management.php:593 +#: ../../godmode/users/user_management.php:603 #: ../../godmode/massive/massive_edit_users.php:340 -#: ../../operation/users/user_edit.php:574 +#: ../../operation/users/user_edit.php:571 msgid "Event filter" msgstr "" -#: ../../godmode/users/user_management.php:661 -#: ../../include/functions_visual_map_editor.php:313 +#: ../../godmode/users/user_management.php:687 +#: ../../include/functions_visual_map_editor.php:309 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302 msgid "Time zone" msgstr "" -#: ../../godmode/users/user_management.php:678 +#: ../../godmode/users/user_management.php:704 msgid "Additional settings" msgstr "" -#: ../../godmode/users/user_management.php:717 +#: ../../godmode/users/user_management.php:743 msgid "Allow all IPs" msgstr "" -#: ../../godmode/users/user_management.php:749 -msgid "Generated automatically with the information provided for the user" -msgstr "" - #: ../../godmode/agentes/agent_template.php:83 -#: ../../include/functions_api.php:15092 +#: ../../include/functions_api.php:15103 msgid "Created by template " msgstr "" @@ -35199,14 +35371,14 @@ msgid "Error adding modules. The following errors already exists: " msgstr "" #: ../../godmode/agentes/agent_template.php:179 -#: ../../include/functions_api.php:15186 +#: ../../include/functions_api.php:15197 msgid "Modules successfully added" msgstr "" #: ../../godmode/agentes/agent_template.php:204 #: ../../godmode/agentes/configurar_agente.php:456 #: ../../godmode/agentes/configurar_agente.php:749 ../../godmode/menu.php:177 -#: ../../godmode/wizards/HostDevices.class.php:1098 +#: ../../godmode/wizards/HostDevices.class.php:1094 msgid "Module templates" msgstr "" @@ -35217,7 +35389,7 @@ msgid "Assign" msgstr "" #: ../../godmode/agentes/agent_template.php:317 -#: ../../mobile/operation/modules.php:772 +#: ../../mobile/operation/modules.php:804 msgid "No modules" msgstr "" @@ -35236,70 +35408,75 @@ msgid "" "Column number to retrieve from the WQL query result (starting from zero)." msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:161 +#: ../../godmode/agentes/module_manager_editor_web.php:164 msgid "Debug remotely this module" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:164 +#: ../../godmode/agentes/module_manager_editor_web.php:167 msgid "Debug this module once it has been initialized" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:190 +#: ../../godmode/agentes/module_manager_editor_web.php:193 #: ../../include/class/WebServerModuleDebug.class.php:325 msgid "Debug" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:219 +#: ../../godmode/agentes/module_manager_editor_web.php:222 msgid "Requests" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:222 +#: ../../godmode/agentes/module_manager_editor_web.php:225 msgid "Agent browser id" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:228 +#: ../../godmode/agentes/module_manager_editor_web.php:231 msgid "HTTP auth (login)" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:231 +#: ../../godmode/agentes/module_manager_editor_web.php:234 msgid "HTTP auth (password)" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:245 +#: ../../godmode/agentes/module_manager_editor_web.php:248 msgid "Proxy auth (login)" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:249 +#: ../../godmode/agentes/module_manager_editor_web.php:252 msgid "Proxy auth (pass)" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:256 +#: ../../godmode/agentes/module_manager_editor_web.php:259 msgid "Proxy auth (server)" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:260 +#: ../../godmode/agentes/module_manager_editor_web.php:263 msgid "Proxy auth (realm)" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:272 +#: ../../godmode/agentes/module_manager_editor_web.php:275 msgid "There isn't get or post" msgstr "" -#: ../../godmode/agentes/status_monitor_custom_fields.php:101 -#: ../../godmode/agentes/status_monitor_custom_fields.php:147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4011 -#: ../../include/functions_reporting_html.php:1784 +#: ../../godmode/agentes/status_monitor_custom_fields.php:35 +#: ../../operation/agentes/status_monitor.php:326 ../../operation/menu.php:186 +msgid "Monitor detail" +msgstr "" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:121 +#: ../../godmode/agentes/status_monitor_custom_fields.php:167 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4020 +#: ../../mobile/operation/agents.php:100 ../../mobile/operation/agents.php:426 +#: ../../include/functions_reporting_html.php:1793 #: ../../include/functions_treeview.php:310 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560 -#: ../../operation/agentes/status_monitor.php:1572 -#: ../../operation/agentes/estado_generalagente.php:529 -#: ../../operation/inventory/inventory.php:1008 -#: ../../operation/inventory/inventory.php:1302 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561 +#: ../../operation/agentes/status_monitor.php:1574 +#: ../../operation/agentes/estado_generalagente.php:500 +#: ../../operation/inventory/inventory.php:1254 msgid "Last status change" msgstr "" -#: ../../godmode/agentes/status_monitor_custom_fields.php:165 +#: ../../godmode/agentes/status_monitor_custom_fields.php:185 msgid "Show monitor detail fields" msgstr "" @@ -35321,15 +35498,15 @@ msgid "Could not be created, because IP already exists" msgstr "" #: ../../godmode/agentes/configurar_agente.php:536 -#: ../../operation/agentes/ver_agente.php:1523 -#: ../../operation/agentes/ver_agente.php:1827 +#: ../../operation/agentes/ver_agente.php:1519 +#: ../../operation/agentes/ver_agente.php:1823 msgid "GIS data" msgstr "" #: ../../godmode/agentes/configurar_agente.php:605 #: ../../godmode/agentes/configurar_agente.php:758 -#: ../../operation/agentes/ver_agente.php:1538 -#: ../../operation/agentes/ver_agente.php:1885 ../../operation/menu.php:657 +#: ../../operation/agentes/ver_agente.php:1534 +#: ../../operation/agentes/ver_agente.php:1881 ../../operation/menu.php:657 #: ../../general/first_task/incidents.php:28 msgid "Incidents" msgstr "" @@ -35359,12 +35536,12 @@ msgid "Manage agents" msgstr "" #: ../../godmode/agentes/configurar_agente.php:874 -#: ../../godmode/servers/modificar_server.php:350 +#: ../../godmode/servers/modificar_server.php:372 msgid "Conf file deleted successfully" msgstr "" #: ../../godmode/agentes/configurar_agente.php:875 -#: ../../godmode/servers/modificar_server.php:351 +#: ../../godmode/servers/modificar_server.php:373 msgid "Could not delete conf file" msgstr "" @@ -35406,81 +35583,81 @@ msgstr "" msgid "There was a problem updating the agent" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1227 +#: ../../godmode/agentes/configurar_agente.php:1243 msgid "There was a problem loading the agent" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1736 +#: ../../godmode/agentes/configurar_agente.php:1797 msgid "" "There was a problem updating module. Another module already exists with the " "same name." msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1740 +#: ../../godmode/agentes/configurar_agente.php:1801 msgid "" "There was a problem updating module. Some required fields are missed: (name)" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1744 +#: ../../godmode/agentes/configurar_agente.php:1805 msgid "There was a problem updating module. \"No change\"" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1750 +#: ../../godmode/agentes/configurar_agente.php:1811 msgid "There was a problem updating module. Processing error" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1779 +#: ../../godmode/agentes/configurar_agente.php:1840 msgid "Module successfully updated" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1913 +#: ../../godmode/agentes/configurar_agente.php:1974 msgid "" "There was a problem adding module. Another module already exists with the " "same name." msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1917 +#: ../../godmode/agentes/configurar_agente.php:1978 msgid "" "There was a problem adding module. Some required fields are missed : (name)" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1923 +#: ../../godmode/agentes/configurar_agente.php:1984 msgid "There was a problem adding module. Processing error" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1952 +#: ../../godmode/agentes/configurar_agente.php:2013 #: ../../godmode/reporting/graph_builder.php:392 msgid "Module added successfully" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2106 +#: ../../godmode/agentes/configurar_agente.php:2169 msgid "There was a problem deleting the module" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2110 +#: ../../godmode/agentes/configurar_agente.php:2173 msgid "Module deleted succesfully" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2249 -#: ../../include/functions_api.php:11217 +#: ../../godmode/agentes/configurar_agente.php:2312 +#: ../../include/functions_api.php:11220 #, php-format msgid "Save by %s Console" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2267 -#: ../../include/functions_api.php:11218 +#: ../../godmode/agentes/configurar_agente.php:2330 +#: ../../include/functions_api.php:11221 #, php-format msgid "Update by %s Console" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2283 -#: ../../include/functions_api.php:11219 +#: ../../godmode/agentes/configurar_agente.php:2346 +#: ../../include/functions_api.php:11222 #, php-format msgid "Insert by %s Console" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2356 -#: ../../godmode/agentes/configurar_agente.php:2372 +#: ../../godmode/agentes/configurar_agente.php:2419 +#: ../../godmode/agentes/configurar_agente.php:2435 msgid "Invalid tab specified" msgstr "" @@ -35564,7 +35741,7 @@ msgid "Error forcing inventory module" msgstr "" #: ../../godmode/agentes/inventory_manager.php:235 -#: ../../include/functions_ui.php:7438 +#: ../../include/functions_ui.php:7515 msgid "Target" msgstr "" @@ -35614,49 +35791,54 @@ msgid "" "content" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:692 +#: ../../godmode/agentes/modificar_agente.php:702 msgid "Remote agent configuration" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:692 +#: ../../godmode/agentes/modificar_agente.php:702 msgid "R" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:772 -#: ../../godmode/agentes/module_manager.php:788 +#: ../../godmode/agentes/modificar_agente.php:784 +#: ../../godmode/agentes/module_manager.php:798 msgid "Module in scheduled downtime" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:858 +#: ../../godmode/agentes/modificar_agente.php:870 msgid "Edit remote config" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:905 +#: ../../godmode/agentes/modificar_agente.php:917 msgid "Enable agent" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:907 +#: ../../godmode/agentes/modificar_agente.php:919 msgid "You are going to enable a cluster agent. Are you sure?" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:910 +#: ../../godmode/agentes/modificar_agente.php:922 msgid "Disable agent" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:912 +#: ../../godmode/agentes/modificar_agente.php:924 msgid "You are going to disable a cluster agent. Are you sure?" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:943 +#: ../../godmode/agentes/modificar_agente.php:955 msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:965 -#: ../../godmode/agentes/agent_manager.php:1067 -#: ../../godmode/agentes/agent_manager.php:1120 +#: ../../godmode/agentes/modificar_agente.php:977 +#: ../../godmode/agentes/agent_manager.php:1073 +#: ../../godmode/agentes/agent_manager.php:1126 msgid "Delete agent" msgstr "" +#: ../../godmode/agentes/modificar_agente.php:1046 +#: ../../include/class/AgentDeployWizard.class.php:706 +msgid "Deploy agent" +msgstr "" + #: ../../godmode/agentes/agent_conf_gis.php:38 #: ../../operation/agentes/gis_view.php:59 msgid "" @@ -35706,7 +35888,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:66 #: ../../godmode/agentes/planned_downtime.editor.php:79 #: ../../include/functions_reporting_html.php:887 -#: ../../include/functions_reporting_html.php:4891 +#: ../../include/functions_reporting_html.php:4919 msgid "Scheduled Downtime" msgstr "" @@ -35801,7 +35983,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:229 #: ../../godmode/agentes/planned_downtime.editor.php:1574 -#: ../../godmode/agentes/planned_downtime.editor.php:1777 +#: ../../godmode/agentes/planned_downtime.editor.php:1775 msgid "This elements cannot be modified while the downtime is being executed" msgstr "" @@ -35951,12 +36133,12 @@ msgid "Type Periodicity" msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1069 -#: ../../include/functions_reporting.php:14923 +#: ../../include/functions_reporting.php:14996 msgid "From day" msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1085 -#: ../../include/functions_reporting.php:14924 +#: ../../include/functions_reporting.php:14997 msgid "To day" msgstr "" @@ -35973,14 +36155,14 @@ msgid "To hour" msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1152 -#: ../../godmode/agentes/module_manager_editor_common.php:1085 -#: ../../godmode/agentes/module_manager_editor_common.php:1091 +#: ../../godmode/agentes/module_manager_editor_common.php:1095 +#: ../../godmode/agentes/module_manager_editor_common.php:1101 msgid "Cron from" msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1155 -#: ../../godmode/agentes/module_manager_editor_common.php:1088 -#: ../../godmode/agentes/module_manager_editor_common.php:1094 +#: ../../godmode/agentes/module_manager_editor_common.php:1098 +#: ../../godmode/agentes/module_manager_editor_common.php:1104 msgid "Cron to" msgstr "" @@ -36024,12 +36206,12 @@ msgstr "" msgid "Add Module:" msgstr "" -#: ../../godmode/agentes/planned_downtime.editor.php:1907 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4939 +#: ../../godmode/agentes/planned_downtime.editor.php:1903 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4948 msgid "Please select a module." msgstr "" -#: ../../godmode/agentes/planned_downtime.editor.php:2046 +#: ../../godmode/agentes/planned_downtime.editor.php:2042 msgid "" "WARNING: If you edit this scheduled downtime, the data of future SLA reports " "may be altered" @@ -36086,12 +36268,12 @@ msgstr "" msgid "Create field" msgstr "" -#: ../../godmode/agentes/module_manager_editor_network.php:310 +#: ../../godmode/agentes/module_manager_editor_network.php:311 #: ../../include/class/AgentWizard.class.php:584 msgid "SNMP Walk" msgstr "" -#: ../../godmode/agentes/module_manager_editor_network.php:477 +#: ../../godmode/agentes/module_manager_editor_network.php:482 msgid "" "Please use single quotation marks when necessary. \n" "\n" @@ -36099,13 +36281,13 @@ msgid "" "(\\")" msgstr "" -#: ../../godmode/agentes/module_manager_editor_network.php:536 +#: ../../godmode/agentes/module_manager_editor_network.php:541 msgid "Windows remote" msgstr "" #: ../../godmode/agentes/agent_manager.php:329 -#: ../../godmode/agentes/agent_manager.php:744 -#: ../../godmode/massive/massive_edit_agents.php:1014 +#: ../../godmode/agentes/agent_manager.php:748 +#: ../../godmode/massive/massive_edit_agents.php:1031 msgid "Agent icon" msgstr "" @@ -36115,7 +36297,7 @@ msgstr "" #: ../../godmode/agentes/agent_manager.php:407 #: ../../godmode/setup/setup_general.php:649 -#: ../../include/functions_config.php:390 +#: ../../include/functions_config.php:398 msgid "Unique IP" msgstr "" @@ -36140,64 +36322,64 @@ msgstr "" msgid "Primary group" msgstr "" -#: ../../godmode/agentes/agent_manager.php:673 +#: ../../godmode/agentes/agent_manager.php:677 msgid "Cascade protection modules" msgstr "" -#: ../../godmode/agentes/agent_manager.php:689 -#: ../../godmode/massive/massive_edit_agents.php:891 +#: ../../godmode/agentes/agent_manager.php:693 +#: ../../godmode/massive/massive_edit_agents.php:908 msgid "Learning mode" msgstr "" -#: ../../godmode/agentes/agent_manager.php:699 -#: ../../godmode/massive/massive_edit_agents.php:902 +#: ../../godmode/agentes/agent_manager.php:703 +#: ../../godmode/massive/massive_edit_agents.php:919 msgid "Normal mode" msgstr "" -#: ../../godmode/agentes/agent_manager.php:709 -#: ../../godmode/massive/massive_edit_agents.php:913 +#: ../../godmode/agentes/agent_manager.php:713 +#: ../../godmode/massive/massive_edit_agents.php:930 msgid "Autodisable mode" msgstr "" -#: ../../godmode/agentes/agent_manager.php:718 -#: ../../godmode/massive/massive_edit_agents.php:879 +#: ../../godmode/agentes/agent_manager.php:722 +#: ../../godmode/massive/massive_edit_agents.php:896 msgid "Module definition" msgstr "" -#: ../../godmode/agentes/agent_manager.php:730 +#: ../../godmode/agentes/agent_manager.php:734 msgid "Cascade protection services" msgstr "" -#: ../../godmode/agentes/agent_manager.php:737 +#: ../../godmode/agentes/agent_manager.php:741 msgid "Update new GIS data" msgstr "" -#: ../../godmode/agentes/agent_manager.php:809 +#: ../../godmode/agentes/agent_manager.php:817 msgid "URL Address" msgstr "" -#: ../../godmode/agentes/agent_manager.php:815 +#: ../../godmode/agentes/agent_manager.php:823 msgid "Disabled mode" msgstr "" -#: ../../godmode/agentes/agent_manager.php:892 -#: ../../godmode/massive/massive_edit_agents.php:1128 +#: ../../godmode/agentes/agent_manager.php:900 +#: ../../godmode/massive/massive_edit_agents.php:1144 msgid "Safe operation mode" msgstr "" -#: ../../godmode/agentes/agent_manager.php:969 +#: ../../godmode/agentes/agent_manager.php:975 msgid "Link text:" msgstr "" -#: ../../godmode/agentes/agent_manager.php:980 +#: ../../godmode/agentes/agent_manager.php:986 msgid "Link URL:" msgstr "" -#: ../../godmode/agentes/agent_manager.php:1121 +#: ../../godmode/agentes/agent_manager.php:1127 msgid "This action is not reversible. Are you sure" msgstr "" -#: ../../godmode/agentes/agent_manager.php:1182 +#: ../../godmode/agentes/agent_manager.php:1188 msgid "Secondary group cannot be primary too." msgstr "" @@ -36290,86 +36472,86 @@ msgid "Warning threshold" msgstr "" #: ../../godmode/agentes/module_manager_editor_common.php:448 -#: ../../godmode/agentes/module_manager_editor_common.php:531 +#: ../../godmode/agentes/module_manager_editor_common.php:536 msgid "Min / Max" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:530 +#: ../../godmode/agentes/module_manager_editor_common.php:535 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:435 msgid "Critical threshold" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:741 +#: ../../godmode/agentes/module_manager_editor_common.php:751 msgid "Identification and Categorization" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:944 +#: ../../godmode/agentes/module_manager_editor_common.php:954 msgid "Module parent" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:994 +#: ../../godmode/agentes/module_manager_editor_common.php:1004 msgid "Tags from policy" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1065 +#: ../../godmode/agentes/module_manager_editor_common.php:1075 msgid "Execution interval" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1101 +#: ../../godmode/agentes/module_manager_editor_common.php:1111 msgid "Thresholds and state changes" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1119 +#: ../../godmode/agentes/module_manager_editor_common.php:1129 msgid "Dynamic Threshold Interval" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1172 +#: ../../godmode/agentes/module_manager_editor_common.php:1182 msgid "Two Tailed" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1323 +#: ../../godmode/agentes/module_manager_editor_common.php:1333 msgid "Data and their processing" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1353 +#: ../../godmode/agentes/module_manager_editor_common.php:1363 msgid "Notifications and alerts" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1357 +#: ../../godmode/agentes/module_manager_editor_common.php:1367 msgid "Not needed" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1403 +#: ../../godmode/agentes/module_manager_editor_common.php:1413 msgid "Cascade Protection Services" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1486 -#: ../../godmode/agentes/module_manager_editor_common.php:1620 +#: ../../godmode/agentes/module_manager_editor_common.php:1496 +#: ../../godmode/agentes/module_manager_editor_common.php:1630 msgid "Direct" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1487 -#: ../../godmode/agentes/module_manager_editor_common.php:1620 -#: ../../include/functions_reporting_html.php:4132 -#: ../../include/functions_reporting_html.php:4226 -#: ../../include/functions_reporting_html.php:4306 -#: ../../include/functions_reporting_html.php:4315 -#: ../../include/functions_reporting_html.php:4453 -#: ../../include/functions_reporting_html.php:4462 -#: ../../include/functions_reporting_html.php:4788 -#: ../../include/functions_reporting_html.php:4794 +#: ../../godmode/agentes/module_manager_editor_common.php:1497 +#: ../../godmode/agentes/module_manager_editor_common.php:1630 +#: ../../include/functions_reporting_html.php:4160 +#: ../../include/functions_reporting_html.php:4254 +#: ../../include/functions_reporting_html.php:4334 +#: ../../include/functions_reporting_html.php:4343 +#: ../../include/functions_reporting_html.php:4481 +#: ../../include/functions_reporting_html.php:4490 +#: ../../include/functions_reporting_html.php:4816 +#: ../../include/functions_reporting_html.php:4822 msgid "Failover" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1489 +#: ../../godmode/agentes/module_manager_editor_common.php:1499 msgid "Rel. type" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1511 +#: ../../godmode/agentes/module_manager_editor_common.php:1521 msgid "Add relationship" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1537 +#: ../../godmode/agentes/module_manager_editor_common.php:1547 msgid "Changes" msgstr "" @@ -36398,7 +36580,7 @@ msgid "There was a problem completing the operation. Applied to %d/%d modules." msgstr "" #: ../../godmode/agentes/module_manager.php:619 -#: ../../include/ajax/module.php:999 +#: ../../include/ajax/module.php:1022 msgid "P" msgstr "" @@ -36406,42 +36588,43 @@ msgstr "" msgid "S" msgstr "" -#: ../../godmode/agentes/module_manager.php:836 -#: ../../godmode/agentes/module_manager.php:844 -#: ../../include/ajax/module.php:1064 ../../include/ajax/module.php:1072 +#: ../../godmode/agentes/module_manager.php:846 +#: ../../godmode/agentes/module_manager.php:854 +#: ../../include/ajax/module.php:1087 ../../include/ajax/module.php:1095 msgid "Adopted" msgstr "" -#: ../../godmode/agentes/module_manager.php:972 +#: ../../godmode/agentes/module_manager.php:986 msgid "Normalize" msgstr "" -#: ../../godmode/agentes/module_manager.php:985 +#: ../../godmode/agentes/module_manager.php:999 #: ../../include/functions_snmp_browser.php:638 msgid "Create network component" msgstr "" -#: ../../godmode/agentes/module_manager.php:1020 +#: ../../godmode/agentes/module_manager.php:1034 #: ../../godmode/reporting/map_builder.php:485 #: ../../godmode/reporting/map_builder.php:502 -#: ../../operation/agentes/datos_agente.php:295 +#: ../../include/ajax/module.php:609 +#: ../../operation/agentes/datos_agente.php:297 msgid "No available data to show" msgstr "" -#: ../../godmode/agentes/module_manager.php:1037 +#: ../../godmode/agentes/module_manager.php:1051 #: ../../include/class/SatelliteAgent.class.php:233 msgid "Execute action" msgstr "" -#: ../../godmode/agentes/module_manager.php:1081 +#: ../../godmode/agentes/module_manager.php:1095 msgid "Select module type" msgstr "" -#: ../../godmode/agentes/module_manager.php:1104 +#: ../../godmode/agentes/module_manager.php:1119 msgid "Get more modules on Monitoring Library" msgstr "" -#: ../../godmode/agentes/module_manager.php:1239 +#: ../../godmode/agentes/module_manager.php:1260 msgid "" "This module has children modules.The following modules will also be deleted: " msgstr "" @@ -36469,7 +36652,7 @@ msgid "Item list" msgstr "" #: ../../godmode/netflow/nf_item_list.php:176 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2549 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2558 msgid "Max. values" msgstr "" @@ -36495,97 +36678,153 @@ msgstr "" msgid "There are no defined filters" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:66 ../../godmode/events/events.php:69 +#: ../../godmode/netflow/nf_edit_form.php:77 ../../godmode/events/events.php:69 msgid "Filter list" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:67 +#: ../../godmode/netflow/nf_edit_form.php:78 msgid "Add filter" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:181 -#: ../../operation/netflow/nf_live_view.php:261 +#: ../../godmode/netflow/nf_edit_form.php:224 +#: ../../operation/netflow/nf_live_view.php:270 msgid "Src Ip Address" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:182 -#: ../../operation/netflow/nf_live_view.php:262 +#: ../../godmode/netflow/nf_edit_form.php:225 +#: ../../operation/netflow/nf_live_view.php:271 msgid "Dst Ip Address" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:183 -#: ../../godmode/netflow/nf_edit_form.php:314 -#: ../../operation/netflow/nf_live_view.php:263 -#: ../../operation/netflow/nf_live_view.php:321 +#: ../../godmode/netflow/nf_edit_form.php:226 +#: ../../godmode/netflow/nf_edit_form.php:359 +#: ../../operation/netflow/nf_live_view.php:272 +#: ../../operation/netflow/nf_live_view.php:330 msgid "Src Port" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:184 -#: ../../godmode/netflow/nf_edit_form.php:302 -#: ../../operation/netflow/nf_live_view.php:264 -#: ../../operation/netflow/nf_live_view.php:313 +#: ../../godmode/netflow/nf_edit_form.php:227 +#: ../../godmode/netflow/nf_edit_form.php:347 +#: ../../operation/netflow/nf_live_view.php:273 +#: ../../operation/netflow/nf_live_view.php:322 msgid "Dst Port" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:261 +#: ../../godmode/netflow/nf_edit_form.php:306 msgid "Aggregate by" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:278 -#: ../../operation/netflow/nf_live_view.php:294 +#: ../../godmode/netflow/nf_edit_form.php:323 +#: ../../operation/netflow/nf_live_view.php:303 msgid "Dst Ip" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:286 -#: ../../operation/netflow/nf_live_view.php:294 +#: ../../godmode/netflow/nf_edit_form.php:331 +#: ../../operation/netflow/nf_live_view.php:303 msgid "" "Destination IP. A comma separated list of destination ip. If we leave the " "field blank, will show all ip. Example filter by ip:" "
25.46.157.214,160.253.135.249" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:290 -#: ../../operation/netflow/nf_live_view.php:302 +#: ../../godmode/netflow/nf_edit_form.php:335 +#: ../../operation/netflow/nf_live_view.php:311 msgid "Src Ip" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:298 -#: ../../operation/netflow/nf_live_view.php:302 +#: ../../godmode/netflow/nf_edit_form.php:343 +#: ../../operation/netflow/nf_live_view.php:311 msgid "" "Source IP. A comma separated list of source ip. If we leave the field blank, " "will show all ip. Example filter by ip:
25.46.157.214,160.253.135.249" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:310 -#: ../../operation/netflow/nf_live_view.php:313 +#: ../../godmode/netflow/nf_edit_form.php:355 +#: ../../operation/netflow/nf_live_view.php:322 msgid "" "Destination port. A comma separated list of destination ports. If we leave " "the field blank, will show all ports. Example filter by ports 80 and 22:" "
80,22" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:322 -#: ../../operation/netflow/nf_live_view.php:321 +#: ../../godmode/netflow/nf_edit_form.php:367 +#: ../../operation/netflow/nf_live_view.php:330 msgid "" "Source port. A comma separated list of source ports. If we leave the field " "blank, will show all ports. Example filter by ports 80 and 22:
80,22" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:327 +#: ../../godmode/netflow/nf_edit_form.php:372 msgid "Advanced filters" msgstr "" +#: ../../godmode/netflow/nf_edit_form.php:380 +#: ../../operation/netflow/nf_live_view.php:377 +msgid "Enable Netflow monitoring" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:389 +#: ../../operation/netflow/nf_live_view.php:377 +msgid "" +"Allows you to create an agent that monitors the traffic volume of this " +"filter. It also creates a module that measures if the traffic of any IP of " +"this filter exceeds a certain threshold. A text type module will be created " +"with the traffic rate for each IP within this filter every five minutes (the " +"10 IP's with the most traffic). Only available for Enterprise version." +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:395 +#: ../../operation/netflow/nf_live_view.php:391 +msgid "Netflow monitoring interval" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:403 +#: ../../operation/netflow/nf_live_view.php:391 +msgid "Netflow monitoring interval in secs." +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:407 +#: ../../operation/netflow/nf_live_view.php:401 +msgid "Maximum traffic value of the filter" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:415 +#: ../../operation/netflow/nf_live_view.php:401 +#, php-format +msgid "" +"Specifies the maximum rate (in bytes/sec) of traffic in the filter. It is " +"then used to calculate the % of maximum traffic per IP." +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:421 +#: ../../operation/netflow/nf_live_view.php:415 +#, php-format +msgid "CRITICAL threshold for the maximum % of traffic for an IP." +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:431 +#: ../../operation/netflow/nf_live_view.php:415 +msgid "" +"If this % is exceeded by any IP within the filter, a CRITICAL status will be " +"generated." +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:435 +#, php-format +msgid "WARNING threshold for the maximum % of traffic for an IP." +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:445 +#: ../../operation/netflow/nf_live_view.php:425 +msgid "" +"If this % is exceeded by any IP within the filter, a WARNING status will be " +"generated." +msgstr "" + #: ../../godmode/snmpconsole/snmp_trap_generator.php:38 msgid "SNMP Trap generator" msgstr "" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 -#: ../../godmode/snmpconsole/snmp_filters.php:59 -#: ../../operation/snmpconsole/snmp_browser.php:90 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 -msgid "SMNP" -msgstr "" - #: ../../godmode/snmpconsole/snmp_trap_generator.php:68 msgid "Empty parameters" msgstr "" @@ -36700,9 +36939,9 @@ msgid "Custom Value/Enterprise String" msgstr "" #: ../../godmode/snmpconsole/snmp_alert.php:1908 -#: ../../include/functions_reporting_html.php:5373 -#: ../../include/functions_reporting_html.php:5495 -#: ../../include/functions_treeview.php:441 +#: ../../include/functions_reporting_html.php:5401 +#: ../../include/functions_reporting_html.php:5523 +#: ../../include/functions_treeview.php:445 msgid "Times fired" msgstr "" @@ -36722,7 +36961,7 @@ msgstr "" msgid "Do you want delete the selected alerts?" msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:2355 +#: ../../godmode/snmpconsole/snmp_alert.php:2343 msgid "Add action " msgstr "" @@ -36809,151 +37048,151 @@ msgstr "" msgid "Private Enterprise Numbers" msgstr "" -#: ../../godmode/menu.php:183 +#: ../../godmode/menu.php:182 msgid "Remote components" msgstr "" -#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:246 +#: ../../godmode/menu.php:208 ../../godmode/massive/massive_operations.php:246 msgid "Agents operations" msgstr "" -#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:258 +#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:258 msgid "Modules operations" msgstr "" -#: ../../godmode/menu.php:211 ../../godmode/massive/massive_operations.php:270 +#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:270 msgid "Plugins operations" msgstr "" -#: ../../godmode/menu.php:213 ../../godmode/massive/massive_operations.php:234 +#: ../../godmode/menu.php:212 ../../godmode/massive/massive_operations.php:234 msgid "Users operations" msgstr "" -#: ../../godmode/menu.php:216 ../../godmode/massive/massive_operations.php:222 +#: ../../godmode/menu.php:215 ../../godmode/massive/massive_operations.php:222 msgid "Alerts operations" msgstr "" -#: ../../godmode/menu.php:234 +#: ../../godmode/menu.php:233 msgid "Event filters" msgstr "" -#: ../../godmode/menu.php:239 ../../godmode/events/events.php:95 +#: ../../godmode/menu.php:238 ../../godmode/events/events.php:95 #: ../../godmode/events/events.php:110 msgid "Custom columns" msgstr "" -#: ../../godmode/menu.php:270 +#: ../../godmode/menu.php:268 msgid "List of Alerts" msgstr "" -#: ../../godmode/menu.php:285 +#: ../../godmode/menu.php:283 msgid "Special days list" msgstr "" -#: ../../godmode/menu.php:290 +#: ../../godmode/menu.php:288 ../../include/functions_groups.php:267 msgid "SNMP alerts" msgstr "" -#: ../../godmode/menu.php:307 +#: ../../godmode/menu.php:305 msgid "Manage servers" msgstr "" -#: ../../godmode/menu.php:314 +#: ../../godmode/menu.php:312 msgid "Manage consoles" msgstr "" -#: ../../godmode/menu.php:325 +#: ../../godmode/menu.php:323 msgid "Register Plugin" msgstr "" -#: ../../godmode/menu.php:351 +#: ../../godmode/menu.php:349 #: ../../include/class/OrderInterpreter.class.php:141 msgid "General Setup" msgstr "" -#: ../../godmode/menu.php:376 ../../godmode/setup/setup.php:165 +#: ../../godmode/menu.php:374 ../../godmode/setup/setup.php:165 #: ../../godmode/setup/setup.php:296 msgid "Sflow" msgstr "" -#: ../../godmode/menu.php:381 ../../godmode/setup/setup.php:191 +#: ../../godmode/menu.php:379 ../../godmode/setup/setup.php:191 #: ../../godmode/setup/setup.php:302 -#: ../../operation/agentes/ver_agente.php:1623 -#: ../../operation/agentes/ver_agente.php:1897 +#: ../../operation/agentes/ver_agente.php:1619 +#: ../../operation/agentes/ver_agente.php:1893 msgid "eHorus" msgstr "" -#: ../../godmode/menu.php:384 ../../godmode/setup/setup.php:179 +#: ../../godmode/menu.php:382 ../../godmode/setup/setup.php:179 #: ../../godmode/setup/setup.php:308 ../../godmode/setup/setup_integria.php:681 msgid "Integria IMS" msgstr "" -#: ../../godmode/menu.php:392 +#: ../../godmode/menu.php:390 msgid "Websocket Engine" msgstr "" -#: ../../godmode/menu.php:395 ../../godmode/setup/setup.php:238 +#: ../../godmode/menu.php:393 ../../godmode/setup/setup.php:238 #: ../../godmode/setup/setup.php:336 -#: ../../operation/agentes/ver_agente.php:1713 -#: ../../operation/agentes/ver_agente.php:1914 +#: ../../operation/agentes/ver_agente.php:1709 +#: ../../operation/agentes/ver_agente.php:1910 msgid "External Tools" msgstr "" -#: ../../godmode/menu.php:398 +#: ../../godmode/menu.php:396 msgid "Welcome Tips" msgstr "" -#: ../../godmode/menu.php:402 ../../godmode/setup/setup.php:320 +#: ../../godmode/menu.php:400 ../../godmode/setup/setup.php:320 msgid "Map conections GIS" msgstr "" -#: ../../godmode/menu.php:430 +#: ../../godmode/menu.php:428 msgid "Diagnostic info" msgstr "" -#: ../../godmode/menu.php:435 ../../godmode/setup/news.php:43 +#: ../../godmode/menu.php:433 ../../godmode/setup/news.php:43 msgid "Site news" msgstr "" -#: ../../godmode/menu.php:444 +#: ../../godmode/menu.php:442 msgid "DB Schema Check" msgstr "" -#: ../../godmode/menu.php:447 +#: ../../godmode/menu.php:445 msgid "DB Interface" msgstr "" -#: ../../godmode/menu.php:456 ../../include/class/EventSound.class.php:230 -msgid "Accoustic console setup" +#: ../../godmode/menu.php:454 ../../include/class/EventSound.class.php:230 +msgid "Acoustic console setup" msgstr "" -#: ../../godmode/menu.php:533 +#: ../../godmode/menu.php:531 msgid "Extension manager view" msgstr "" -#: ../../godmode/menu.php:569 +#: ../../godmode/menu.php:567 #: ../../include/class/OrderInterpreter.class.php:339 msgid "Warp Update" msgstr "" -#: ../../godmode/menu.php:574 +#: ../../godmode/menu.php:572 msgid "Update offline" msgstr "" -#: ../../godmode/menu.php:577 +#: ../../godmode/menu.php:575 msgid "Update online" msgstr "" -#: ../../godmode/menu.php:583 +#: ../../godmode/menu.php:581 msgid "Warp journal" msgstr "" -#: ../../godmode/menu.php:592 +#: ../../godmode/menu.php:590 #: ../../godmode/module_library/module_library_view.php:81 msgid "Module library" msgstr "" -#: ../../godmode/menu.php:599 +#: ../../godmode/menu.php:597 #: ../../godmode/module_library/module_library_view.php:54 #: ../../godmode/module_library/module_library_view.php:68 #: ../../godmode/module_library/module_library_view.php:104 @@ -37252,10 +37491,10 @@ msgstr "" #: ../../godmode/massive/massive_delete_action_alerts.php:240 #: ../../godmode/massive/massive_add_action_alerts.php:219 -#: ../../godmode/alerts/alert_templates.php:139 -#: ../../godmode/alerts/alert_templates.php:188 -#: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/alerts/alert_templates.php:142 +#: ../../godmode/alerts/alert_templates.php:192 +#: ../../godmode/alerts/alert_templates.php:215 +#: ../../godmode/alerts/alert_templates.php:236 msgid "Alert templates" msgstr "" @@ -37277,7 +37516,7 @@ msgstr "" #: ../../godmode/massive/massive_delete_alerts.php:113 #: ../../godmode/massive/massive_add_action_alerts.php:75 #: ../../include/functions_visual_map.php:2568 -#: ../../include/functions_visual_map.php:2914 +#: ../../include/functions_visual_map.php:2917 msgid "No agents selected" msgstr "" @@ -37365,29 +37604,29 @@ msgstr "" #: ../../godmode/massive/massive_edit_users.php:209 #: ../../godmode/massive/massive_delete_profiles.php:154 #: ../../godmode/massive/massive_add_profiles.php:204 -#: ../../include/functions_reporting.php:12397 +#: ../../include/functions_reporting.php:12470 #: ../../operation/search_results.php:94 msgid "Users" msgstr "" #: ../../godmode/massive/massive_edit_users.php:379 -#: ../../operation/users/user_edit.php:646 +#: ../../operation/users/user_edit.php:643 msgid "This will activate autorefresh in selected pages" msgstr "" #: ../../godmode/massive/massive_edit_users.php:443 -#: ../../operation/users/user_edit.php:705 +#: ../../operation/users/user_edit.php:702 msgid "List of pages with autorefresh" msgstr "" #: ../../godmode/massive/massive_edit_users.php:452 -#: ../../operation/users/user_edit.php:714 +#: ../../operation/users/user_edit.php:711 msgid "Time autorefresh" msgstr "" #: ../../godmode/massive/massive_add_alerts.php:105 #: ../../godmode/massive/massive_delete_alerts.php:108 -#: ../../operation/agentes/alerts_status.php:566 +#: ../../operation/agentes/alerts_status.php:576 #: ../../operation/agentes/alerts_status.functions.php:54 msgid "No alert selected" msgstr "" @@ -37503,63 +37742,63 @@ msgstr "" msgid "Configuration files cannot be deleted" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:382 +#: ../../godmode/massive/massive_edit_agents.php:399 #, php-format msgid "Agents updated successfully (%d)" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:397 +#: ../../godmode/massive/massive_edit_agents.php:414 #, php-format msgid "Agents cannot be updated (%d), ids (%s)" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:412 +#: ../../godmode/massive/massive_edit_agents.php:429 #, php-format msgid "Agent ID: %s cannot be updated custom fields (%s)" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:432 +#: ../../godmode/massive/massive_edit_agents.php:449 #, php-format msgid "Agent ID: %s cannot be updated %s secondary groups (%s)" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:668 +#: ../../godmode/massive/massive_edit_agents.php:685 msgid "Cascade protection" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:940 +#: ../../godmode/massive/massive_edit_agents.php:957 msgid "" "If the remote configuration is enabled, it will also go into standby mode " "when disabling it." msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:953 +#: ../../godmode/massive/massive_edit_agents.php:970 #: ../../include/class/EventSound.class.php:344 msgid "Active" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:969 +#: ../../godmode/massive/massive_edit_agents.php:986 msgid "Delete available remote configurations" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:1025 +#: ../../godmode/massive/massive_edit_agents.php:1042 msgid "Without status" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:1052 +#: ../../godmode/massive/massive_edit_agents.php:1069 #: ../../include/lib/Dashboard/Widgets/maps_status.php:371 msgid "Bad" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:1072 +#: ../../godmode/massive/massive_edit_agents.php:1089 msgid "Ignore new GIS data:" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:1110 +#: ../../godmode/massive/massive_edit_agents.php:1127 msgid "The agent still runs but the alerts and events will be stop" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:1130 +#: ../../godmode/massive/massive_edit_agents.php:1146 #, php-format msgid "" "This mode allow %s to disable all modules of this agent while the selected " @@ -37607,15 +37846,11 @@ msgid "Error updating the modules (maybe there was no field to update)" msgstr "" #: ../../godmode/massive/massive_edit_modules.php:506 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:419 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:423 msgid "Filter agents" msgstr "" -#: ../../godmode/massive/massive_edit_modules.php:811 -msgid "SMNP community" -msgstr "" - -#: ../../godmode/consoles/consoles.php:59 +#: ../../godmode/consoles/consoles.php:67 msgid "" "If you want to have your consoles registered, you must define them by " "editing config.php in each individual console and wait for cron to run in " @@ -37653,7 +37888,7 @@ msgid "Hide" msgstr "" #: ../../godmode/alerts/alert_actions.php:79 -#: ../../include/functions_reporting.php:3226 +#: ../../include/functions_reporting.php:3235 msgid "Alert actions" msgstr "" @@ -37708,12 +37943,12 @@ msgid "" "no other action is executed" msgstr "" -#: ../../godmode/alerts/alert_list.list.php:1061 +#: ../../godmode/alerts/alert_list.list.php:1060 msgid "View alert advanced details" msgstr "" -#: ../../godmode/alerts/alert_list.list.php:1081 -#: ../../include/functions_reporting_html.php:3441 +#: ../../godmode/alerts/alert_list.list.php:1080 +#: ../../include/functions_reporting_html.php:3469 msgid "No alerts defined" msgstr "" @@ -37753,12 +37988,12 @@ msgid "Alert commands" msgstr "" #: ../../godmode/alerts/alert_commands.php:657 -#: ../../include/functions_alerts.php:2659 +#: ../../include/functions_alerts.php:2660 msgid "No name specified" msgstr "" #: ../../godmode/alerts/alert_commands.php:661 -#: ../../include/functions_alerts.php:2654 +#: ../../include/functions_alerts.php:2655 msgid "No command specified" msgstr "" @@ -37770,20 +38005,20 @@ msgstr "" msgid "No alert commands configured" msgstr "" -#: ../../godmode/alerts/alert_templates.php:273 +#: ../../godmode/alerts/alert_templates.php:277 #, php-format msgid "" "This node is configured with centralized mode. All alert templates " "information is read only. Go to %s to manage it." msgstr "" -#: ../../godmode/alerts/alert_templates.php:438 +#: ../../godmode/alerts/alert_templates.php:442 msgid "" "You cannot edit this alert template, You don't have the permission to edit " "All group." msgstr "" -#: ../../godmode/alerts/alert_templates.php:505 +#: ../../godmode/alerts/alert_templates.php:509 msgid "No alert templates defined" msgstr "" @@ -37800,6 +38035,12 @@ msgstr "" msgid "Create Command" msgstr "" +#: ../../godmode/alerts/configure_alert_action.php:287 +msgid "" +"An alert action is executed only once within this time interval, regardless " +"of how many times the alert is triggered." +msgstr "" + #: ../../godmode/alerts/configure_alert_action.php:320 msgid "Triggering" msgstr "" @@ -37827,7 +38068,7 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:104 #: ../../godmode/alerts/configure_alert_template.php:135 #: ../../godmode/alerts/configure_alert_template.php:174 -#: ../../include/functions_menu.php:569 +#: ../../include/functions_menu.php:571 msgid "Configure alert template" msgstr "" @@ -37852,6 +38093,12 @@ msgstr "" msgid "No template name specified" msgstr "" +#: ../../godmode/alerts/configure_alert_template.php:691 +msgid "" +"Reset the alert counter within the configured period if there is no manual " +"recovery or validation of the alert." +msgstr "" + #: ../../godmode/alerts/configure_alert_template.php:722 msgid "" "Unless they're left blank, the fields from the action will override those " @@ -37893,7 +38140,7 @@ msgid "No wizard" msgstr "" #: ../../godmode/alerts/configure_alert_template.php:1266 -#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1504 +#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1547 msgid "The alert would fire when the value matches " msgstr "" @@ -37903,17 +38150,17 @@ msgid "The alert would fire when the value doesn\\'t match %s" msgstr "" #: ../../godmode/alerts/configure_alert_template.php:1268 -#: ../../godmode/alerts/alert_view.php:181 ../../include/functions_ui.php:1493 +#: ../../godmode/alerts/alert_view.php:181 ../../include/functions_ui.php:1536 msgid "The alert would fire when the value is " msgstr "" #: ../../godmode/alerts/configure_alert_template.php:1269 -#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1498 +#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1541 msgid "The alert would fire when the value is not " msgstr "" #: ../../godmode/alerts/configure_alert_template.php:1270 -#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1516 +#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1559 msgid "" "The alert would fire when the value is between and " "" @@ -37936,12 +38183,12 @@ msgid "The alert would fire when the value is above " msgstr "" #: ../../godmode/alerts/configure_alert_template.php:1274 -#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1535 +#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1578 msgid "The alert would fire when the module is in warning status" msgstr "" #: ../../godmode/alerts/configure_alert_template.php:1275 -#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1540 +#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1583 msgid "The alert would fire when the module is in critical status" msgstr "" @@ -37988,12 +38235,12 @@ msgstr "" msgid "Stand by" msgstr "" -#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1507 +#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1550 msgid "" "The alert would fire when the value doesn't match " msgstr "" -#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1519 +#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1562 msgid "" "The alert would fire when the value is not between " "and " @@ -38074,6 +38321,10 @@ msgstr "" msgid "Create Template" msgstr "" +#: ../../godmode/alerts/alert_list.builder.php:169 +msgid "It takes precedence over the action's threshold configuration." +msgstr "" + #: ../../godmode/alerts/alert_list.builder.php:199 msgid "Finish and view cluster" msgstr "" @@ -38107,12 +38358,12 @@ msgid "Licence" msgstr "" #: ../../godmode/setup/license.php:158 -#: ../../include/class/Diagnostics.class.php:1175 +#: ../../include/class/Diagnostics.class.php:1179 msgid "Customer key" msgstr "" #: ../../godmode/setup/license.php:183 -#: ../../include/class/Diagnostics.class.php:1183 +#: ../../include/class/Diagnostics.class.php:1187 msgid "Platform Limit" msgstr "" @@ -38128,22 +38379,22 @@ msgid "modules" msgstr "" #: ../../godmode/setup/license.php:196 -#: ../../include/class/Diagnostics.class.php:1187 +#: ../../include/class/Diagnostics.class.php:1191 msgid "Current Platform Count" msgstr "" #: ../../godmode/setup/license.php:209 -#: ../../include/class/Diagnostics.class.php:1191 +#: ../../include/class/Diagnostics.class.php:1195 msgid "Current Platform Count (enabled: items)" msgstr "" #: ../../godmode/setup/license.php:222 -#: ../../include/class/Diagnostics.class.php:1195 +#: ../../include/class/Diagnostics.class.php:1199 msgid "Current Platform Count (disabled: items)" msgstr "" #: ../../godmode/setup/license.php:235 -#: ../../include/class/Diagnostics.class.php:1199 +#: ../../include/class/Diagnostics.class.php:1203 msgid "License Mode" msgstr "" @@ -38152,7 +38403,7 @@ msgid "NMS" msgstr "" #: ../../godmode/setup/license.php:274 -#: ../../include/class/Diagnostics.class.php:1211 +#: ../../include/class/Diagnostics.class.php:1215 msgid "Licensed to" msgstr "" @@ -38202,40 +38453,44 @@ msgstr "" msgid "Site news management" msgstr "" -#: ../../godmode/setup/news.php:169 ../../godmode/setup/links.php:105 +#: ../../godmode/setup/news.php:173 ../../godmode/setup/links.php:105 msgid "Name error" msgstr "" -#: ../../godmode/setup/news.php:234 +#: ../../godmode/setup/news.php:238 msgid "Modal screen" msgstr "" -#: ../../godmode/setup/news.php:247 +#: ../../godmode/setup/news.php:251 msgid "Expire" msgstr "" -#: ../../godmode/setup/news.php:260 ../../godmode/setup/news.php:353 +#: ../../godmode/setup/news.php:264 ../../godmode/setup/news.php:357 msgid "Expiration" msgstr "" -#: ../../godmode/setup/news.php:344 +#: ../../godmode/setup/news.php:348 msgid "There are no defined news" msgstr "" -#: ../../godmode/setup/news.php:351 -#: ../../operation/agentes/estado_generalagente.php:749 +#: ../../godmode/setup/news.php:355 +#: ../../operation/agentes/estado_generalagente.php:718 msgid "Author" msgstr "" -#: ../../godmode/setup/news.php:371 +#: ../../godmode/setup/news.php:364 ../../general/logon_ok.php:216 +msgid "Welcome to Pandora FMS Console" +msgstr "" + +#: ../../godmode/setup/news.php:370 msgid "Modal" msgstr "" -#: ../../godmode/setup/news.php:373 +#: ../../godmode/setup/news.php:372 msgid "Board" msgstr "" -#: ../../godmode/setup/news.php:384 +#: ../../godmode/setup/news.php:383 msgid "Expired" msgstr "" @@ -38264,7 +38519,7 @@ msgid "Pandora Websocket Engine" msgstr "" #: ../../godmode/setup/setup.php:344 -#: ../../include/class/TipsWindow.class.php:493 +#: ../../include/class/TipsWindow.class.php:505 msgid "Create tip" msgstr "" @@ -38281,7 +38536,7 @@ msgid "Correct update the setup options" msgstr "" #: ../../godmode/setup/setup_ehorus.php:67 -#: ../../include/functions_config.php:1812 +#: ../../include/functions_config.php:1824 msgid "Enable eHorus" msgstr "" @@ -38302,6 +38557,17 @@ msgstr "" msgid "Request timeout" msgstr "" +#: ../../godmode/setup/setup_ehorus.php:135 +#: ../../godmode/setup/setup_integria.php:665 +msgid "Connection its OK" +msgstr "" + +#: ../../godmode/setup/setup_ehorus.php:139 +#: ../../godmode/setup/setup_websocket_engine.php:89 +#: ../../godmode/setup/setup_integria.php:652 +msgid "Test connection" +msgstr "" + #: ../../godmode/setup/setup_ehorus.php:175 msgid "Remote Management System" msgstr "" @@ -38343,24 +38609,24 @@ msgstr "" #: ../../godmode/setup/setup_ehorus.php:297 #: ../../godmode/setup/setup_integria.php:825 #: ../../godmode/setup/setup_integria.php:906 -#: ../../operation/users/user_edit.php:1420 -#: ../../operation/users/user_edit.php:1498 +#: ../../operation/users/user_edit.php:1417 +#: ../../operation/users/user_edit.php:1495 msgid "Empty user or password" msgstr "" #: ../../godmode/setup/setup_ehorus.php:298 #: ../../godmode/setup/setup_integria.php:826 #: ../../godmode/setup/setup_integria.php:907 -#: ../../operation/users/user_edit.php:1421 -#: ../../operation/users/user_edit.php:1499 +#: ../../operation/users/user_edit.php:1418 +#: ../../operation/users/user_edit.php:1496 msgid "User not found" msgstr "" #: ../../godmode/setup/setup_ehorus.php:299 #: ../../godmode/setup/setup_integria.php:827 #: ../../godmode/setup/setup_integria.php:908 -#: ../../operation/users/user_edit.php:1422 -#: ../../operation/users/user_edit.php:1500 +#: ../../operation/users/user_edit.php:1419 +#: ../../operation/users/user_edit.php:1497 msgid "Invalid password" msgstr "" @@ -38370,55 +38636,53 @@ msgid "Data storage path" msgstr "" #: ../../godmode/setup/setup_sflow.php:50 -#: ../../godmode/setup/setup_netflow.php:50 -#: ../../include/functions_config.php:1540 -#: ../../include/functions_config.php:1583 +#: ../../include/functions_config.php:1595 msgid "Daemon interval" msgstr "" #: ../../godmode/setup/setup_sflow.php:55 -#: ../../godmode/setup/setup_netflow.php:55 -#: ../../include/functions_config.php:1544 -#: ../../include/functions_config.php:1587 +#: ../../godmode/setup/setup_netflow.php:51 +#: ../../include/functions_config.php:1556 +#: ../../include/functions_config.php:1599 msgid "Daemon binary path" msgstr "" #: ../../godmode/setup/setup_sflow.php:60 -#: ../../godmode/setup/setup_netflow.php:60 -#: ../../include/functions_config.php:1548 -#: ../../include/functions_config.php:1591 +#: ../../godmode/setup/setup_netflow.php:56 +#: ../../include/functions_config.php:1560 +#: ../../include/functions_config.php:1603 msgid "Nfdump binary path" msgstr "" #: ../../godmode/setup/setup_sflow.php:65 -#: ../../godmode/setup/setup_netflow.php:65 -#: ../../include/functions_config.php:1552 -#: ../../include/functions_config.php:1595 +#: ../../godmode/setup/setup_netflow.php:61 +#: ../../include/functions_config.php:1564 +#: ../../include/functions_config.php:1607 msgid "Nfexpire binary path" msgstr "" #: ../../godmode/setup/setup_sflow.php:70 -#: ../../godmode/setup/setup_netflow.php:70 -#: ../../include/functions_config.php:1556 -#: ../../include/functions_config.php:1599 +#: ../../godmode/setup/setup_netflow.php:66 +#: ../../include/functions_config.php:1568 +#: ../../include/functions_config.php:1611 msgid "Maximum chart resolution" msgstr "" #: ../../godmode/setup/setup_sflow.php:80 -#: ../../include/functions_config.php:1607 +#: ../../include/functions_config.php:1619 msgid "Sflow max lifetime" msgstr "" #: ../../godmode/setup/setup_sflow.php:84 -#: ../../godmode/setup/setup_netflow.php:84 -#: ../../operation/netflow/nf_live_view.php:339 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../operation/netflow/nf_live_view.php:348 msgid "IP address resolution can take a lot of time" msgstr "" #: ../../godmode/setup/setup_sflow.php:86 -#: ../../godmode/setup/setup_netflow.php:86 -#: ../../include/functions_config.php:1568 -#: ../../include/functions_config.php:1611 +#: ../../godmode/setup/setup_netflow.php:82 +#: ../../include/functions_config.php:1580 +#: ../../include/functions_config.php:1623 msgid "Name resolution for IP address" msgstr "" @@ -38435,7 +38699,7 @@ msgid "Bind port" msgstr "" #: ../../godmode/setup/setup_websocket_engine.php:71 -#: ../../include/functions_config.php:1964 +#: ../../include/functions_config.php:1976 msgid "WebSocket proxy url" msgstr "" @@ -38446,11 +38710,11 @@ msgid "" "only. Go to %s to manage them." msgstr "" -#: ../../godmode/setup/os.list.php:163 +#: ../../godmode/setup/os.list.php:162 msgid "There are no defined operating systems" msgstr "" -#: ../../godmode/setup/os.list.php:170 +#: ../../godmode/setup/os.list.php:169 msgid "Create OS" msgstr "" @@ -38536,9 +38800,9 @@ msgstr "" #: ../../godmode/setup/gis_step_2.php:254 #: ../../godmode/reporting/visual_console_builder.elements.php:199 -#: ../../include/functions_visual_map_editor.php:1385 -#: ../../include/functions_visual_map.php:4200 -#: ../../operation/visual_console/view.php:316 +#: ../../include/functions_visual_map_editor.php:1443 +#: ../../include/functions_visual_map.php:4209 +#: ../../operation/visual_console/view.php:318 msgid "Static Image" msgstr "" @@ -38587,24 +38851,24 @@ msgid "Corners of the area of the image" msgstr "" #: ../../godmode/setup/gis_step_2.php:364 -#: ../../include/rest-api/models/VisualConsole/Item.php:1961 +#: ../../include/rest-api/models/VisualConsole/Item.php:1964 msgid "Left" msgstr "" #: ../../godmode/setup/gis_step_2.php:371 -#: ../../include/rest-api/models/VisualConsole/Item.php:1958 +#: ../../include/rest-api/models/VisualConsole/Item.php:1961 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317 msgid "Bottom" msgstr "" #: ../../godmode/setup/gis_step_2.php:378 -#: ../../include/rest-api/models/VisualConsole/Item.php:1960 +#: ../../include/rest-api/models/VisualConsole/Item.php:1963 msgid "Right" msgstr "" #: ../../godmode/setup/gis_step_2.php:385 -#: ../../include/rest-api/models/VisualConsole/Item.php:1959 +#: ../../include/rest-api/models/VisualConsole/Item.php:1962 msgid "Top" msgstr "" @@ -38699,7 +38963,7 @@ msgid "Integria IMS API is not reachable" msgstr "" #: ../../godmode/setup/setup_integria.php:262 -#: ../../include/functions_config.php:1850 +#: ../../include/functions_config.php:1862 msgid "Enable Integria IMS" msgstr "" @@ -38770,272 +39034,272 @@ msgstr "" msgid "Unsucessful save the snmp translation." msgstr "" -#: ../../godmode/setup/setup_netflow.php:80 -#: ../../include/functions_config.php:1564 +#: ../../godmode/setup/setup_netflow.php:76 +#: ../../include/functions_config.php:1576 msgid "Netflow max lifetime" msgstr "" -#: ../../godmode/setup/setup_visuals.php:108 +#: ../../godmode/setup/setup_visuals.php:112 msgid "Click to display lateral menus" msgstr "" -#: ../../godmode/setup/setup_visuals.php:120 +#: ../../godmode/setup/setup_visuals.php:124 msgid "Paginated module view" msgstr "" -#: ../../godmode/setup/setup_visuals.php:152 -#: ../../include/functions_config.php:1347 +#: ../../godmode/setup/setup_visuals.php:156 +#: ../../include/functions_config.php:1363 msgid "Service label font size" msgstr "" -#: ../../godmode/setup/setup_visuals.php:156 +#: ../../godmode/setup/setup_visuals.php:160 msgid "Space between items in Service maps" msgstr "" -#: ../../godmode/setup/setup_visuals.php:235 +#: ../../godmode/setup/setup_visuals.php:239 msgid "Colors" msgstr "" -#: ../../godmode/setup/setup_visuals.php:236 +#: ../../godmode/setup/setup_visuals.php:240 msgid "Faces" msgstr "" -#: ../../godmode/setup/setup_visuals.php:237 +#: ../../godmode/setup/setup_visuals.php:241 msgid "Colors and text" msgstr "" -#: ../../godmode/setup/setup_visuals.php:339 -#: ../../include/functions_config.php:1038 +#: ../../godmode/setup/setup_visuals.php:343 +#: ../../include/functions_config.php:1050 msgid "Style template" msgstr "" -#: ../../godmode/setup/setup_visuals.php:357 -#: ../../include/functions_config.php:1058 +#: ../../godmode/setup/setup_visuals.php:361 +#: ../../include/functions_config.php:1070 msgid "Status icon set" msgstr "" -#: ../../godmode/setup/setup_visuals.php:602 -#: ../../include/functions_config.php:1094 +#: ../../godmode/setup/setup_visuals.php:606 +#: ../../include/functions_config.php:1106 msgid "Custom documentation logo" msgstr "" -#: ../../godmode/setup/setup_visuals.php:642 -#: ../../include/functions_config.php:1098 +#: ../../godmode/setup/setup_visuals.php:646 +#: ../../include/functions_config.php:1110 msgid "Custom support logo" msgstr "" -#: ../../godmode/setup/setup_visuals.php:680 -#: ../../include/functions_config.php:1102 -#: ../../include/functions_config.php:1106 +#: ../../godmode/setup/setup_visuals.php:684 +#: ../../include/functions_config.php:1114 +#: ../../include/functions_config.php:1118 msgid "Custom networkmap center logo" msgstr "" -#: ../../godmode/setup/setup_visuals.php:720 +#: ../../godmode/setup/setup_visuals.php:724 msgid "Custom mobile console icon" msgstr "" -#: ../../godmode/setup/setup_visuals.php:814 +#: ../../godmode/setup/setup_visuals.php:818 msgid "Disable logo in graphs" msgstr "" -#: ../../godmode/setup/setup_visuals.php:832 +#: ../../godmode/setup/setup_visuals.php:836 msgid "Disable helps" msgstr "" -#: ../../godmode/setup/setup_visuals.php:842 -#: ../../include/functions_config.php:1286 +#: ../../godmode/setup/setup_visuals.php:846 +#: ../../include/functions_config.php:1302 msgid "Fixed header" msgstr "" -#: ../../godmode/setup/setup_visuals.php:854 +#: ../../godmode/setup/setup_visuals.php:858 msgid "Automatically hide submenu" msgstr "" -#: ../../godmode/setup/setup_visuals.php:901 -#: ../../include/functions_config.php:1250 +#: ../../godmode/setup/setup_visuals.php:905 +#: ../../include/functions_config.php:1266 msgid "GIS Labels" msgstr "" -#: ../../godmode/setup/setup_visuals.php:911 -#: ../../include/functions_config.php:1258 +#: ../../godmode/setup/setup_visuals.php:915 +#: ../../include/functions_config.php:1274 msgid "Default icon in GIS" msgstr "" -#: ../../godmode/setup/setup_visuals.php:920 +#: ../../godmode/setup/setup_visuals.php:924 msgid "Agent icon group" msgstr "" -#: ../../godmode/setup/setup_visuals.php:970 +#: ../../godmode/setup/setup_visuals.php:974 msgid "Graphs font size" msgstr "" -#: ../../godmode/setup/setup_visuals.php:989 +#: ../../godmode/setup/setup_visuals.php:993 msgid "Show unit along with value in reports" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1000 -#: ../../include/functions_config.php:1226 -#: ../../include/functions_config.php:1230 +#: ../../godmode/setup/setup_visuals.php:1004 +#: ../../include/functions_config.php:1242 +#: ../../include/functions_config.php:1246 msgid "Agent size text" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1007 -#: ../../godmode/setup/setup_visuals.php:1029 +#: ../../godmode/setup/setup_visuals.php:1011 +#: ../../godmode/setup/setup_visuals.php:1033 msgid "Small" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1022 -#: ../../include/functions_config.php:1234 +#: ../../godmode/setup/setup_visuals.php:1026 +#: ../../include/functions_config.php:1250 msgid "Module size text" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1046 -#: ../../include/functions_config.php:1238 -#: ../../include/functions_config.php:1242 +#: ../../godmode/setup/setup_visuals.php:1050 +#: ../../include/functions_config.php:1254 +#: ../../include/functions_config.php:1258 msgid "Description size text" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1057 -#: ../../include/functions_config.php:1246 +#: ../../godmode/setup/setup_visuals.php:1061 +#: ../../include/functions_config.php:1262 msgid "Item title size text" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1109 +#: ../../godmode/setup/setup_visuals.php:1113 msgid "Graph color #" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1123 +#: ../../godmode/setup/setup_visuals.php:1127 msgid "Data precision" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1141 +#: ../../godmode/setup/setup_visuals.php:1145 msgid "Data precision in graphs" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1172 -#: ../../include/functions_config.php:1314 +#: ../../godmode/setup/setup_visuals.php:1176 +#: ../../include/functions_config.php:1330 msgid "Default line thickness for the Custom Graph." msgstr "" -#: ../../godmode/setup/setup_visuals.php:1299 +#: ../../godmode/setup/setup_visuals.php:1303 msgid "Zoom graphs" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1328 +#: ../../godmode/setup/setup_visuals.php:1332 msgid "Classic view" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1329 +#: ../../godmode/setup/setup_visuals.php:1333 msgid "View of favorites" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1384 +#: ../../godmode/setup/setup_visuals.php:1388 msgid "Type of view of visual consoles" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1398 +#: ../../godmode/setup/setup_visuals.php:1402 msgid "Number of favorite visual consoles to show in the menu" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1403 -#: ../../include/functions_config.php:1214 +#: ../../godmode/setup/setup_visuals.php:1407 +#: ../../include/functions_config.php:1226 msgid "Default line thickness for the Visual Console" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1437 +#: ../../godmode/setup/setup_visuals.php:1452 msgid "Number of favorite services to show in the menu" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1535 +#: ../../godmode/setup/setup_visuals.php:1550 msgid "" "The dir of custom logos is in your www Console in 'images/custom_logo'. You " "can upload more files (ONLY JPEG AND PNG) in upload tool in console." msgstr "" -#: ../../godmode/setup/setup_visuals.php:1724 -#: ../../include/functions_config.php:1298 +#: ../../godmode/setup/setup_visuals.php:1739 +#: ../../include/functions_config.php:1314 msgid "Networkmap max width" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1747 +#: ../../godmode/setup/setup_visuals.php:1762 msgid "Show empty groups in group view" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1773 -#: ../../include/functions_config.php:1520 +#: ../../godmode/setup/setup_visuals.php:1788 +#: ../../include/functions_config.php:1536 msgid "Decimal separator" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1788 +#: ../../godmode/setup/setup_visuals.php:1803 msgid "Visible time of successful notifiations" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1816 +#: ../../godmode/setup/setup_visuals.php:1831 msgid "Custom values post process" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1856 -#: ../../godmode/setup/setup_visuals.php:2023 +#: ../../godmode/setup/setup_visuals.php:1871 +#: ../../godmode/setup/setup_visuals.php:2038 msgid "Delete custom values" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1906 +#: ../../godmode/setup/setup_visuals.php:1921 msgid "Interval values" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1945 +#: ../../godmode/setup/setup_visuals.php:1960 msgid "Delete interval values" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1988 +#: ../../godmode/setup/setup_visuals.php:2003 msgid "Module units" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2084 +#: ../../godmode/setup/setup_visuals.php:2099 msgid "Behaviour configuration" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2089 +#: ../../godmode/setup/setup_visuals.php:2104 msgid "GIS configuration" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2094 +#: ../../godmode/setup/setup_visuals.php:2109 msgid "Style configuration" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2099 +#: ../../godmode/setup/setup_visuals.php:2114 msgid "Charts configuration" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2104 +#: ../../godmode/setup/setup_visuals.php:2119 msgid "Font and Text configuration" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2109 +#: ../../godmode/setup/setup_visuals.php:2124 msgid "Visual consoles configuration" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2114 +#: ../../godmode/setup/setup_visuals.php:2129 msgid "Reports configuration " msgstr "" -#: ../../godmode/setup/setup_visuals.php:2119 +#: ../../godmode/setup/setup_visuals.php:2134 msgid "Services configuration" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2124 +#: ../../godmode/setup/setup_visuals.php:2139 msgid "Other configuration" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2405 +#: ../../godmode/setup/setup_visuals.php:2425 msgid "Mobile console logo preview" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2441 +#: ../../godmode/setup/setup_visuals.php:2461 msgid "Gis icons preview" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2507 +#: ../../godmode/setup/setup_visuals.php:2527 msgid "Status set preview" msgstr "" @@ -39118,8 +39382,12 @@ msgstr "" msgid "General network path" msgstr "" +#: ../../godmode/setup/setup_general.php:434 +msgid "Server timezone setup" +msgstr "" + #: ../../godmode/setup/setup_general.php:515 -#: ../../include/functions_config.php:423 +#: ../../include/functions_config.php:431 msgid "Inventory changes blacklist" msgstr "" @@ -39182,11 +39450,11 @@ msgstr "" msgid "Log location" msgstr "" -#: ../../godmode/setup/setup_general.php:710 +#: ../../godmode/setup/setup_general.php:736 msgid "General options" msgstr "" -#: ../../godmode/setup/setup_general.php:729 +#: ../../godmode/setup/setup_general.php:755 msgid "" "Please notice that some providers like Gmail or Office365 need to setup/" "enable manually external connections using SMTP and you need to use STARTTLS " @@ -39196,29 +39464,29 @@ msgid "" "these settings will ignore this console setup." msgstr "" -#: ../../godmode/setup/setup_general.php:744 +#: ../../godmode/setup/setup_general.php:770 msgid "From address" msgstr "" -#: ../../godmode/setup/setup_general.php:768 +#: ../../godmode/setup/setup_general.php:794 msgid "SMTP Server" msgstr "" -#: ../../godmode/setup/setup_general.php:780 +#: ../../godmode/setup/setup_general.php:806 msgid "SMTP Port" msgstr "" -#: ../../godmode/setup/setup_general.php:847 +#: ../../godmode/setup/setup_general.php:873 msgid "Email test" msgstr "" -#: ../../godmode/setup/setup_general.php:896 -#: ../../include/class/TipsWindow.class.php:767 -#: ../../include/class/TipsWindow.class.php:934 ../../general/header.php:833 +#: ../../godmode/setup/setup_general.php:922 +#: ../../include/class/TipsWindow.class.php:787 +#: ../../include/class/TipsWindow.class.php:954 ../../general/header.php:833 msgid "Send" msgstr "" -#: ../../godmode/setup/setup_general.php:910 +#: ../../godmode/setup/setup_general.php:936 msgid "Check mail configuration" msgstr "" @@ -39231,34 +39499,34 @@ msgid "not executed" msgstr "" #: ../../godmode/setup/performance.php:278 -#: ../../include/functions_config.php:834 +#: ../../include/functions_config.php:846 msgid "Max. days before delete traps" msgstr "" #: ../../godmode/setup/performance.php:308 #: ../../godmode/setup/performance.php:518 -#: ../../include/functions_config.php:838 +#: ../../include/functions_config.php:850 msgid "Max. days before delete string data" msgstr "" #: ../../godmode/setup/performance.php:323 -#: ../../include/functions_config.php:846 +#: ../../include/functions_config.php:858 msgid "Max. days before delete GIS data" msgstr "" #: ../../godmode/setup/performance.php:353 #: ../../godmode/setup/performance.php:482 -#: ../../include/functions_config.php:862 +#: ../../include/functions_config.php:874 msgid "Max. days before compact data" msgstr "" #: ../../godmode/setup/performance.php:368 -#: ../../include/functions_config.php:854 +#: ../../include/functions_config.php:866 msgid "Max. days before delete unknown modules" msgstr "" #: ../../godmode/setup/performance.php:383 -#: ../../include/functions_config.php:858 +#: ../../include/functions_config.php:870 msgid "Max. days before delete not initialized modules" msgstr "" @@ -39267,28 +39535,28 @@ msgid "Max. days before delete autodisabled agents" msgstr "" #: ../../godmode/setup/performance.php:413 -#: ../../include/functions_config.php:914 +#: ../../include/functions_config.php:926 msgid "Retention period of past special days" msgstr "" #: ../../godmode/setup/performance.php:494 #: ../../godmode/setup/performance.php:615 -#: ../../include/functions_config.php:878 +#: ../../include/functions_config.php:890 msgid "Compact interpolation in hours (1 Fine-20 bad)" msgstr "" #: ../../godmode/setup/performance.php:537 -#: ../../include/functions_config.php:928 +#: ../../include/functions_config.php:940 msgid "Max. days before delete old messages" msgstr "" #: ../../godmode/setup/performance.php:549 -#: ../../include/functions_config.php:932 +#: ../../include/functions_config.php:944 msgid "Max. days before delete old network matrix data" msgstr "" #: ../../godmode/setup/performance.php:565 -#: ../../include/functions_config.php:923 +#: ../../include/functions_config.php:935 msgid "Max. days before delete inventory data" msgstr "" @@ -39309,22 +39577,22 @@ msgid "2 weeks" msgstr "" #: ../../godmode/setup/performance.php:652 -#: ../../include/functions_config.php:886 +#: ../../include/functions_config.php:898 msgid "Use realtime statistics" msgstr "" #: ../../godmode/setup/performance.php:662 -#: ../../include/functions_config.php:890 +#: ../../include/functions_config.php:902 msgid "Batch statistics period (secs)" msgstr "" #: ../../godmode/setup/performance.php:685 -#: ../../include/functions_config.php:898 +#: ../../include/functions_config.php:910 msgid "Max. recommended number of files in attachment directory" msgstr "" #: ../../godmode/setup/performance.php:697 -#: ../../include/functions_config.php:902 +#: ../../include/functions_config.php:914 msgid "Delete not init modules" msgstr "" @@ -39333,12 +39601,12 @@ msgid "Big Operation Step to purge old data" msgstr "" #: ../../godmode/setup/performance.php:722 -#: ../../include/functions_config.php:910 +#: ../../include/functions_config.php:922 msgid "Small Operation Step to purge old data" msgstr "" #: ../../godmode/setup/performance.php:737 -#: ../../include/functions_config.php:936 +#: ../../include/functions_config.php:948 msgid "Graph container - Max. Items" msgstr "" @@ -39377,7 +39645,7 @@ msgstr "" #: ../../godmode/setup/performance.php:868 ../../include/graphs/fgraph.php:404 #: ../../include/functions_netflow.php:2097 -#: ../../include/functions_reporting.php:4063 +#: ../../include/functions_reporting.php:4072 msgid "Others" msgstr "" @@ -39386,7 +39654,7 @@ msgid "Agent SNMP Interface Wizard defaults" msgstr "" #: ../../godmode/setup/file_manager.php:83 -#: ../../include/functions_filemanager.php:630 +#: ../../include/functions_filemanager.php:645 #, php-format msgid "Index of %s" msgstr "" @@ -39426,8 +39694,8 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.data.php:182 #: ../../godmode/reporting/visual_console_builder.elements.php:167 #: ../../include/functions_visual_map_editor.php:55 -#: ../../include/functions_visual_map_editor.php:632 -#: ../../include/lib/Dashboard/Widget.php:575 +#: ../../include/functions_visual_map_editor.php:626 +#: ../../include/lib/Dashboard/Widget.php:576 msgid "Background" msgstr "" @@ -39436,10 +39704,10 @@ msgid "Background image" msgstr "" #: ../../godmode/reporting/visual_console_builder.data.php:227 -#: ../../include/functions_visual_map_editor.php:347 +#: ../../include/functions_visual_map_editor.php:343 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:372 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:514 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:250 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:247 msgid "Background color" msgstr "" @@ -39488,122 +39756,122 @@ msgstr "" msgid "Problems with move file to target." msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:303 +#: ../../godmode/reporting/visual_console_builder.php:304 msgid "Successfully update." msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:322 +#: ../../godmode/reporting/visual_console_builder.php:323 msgid "Could not be update." msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:342 +#: ../../godmode/reporting/visual_console_builder.php:343 msgid "Successfully created." msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:361 +#: ../../godmode/reporting/visual_console_builder.php:362 msgid "Could not be created." msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:409 +#: ../../godmode/reporting/visual_console_builder.php:410 msgid "Successfully multiple delete." msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:410 +#: ../../godmode/reporting/visual_console_builder.php:411 msgid "Unsuccessful multiple delete." msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:530 +#: ../../godmode/reporting/visual_console_builder.php:531 msgid "Successfully delete." msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:801 -#: ../../operation/visual_console/view.php:130 +#: ../../godmode/reporting/visual_console_builder.php:809 +#: ../../operation/visual_console/view.php:132 #: ../../operation/visual_console/legacy_view.php:117 msgid "Visual consoles list" msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:810 -#: ../../operation/visual_console/view.php:164 +#: ../../godmode/reporting/visual_console_builder.php:818 +#: ../../operation/visual_console/view.php:166 #: ../../operation/visual_console/legacy_view.php:133 msgid "Show link to public Visual Console" msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:814 +#: ../../godmode/reporting/visual_console_builder.php:822 #: ../../godmode/reporting/graph_builder.php:304 -#: ../../godmode/reporting/reporting_builder.php:3634 -#: ../../operation/visual_console/view.php:174 +#: ../../godmode/reporting/reporting_builder.php:3651 +#: ../../operation/visual_console/view.php:176 #: ../../operation/visual_console/legacy_view.php:143 #: ../../operation/reporting/reporting_viewer.php:138 #: ../../operation/reporting/graph_viewer.php:193 msgid "Main data" msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:818 -#: ../../operation/visual_console/view.php:182 +#: ../../godmode/reporting/visual_console_builder.php:826 +#: ../../operation/visual_console/view.php:184 #: ../../operation/visual_console/legacy_view.php:151 msgid "List elements" msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:824 -#: ../../operation/visual_console/view.php:192 +#: ../../godmode/reporting/visual_console_builder.php:832 +#: ../../operation/visual_console/view.php:194 #: ../../operation/visual_console/legacy_view.php:161 msgid "Services wizard" msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:849 +#: ../../godmode/reporting/visual_console_builder.php:857 msgid "New visual console" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:701 +#: ../../godmode/reporting/reporting_builder.list_items.php:702 msgid "Sort selected items from position: " msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:704 +#: ../../godmode/reporting/reporting_builder.list_items.php:705 msgid "Move before to" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:705 +#: ../../godmode/reporting/reporting_builder.list_items.php:706 msgid "Move after to" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:754 -#: ../../godmode/reporting/graph_builder.graph_editor.php:301 -#: ../../godmode/reporting/graph_builder.graph_editor.php:369 +#: ../../godmode/reporting/reporting_builder.list_items.php:755 +#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/graph_builder.graph_editor.php:284 msgid "Sort items" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:763 +#: ../../godmode/reporting/reporting_builder.list_items.php:764 msgid "Delete selected items from position: " msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:766 +#: ../../godmode/reporting/reporting_builder.list_items.php:767 msgid "Delete above to" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:767 +#: ../../godmode/reporting/reporting_builder.list_items.php:768 msgid "Delete below to" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:779 +#: ../../godmode/reporting/reporting_builder.list_items.php:780 msgid "Poisition" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:845 +#: ../../godmode/reporting/reporting_builder.list_items.php:846 msgid "" "Are you sure to sort the items into the report?\\n. This action change the " "sorting of items into data base." msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:867 -#: ../../godmode/reporting/graph_builder.graph_editor.php:463 +#: ../../godmode/reporting/reporting_builder.list_items.php:868 +#: ../../godmode/reporting/graph_builder.graph_editor.php:478 msgid "Please select any item to order" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:897 +#: ../../godmode/reporting/reporting_builder.list_items.php:898 msgid "Are you sure to delete the items into the report?\\n" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:925 +#: ../../godmode/reporting/reporting_builder.list_items.php:926 msgid "Please select any item to delete" msgstr "" @@ -39652,7 +39920,7 @@ msgstr "" #: ../../godmode/reporting/create_container.php:498 #: ../../godmode/reporting/create_container.php:686 #: ../../godmode/reporting/graph_builder.main.php:219 -#: ../../include/functions_visual_map_editor.php:554 +#: ../../include/functions_visual_map_editor.php:548 msgid "Type of graph" msgstr "" @@ -39660,8 +39928,8 @@ msgstr "" #: ../../godmode/reporting/create_container.php:576 #: ../../godmode/reporting/create_container.php:691 #: ../../godmode/reporting/graph_builder.main.php:290 -#: ../../operation/agentes/stat_win.php:395 -#: ../../operation/agentes/interface_traffic_graph_win.php:240 +#: ../../operation/agentes/stat_win.php:403 +#: ../../operation/agentes/interface_traffic_graph_win.php:256 msgid "Show full scale graph (TIP)" msgstr "" @@ -39719,7 +39987,7 @@ msgid "Graph editor" msgstr "" #: ../../godmode/reporting/graph_builder.php:326 -#: ../../include/functions_events.php:4542 +#: ../../include/functions_events.php:4547 #: ../../operation/reporting/graph_viewer.php:223 msgid "View graph" msgstr "" @@ -39808,23 +40076,23 @@ msgid "" "first %d will be displayed." msgstr "" -#: ../../godmode/reporting/graph_builder.graph_editor.php:315 +#: ../../godmode/reporting/graph_builder.graph_editor.php:228 msgid "Sort selected items" msgstr "" -#: ../../godmode/reporting/graph_builder.graph_editor.php:318 +#: ../../godmode/reporting/graph_builder.graph_editor.php:231 msgid "before to" msgstr "" -#: ../../godmode/reporting/graph_builder.graph_editor.php:319 +#: ../../godmode/reporting/graph_builder.graph_editor.php:232 msgid "after to" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1067 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1069 msgid "Not valid" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1075 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1077 msgid "" "This type of report brings a lot of data loading, it is recommended to use " "it for scheduled reports and not for real-time view." @@ -39851,241 +40119,241 @@ msgstr "" msgid "Show modules" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2221 -#: ../../include/functions_ui.php:2494 -#: ../../operation/inventory/inventory.php:687 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2230 +#: ../../include/functions_ui.php:2537 +#: ../../operation/inventory/inventory.php:688 msgid "Last" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2300 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2309 msgid "Target server" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2618 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2627 msgid "Macros definition" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2629 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2638 msgid "Render definition" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2630 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2639 msgid "Please note that not all CSS styles are supported by PDF reports." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2728 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2737 msgid "Greater or equal (>=)" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2729 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2738 msgid "Less or equal (<=)" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2730 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2739 msgid "Less (<)" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2731 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2740 msgid "Greater (>)" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2732 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2741 msgid "Equal (=)" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2733 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2742 msgid "Not equal (!=)" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2858 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2867 msgid "" "Show a summary chart with max, min and average number of total modules at " "the end of the report and Checks." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2913 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2922 msgid "Checks in Warning status" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2983 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2992 msgid "Only data" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3081 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3090 msgid "Include extended events" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3098 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3107 msgid "Show custom data" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3117 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3126 msgid "By agent " msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3127 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3136 msgid "By user validator " msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3137 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3146 msgid "By criticity " msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3156 msgid "Validated vs unvalidated " msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3162 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3171 msgid "" "With the token enabled the query will affect the Historical Database, which " "may mean a small drop in performance." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3347 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3356 msgid "Include filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3351 #: ../../godmode/reporting/reporting_builder.item_editor.php:3360 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3369 msgid "Free text string search on event description" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3356 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3365 msgid "Exclude filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3464 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3473 msgid "" "Use prefix notation for numeric values (example: 20,8Kbytes/sec), otherwise " "full value will be displayed (example: 20.742 bytes/sec)" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3502 -#: ../../include/functions_reporting.php:5163 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3511 +#: ../../include/functions_reporting.php:5172 msgid "Unassigned group" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3548 -#: ../../include/functions_reporting.php:5157 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3557 +#: ../../include/functions_reporting.php:5166 msgid "Unnasigned group" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3571 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3580 msgid "Select by group" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3659 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3668 msgid "Display options" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3717 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3726 msgid "Agent group filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3752 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3761 msgid "Agent OS filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3778 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3787 msgid "Agent custom field" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3800 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3809 msgid "Agent custom field filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3824 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3833 msgid "Agent status filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3862 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3871 msgid "Agent version filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3886 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3895 msgid "Agent has remote configuration" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3887 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3896 msgid "Filter agents by remote configuration enabled." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3898 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3907 msgid "Agent module filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3922 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3931 msgid "Module group filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3952 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3961 msgid "Search module name" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4105 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4620 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4114 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4629 msgid "Agent Failover" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4110 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4623 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4119 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4632 msgid "Module Failover" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4150 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4159 msgid "Please save the item before adding entries to this list." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4596 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4605 msgid "rate" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4644 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4653 msgid "" "Please be careful, when the module have diferent intervals in their life, " "the summatory maybe get bad result." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4664 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4673 msgid "Please save the report to start adding items into the list." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4930 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4934 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4938 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4942 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4946 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4950 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4954 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4958 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4939 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4943 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4947 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4951 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4955 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4959 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4963 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4967 msgid "Item Editor Information" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4931 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4940 msgid "Please select a name." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4935 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4944 msgid "Please select an agent." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4943 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4952 msgid "Please insert a SQL query." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4947 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4956 msgid "Please insert a URL." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4951 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4960 msgid "Please checked a custom interval option." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4955 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4964 msgid "Please select a user." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4959 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4968 msgid "Please select a group." msgstr "" @@ -40106,26 +40374,26 @@ msgid "Percentile Bubble" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:244 -#: ../../mobile/operation/events.php:837 -#: ../../include/functions_visual_map_editor.php:1387 +#: ../../mobile/operation/events.php:866 +#: ../../include/functions_visual_map_editor.php:1445 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:545 -#: ../../operation/visual_console/view.php:326 +#: ../../operation/visual_console/view.php:328 msgid "Module Graph" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:255 #: ../../include/functions_visual_map_editor.php:59 -#: ../../include/functions_visual_map_editor.php:1390 -#: ../../include/functions_visual_map.php:4180 -#: ../../operation/visual_console/view.php:346 +#: ../../include/functions_visual_map_editor.php:1448 +#: ../../include/functions_visual_map.php:4189 +#: ../../operation/visual_console/view.php:348 msgid "Event history graph" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:266 -#: ../../include/functions_visual_map_editor.php:1391 -#: ../../include/functions_visual_map.php:4205 -#: ../../include/rest-api/models/VisualConsole/Item.php:2132 -#: ../../operation/visual_console/view.php:351 +#: ../../include/functions_visual_map_editor.php:1449 +#: ../../include/functions_visual_map.php:4214 +#: ../../include/rest-api/models/VisualConsole/Item.php:2135 +#: ../../operation/visual_console/view.php:353 msgid "Simple Value" msgstr "" @@ -40143,52 +40411,54 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:332 #: ../../include/functions_visual_map_editor.php:71 -#: ../../include/functions_visual_map_editor.php:1396 -#: ../../include/functions_visual_map.php:4160 -#: ../../operation/visual_console/view.php:376 +#: ../../include/functions_visual_map_editor.php:1454 +#: ../../include/functions_visual_map.php:4169 +#: ../../operation/visual_console/view.php:378 msgid "Box" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:354 -#: ../../include/functions_visual_map_editor.php:1403 -#: ../../operation/visual_console/view.php:391 +#: ../../include/functions_visual_map_editor.php:1461 +#: ../../operation/visual_console/view.php:393 msgid "Network link" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:376 #: ../../include/functions_visual_map_editor.php:73 -#: ../../include/functions_visual_map_editor.php:1398 -#: ../../include/functions_visual_map.php:4220 -#: ../../include/rest-api/models/VisualConsole/Item.php:2144 -#: ../../operation/visual_console/view.php:386 +#: ../../include/functions_visual_map_editor.php:1456 +#: ../../include/functions_visual_map.php:4229 +#: ../../include/rest-api/models/VisualConsole/Item.php:2147 +#: ../../operation/visual_console/view.php:388 msgid "Color cloud" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:387 -#: ../../include/rest-api/models/VisualConsole/Item.php:2156 -#: ../../operation/visual_console/view.php:331 +#: ../../include/rest-api/models/VisualConsole/Item.php:2159 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:172 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:653 +#: ../../operation/visual_console/view.php:333 msgid "Basic chart" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:398 -#: ../../include/rest-api/models/VisualConsole/Item.php:2152 -#: ../../operation/visual_console/view.php:396 +#: ../../include/rest-api/models/VisualConsole/Item.php:2155 +#: ../../operation/visual_console/view.php:398 msgid "Odometer" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:409 #: ../../include/functions_visual_map_editor.php:69 -#: ../../include/functions_visual_map_editor.php:1394 -#: ../../include/functions_visual_map.php:4170 -#: ../../include/rest-api/models/VisualConsole/Item.php:2104 +#: ../../include/functions_visual_map_editor.php:1452 +#: ../../include/functions_visual_map.php:4179 +#: ../../include/rest-api/models/VisualConsole/Item.php:2107 #: ../../include/lib/Dashboard/Widgets/clock.php:158 #: ../../include/lib/Dashboard/Widgets/clock.php:310 -#: ../../operation/visual_console/view.php:366 +#: ../../operation/visual_console/view.php:368 msgid "Clock" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:438 -#: ../../godmode/reporting/visual_console_builder.elements.php:910 +#: ../../godmode/reporting/visual_console_builder.elements.php:895 msgid "Edit label" msgstr "" @@ -40229,14 +40499,14 @@ msgid "An error has ocurred" msgstr "" #: ../../godmode/reporting/reporting_builder.php:515 -#: ../../godmode/reporting/reporting_builder.php:3560 -#: ../../godmode/reporting/reporting_builder.php:3627 -#: ../../godmode/reporting/reporting_builder.php:3675 +#: ../../godmode/reporting/reporting_builder.php:3577 +#: ../../godmode/reporting/reporting_builder.php:3644 +#: ../../godmode/reporting/reporting_builder.php:3692 msgid "Reports list" msgstr "" #: ../../godmode/reporting/reporting_builder.php:531 -#: ../../godmode/reporting/reporting_builder.php:3571 +#: ../../godmode/reporting/reporting_builder.php:3588 #: ../../operation/menu.php:457 #: ../../operation/reporting/custom_reporting.php:23 msgid "Custom reporting" @@ -40258,16 +40528,16 @@ msgstr "" msgid "Create report" msgstr "" -#: ../../godmode/reporting/reporting_builder.php:3659 +#: ../../godmode/reporting/reporting_builder.php:3676 #: ../../operation/reporting/reporting_viewer.php:172 msgid "View report" msgstr "" -#: ../../godmode/reporting/reporting_builder.php:3678 +#: ../../godmode/reporting/reporting_builder.php:3695 msgid "Create Custom Report" msgstr "" -#: ../../godmode/reporting/reporting_builder.php:3750 +#: ../../godmode/reporting/reporting_builder.php:3767 msgid "Unsuccessful action

" msgstr "" @@ -40278,16 +40548,16 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:124 #: ../../include/functions_visual_map_editor.php:57 -#: ../../include/functions_visual_map_editor.php:1386 -#: ../../operation/visual_console/view.php:321 +#: ../../include/functions_visual_map_editor.php:1444 +#: ../../operation/visual_console/view.php:323 msgid "Percentile Item" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:125 -#: ../../mobile/operation/home.php:102 -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map.php:4165 -#: ../../include/rest-api/models/VisualConsole/Item.php:2100 +#: ../../mobile/operation/home.php:118 +#: ../../include/functions_visual_map_editor.php:391 +#: ../../include/functions_visual_map.php:4174 +#: ../../include/rest-api/models/VisualConsole/Item.php:2103 msgid "Module graph" msgstr "" @@ -40305,30 +40575,30 @@ msgid "Size (px)" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:232 -#: ../../include/functions_config.php:1066 +#: ../../include/functions_config.php:1078 msgid "Font size" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:260 -#: ../../include/functions_visual_map_editor.php:612 +#: ../../include/functions_visual_map_editor.php:606 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371 msgid "Process" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:263 -#: ../../include/functions_visual_map_editor.php:615 +#: ../../include/functions_visual_map_editor.php:609 msgid "Min value" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:264 #: ../../godmode/reporting/visual_console_builder.wizard.php:284 -#: ../../include/functions_visual_map_editor.php:616 -#: ../../include/functions_visual_map_editor.php:680 +#: ../../include/functions_visual_map_editor.php:610 +#: ../../include/functions_visual_map_editor.php:730 msgid "Max value" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:265 -#: ../../include/functions_visual_map_editor.php:617 +#: ../../include/functions_visual_map_editor.php:611 msgid "Avg value" msgstr "" @@ -40337,20 +40607,20 @@ msgid "Width (px)" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:300 -#: ../../include/functions_visual_map_editor.php:685 +#: ../../include/functions_visual_map_editor.php:735 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459 msgid "Bubble" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:319 -#: ../../include/functions_visual_map_editor.php:690 +#: ../../include/functions_visual_map_editor.php:740 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504 msgid "Percent" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:345 -#: ../../include/functions_visual_map_editor.php:709 -#: ../../include/functions_visual_map_editor.php:727 +#: ../../include/functions_visual_map_editor.php:759 +#: ../../include/functions_visual_map_editor.php:777 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509 msgid "Value to show" msgstr "" @@ -40405,7 +40675,7 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.editor.php:177 #: ../../godmode/reporting/visual_console_builder.editor.php:179 #: ../../godmode/reporting/visual_console_builder.editor.php:181 -#: ../../operation/snmpconsole/snmp_browser.php:225 +#: ../../operation/snmpconsole/snmp_browser.php:230 msgid "Action in progress" msgstr "" @@ -40537,88 +40807,88 @@ msgid "" "event response" msgstr "" -#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_edit_filter.php:306 msgid "Save in group" msgstr "" -#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_edit_filter.php:306 msgid "" "This group will be use to restrict the visibility of this filter with ACLs" msgstr "" -#: ../../godmode/events/event_edit_filter.php:502 +#: ../../godmode/events/event_edit_filter.php:504 msgid "Choose between the users who have validated an event. " msgstr "" -#: ../../godmode/events/event_edit_filter.php:520 +#: ../../godmode/events/event_edit_filter.php:522 msgid "Owner." msgstr "" -#: ../../godmode/events/event_edit_filter.php:535 -#: ../../operation/events/events.php:1783 +#: ../../godmode/events/event_edit_filter.php:537 +#: ../../operation/events/events.php:1837 msgid "All events" msgstr "" -#: ../../godmode/events/event_edit_filter.php:536 -#: ../../operation/events/events.php:1784 -#: ../../operation/events/events.php:2435 +#: ../../godmode/events/event_edit_filter.php:538 +#: ../../operation/events/events.php:1838 +#: ../../operation/events/events.php:2489 msgid "Group events" msgstr "" -#: ../../godmode/events/event_edit_filter.php:537 -#: ../../include/ajax/heatmap.ajax.php:80 +#: ../../godmode/events/event_edit_filter.php:539 +#: ../../include/ajax/heatmap.ajax.php:99 #: ../../include/lib/Dashboard/Widgets/heatmap.php:252 -#: ../../operation/events/events.php:1785 +#: ../../operation/events/events.php:1839 msgid "Group agents" msgstr "" -#: ../../godmode/events/event_edit_filter.php:538 -#: ../../operation/events/events.php:1786 +#: ../../godmode/events/event_edit_filter.php:540 +#: ../../operation/events/events.php:1840 msgid "Group extra id" msgstr "" -#: ../../godmode/events/event_edit_filter.php:763 -#: ../../operation/events/events.php:2033 +#: ../../godmode/events/event_edit_filter.php:765 +#: ../../operation/events/events.php:2087 msgid "Filter alert events" msgstr "" -#: ../../godmode/events/event_edit_filter.php:764 -#: ../../operation/events/events.php:2034 +#: ../../godmode/events/event_edit_filter.php:766 +#: ../../operation/events/events.php:2088 msgid "Only alert events" msgstr "" -#: ../../godmode/events/event_edit_filter.php:813 -#: ../../operation/events/events.php:1893 +#: ../../godmode/events/event_edit_filter.php:815 +#: ../../operation/events/events.php:1947 msgid "Extra ID" msgstr "" -#: ../../godmode/events/event_edit_filter.php:845 +#: ../../godmode/events/event_edit_filter.php:847 msgid "Custom data filter type" msgstr "" -#: ../../godmode/events/event_edit_filter.php:848 +#: ../../godmode/events/event_edit_filter.php:850 msgid "Filter custom data by name field" msgstr "" -#: ../../godmode/events/event_edit_filter.php:849 +#: ../../godmode/events/event_edit_filter.php:851 msgid "Filter custom data by value field" msgstr "" -#: ../../godmode/events/event_edit_filter.php:864 +#: ../../godmode/events/event_edit_filter.php:866 #: ../../godmode/events/custom_events.php:117 #: ../../include/functions_reporting_html.php:1074 #: ../../include/functions_reporting_html.php:1322 -#: ../../include/functions_reporting_html.php:2648 -#: ../../include/ajax/events.php:1798 ../../include/functions_events.php:221 +#: ../../include/functions_reporting_html.php:2667 +#: ../../include/ajax/events.php:1799 ../../include/functions_events.php:221 #: ../../include/functions_events.php:323 msgid "Custom data" msgstr "" -#: ../../godmode/events/event_edit_filter.php:881 +#: ../../godmode/events/event_edit_filter.php:883 msgid "Id souce event" msgstr "" -#: ../../godmode/events/event_edit_filter.php:911 +#: ../../godmode/events/event_edit_filter.php:913 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:313 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:358 #: ../../operation/events/events.php:265 @@ -40691,7 +40961,7 @@ msgstr "" #: ../../godmode/events/custom_events.php:116 #: ../../include/functions_events.php:307 -#: ../../include/functions_events.php:5103 +#: ../../include/functions_events.php:5108 msgid "Module custom ID" msgstr "" @@ -40780,136 +41050,136 @@ msgstr "" msgid "Manual interval means that it will be executed only On-demand" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:814 -#: ../../include/class/CustomNetScan.class.php:551 -msgid "The minimum recomended interval for Recon Task is 5 minutes" -msgstr "" - -#: ../../godmode/wizards/HostDevices.class.php:869 +#: ../../godmode/wizards/HostDevices.class.php:865 msgid "Use CSV file definition" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:870 +#: ../../godmode/wizards/HostDevices.class.php:866 msgid "Define targets using csv o network definition." msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:888 +#: ../../godmode/wizards/HostDevices.class.php:884 msgid "Networks (csv)" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:889 +#: ../../godmode/wizards/HostDevices.class.php:885 msgid "" "You can upload a CSV file. Each line must contain a network in IP/MASK " "format. For instance: 192.168.1.1/32" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:901 +#: ../../godmode/wizards/HostDevices.class.php:897 msgid "Networks (current)" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:902 +#: ../../godmode/wizards/HostDevices.class.php:898 msgid "Please upload a new file to overwrite this content." msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:918 +#: ../../godmode/wizards/HostDevices.class.php:914 msgid "" "You can specify networks or fully qualified domain names of a specific host, " "separated by commas, for example: 192.168.50.0/24,192.168.60.0/24, hostname." "artica.es" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1068 +#: ../../godmode/wizards/HostDevices.class.php:1064 msgid "Filter by opened ports" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1070 +#: ../../godmode/wizards/HostDevices.class.php:1066 msgid "" "Targets will be scanned if at least one of defined ports (comma separated) " "is open." msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1083 +#: ../../godmode/wizards/HostDevices.class.php:1079 msgid "Auto discover known hardware" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1085 +#: ../../godmode/wizards/HostDevices.class.php:1081 msgid "" "Targets will be monitorized based on its Private Enterprise Number. " "Requires SNMP." msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1100 +#: ../../godmode/wizards/HostDevices.class.php:1096 msgid "Module Host Alive will be added to discovered agents by default." msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1148 +#: ../../godmode/wizards/HostDevices.class.php:1144 #, php-format msgid "" "Configured networks could generate %d agents, your license only allows %d, " "'review results' is mandatory." msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1156 +#: ../../godmode/wizards/HostDevices.class.php:1152 #: ../../godmode/wizards/DiscoveryTaskList.class.php:917 msgid "Review results" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1158 +#: ../../godmode/wizards/HostDevices.class.php:1154 msgid "Targets must be validated by user before create agents." msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1184 +#: ../../godmode/wizards/HostDevices.class.php:1180 msgid "Apply autoconfiguration rules" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1186 +#: ../../godmode/wizards/HostDevices.class.php:1182 msgid "" "System is able to auto configure detected host & devices by applying your " "defined configuration rules." msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1202 +#: ../../godmode/wizards/HostDevices.class.php:1198 msgid "SNMP enabled" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1243 +#: ../../godmode/wizards/HostDevices.class.php:1239 msgid "Skip non-enabled interfaces" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1262 +#: ../../godmode/wizards/HostDevices.class.php:1258 msgid "SNMP communities to try with" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1264 +#: ../../godmode/wizards/HostDevices.class.php:1260 msgid "" "You can specify several values, separated by commas, for example: public," "mysecret,1234" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1391 +#: ../../godmode/wizards/HostDevices.class.php:1387 msgid "OS detection" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1403 +#: ../../godmode/wizards/HostDevices.class.php:1399 msgid "Name resolution" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1414 +#: ../../godmode/wizards/HostDevices.class.php:1410 msgid "Parent detection" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1425 +#: ../../godmode/wizards/HostDevices.class.php:1421 msgid "Parent recursion" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1436 +#: ../../godmode/wizards/HostDevices.class.php:1432 msgid "VLAN enabled" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1447 +#: ../../godmode/wizards/HostDevices.class.php:1443 msgid "WMI enabled" msgstr "" +#: ../../godmode/wizards/HostDevices.class.php:1590 +#: ../../include/functions_html.php:648 ../../include/functions_html.php:6387 +msgid "Please select..." +msgstr "" + #: ../../godmode/wizards/DiscoveryTaskList.class.php:259 msgid "Task successfully deleted" msgstr "" @@ -41215,6 +41485,7 @@ msgstr "" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1865 #: ../../include/help/clippy/operation_agentes_ver_agente.php:40 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 +#: ../../include/class/AgentDeployWizard.class.php:558 msgid "Done" msgstr "" @@ -41227,47 +41498,42 @@ msgstr "" msgid "Searching" msgstr "" -#: ../../godmode/servers/servers.build_table.php:122 +#: ../../godmode/servers/servers.build_table.php:124 +#: ../../mobile/operation/server_status.php:269 +#: ../../mobile/operation/server_status.php:307 +#: ../../mobile/operation/server_status.php:337 msgid "Server has crashed." msgstr "" -#: ../../godmode/servers/servers.build_table.php:130 +#: ../../godmode/servers/servers.build_table.php:132 +#: ../../mobile/operation/server_status.php:275 +#: ../../mobile/operation/server_status.php:313 +#: ../../mobile/operation/server_status.php:343 msgid "Server is stopped." msgstr "" -#: ../../godmode/servers/servers.build_table.php:142 +#: ../../godmode/servers/servers.build_table.php:144 msgid "Exec server enabled" msgstr "" -#: ../../godmode/servers/servers.build_table.php:200 +#: ../../godmode/servers/servers.build_table.php:213 msgid "Manage Discovery tasks" msgstr "" -#: ../../godmode/servers/servers.build_table.php:214 +#: ../../godmode/servers/servers.build_table.php:227 msgid "Reset module status and fired alert counts" msgstr "" -#: ../../godmode/servers/servers.build_table.php:225 +#: ../../godmode/servers/servers.build_table.php:238 msgid "Claim back SNMP modules" msgstr "" -#: ../../godmode/servers/servers.build_table.php:249 -msgid "Manage satellite hosts" -msgstr "" - #: ../../godmode/servers/modificar_server.php:50 msgid "Update Server" msgstr "" -#: ../../godmode/servers/modificar_server.php:63 -#: ../../godmode/servers/modificar_server.php:222 -#: ../../godmode/servers/modificar_server.php:262 -#, php-format -msgid "%s servers" -msgstr "" - #: ../../godmode/servers/modificar_server.php:73 -#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1080 +#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1072 #: ../../include/ajax/consoles.ajax.php:61 msgid "Standard" msgstr "" @@ -41296,34 +41562,35 @@ msgstr "" msgid "Advanced editor" msgstr "" -#: ../../godmode/servers/modificar_server.php:209 +#: ../../godmode/servers/modificar_server.php:210 +#: ../../godmode/servers/modificar_server.php:229 msgid "Remote Configuration" msgstr "" -#: ../../godmode/servers/modificar_server.php:235 +#: ../../godmode/servers/modificar_server.php:257 msgid "Dynamic search" msgstr "" -#: ../../godmode/servers/modificar_server.php:275 +#: ../../godmode/servers/modificar_server.php:297 #: ../../include/class/OrderInterpreter.class.php:247 msgid "Manage Servers" msgstr "" -#: ../../godmode/servers/modificar_server.php:287 -#: ../../godmode/servers/modificar_server.php:298 +#: ../../godmode/servers/modificar_server.php:309 +#: ../../godmode/servers/modificar_server.php:320 msgid "Successfully action" msgstr "" -#: ../../godmode/servers/modificar_server.php:329 +#: ../../godmode/servers/modificar_server.php:351 msgid "Server updated successfully" msgstr "" -#: ../../godmode/servers/modificar_server.php:331 +#: ../../godmode/servers/modificar_server.php:353 msgid "There was a problem updating the server" msgstr "" #: ../../godmode/servers/plugin_registration.php:58 -#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:751 +#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:743 msgid "To manage plugin you must activate centralized management" msgstr "" @@ -41342,55 +41609,62 @@ msgid "" "from feature from %s." msgstr "" -#: ../../godmode/servers/plugin_registration.php:105 +#: ../../godmode/servers/plugin_registration.php:101 msgid "Plugin Registration" msgstr "" -#: ../../godmode/servers/plugin_registration.php:113 +#: ../../godmode/servers/plugin_registration.php:107 +msgid "" +"This extension makes registering server plugins an easier task. Here you can " +"upload a server plugin in .pspz zipped format. Please refer to the official " +"documentation on how to obtain and use Server Plugins." +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:109 msgid "You can get more plugins in our" msgstr "" -#: ../../godmode/servers/plugin_registration.php:115 +#: ../../godmode/servers/plugin_registration.php:111 msgid "Public Resource Library" msgstr "" -#: ../../godmode/servers/plugin_registration.php:143 +#: ../../godmode/servers/plugin_registration.php:139 msgid "Failed to create temporary directory" msgstr "" -#: ../../godmode/servers/plugin_registration.php:162 +#: ../../godmode/servers/plugin_registration.php:158 msgid "Cannot load INI file" msgstr "" -#: ../../godmode/servers/plugin_registration.php:187 +#: ../../godmode/servers/plugin_registration.php:183 msgid "Plugin exec not found. Aborting!" msgstr "" -#: ../../godmode/servers/plugin_registration.php:198 +#: ../../godmode/servers/plugin_registration.php:194 msgid "Plugin already registered. Aborting!" msgstr "" -#: ../../godmode/servers/plugin_registration.php:365 +#: ../../godmode/servers/plugin_registration.php:361 msgid "Plug-in Remote Registered unsuccessfull" msgstr "" -#: ../../godmode/servers/plugin_registration.php:368 +#: ../../godmode/servers/plugin_registration.php:364 msgid "Please check the syntax of file \"plugin_definition.ini\"" msgstr "" -#: ../../godmode/servers/plugin_registration.php:508 +#: ../../godmode/servers/plugin_registration.php:504 msgid "Module plugin registered" msgstr "" -#: ../../godmode/servers/plugin_registration.php:513 +#: ../../godmode/servers/plugin_registration.php:509 msgid "Registered successfully" msgstr "" -#: ../../godmode/servers/plugin_registration.php:526 +#: ../../godmode/servers/plugin_registration.php:522 msgid "Unable to uncompress uploaded file" msgstr "" -#: ../../godmode/servers/plugin_registration.php:544 +#: ../../godmode/servers/plugin_registration.php:540 #, php-format msgid "Cannot move uploaded file to %s." msgstr "" @@ -41399,15 +41673,15 @@ msgstr "" msgid "Network Components" msgstr "" -#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:775 +#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:767 msgid "Attachments" msgstr "" -#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:785 +#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:777 msgid "Index of attachment/plugin" msgstr "" -#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:788 +#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:780 #, php-format msgid "Plug-ins registered on %s" msgstr "" @@ -41416,14 +41690,14 @@ msgstr "" msgid "Plugin update" msgstr "" -#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:815 +#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:807 msgid "" "This console is not manager of this environment,\n" " \t\tplease manage this feature from centralized manager console " "(Metaconsole)." msgstr "" -#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1080 +#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1072 msgid "Nagios" msgstr "" @@ -41462,84 +41736,88 @@ msgstr "" msgid "Plug-in parameters" msgstr "" -#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:689 +#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:681 msgid "Parameters macros" msgstr "" #: ../../godmode/servers/plugin.php:585 -#: ../../include/class/ManageNetScanScripts.class.php:675 +#: ../../include/class/ManageNetScanScripts.class.php:671 msgid "Hide value" msgstr "" #: ../../godmode/servers/plugin.php:596 -#: ../../include/class/ManageNetScanScripts.class.php:677 +#: ../../include/class/ManageNetScanScripts.class.php:673 msgid "This field will show up as dots like a password" msgstr "" -#: ../../godmode/servers/plugin.php:824 +#: ../../godmode/servers/plugin.php:655 +msgid "Remove macro" +msgstr "" + +#: ../../godmode/servers/plugin.php:816 msgid "You need to create your own plugins with Windows compatibility" msgstr "" -#: ../../godmode/servers/plugin.php:890 +#: ../../godmode/servers/plugin.php:882 msgid "Problem updating plugin" msgstr "" -#: ../../godmode/servers/plugin.php:892 +#: ../../godmode/servers/plugin.php:884 msgid "Plugin updated successfully" msgstr "" -#: ../../godmode/servers/plugin.php:950 +#: ../../godmode/servers/plugin.php:942 msgid "Problem creating plugin" msgstr "" -#: ../../godmode/servers/plugin.php:952 +#: ../../godmode/servers/plugin.php:944 msgid "Plugin created successfully" msgstr "" -#: ../../godmode/servers/plugin.php:964 +#: ../../godmode/servers/plugin.php:956 msgid "Problem deleting plugin" msgstr "" -#: ../../godmode/servers/plugin.php:966 ../../godmode/servers/plugin.php:978 +#: ../../godmode/servers/plugin.php:958 ../../godmode/servers/plugin.php:970 msgid "Plugin deleted successfully" msgstr "" -#: ../../godmode/servers/plugin.php:1034 +#: ../../godmode/servers/plugin.php:1026 msgid "Lock" msgstr "" -#: ../../godmode/servers/plugin.php:1062 +#: ../../godmode/servers/plugin.php:1054 msgid "All the modules that are using this plugin will be deleted" msgstr "" -#: ../../godmode/servers/plugin.php:1096 +#: ../../godmode/servers/plugin.php:1088 msgid "There are no plugins in the system" msgstr "" -#: ../../godmode/servers/plugin.php:1104 +#: ../../godmode/servers/plugin.php:1096 msgid "Add plugin" msgstr "" -#: ../../godmode/servers/plugin.php:1117 +#: ../../godmode/servers/plugin.php:1109 #, php-format msgid "List of modules and components created by \"%s\" " msgstr "" -#: ../../godmode/servers/plugin.php:1221 +#: ../../godmode/servers/plugin.php:1213 msgid "Some modules or components are using the plugin" msgstr "" -#: ../../godmode/servers/plugin.php:1222 +#: ../../godmode/servers/plugin.php:1214 msgid "" "The modules or components should be updated manually or using the bulk " "operations for plugins after this change" msgstr "" -#: ../../godmode/servers/plugin.php:1224 +#: ../../godmode/servers/plugin.php:1216 msgid "Are you sure you want to perform this action?" msgstr "" -#: ../../godmode/servers/plugin.php:1233 +#: ../../godmode/servers/plugin.php:1225 msgid "" "The plugin macros cannot be updated because some modules or components are " "using the plugin" @@ -41580,37 +41858,37 @@ msgid "" "only. Go to %s to manage it." msgstr "" -#: ../../godmode/tag/tag.php:302 +#: ../../godmode/tag/tag.php:303 msgid "Tag name" msgstr "" -#: ../../godmode/tag/tag.php:304 +#: ../../godmode/tag/tag.php:305 msgid "Detail information" msgstr "" -#: ../../godmode/tag/tag.php:305 +#: ../../godmode/tag/tag.php:306 msgid "Number of modules affected" msgstr "" -#: ../../godmode/tag/tag.php:307 ../../godmode/tag/edit_tag.php:233 +#: ../../godmode/tag/tag.php:308 ../../godmode/tag/edit_tag.php:237 msgid "Phone" msgstr "" -#: ../../godmode/tag/tag.php:336 +#: ../../godmode/tag/tag.php:337 msgid "Tag details" msgstr "" -#: ../../godmode/tag/tag.php:369 +#: ../../godmode/tag/tag.php:370 #, php-format msgid "Emails for the tag: %s" msgstr "" -#: ../../godmode/tag/tag.php:392 +#: ../../godmode/tag/tag.php:393 #, php-format msgid "Phones for the tag: %s" msgstr "" -#: ../../godmode/tag/tag.php:455 +#: ../../godmode/tag/tag.php:456 msgid "Create tag" msgstr "" @@ -41626,23 +41904,23 @@ msgstr "" msgid "Error updating tag" msgstr "" -#: ../../godmode/tag/edit_tag.php:160 +#: ../../godmode/tag/edit_tag.php:163 msgid "Successfully created tag" msgstr "" -#: ../../godmode/tag/edit_tag.php:161 +#: ../../godmode/tag/edit_tag.php:164 msgid "Error creating tag" msgstr "" -#: ../../godmode/tag/edit_tag.php:213 +#: ../../godmode/tag/edit_tag.php:217 msgid "Hyperlink to help information that has to exist previously." msgstr "" -#: ../../godmode/tag/edit_tag.php:225 +#: ../../godmode/tag/edit_tag.php:229 msgid "Associated Email direction to use later in alerts associated to Tags." msgstr "" -#: ../../godmode/tag/edit_tag.php:234 +#: ../../godmode/tag/edit_tag.php:238 msgid "Associated phone number to use later in alerts associated to Tags." msgstr "" @@ -41753,19 +42031,26 @@ msgstr "" msgid "Pandora FMS %s - Build %s" msgstr "" -#: ../../mobile/include/system.class.php:156 +#: ../../mobile/include/system.class.php:175 msgid "" "Access to this page is restricted to authorized users only, please contact " "your system administrator if you should need help." msgstr "" -#: ../../mobile/include/system.class.php:156 +#: ../../mobile/include/system.class.php:175 +#: ../../mobile/include/system.class.php:181 #, php-format msgid "" "Please remember that any attempts to access this page will be recorded on " "the %s System Database." msgstr "" +#: ../../mobile/include/system.class.php:181 +msgid "" +"Invalid license, please contact your system administrator if you should need " +"help." +msgstr "" + #: ../../mobile/include/ui.class.php:120 #, php-format msgid "%s mobile" @@ -41776,7 +42061,7 @@ msgstr "" msgid "%s : Mobile" msgstr "" -#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:161 +#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:180 msgid "Home" msgstr "" @@ -41785,27 +42070,27 @@ msgstr "" msgid "%s %s - Build %s" msgstr "" -#: ../../mobile/include/ui.class.php:773 +#: ../../mobile/include/ui.class.php:803 msgid "Not found header." msgstr "" -#: ../../mobile/include/ui.class.php:775 +#: ../../mobile/include/ui.class.php:805 msgid "Not found content." msgstr "" -#: ../../mobile/include/ui.class.php:777 +#: ../../mobile/include/ui.class.php:807 msgid "Not found footer." msgstr "" -#: ../../mobile/include/ui.class.php:779 +#: ../../mobile/include/ui.class.php:809 msgid "Incorrect form." msgstr "" -#: ../../mobile/include/ui.class.php:781 +#: ../../mobile/include/ui.class.php:811 msgid "Incorrect grid." msgstr "" -#: ../../mobile/include/ui.class.php:783 +#: ../../mobile/include/ui.class.php:813 msgid "Incorrect collapsible." msgstr "" @@ -41843,52 +42128,64 @@ msgstr "" msgid "Login out" msgstr "" -#: ../../mobile/include/user.class.php:391 +#: ../../mobile/include/user.class.php:445 msgid "user" msgstr "" -#: ../../mobile/include/user.class.php:398 +#: ../../mobile/include/user.class.php:453 msgid "password" msgstr "" -#: ../../mobile/include/user.class.php:488 -#: ../../mobile/include/user.class.php:489 +#: ../../mobile/include/user.class.php:589 msgid "Authenticator code" msgstr "" -#: ../../mobile/operation/agents.php:218 +#: ../../mobile/operation/agents.php:219 #, php-format msgid "Filter Agents by %s" msgstr "" -#: ../../mobile/operation/agents.php:260 ../../mobile/operation/modules.php:325 -#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1009 +#: ../../mobile/operation/agents.php:261 ../../mobile/operation/modules.php:325 +#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1053 msgid "Apply Filter" msgstr "" -#: ../../mobile/operation/agents.php:454 +#: ../../mobile/operation/agents.php:459 msgid "No agents" msgstr "" -#: ../../mobile/operation/agents.php:550 ../../mobile/operation/modules.php:885 -#: ../../mobile/operation/alerts.php:379 ../../mobile/operation/events.php:1450 +#: ../../mobile/operation/agents.php:561 ../../mobile/operation/modules.php:981 +#: ../../mobile/operation/alerts.php:388 +#: ../../mobile/operation/module_data.php:299 +#: ../../mobile/operation/events.php:1575 +#: ../../mobile/operation/server_status.php:501 msgid "(Default)" msgstr "" -#: ../../mobile/operation/agents.php:556 ../../mobile/operation/modules.php:891 -#: ../../mobile/operation/alerts.php:392 ../../mobile/operation/events.php:1483 +#: ../../mobile/operation/agents.php:567 ../../mobile/operation/modules.php:987 +#: ../../mobile/operation/alerts.php:401 +#: ../../mobile/operation/module_data.php:305 +#: ../../mobile/operation/events.php:1608 +#: ../../mobile/operation/server_status.php:507 #, php-format msgid "Group: %s" msgstr "" -#: ../../mobile/operation/agents.php:563 ../../mobile/operation/modules.php:913 -#: ../../mobile/operation/alerts.php:399 ../../mobile/operation/events.php:1503 +#: ../../mobile/operation/agents.php:574 +#: ../../mobile/operation/modules.php:1009 +#: ../../mobile/operation/alerts.php:408 +#: ../../mobile/operation/module_data.php:327 +#: ../../mobile/operation/events.php:1628 +#: ../../mobile/operation/server_status.php:529 #, php-format msgid "Status: %s" msgstr "" -#: ../../mobile/operation/agents.php:570 ../../mobile/operation/modules.php:920 -#: ../../mobile/operation/alerts.php:406 +#: ../../mobile/operation/agents.php:581 +#: ../../mobile/operation/modules.php:1016 +#: ../../mobile/operation/alerts.php:415 +#: ../../mobile/operation/module_data.php:334 +#: ../../mobile/operation/server_status.php:536 #, php-format msgid "Free Search: %s" msgstr "" @@ -41898,20 +42195,28 @@ msgstr "" msgid "Filter Modules by %s" msgstr "" -#: ../../mobile/operation/modules.php:659 +#: ../../mobile/operation/modules.php:670 msgid "Interval." msgstr "" -#: ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/modules.php:672 msgid "Last update." msgstr "" -#: ../../mobile/operation/modules.php:906 +#: ../../mobile/operation/modules.php:850 +msgid "Choose option" +msgstr "" + +#: ../../mobile/operation/modules.php:1002 +#: ../../mobile/operation/module_data.php:320 +#: ../../mobile/operation/server_status.php:522 #, php-format msgid "Module group: %s" msgstr "" -#: ../../mobile/operation/modules.php:928 +#: ../../mobile/operation/modules.php:1024 +#: ../../mobile/operation/module_data.php:342 +#: ../../mobile/operation/server_status.php:544 #, php-format msgid "Tag: %s" msgstr "" @@ -41921,21 +42226,30 @@ msgstr "" msgid "Visual consoles" msgstr "" -#: ../../mobile/operation/agent.php:162 +#: ../../mobile/operation/home.php:95 +#: ../../mobile/operation/server_status.php:227 +msgid "Server status" +msgstr "" + +#: ../../mobile/operation/services.php:139 +msgid "No services found" +msgstr "" + +#: ../../mobile/operation/agent.php:168 msgid "No agent found" msgstr "" -#: ../../mobile/operation/agent.php:238 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:588 +#: ../../mobile/operation/agent.php:241 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:589 msgid "Modules by status" msgstr "" -#: ../../mobile/operation/agent.php:268 -#: ../../include/functions_treeview.php:724 +#: ../../mobile/operation/agent.php:271 +#: ../../include/functions_treeview.php:728 msgid "Events (24h)" msgstr "" -#: ../../mobile/operation/agent.php:369 +#: ../../mobile/operation/agent.php:372 #, php-format msgid "Last %s Events" msgstr "" @@ -41945,15 +42259,22 @@ msgstr "" msgid "Filter Alerts by %s" msgstr "" -#: ../../mobile/operation/alerts.php:346 +#: ../../mobile/operation/alerts.php:336 ../../mobile/operation/alerts.php:337 +#: ../../mobile/operation/alerts.php:342 ../../mobile/operation/alerts.php:344 +#: ../../mobile/operation/alerts.php:347 +msgid "Module/Agent" +msgstr "" + +#: ../../mobile/operation/alerts.php:353 msgid "Last Fired" msgstr "" -#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2508 +#: ../../mobile/operation/alerts.php:363 ../../include/ajax/events.php:2509 +#: ../../operation/events/sound_events.php:394 msgid "No alerts" msgstr "" -#: ../../mobile/operation/alerts.php:385 +#: ../../mobile/operation/alerts.php:394 #, php-format msgid "Standby: %s" msgstr "" @@ -41966,133 +42287,161 @@ msgstr "" msgid "Favourite visual consoles" msgstr "" -#: ../../mobile/operation/visualmaps.php:263 -msgid "No maps defined" +#: ../../mobile/operation/visualmaps.php:265 +msgid "There are no favorite maps to show" msgstr "" -#: ../../mobile/operation/module_graph.php:359 -#: ../../mobile/operation/module_graph.php:372 +#: ../../mobile/operation/module_data.php:125 +msgid "Module data" +msgstr "" + +#: ../../mobile/operation/module_data.php:184 +#: ../../include/graphs/functions_flot.php:515 +#: ../../include/functions_reporting_html.php:663 +#: ../../include/functions_reporting_html.php:4709 +#: ../../include/ajax/events.php:1305 ../../include/functions_graph.php:4832 +#: ../../include/functions_treeview.php:299 +msgid "No data" +msgstr "" + +#: ../../mobile/operation/module_graph.php:360 +#: ../../mobile/operation/module_graph.php:373 #, php-format msgid "%s: %s" msgstr "" -#: ../../mobile/operation/module_graph.php:405 +#: ../../mobile/operation/module_graph.php:406 #, php-format msgid "Options for %s : %s" msgstr "" -#: ../../mobile/operation/module_graph.php:412 +#: ../../mobile/operation/module_graph.php:413 msgid "Show Alerts" msgstr "" -#: ../../mobile/operation/module_graph.php:420 +#: ../../mobile/operation/module_graph.php:421 msgid "Show Events" msgstr "" -#: ../../mobile/operation/module_graph.php:428 -#: ../../operation/agentes/stat_win.php:377 -#: ../../operation/agentes/stat_win.php:439 +#: ../../mobile/operation/module_graph.php:429 +#: ../../operation/agentes/stat_win.php:385 +#: ../../operation/agentes/stat_win.php:455 msgid "Time compare (Separated)" msgstr "" -#: ../../mobile/operation/module_graph.php:444 -#: ../../operation/agentes/stat_win.php:317 +#: ../../mobile/operation/module_graph.php:445 +#: ../../operation/agentes/stat_win.php:325 msgid "Show unknown graph" msgstr "" -#: ../../mobile/operation/module_graph.php:449 +#: ../../mobile/operation/module_graph.php:450 msgid "Time range (hours)" msgstr "" -#: ../../mobile/operation/module_graph.php:461 +#: ../../mobile/operation/module_graph.php:462 #: ../../operation/agentes/stat_win.php:289 -#: ../../operation/agentes/stat_win.php:408 +#: ../../operation/agentes/stat_win.php:416 #: ../../operation/agentes/interface_traffic_graph_win.php:183 #: ../../operation/agentes/graphs.php:222 #: ../../operation/agentes/exportdata.php:393 msgid "Begin date" msgstr "" -#: ../../mobile/operation/module_graph.php:468 +#: ../../mobile/operation/module_graph.php:469 msgid "Update graph" msgstr "" -#: ../../mobile/operation/module_graph.php:478 +#: ../../mobile/operation/module_graph.php:479 msgid "Error get the graph" msgstr "" -#: ../../mobile/operation/events.php:450 +#: ../../mobile/operation/events.php:442 #: ../../include/functions_reporting_html.php:1095 #: ../../include/functions_reporting_html.php:1337 -#: ../../include/functions_reporting_html.php:2658 +#: ../../include/functions_reporting_html.php:2677 #: ../../include/functions_events.php:2571 -#: ../../include/functions_events.php:4742 -#: ../../operation/events/events.php:779 +#: ../../include/functions_events.php:4747 +#: ../../operation/events/events.php:784 msgid "New event" msgstr "" -#: ../../mobile/operation/events.php:455 +#: ../../mobile/operation/events.php:447 #: ../../include/functions_reporting_html.php:1084 #: ../../include/functions_reporting_html.php:1342 -#: ../../include/functions_reporting_html.php:2663 +#: ../../include/functions_reporting_html.php:2682 #: ../../include/functions_events.php:2576 -#: ../../include/functions_events.php:4748 -#: ../../operation/events/events.php:792 +#: ../../include/functions_events.php:4753 +#: ../../operation/events/events.php:797 msgid "Event validated" msgstr "" -#: ../../mobile/operation/events.php:460 +#: ../../mobile/operation/events.php:452 #: ../../include/functions_reporting_html.php:1089 #: ../../include/functions_reporting_html.php:1347 -#: ../../include/functions_reporting_html.php:2668 +#: ../../include/functions_reporting_html.php:2687 #: ../../include/functions_events.php:2581 -#: ../../include/functions_events.php:4754 -#: ../../operation/events/events.php:804 +#: ../../include/functions_events.php:4759 +#: ../../operation/events/events.php:809 msgid "Event in process" msgstr "" -#: ../../mobile/operation/events.php:768 +#: ../../mobile/operation/events.php:797 msgid "ERROR: Event detail" msgstr "" -#: ../../mobile/operation/events.php:769 +#: ../../mobile/operation/events.php:798 msgid "Error connecting to DB." msgstr "" -#: ../../mobile/operation/events.php:789 +#: ../../mobile/operation/events.php:818 msgid "Event detail" msgstr "" -#: ../../mobile/operation/events.php:800 -#: ../../include/functions_events.php:4895 +#: ../../mobile/operation/events.php:829 +#: ../../include/functions_events.php:4900 msgid "Event ID" msgstr "" -#: ../../mobile/operation/events.php:828 -#: ../../include/functions_events.php:5013 +#: ../../mobile/operation/events.php:857 +#: ../../include/functions_events.php:5018 msgid "Acknowledged by" msgstr "" -#: ../../mobile/operation/events.php:878 +#: ../../mobile/operation/events.php:894 +#: ../../include/functions_events.php:3275 +#: ../../include/functions_events.php:3548 +#: ../../include/functions_events.php:3557 +msgid "In process" +msgstr "" + +#: ../../mobile/operation/events.php:915 msgid "Sucessful validate" msgstr "" -#: ../../mobile/operation/events.php:880 +#: ../../mobile/operation/events.php:917 msgid "Fail validate" msgstr "" +#: ../../mobile/operation/events.php:922 +msgid "Sucessful in process" +msgstr "" + #: ../../mobile/operation/events.php:924 +msgid "Fail in process" +msgstr "" + +#: ../../mobile/operation/events.php:968 #, php-format msgid "Filter Events by %s" msgstr "" -#: ../../mobile/operation/events.php:934 ../../mobile/operation/events.php:935 +#: ../../mobile/operation/events.php:978 ../../mobile/operation/events.php:979 msgid "Preset Filters" msgstr "" -#: ../../mobile/operation/events.php:1144 -#: ../../include/functions_reporting_html.php:6176 -#: ../../include/functions_reporting_html.php:6335 +#: ../../mobile/operation/events.php:1191 +#: ../../include/functions_reporting_html.php:6210 +#: ../../include/functions_reporting_html.php:6369 #: ../../include/functions_reporting.php:2189 #: ../../include/functions_reporting.php:2564 #: ../../include/functions_events.php:2497 @@ -42100,31 +42449,35 @@ msgstr "" msgid "No events" msgstr "" -#: ../../mobile/operation/events.php:1455 +#: ../../mobile/operation/events.php:1580 #, php-format msgid "Filter: %s" msgstr "" -#: ../../mobile/operation/events.php:1467 +#: ../../mobile/operation/events.php:1592 #, php-format msgid "Severity: %s" msgstr "" -#: ../../mobile/operation/events.php:1496 +#: ../../mobile/operation/events.php:1621 #, php-format msgid "Type: %s" msgstr "" -#: ../../mobile/operation/events.php:1510 +#: ../../mobile/operation/events.php:1635 #, php-format msgid "Free search: %s" msgstr "" -#: ../../mobile/operation/events.php:1517 +#: ../../mobile/operation/events.php:1642 #, php-format msgid "Hours: %s" msgstr "" +#: ../../mobile/operation/server_status.php:371 +msgid "No servers" +msgstr "" + #: ../../mobile/operation/tactical.php:216 msgid "Last activity" msgstr "" @@ -42150,388 +42503,384 @@ msgstr "" msgid "Border color" msgstr "" -#: ../../include/functions_visual_map_editor.php:151 +#: ../../include/functions_visual_map_editor.php:149 msgid "Border width" msgstr "" -#: ../../include/functions_visual_map_editor.php:160 +#: ../../include/functions_visual_map_editor.php:158 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:323 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364 msgid "Fill color" msgstr "" -#: ../../include/functions_visual_map_editor.php:239 +#: ../../include/functions_visual_map_editor.php:235 msgid "" "Scroll the mouse wheel over the label editor to change the background color" msgstr "" -#: ../../include/functions_visual_map_editor.php:255 +#: ../../include/functions_visual_map_editor.php:251 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333 msgid "Clock animation" msgstr "" -#: ../../include/functions_visual_map_editor.php:258 +#: ../../include/functions_visual_map_editor.php:254 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328 msgid "Simple analogic" msgstr "" -#: ../../include/functions_visual_map_editor.php:259 +#: ../../include/functions_visual_map_editor.php:255 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329 msgid "Simple digital" msgstr "" -#: ../../include/functions_visual_map_editor.php:273 +#: ../../include/functions_visual_map_editor.php:269 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351 msgid "Time format" msgstr "" -#: ../../include/functions_visual_map_editor.php:276 +#: ../../include/functions_visual_map_editor.php:272 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346 msgid "Only time" msgstr "" -#: ../../include/functions_visual_map_editor.php:277 +#: ../../include/functions_visual_map_editor.php:273 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347 msgid "Time and date" msgstr "" -#: ../../include/functions_visual_map_editor.php:329 +#: ../../include/functions_visual_map_editor.php:325 msgid "Enable link" msgstr "" -#: ../../include/functions_visual_map_editor.php:350 +#: ../../include/functions_visual_map_editor.php:346 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:366 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:508 msgid "White" msgstr "" -#: ../../include/functions_visual_map_editor.php:351 +#: ../../include/functions_visual_map_editor.php:347 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:367 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:509 msgid "Black" msgstr "" -#: ../../include/functions_visual_map_editor.php:352 +#: ../../include/functions_visual_map_editor.php:348 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:368 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:510 msgid "Transparent" msgstr "" -#: ../../include/functions_visual_map_editor.php:378 +#: ../../include/functions_visual_map_editor.php:374 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:402 msgid "Grid color" msgstr "" -#: ../../include/functions_visual_map_editor.php:498 +#: ../../include/functions_visual_map_editor.php:492 msgid "Data image" msgstr "" -#: ../../include/functions_visual_map_editor.php:503 +#: ../../include/functions_visual_map_editor.php:498 msgid "Resume data color" msgstr "" -#: ../../include/functions_visual_map_editor.php:517 +#: ../../include/functions_visual_map_editor.php:511 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:274 msgid "24h" msgstr "" -#: ../../include/functions_visual_map_editor.php:518 +#: ../../include/functions_visual_map_editor.php:512 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:276 msgid "8h" msgstr "" -#: ../../include/functions_visual_map_editor.php:519 +#: ../../include/functions_visual_map_editor.php:513 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277 msgid "2h" msgstr "" -#: ../../include/functions_visual_map_editor.php:520 +#: ../../include/functions_visual_map_editor.php:514 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:278 msgid "1h" msgstr "" -#: ../../include/functions_visual_map_editor.php:524 +#: ../../include/functions_visual_map_editor.php:518 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:282 msgid "Max. Time" msgstr "" -#: ../../include/functions_visual_map_editor.php:640 +#: ../../include/functions_visual_map_editor.php:634 msgid "Original Size" msgstr "" -#: ../../include/functions_visual_map_editor.php:648 +#: ../../include/functions_visual_map_editor.php:654 msgid "Aspect ratio" msgstr "" -#: ../../include/functions_visual_map_editor.php:649 +#: ../../include/functions_visual_map_editor.php:657 msgid "Proportional Width" msgstr "" -#: ../../include/functions_visual_map_editor.php:657 +#: ../../include/functions_visual_map_editor.php:677 msgid "Height proportional" msgstr "" -#: ../../include/functions_visual_map_editor.php:668 -msgid "Widtzzzzh" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:686 -#: ../../include/functions_visual_map.php:4190 +#: ../../include/functions_visual_map_editor.php:736 +#: ../../include/functions_visual_map.php:4199 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460 -#: ../../include/rest-api/models/VisualConsole/Item.php:2124 +#: ../../include/rest-api/models/VisualConsole/Item.php:2127 msgid "Circular progress bar" msgstr "" -#: ../../include/functions_visual_map_editor.php:687 -#: ../../include/functions_visual_map.php:4195 +#: ../../include/functions_visual_map_editor.php:737 +#: ../../include/functions_visual_map.php:4204 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462 -#: ../../include/rest-api/models/VisualConsole/Item.php:2128 +#: ../../include/rest-api/models/VisualConsole/Item.php:2131 msgid "Circular progress bar (interior)" msgstr "" -#: ../../include/functions_visual_map_editor.php:737 +#: ../../include/functions_visual_map_editor.php:787 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522 msgid "Element color" msgstr "" -#: ../../include/functions_visual_map_editor.php:757 +#: ../../include/functions_visual_map_editor.php:802 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:534 msgid "Value color" msgstr "" -#: ../../include/functions_visual_map_editor.php:799 +#: ../../include/functions_visual_map_editor.php:839 msgid "Diameter" msgstr "" -#: ../../include/functions_visual_map_editor.php:806 +#: ../../include/functions_visual_map_editor.php:846 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:426 msgid "Default color" msgstr "" -#: ../../include/functions_visual_map_editor.php:810 +#: ../../include/functions_visual_map_editor.php:850 msgid "" "The color of the element will be the one selected in the first range created " "in which the value of the module is found (with the initial and final values " "of the range included)" msgstr "" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "Ranges" msgstr "" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "From value" msgstr "" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "To value" msgstr "" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 #: ../../include/rest-api/index.php:379 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:533 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:487 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:942 msgid "Color" msgstr "" -#: ../../include/functions_visual_map_editor.php:818 +#: ../../include/functions_visual_map_editor.php:859 msgid "Always show on top" msgstr "" -#: ../../include/functions_visual_map_editor.php:819 +#: ../../include/functions_visual_map_editor.php:861 msgid "" "It allows the element to be superimposed to the rest of items of the visual " "console" msgstr "" -#: ../../include/functions_visual_map_editor.php:822 +#: ../../include/functions_visual_map_editor.php:870 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:404 msgid "Hide last value on boolean modules" msgstr "" -#: ../../include/functions_visual_map_editor.php:828 +#: ../../include/functions_visual_map_editor.php:876 msgid "Show last value" msgstr "" -#: ../../include/functions_visual_map_editor.php:932 +#: ../../include/functions_visual_map_editor.php:980 msgid "For use the original image file size, set 0 width and 0 height." msgstr "" -#: ../../include/functions_visual_map_editor.php:972 -#: ../../include/rest-api/models/VisualConsole/Item.php:2439 +#: ../../include/functions_visual_map_editor.php:1020 +#: ../../include/rest-api/models/VisualConsole/Item.php:2442 msgid "Linked visual console" msgstr "" -#: ../../include/functions_visual_map_editor.php:1079 -#: ../../include/rest-api/models/VisualConsole/Item.php:2490 +#: ../../include/functions_visual_map_editor.php:1131 +#: ../../include/rest-api/models/VisualConsole/Item.php:2493 msgid "By status weight" msgstr "" -#: ../../include/functions_visual_map_editor.php:1080 -#: ../../include/rest-api/models/VisualConsole/Item.php:2491 +#: ../../include/functions_visual_map_editor.php:1132 +#: ../../include/rest-api/models/VisualConsole/Item.php:2494 msgid "By critical elements" msgstr "" -#: ../../include/functions_visual_map_editor.php:1095 -#: ../../include/rest-api/models/VisualConsole/Item.php:2498 +#: ../../include/functions_visual_map_editor.php:1147 +#: ../../include/rest-api/models/VisualConsole/Item.php:2501 msgid "Type of the status calculation of the linked visual console" msgstr "" -#: ../../include/functions_visual_map_editor.php:1100 -#: ../../include/rest-api/models/VisualConsole/Item.php:2489 +#: ../../include/functions_visual_map_editor.php:1152 +#: ../../include/rest-api/models/VisualConsole/Item.php:2492 msgid "By default" msgstr "" -#: ../../include/functions_visual_map_editor.php:1120 -#: ../../include/rest-api/models/VisualConsole/Item.php:2514 +#: ../../include/functions_visual_map_editor.php:1172 +#: ../../include/rest-api/models/VisualConsole/Item.php:2517 msgid "Linked visual console weight" msgstr "" -#: ../../include/functions_visual_map_editor.php:1187 +#: ../../include/functions_visual_map_editor.php:1239 msgid "Lines haven't advanced options" msgstr "" -#: ../../include/functions_visual_map_editor.php:1204 -#: ../../include/rest-api/models/VisualConsole/Item.php:2189 +#: ../../include/functions_visual_map_editor.php:1257 +#: ../../include/rest-api/models/VisualConsole/Item.php:2192 msgid "Restrict access to group" msgstr "" -#: ../../include/functions_visual_map_editor.php:1215 +#: ../../include/functions_visual_map_editor.php:1259 msgid "" "If selected, restrict visualization of this item in the visual console to " "users who have access to selected group. This is also used on calculating " "child visual consoles." msgstr "" -#: ../../include/functions_visual_map_editor.php:1246 -#: ../../include/rest-api/models/VisualConsole/Item.php:2202 +#: ../../include/functions_visual_map_editor.php:1304 +#: ../../include/rest-api/models/VisualConsole/Item.php:2205 msgid "Cache expiration" msgstr "" -#: ../../include/functions_visual_map_editor.php:1285 +#: ../../include/functions_visual_map_editor.php:1343 msgid "Click start point
of the line" msgstr "" -#: ../../include/functions_visual_map_editor.php:1288 +#: ../../include/functions_visual_map_editor.php:1346 msgid "Click end point
of the line" msgstr "" -#: ../../include/functions_visual_map_editor.php:1388 -#: ../../operation/visual_console/view.php:336 +#: ../../include/functions_visual_map_editor.php:1446 +#: ../../operation/visual_console/view.php:338 msgid "Serialized pie graph" msgstr "" -#: ../../include/functions_visual_map_editor.php:1389 -#: ../../operation/visual_console/view.php:341 +#: ../../include/functions_visual_map_editor.php:1447 +#: ../../operation/visual_console/view.php:343 msgid "Bars Graph" msgstr "" -#: ../../include/functions_visual_map_editor.php:1418 +#: ../../include/functions_visual_map_editor.php:1476 msgid "Show grid" msgstr "" -#: ../../include/functions_visual_map_editor.php:1420 +#: ../../include/functions_visual_map_editor.php:1478 msgid "Delete item" msgstr "" -#: ../../include/functions_visual_map_editor.php:1421 +#: ../../include/functions_visual_map_editor.php:1479 msgid "Copy item" msgstr "" -#: ../../include/functions_visual_map_editor.php:1458 -#: ../../include/functions_visual_map_editor.php:1462 -#: ../../include/functions_visual_map_editor.php:1466 -#: ../../include/functions_visual_map_editor.php:1470 -#: ../../include/functions_visual_map_editor.php:1474 -#: ../../include/functions_visual_map_editor.php:1478 -#: ../../include/functions_visual_map_editor.php:1482 -#: ../../include/functions_visual_map_editor.php:1486 -#: ../../include/functions_visual_map_editor.php:1490 -#: ../../include/functions_visual_map_editor.php:1494 -#: ../../include/functions_visual_map_editor.php:1498 -#: ../../include/functions_visual_map_editor.php:1502 -#: ../../include/functions_visual_map_editor.php:1506 -#: ../../include/functions_visual_map_editor.php:1510 -#: ../../include/functions_visual_map_editor.php:1514 -#: ../../include/functions_visual_map_editor.php:1518 -#: ../../include/functions_visual_map_editor.php:1522 -#: ../../include/functions_visual_map_editor.php:1526 -#: ../../include/functions_visual_map_editor.php:1530 +#: ../../include/functions_visual_map_editor.php:1516 +#: ../../include/functions_visual_map_editor.php:1520 +#: ../../include/functions_visual_map_editor.php:1524 +#: ../../include/functions_visual_map_editor.php:1528 +#: ../../include/functions_visual_map_editor.php:1532 +#: ../../include/functions_visual_map_editor.php:1536 +#: ../../include/functions_visual_map_editor.php:1540 +#: ../../include/functions_visual_map_editor.php:1544 +#: ../../include/functions_visual_map_editor.php:1548 +#: ../../include/functions_visual_map_editor.php:1552 +#: ../../include/functions_visual_map_editor.php:1556 +#: ../../include/functions_visual_map_editor.php:1560 +#: ../../include/functions_visual_map_editor.php:1564 +#: ../../include/functions_visual_map_editor.php:1568 +#: ../../include/functions_visual_map_editor.php:1572 +#: ../../include/functions_visual_map_editor.php:1576 +#: ../../include/functions_visual_map_editor.php:1580 +#: ../../include/functions_visual_map_editor.php:1584 +#: ../../include/functions_visual_map_editor.php:1588 msgid "Visual Console Builder Information" msgstr "" -#: ../../include/functions_visual_map_editor.php:1459 +#: ../../include/functions_visual_map_editor.php:1517 msgid "Min allowed size is 1024x768." msgstr "" -#: ../../include/functions_visual_map_editor.php:1463 -#: ../../include/functions_visual_map_editor.php:1531 +#: ../../include/functions_visual_map_editor.php:1521 +#: ../../include/functions_visual_map_editor.php:1589 msgid "No custom graph defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1467 +#: ../../include/functions_visual_map_editor.php:1525 msgid "No image or name defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1471 +#: ../../include/functions_visual_map_editor.php:1529 msgid "No label defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1475 +#: ../../include/functions_visual_map_editor.php:1533 msgid "No service defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1479 +#: ../../include/functions_visual_map_editor.php:1537 msgid "No image defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1483 +#: ../../include/functions_visual_map_editor.php:1541 msgid "No process defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1487 +#: ../../include/functions_visual_map_editor.php:1545 msgid "No Max value defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1491 +#: ../../include/functions_visual_map_editor.php:1549 msgid "No width defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1495 +#: ../../include/functions_visual_map_editor.php:1553 msgid "No height defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1499 +#: ../../include/functions_visual_map_editor.php:1557 msgid "The width must not exceed the size of the visual console container." msgstr "" -#: ../../include/functions_visual_map_editor.php:1503 +#: ../../include/functions_visual_map_editor.php:1561 msgid "The height must not exceed the size of the visual console container." msgstr "" -#: ../../include/functions_visual_map_editor.php:1507 +#: ../../include/functions_visual_map_editor.php:1565 msgid "No period defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1511 +#: ../../include/functions_visual_map_editor.php:1569 msgid "No agent defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1515 +#: ../../include/functions_visual_map_editor.php:1573 msgid "No module defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1519 +#: ../../include/functions_visual_map_editor.php:1577 msgid "No module defined. This module must be string type." msgstr "" -#: ../../include/functions_visual_map_editor.php:1523 +#: ../../include/functions_visual_map_editor.php:1581 msgid "Successfully save the changes." msgstr "" -#: ../../include/functions_visual_map_editor.php:1527 +#: ../../include/functions_visual_map_editor.php:1585 msgid "Could not be save." msgstr "" @@ -42545,101 +42894,97 @@ msgid "Selected" msgstr "" #: ../../include/graphs/functions_gd.php:183 -#: ../../include/graphs/functions_gd.php:466 -#: ../../include/functions_graph.php:2774 -#: ../../include/functions_graph.php:2822 +#: ../../include/graphs/functions_gd.php:470 +#: ../../include/functions_graph.php:2784 +#: ../../include/functions_graph.php:2832 msgid "Out of limits" msgstr "" -#: ../../include/graphs/functions_flot.php:370 +#: ../../include/graphs/functions_flot.php:371 msgid "Cancel zoom" msgstr "" -#: ../../include/graphs/functions_flot.php:372 +#: ../../include/graphs/functions_flot.php:373 msgid "Warning and Critical thresholds" msgstr "" -#: ../../include/graphs/functions_flot.php:377 +#: ../../include/graphs/functions_flot.php:378 msgid "Overview graph" msgstr "" -#: ../../include/graphs/functions_flot.php:514 -#: ../../include/functions_reporting_html.php:663 -#: ../../include/functions_reporting_html.php:4681 -#: ../../include/ajax/events.php:1304 ../../include/functions_graph.php:4822 -#: ../../include/functions_treeview.php:299 -msgid "No data" -msgstr "" - -#: ../../include/functions_servers.php:582 +#: ../../include/functions_servers.php:590 msgid "SNMP Trap server" msgstr "" -#: ../../include/functions_servers.php:699 +#: ../../include/functions_servers.php:707 msgid "Correlation server" msgstr "" -#: ../../include/functions_servers.php:712 -#: ../../include/functions_servers.php:1230 +#: ../../include/functions_servers.php:720 +#: ../../include/functions_servers.php:1253 msgid "Enterprise ICMP server" msgstr "" -#: ../../include/functions_servers.php:725 -#: ../../include/functions_servers.php:1233 +#: ../../include/functions_servers.php:733 +#: ../../include/functions_servers.php:1256 msgid "Enterprise SNMP server" msgstr "" -#: ../../include/functions_servers.php:738 +#: ../../include/functions_servers.php:746 #: ../../include/class/AgentWizard.class.php:1353 msgid "Enterprise Satellite server" msgstr "" -#: ../../include/functions_servers.php:751 +#: ../../include/functions_servers.php:759 msgid "Enterprise Transactional server" msgstr "" -#: ../../include/functions_servers.php:764 +#: ../../include/functions_servers.php:772 msgid "Mainframe server" msgstr "" -#: ../../include/functions_servers.php:777 +#: ../../include/functions_servers.php:785 msgid "Sync server" msgstr "" -#: ../../include/functions_servers.php:790 +#: ../../include/functions_servers.php:798 msgid "Wux server" msgstr "" -#: ../../include/functions_servers.php:803 -#: ../../include/functions_servers.php:1260 +#: ../../include/functions_servers.php:811 +#: ../../include/functions_servers.php:1283 msgid "Log server" msgstr "" -#: ../../include/functions_servers.php:829 +#: ../../include/functions_servers.php:837 msgid "Autoprovision server" msgstr "" -#: ../../include/functions_servers.php:842 +#: ../../include/functions_servers.php:850 msgid "Migration server" msgstr "" -#: ../../include/functions_servers.php:1239 +#: ../../include/functions_servers.php:876 +msgid "Netflow server" +msgstr "" + +#: ../../include/functions_servers.php:1262 msgid "Prediction Server" msgstr "" -#: ../../include/functions_servers.php:1266 +#: ../../include/functions_servers.php:1289 #: ../../operation/agentes/estado_generalagente.php:329 msgid "Satellite server" msgstr "" #: ../../include/functions_reporting_html.php:87 -#: ../../include/functions_reporting_html.php:5823 +#: ../../include/functions_reporting_html.php:5851 #: ../../include/ajax/alert_list.ajax.php:592 msgid "From:" msgstr "" #: ../../include/functions_reporting_html.php:87 -#: ../../include/functions_reporting_html.php:5823 +#: ../../include/functions_reporting_html.php:5851 #: ../../include/ajax/alert_list.ajax.php:606 msgid "To:" msgstr "" @@ -42666,31 +43011,31 @@ msgid "Downtime" msgstr "" #: ../../include/functions_reporting_html.php:1003 -#: ../../include/functions_reporting_html.php:2514 -#: ../../include/functions_reporting_html.php:4563 -#: ../../include/functions_reporting_html.php:5102 +#: ../../include/functions_reporting_html.php:2535 +#: ../../include/functions_reporting_html.php:4591 +#: ../../include/functions_reporting_html.php:5130 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367 msgid "Min Value" msgstr "" #: ../../include/functions_reporting_html.php:1004 -#: ../../include/functions_reporting_html.php:2515 -#: ../../include/functions_reporting_html.php:4564 -#: ../../include/functions_reporting_html.php:5103 +#: ../../include/functions_reporting_html.php:2536 +#: ../../include/functions_reporting_html.php:4592 +#: ../../include/functions_reporting_html.php:5131 msgid "Average Value" msgstr "" #: ../../include/functions_reporting_html.php:1005 -#: ../../include/functions_reporting_html.php:2516 -#: ../../include/functions_reporting_html.php:4561 -#: ../../include/functions_reporting_html.php:5105 +#: ../../include/functions_reporting_html.php:2537 +#: ../../include/functions_reporting_html.php:4589 +#: ../../include/functions_reporting_html.php:5133 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 msgid "Max Value" msgstr "" #: ../../include/functions_reporting_html.php:1061 #: ../../include/functions_reporting_html.php:1069 -#: ../../include/functions_reporting_html.php:2645 +#: ../../include/functions_reporting_html.php:2664 msgid "Val. by" msgstr "" @@ -42700,203 +43045,208 @@ msgid "%s System" msgstr "" #: ../../include/functions_reporting_html.php:1221 -#: ../../include/functions_reporting_html.php:1436 +#: ../../include/functions_reporting_html.php:1445 msgid "Events by user validator" msgstr "" #: ../../include/functions_reporting_html.php:1238 -#: ../../include/functions_reporting_html.php:1453 +#: ../../include/functions_reporting_html.php:1462 msgid "Events by Severity" msgstr "" #: ../../include/functions_reporting_html.php:1255 -#: ../../include/functions_reporting_html.php:1470 +#: ../../include/functions_reporting_html.php:1479 msgid "Events validated vs unvalidated" msgstr "" -#: ../../include/functions_reporting_html.php:1612 +#: ../../include/functions_reporting_html.php:1621 msgid "Sec. groups" msgstr "" -#: ../../include/functions_reporting_html.php:1632 +#: ../../include/functions_reporting_html.php:1641 msgid "Remote conf." msgstr "" -#: ../../include/functions_reporting_html.php:1919 -#: ../../include/functions_inventory.php:1068 -#: ../../include/functions_inventory.php:1131 +#: ../../include/functions_reporting_html.php:1928 +#: ../../include/functions_inventory.php:1178 +#: ../../include/functions_inventory.php:1241 msgid "Added" msgstr "" -#: ../../include/functions_reporting_html.php:1930 -#: ../../include/functions_inventory.php:1074 -#: ../../include/functions_inventory.php:1139 +#: ../../include/functions_reporting_html.php:1939 +#: ../../include/functions_inventory.php:1184 +#: ../../include/functions_inventory.php:1249 #: ../../include/functions_filemanager.php:343 #: ../../include/functions_filemanager.php:360 msgid "Deleted" msgstr "" -#: ../../include/functions_reporting_html.php:2287 +#: ../../include/functions_reporting_html.php:2308 msgid "Cell turns grey when the module is in 'not initialize' status" msgstr "" -#: ../../include/functions_reporting_html.php:2580 -#: ../../include/functions_reporting_html.php:5691 +#: ../../include/functions_reporting_html.php:2601 +#: ../../include/functions_reporting_html.php:5719 msgid "Monitors" msgstr "" -#: ../../include/functions_reporting_html.php:2599 +#: ../../include/functions_reporting_html.php:2620 msgid "Events (not validated)" msgstr "" -#: ../../include/functions_reporting_html.php:2755 +#: ../../include/functions_reporting_html.php:2783 msgid "Events validated by user" msgstr "" -#: ../../include/functions_reporting_html.php:2772 -#: ../../include/functions_reporting_html.php:5980 +#: ../../include/functions_reporting_html.php:2800 +#: ../../include/functions_reporting_html.php:6008 msgid "Events by severity" msgstr "" -#: ../../include/functions_reporting_html.php:2789 +#: ../../include/functions_reporting_html.php:2817 msgid "Amount events validated" msgstr "" -#: ../../include/functions_reporting_html.php:3219 +#: ../../include/functions_reporting_html.php:3247 msgid "Total summary" msgstr "" -#: ../../include/functions_reporting_html.php:3226 +#: ../../include/functions_reporting_html.php:3254 msgid "No alerts fired" msgstr "" -#: ../../include/functions_reporting_html.php:3326 +#: ../../include/functions_reporting_html.php:3354 #, php-format msgid "Interface '%s' throughput graph" msgstr "" -#: ../../include/functions_reporting_html.php:3330 +#: ../../include/functions_reporting_html.php:3358 msgid "Mac" msgstr "" -#: ../../include/functions_reporting_html.php:3331 +#: ../../include/functions_reporting_html.php:3359 msgid "Actual status" msgstr "" -#: ../../include/functions_reporting_html.php:3702 -#: ../../include/functions_reporting_html.php:3704 +#: ../../include/functions_reporting_html.php:3730 +#: ../../include/functions_reporting_html.php:3732 msgid "Empty modules" msgstr "" -#: ../../include/functions_reporting_html.php:4175 +#: ../../include/functions_reporting_html.php:4203 msgid "Time Not Init Module" msgstr "" -#: ../../include/functions_reporting_html.php:4186 +#: ../../include/functions_reporting_html.php:4214 msgid "% Ok" msgstr "" -#: ../../include/functions_reporting_html.php:4263 +#: ../../include/functions_reporting_html.php:4291 msgid "Checks Uknown" msgstr "" -#: ../../include/functions_reporting_html.php:4302 -#: ../../include/functions_reporting_html.php:4449 -#: ../../include/functions_reporting_html.php:4776 -#: ../../include/functions_reporting_html.php:4782 +#: ../../include/functions_reporting_html.php:4330 +#: ../../include/functions_reporting_html.php:4477 +#: ../../include/functions_reporting_html.php:4804 +#: ../../include/functions_reporting_html.php:4810 msgid "Primary" msgstr "" -#: ../../include/functions_reporting_html.php:5217 -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:12115 +#: ../../include/functions_reporting_html.php:5245 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12124 +#: ../../include/functions_reporting.php:12169 msgid "Alert level" msgstr "" -#: ../../include/functions_reporting_html.php:5465 +#: ../../include/functions_reporting_html.php:5493 #, php-format msgid "Agents in group: %s" msgstr "" -#: ../../include/functions_reporting_html.php:5567 +#: ../../include/functions_reporting_html.php:5595 msgid "Last failure" msgstr "" -#: ../../include/functions_reporting_html.php:5657 +#: ../../include/functions_reporting_html.php:5685 msgid "N/A(*)" msgstr "" -#: ../../include/functions_reporting_html.php:5905 -#: ../../include/functions_reporting.php:12322 -#: ../../include/functions_groups.php:2650 +#: ../../include/functions_reporting_html.php:5933 +#: ../../include/functions_reporting.php:12395 +#: ../../include/functions_groups.php:2675 msgid "Monitor checks" msgstr "" -#: ../../include/functions_reporting_html.php:5912 -#: ../../include/functions_reporting.php:12341 -#: ../../include/functions_groups.php:2669 +#: ../../include/functions_reporting_html.php:5940 +#: ../../include/functions_reporting.php:12414 +#: ../../include/functions_groups.php:2694 msgid "Total agents and monitors" msgstr "" -#: ../../include/functions_reporting_html.php:5931 -#: ../../include/functions_reporting_html.php:5936 +#: ../../include/functions_reporting_html.php:5959 +#: ../../include/functions_reporting_html.php:5964 msgid "Node overview" msgstr "" -#: ../../include/functions_reporting_html.php:5956 -#: ../../include/functions_reporting_html.php:5968 +#: ../../include/functions_reporting_html.php:5984 +#: ../../include/functions_reporting_html.php:5996 msgid "Critical events" msgstr "" -#: ../../include/functions_reporting_html.php:5959 -#: ../../include/functions_reporting_html.php:5970 +#: ../../include/functions_reporting_html.php:5987 +#: ../../include/functions_reporting_html.php:5998 msgid "Warning events" msgstr "" -#: ../../include/functions_reporting_html.php:5962 -#: ../../include/functions_reporting_html.php:5972 +#: ../../include/functions_reporting_html.php:5990 +#: ../../include/functions_reporting_html.php:6000 msgid "OK events" msgstr "" -#: ../../include/functions_reporting_html.php:5965 -#: ../../include/functions_reporting_html.php:5974 +#: ../../include/functions_reporting_html.php:5993 +#: ../../include/functions_reporting_html.php:6002 msgid "Unknown events" msgstr "" -#: ../../include/functions_reporting_html.php:5990 +#: ../../include/functions_reporting_html.php:6019 +msgid "Event count corresponds to events within the last hour" +msgstr "" + +#: ../../include/functions_reporting_html.php:6024 msgid "Important Events by Criticity" msgstr "" -#: ../../include/functions_reporting_html.php:6017 +#: ../../include/functions_reporting_html.php:6051 #, php-format msgid "Last activity in %s console" msgstr "" -#: ../../include/functions_reporting_html.php:6066 -#: ../../include/functions_reporting_html.php:6208 +#: ../../include/functions_reporting_html.php:6100 +#: ../../include/functions_reporting_html.php:6242 msgid "Events info (1hr.)" msgstr "" -#: ../../include/functions_reporting_html.php:6365 +#: ../../include/functions_reporting_html.php:6399 msgid "This SLA has been affected by the following scheduled downtimes" msgstr "" -#: ../../include/functions_reporting_html.php:6366 +#: ../../include/functions_reporting_html.php:6400 msgid "" "If the duration of the scheduled downtime is less than 5 minutes it will not " "be represented in the graph" msgstr "" -#: ../../include/functions_reporting_html.php:6373 +#: ../../include/functions_reporting_html.php:6407 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:396 msgid "Dates" msgstr "" -#: ../../include/functions_reporting_html.php:6404 +#: ../../include/functions_reporting_html.php:6438 msgid "This item is affected by a malformed scheduled downtime" msgstr "" -#: ../../include/functions_reporting_html.php:6404 +#: ../../include/functions_reporting_html.php:6438 msgid "Go to the scheduled downtimes section to solve this" msgstr "" @@ -42914,7 +43264,7 @@ msgstr "" #: ../../include/functions.php:501 ../../include/functions.php:653 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:259 -#: ../../include/rest-api/models/VisualConsole/Item.php:2037 +#: ../../include/rest-api/models/VisualConsole/Item.php:2040 msgid "Y" msgstr "" @@ -42931,51 +43281,51 @@ msgid "N" msgstr "" #: ../../include/functions.php:1079 ../../include/functions.php:1325 -#: ../../include/functions.php:1359 ../../include/functions_graph.php:3317 -#: ../../include/functions_graph.php:3319 -#: ../../include/functions_graph.php:4834 +#: ../../include/functions.php:1359 ../../include/functions_graph.php:3327 +#: ../../include/functions_graph.php:3329 +#: ../../include/functions_graph.php:4844 #: ../../include/functions_incidents.php:34 #: ../../include/functions_incidents.php:75 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:547 -#: ../../include/functions_events.php:3210 -#: ../../operation/visual_console/view.php:451 +#: ../../include/functions_events.php:3215 +#: ../../operation/visual_console/view.php:453 msgid "Maintenance" msgstr "" #: ../../include/functions.php:1083 ../../include/functions.php:1326 -#: ../../include/functions.php:1363 ../../include/functions_graph.php:3323 -#: ../../include/functions_graph.php:3325 -#: ../../include/functions_graph.php:4838 +#: ../../include/functions.php:1363 ../../include/functions_graph.php:3333 +#: ../../include/functions_graph.php:3335 +#: ../../include/functions_graph.php:4848 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:552 -#: ../../include/functions_events.php:3214 +#: ../../include/functions_events.php:3219 msgid "Informational" msgstr "" #: ../../include/functions.php:1099 ../../include/functions.php:1328 -#: ../../include/functions.php:1379 ../../include/functions_graph.php:3335 -#: ../../include/functions_graph.php:3337 -#: ../../include/functions_graph.php:4854 +#: ../../include/functions.php:1379 ../../include/functions_graph.php:3345 +#: ../../include/functions_graph.php:3347 +#: ../../include/functions_graph.php:4864 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:572 msgid "Minor" msgstr "" #: ../../include/functions.php:1103 ../../include/functions.php:1330 -#: ../../include/functions.php:1383 ../../include/functions_graph.php:3347 -#: ../../include/functions_graph.php:3349 -#: ../../include/functions_graph.php:4858 +#: ../../include/functions.php:1383 ../../include/functions_graph.php:3357 +#: ../../include/functions_graph.php:3359 +#: ../../include/functions_graph.php:4868 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:577 msgid "Major" msgstr "" -#: ../../include/functions.php:1278 ../../include/functions_events.php:3130 +#: ../../include/functions.php:1278 ../../include/functions_events.php:3135 msgid "Monitor Critical" msgstr "" -#: ../../include/functions.php:1279 ../../include/functions_events.php:3134 +#: ../../include/functions.php:1279 ../../include/functions_events.php:3139 msgid "Monitor Warning" msgstr "" -#: ../../include/functions.php:1280 ../../include/functions_events.php:3138 +#: ../../include/functions.php:1280 ../../include/functions_events.php:3143 msgid "Monitor Normal" msgstr "" @@ -42983,17 +43333,17 @@ msgstr "" msgid "Monitor Unknown" msgstr "" -#: ../../include/functions.php:1285 ../../include/functions_events.php:2914 -#: ../../include/functions_events.php:3146 +#: ../../include/functions.php:1285 ../../include/functions_events.php:2919 +#: ../../include/functions_events.php:3151 msgid "Alert recovered" msgstr "" -#: ../../include/functions.php:1286 ../../include/functions_events.php:2962 -#: ../../include/functions_events.php:3150 +#: ../../include/functions.php:1286 ../../include/functions_events.php:2967 +#: ../../include/functions_events.php:3155 msgid "Alert ceased" msgstr "" -#: ../../include/functions.php:1287 ../../include/functions_events.php:3154 +#: ../../include/functions.php:1287 ../../include/functions_events.php:3159 msgid "Alert manual validation" msgstr "" @@ -43001,12 +43351,12 @@ msgstr "" msgid "Agent created" msgstr "" -#: ../../include/functions.php:1290 ../../include/functions_events.php:3158 +#: ../../include/functions.php:1290 ../../include/functions_events.php:3163 msgid "Recon host detected" msgstr "" -#: ../../include/functions.php:1293 ../../include/functions_events.php:2958 -#: ../../include/functions_events.php:3170 +#: ../../include/functions.php:1293 ../../include/functions_events.php:2963 +#: ../../include/functions_events.php:3175 msgid "Configuration change" msgstr "" @@ -43016,9 +43366,9 @@ msgstr "" #: ../../include/functions.php:1413 ../../include/functions.php:1450 #: ../../include/functions_modules.php:4263 -#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:598 -#: ../../operation/agentes/status_monitor.php:1868 -#: ../../operation/agentes/status_monitor.php:1881 +#: ../../include/class/Tree.class.php:678 ../../include/lib/Module.php:598 +#: ../../operation/agentes/status_monitor.php:1870 +#: ../../operation/agentes/status_monitor.php:1883 msgid "NO DATA" msgstr "" @@ -43114,7 +43464,7 @@ msgid "2 minutes" msgstr "" #: ../../include/functions.php:3420 ../../include/ajax/heatmap.ajax.php:55 -#: ../../include/ajax/module.php:219 ../../operation/heatmap.php:181 +#: ../../include/ajax/module.php:242 ../../operation/heatmap.php:181 #: ../../operation/gis_maps/render_view.php:155 msgid "5 minutes" msgstr "" @@ -43123,55 +43473,60 @@ msgstr "" msgid "15 minutes" msgstr "" -#: ../../include/functions.php:3422 ../../include/ajax/module.php:220 +#: ../../include/functions.php:3422 ../../include/ajax/module.php:243 msgid "30 minutes" msgstr "" -#: ../../include/functions.php:3949 +#: ../../include/functions.php:3975 msgid "Summatory series" msgstr "" -#: ../../include/functions.php:3953 +#: ../../include/functions.php:3979 msgid "Average series" msgstr "" -#: ../../include/functions.php:3981 ../../include/functions.php:4000 -#: ../../include/functions.php:4014 ../../include/functions.php:4036 -#: ../../include/functions.php:4117 ../../include/functions.php:4194 +#: ../../include/functions.php:4007 ../../include/functions.php:4026 +#: ../../include/functions.php:4040 ../../include/functions.php:4062 +#: ../../include/functions.php:4143 ../../include/functions.php:4220 msgid "Unit " msgstr "" -#: ../../include/functions.php:4062 ../../include/functions.php:4127 +#: ../../include/functions.php:4102 +#: ../../include/lib/Dashboard/Widgets/top_n.php:280 +msgid "Avg." +msgstr "" + +#: ../../include/functions.php:4153 msgid "Min:" msgstr "" -#: ../../include/functions.php:4069 ../../include/functions.php:4136 +#: ../../include/functions.php:4162 msgid "Max:" msgstr "" -#: ../../include/functions.php:4076 ../../include/functions.php:4145 +#: ../../include/functions.php:4171 msgid "Avg:" msgstr "" -#: ../../include/functions.php:4191 ../../include/functions.php:4199 +#: ../../include/functions.php:4217 ../../include/functions.php:4225 msgid "of module" msgstr "" -#: ../../include/functions.php:4218 +#: ../../include/functions.php:4244 msgid "Projection" msgstr "" -#: ../../include/functions.php:6064 +#: ../../include/functions.php:6094 msgid "Testing Pandora FMS email" msgstr "" -#: ../../include/functions.php:6077 +#: ../../include/functions.php:6107 msgid "" "This is an email test sent from Pandora FMS. If you can read this, your " "configuration works." msgstr "" -#: ../../include/functions.php:6311 +#: ../../include/functions.php:6341 #: ../../include/class/ConsoleSupervisor.php:1645 #: ../../include/class/ConsoleSupervisor.php:1669 #: ../../include/class/ConsoleSupervisor.php:1698 @@ -43180,11 +43535,11 @@ msgstr "" msgid "Not recommended '%s' value in PHP configuration" msgstr "" -#: ../../include/functions.php:6312 +#: ../../include/functions.php:6342 msgid "Recommended value is: -1" msgstr "" -#: ../../include/functions.php:6313 +#: ../../include/functions.php:6343 #: ../../include/class/ConsoleSupervisor.php:1704 #: ../../include/class/ConsoleSupervisor.php:1785 msgid "" @@ -43192,7 +43547,7 @@ msgid "" "administrator" msgstr "" -#: ../../include/functions.php:6314 ../../general/login_help_dialog.php:96 +#: ../../include/functions.php:6344 ../../general/login_help_dialog.php:96 #: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:41 msgid "Documentation" msgstr "" @@ -43315,9 +43670,9 @@ msgstr "" msgid "Successful delete of alert template." msgstr "" -#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12016 -#: ../../include/functions_api.php:12082 ../../include/functions_api.php:12363 -#: ../../include/functions_api.php:12443 +#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12019 +#: ../../include/functions_api.php:12085 ../../include/functions_api.php:12366 +#: ../../include/functions_api.php:12446 #, php-format msgid "%d agents affected" msgstr "" @@ -43413,159 +43768,159 @@ msgstr "" msgid "Successful deletion" msgstr "" -#: ../../include/functions_api.php:9624 +#: ../../include/functions_api.php:9625 msgid "User created." msgstr "" -#: ../../include/functions_api.php:9717 +#: ../../include/functions_api.php:9720 msgid "User updated." msgstr "" -#: ../../include/functions_api.php:9794 +#: ../../include/functions_api.php:9797 msgid "Enabled user." msgstr "" -#: ../../include/functions_api.php:9802 +#: ../../include/functions_api.php:9805 msgid "Disabled user." msgstr "" -#: ../../include/functions_api.php:10097 +#: ../../include/functions_api.php:10100 #, php-format msgid "Template have been inserted in %d agents." msgstr "" -#: ../../include/functions_api.php:10273 +#: ../../include/functions_api.php:10276 msgid "XML file was generated successfully in path: " msgstr "" -#: ../../include/functions_api.php:10413 +#: ../../include/functions_api.php:10416 #, php-format msgid "Module has been created in %d agents." msgstr "" -#: ../../include/functions_api.php:10541 +#: ../../include/functions_api.php:10544 #, php-format msgid "Action has been set for %d agents." msgstr "" -#: ../../include/functions_api.php:11616 +#: ../../include/functions_api.php:11619 msgid "User deleted." msgstr "" -#: ../../include/functions_api.php:11675 +#: ../../include/functions_api.php:11678 msgid "User profile added." msgstr "" -#: ../../include/functions_api.php:11740 +#: ../../include/functions_api.php:11743 msgid "User profile deleted." msgstr "" -#: ../../include/functions_api.php:12023 +#: ../../include/functions_api.php:12026 msgid "Module disabled successfully." msgstr "" -#: ../../include/functions_api.php:12025 +#: ../../include/functions_api.php:12028 msgid "The module could not be disabled." msgstr "" -#: ../../include/functions_api.php:12089 +#: ../../include/functions_api.php:12092 msgid "Module enabled successfully." msgstr "" -#: ../../include/functions_api.php:12091 +#: ../../include/functions_api.php:12094 msgid "The module could not be enabled." msgstr "" -#: ../../include/functions_api.php:12139 ../../include/functions_api.php:12192 +#: ../../include/functions_api.php:12142 ../../include/functions_api.php:12195 msgid "The alert could not be disabled." msgstr "" -#: ../../include/functions_api.php:12239 ../../include/functions_api.php:12292 +#: ../../include/functions_api.php:12242 ../../include/functions_api.php:12295 msgid "The alert could not be enabled." msgstr "" -#: ../../include/functions_api.php:13586 +#: ../../include/functions_api.php:13597 msgid "Enabled agent." msgstr "" -#: ../../include/functions_api.php:13594 +#: ../../include/functions_api.php:13605 msgid "Disabled agent." msgstr "" -#: ../../include/functions_api.php:14573 +#: ../../include/functions_api.php:14584 msgid "Metaconsole and the licenses of all nodes were updated." msgstr "" -#: ../../include/functions_api.php:14575 +#: ../../include/functions_api.php:14586 #, php-format msgid "Metaconsole license updated but %d of %d node failed to sync." msgstr "" -#: ../../include/functions_api.php:14578 +#: ../../include/functions_api.php:14589 msgid "This function is for metaconsole only." msgstr "" -#: ../../include/functions_api.php:14968 ../../include/functions_api.php:15039 +#: ../../include/functions_api.php:14979 ../../include/functions_api.php:15050 msgid "Successfully deleted." msgstr "" -#: ../../include/functions_api.php:14998 +#: ../../include/functions_api.php:15009 msgid "The user cannot access the cluster." msgstr "" -#: ../../include/functions_api.php:15884 +#: ../../include/functions_api.php:15895 msgid "Event filter successfully created." msgstr "" -#: ../../include/functions_api.php:16117 +#: ../../include/functions_api.php:16128 msgid "Event filter successfully updated." msgstr "" -#: ../../include/functions_api.php:16158 +#: ../../include/functions_api.php:16169 msgid "Event filter successfully deleted." msgstr "" -#: ../../include/functions_api.php:16474 +#: ../../include/functions_api.php:16485 msgid "Validated traps." msgstr "" -#: ../../include/functions_api.php:16501 +#: ../../include/functions_api.php:16512 msgid "Deleted traps." msgstr "" -#: ../../include/functions_api.php:16694 +#: ../../include/functions_api.php:16705 #, php-format msgid "Successfully updated module/alert count in id agent %d." msgstr "" -#: ../../include/functions_api.php:16696 +#: ../../include/functions_api.php:16707 msgid "Successfully updated module/alert count in all agents" msgstr "" -#: ../../include/functions_api.php:17170 +#: ../../include/functions_api.php:17181 #, php-format msgid "Successfully added to delete pending id agent %d to id policy %d." msgstr "" -#: ../../include/functions_api.php:17359 +#: ../../include/functions_api.php:17370 msgid "Error enable/disable discovery task. Id_user cannot be left blank." msgstr "" -#: ../../include/functions_api.php:17367 +#: ../../include/functions_api.php:17378 msgid "" "Error enable/disable discovery task. Enable/disable value cannot be left " "blank." msgstr "" -#: ../../include/functions_api.php:17392 +#: ../../include/functions_api.php:17403 msgid "Error in discovery task enabling/disabling." msgstr "" -#: ../../include/functions_api.php:17400 +#: ../../include/functions_api.php:17411 msgid "Enabled discovery task." msgstr "" -#: ../../include/functions_api.php:17408 +#: ../../include/functions_api.php:17419 msgid "Disabled discovery task." msgstr "" @@ -43691,25 +44046,39 @@ msgstr "" msgid "3 minutes" msgstr "" -#: ../../include/ajax/heatmap.ajax.php:81 +#: ../../include/ajax/heatmap.ajax.php:100 #: ../../include/lib/Dashboard/Widgets/heatmap.php:253 msgid "Group modules by tag" msgstr "" -#: ../../include/ajax/heatmap.ajax.php:82 +#: ../../include/ajax/heatmap.ajax.php:101 #: ../../include/lib/Dashboard/Widgets/heatmap.php:254 msgid "Group modules by module group" msgstr "" -#: ../../include/ajax/heatmap.ajax.php:83 +#: ../../include/ajax/heatmap.ajax.php:102 #: ../../include/lib/Dashboard/Widgets/heatmap.php:255 msgid "Group modules by agents" msgstr "" -#: ../../include/ajax/heatmap.ajax.php:100 +#: ../../include/ajax/heatmap.ajax.php:123 msgid "Show groups" msgstr "" +#: ../../include/ajax/heatmap.ajax.php:356 +msgid "Date of last data" +msgstr "" + +#: ../../include/ajax/heatmap.ajax.php:491 +#: ../../operation/agentes/estado_generalagente.php:406 +msgid "Out of bounds" +msgstr "" + +#: ../../include/ajax/heatmap.ajax.php:494 +#: ../../operation/agentes/estado_generalagente.php:441 +msgid "Next contact" +msgstr "" + #: ../../include/ajax/alert_list.ajax.php:289 #: ../../include/ajax/alert_list.ajax.php:314 msgid "Force execution" @@ -43721,13 +44090,17 @@ msgid "F." msgstr "" #: ../../include/ajax/alert_list.ajax.php:341 -#: ../../operation/agentes/alerts_status.php:372 -#: ../../operation/agentes/alerts_status.php:373 -#: ../../operation/agentes/alerts_status.php:414 -#: ../../operation/agentes/alerts_status.php:415 +#: ../../operation/agentes/alerts_status.php:374 +#: ../../operation/agentes/alerts_status.php:375 +#: ../../operation/agentes/alerts_status.php:416 +#: ../../operation/agentes/alerts_status.php:417 msgid "No alerts found" msgstr "" +#: ../../include/ajax/alert_list.ajax.php:540 +msgid "If a value of 0 is assigned, the Threshold of the action will be used." +msgstr "" + #: ../../include/ajax/alert_list.ajax.php:633 msgid "Insufficient permissions to validate alerts" msgstr "" @@ -43758,49 +44131,45 @@ msgstr "" msgid "Policy created succesfully" msgstr "" -#: ../../include/ajax/module.php:228 ../../include/class/AuditLog.class.php:215 +#: ../../include/ajax/module.php:251 ../../include/class/AuditLog.class.php:215 msgid "3 months" msgstr "" -#: ../../include/ajax/module.php:231 +#: ../../include/ajax/module.php:254 msgid "2 years" msgstr "" -#: ../../include/ajax/module.php:232 +#: ../../include/ajax/module.php:255 msgid "3 years" msgstr "" -#: ../../include/ajax/module.php:243 -#: ../../operation/agentes/datos_agente.php:194 +#: ../../include/ajax/module.php:266 +#: ../../operation/agentes/datos_agente.php:196 msgid "Choose a time from now" msgstr "" -#: ../../include/ajax/module.php:269 -#: ../../operation/agentes/datos_agente.php:197 +#: ../../include/ajax/module.php:292 +#: ../../operation/agentes/datos_agente.php:199 msgid "Specify time range" msgstr "" -#: ../../include/ajax/module.php:327 +#: ../../include/ajax/module.php:350 msgid "Exact phrase" msgstr "" -#: ../../include/ajax/module.php:419 ../../operation/agentes/stat_win.php:485 -#: ../../operation/agentes/interface_traffic_graph_win.php:310 +#: ../../include/ajax/module.php:442 ../../operation/agentes/stat_win.php:501 +#: ../../operation/agentes/interface_traffic_graph_win.php:319 msgid "" "In Pandora FMS, data is stored compressed. The data visualization in " "database, charts or CSV exported data won't match, because is interpreted at " "runtime. Please check 'Pandora FMS Engineering' chapter from documentation." msgstr "" -#: ../../include/ajax/module.php:586 -msgid "No available data to showaaaa" -msgstr "" - -#: ../../include/ajax/module.php:1000 +#: ../../include/ajax/module.php:1023 msgid "T" msgstr "" -#: ../../include/ajax/module.php:1007 ../../include/functions_reports.php:650 +#: ../../include/ajax/module.php:1030 ../../include/functions_reports.php:650 #: ../../include/functions_reports.php:654 #: ../../include/functions_reports.php:659 #: ../../include/functions_reports.php:665 @@ -43813,41 +44182,41 @@ msgstr "" #: ../../include/functions_groups.php:123 #: ../../include/functions_groups.php:187 #: ../../operation/search_results.php:120 -#: ../../operation/agentes/ver_agente.php:1578 -#: ../../operation/agentes/ver_agente.php:1881 +#: ../../operation/agentes/ver_agente.php:1574 +#: ../../operation/agentes/ver_agente.php:1877 msgid "Graphs" msgstr "" -#: ../../include/ajax/module.php:1155 +#: ../../include/ajax/module.php:1182 msgid "Time elapsed since last status change: " msgstr "" -#: ../../include/ajax/module.php:1281 -#: ../../operation/agentes/estado_generalagente.php:411 +#: ../../include/ajax/module.php:1309 +#: ../../operation/agentes/estado_generalagente.php:382 msgid "Force checks" msgstr "" -#: ../../include/ajax/module.php:1360 +#: ../../include/ajax/module.php:1388 msgid "Any monitors aren't with this filter." msgstr "" -#: ../../include/ajax/module.php:1360 +#: ../../include/ajax/module.php:1388 msgid "This agent doesn't have any active monitors." msgstr "" -#: ../../include/ajax/module.php:2138 +#: ../../include/ajax/module.php:2167 msgid "Load" msgstr "" -#: ../../include/ajax/module.php:2235 ../../include/ajax/agent.php:582 +#: ../../include/ajax/module.php:2264 ../../include/ajax/agent.php:582 msgid "Update/delete filter" msgstr "" -#: ../../include/ajax/module.php:2313 ../../include/ajax/agent.php:672 +#: ../../include/ajax/module.php:2342 ../../include/ajax/agent.php:672 msgid "Save current filter" msgstr "" -#: ../../include/ajax/module.php:2328 ../../include/ajax/agent.php:687 +#: ../../include/ajax/module.php:2357 ../../include/ajax/agent.php:687 #: ../../include/ajax/custom_fields.php:702 msgid "Delete filter" msgstr "" @@ -43930,108 +44299,116 @@ msgstr "" msgid "Console successfully deleted" msgstr "" -#: ../../include/ajax/events.php:98 +#: ../../include/ajax/events.php:99 msgid "Failed to retrieve comments" msgstr "" -#: ../../include/ajax/events.php:897 +#: ../../include/ajax/events.php:898 msgid "Save/Update filters" msgstr "" -#: ../../include/ajax/events.php:1287 +#: ../../include/ajax/events.php:1288 msgid "unauthorized" msgstr "" -#: ../../include/ajax/events.php:1393 +#: ../../include/ajax/events.php:1394 msgid "Error executing response" msgstr "" -#: ../../include/ajax/events.php:1746 +#: ../../include/ajax/events.php:1747 msgid "Related" msgstr "" -#: ../../include/ajax/events.php:1758 +#: ../../include/ajax/events.php:1759 msgid "Agent fields" msgstr "" -#: ../../include/ajax/events.php:1896 +#: ../../include/ajax/events.php:1897 msgid "Error adding comment" msgstr "" -#: ../../include/ajax/events.php:1903 +#: ../../include/ajax/events.php:1904 msgid "Comment added successfully" msgstr "" -#: ../../include/ajax/events.php:1910 +#: ../../include/ajax/events.php:1911 msgid "Error changing event status" msgstr "" -#: ../../include/ajax/events.php:1917 +#: ../../include/ajax/events.php:1918 msgid "Event status changed successfully" msgstr "" -#: ../../include/ajax/events.php:1924 +#: ../../include/ajax/events.php:1925 msgid "Error changing event owner" msgstr "" -#: ../../include/ajax/events.php:1931 +#: ../../include/ajax/events.php:1932 msgid "Event owner changed successfully" msgstr "" -#: ../../include/ajax/events.php:1938 +#: ../../include/ajax/events.php:1939 msgid "Error deleting event" msgstr "" -#: ../../include/ajax/events.php:2073 +#: ../../include/ajax/events.php:2074 msgid "Show all Events 24h" msgstr "" -#: ../../include/ajax/events.php:2170 +#: ../../include/ajax/events.php:2171 msgid "These commands will apply to all selected events" msgstr "" -#: ../../include/ajax/events.php:2232 +#: ../../include/ajax/events.php:2233 msgid "Total number of events in this node reached" msgstr "" -#: ../../include/ajax/events.php:2266 +#: ../../include/ajax/events.php:2267 msgid "Total Events per node" msgstr "" -#: ../../include/ajax/events.php:2331 +#: ../../include/ajax/events.php:2332 +#: ../../operation/events/sound_events.php:208 msgid "Console configuration" msgstr "" -#: ../../include/ajax/events.php:2338 +#: ../../include/ajax/events.php:2339 +#: ../../operation/events/sound_events.php:215 msgid "Set condition" msgstr "" -#: ../../include/ajax/events.php:2345 -#: ../../operation/events/sound_events.php:192 +#: ../../include/ajax/events.php:2346 +#: ../../operation/events/sound_events.php:222 msgid "All new events" msgstr "" -#: ../../include/ajax/events.php:2382 +#: ../../include/ajax/events.php:2383 +#: ../../operation/events/sound_events.php:259 msgid "Sound duration" msgstr "" -#: ../../include/ajax/events.php:2418 +#: ../../include/ajax/events.php:2419 +#: ../../operation/events/sound_events.php:295 msgid "Sound melody" msgstr "" -#: ../../include/ajax/events.php:2432 +#: ../../include/ajax/events.php:2433 +#: ../../operation/events/sound_events.php:309 msgid "Test sound" msgstr "" -#: ../../include/ajax/events.php:2456 +#: ../../include/ajax/events.php:2457 +#: ../../operation/events/sound_events.php:333 msgid "Discovered alerts" msgstr "" -#: ../../include/ajax/events.php:2463 +#: ../../include/ajax/events.php:2464 +#: ../../operation/events/sound_events.php:340 msgid "No alerts discovered" msgstr "" -#: ../../include/ajax/events.php:2468 +#: ../../include/ajax/events.php:2469 +#: ../../operation/events/sound_events.php:345 msgid "Congrats! there’s nothing to show" msgstr "" @@ -44054,28 +44431,28 @@ msgstr "" #: ../../include/functions_agents.php:3030 #: ../../include/functions_agents.php:3091 #: ../../include/functions_agents.php:3158 -#: ../../include/functions_reporting.php:13111 +#: ../../include/functions_reporting.php:13184 msgid "At least one module in CRITICAL status" msgstr "" #: ../../include/functions_agents.php:3036 #: ../../include/functions_agents.php:3104 #: ../../include/functions_agents.php:3166 -#: ../../include/functions_reporting.php:13118 +#: ../../include/functions_reporting.php:13191 msgid "At least one module in WARNING status" msgstr "" #: ../../include/functions_agents.php:3042 #: ../../include/functions_agents.php:3117 #: ../../include/functions_agents.php:3174 -#: ../../include/functions_reporting.php:13125 +#: ../../include/functions_reporting.php:13198 msgid "At least one module is in UKNOWN status" msgstr "" #: ../../include/functions_agents.php:3048 #: ../../include/functions_agents.php:3130 #: ../../include/functions_agents.php:3182 -#: ../../include/functions_reporting.php:13132 +#: ../../include/functions_reporting.php:13205 msgid "All Monitors OK" msgstr "" @@ -44087,12 +44464,12 @@ msgstr "" msgid "Dialog response time" msgstr "" -#: ../../include/functions_inventory.php:115 -#: ../../include/functions_inventory.php:1051 +#: ../../include/functions_inventory.php:116 +#: ../../include/functions_inventory.php:1161 msgid "No changes found" msgstr "" -#: ../../include/functions_inventory.php:214 +#: ../../include/functions_inventory.php:215 msgid "Get CSV file" msgstr "" @@ -44200,7 +44577,7 @@ msgstr "" msgid "Could not changes password on remote pandora" msgstr "" -#: ../../include/auth/mysql.php:858 +#: ../../include/auth/mysql.php:886 msgid "Your installation of PHP does not support LDAP" msgstr "" @@ -44220,19 +44597,19 @@ msgstr "" msgid "User, group or profile status not specified" msgstr "" -#: ../../include/functions_graph.php:2607 +#: ../../include/functions_graph.php:2617 msgid "Not fired alerts" msgstr "" -#: ../../include/functions_graph.php:3235 -#: ../../include/functions_graph.php:5490 ../../include/functions_ui.php:4233 +#: ../../include/functions_graph.php:3245 +#: ../../include/functions_graph.php:5500 ../../include/functions_ui.php:4307 #: ../../include/functions_events.php:108 -#: ../../include/functions_events.php:2946 -#: ../../operation/events/events.php:698 +#: ../../include/functions_events.php:2951 +#: ../../operation/events/events.php:703 msgid "SYSTEM" msgstr "" -#: ../../include/functions_graph.php:5237 +#: ../../include/functions_graph.php:5247 msgid "Main node" msgstr "" @@ -44253,240 +44630,264 @@ msgstr "" msgid "Module information" msgstr "" -#: ../../include/functions_treeview.php:380 +#: ../../include/functions_treeview.php:329 +msgid "Go to module edition" +msgstr "" + +#: ../../include/functions_treeview.php:384 msgid "There was a problem loading alerts" msgstr "" -#: ../../include/functions_treeview.php:467 +#: ../../include/functions_treeview.php:471 msgid "Go to alerts edition" msgstr "" -#: ../../include/functions_treeview.php:559 +#: ../../include/functions_treeview.php:563 #: ../../operation/agentes/agent_fields.php:24 #: ../../operation/agentes/custom_fields.php:24 #: ../../operation/agentes/estado_generalagente.php:62 msgid "There was a problem loading agent" msgstr "" -#: ../../include/functions_treeview.php:611 +#: ../../include/functions_treeview.php:615 msgid "Click here for view this agent" msgstr "" -#: ../../include/functions_treeview.php:633 -#: ../../operation/agentes/estado_generalagente.php:588 +#: ../../include/functions_treeview.php:637 +#: ../../operation/agentes/estado_generalagente.php:557 msgid "Other IP addresses" msgstr "" -#: ../../include/functions_treeview.php:676 +#: ../../include/functions_treeview.php:680 msgid "Remote contact" msgstr "" -#: ../../include/functions_treeview.php:684 +#: ../../include/functions_treeview.php:688 msgid "Next agent contact" msgstr "" -#: ../../include/functions_treeview.php:697 +#: ../../include/functions_treeview.php:701 msgid "Agent information" msgstr "" -#: ../../include/functions_treeview.php:744 +#: ../../include/functions_treeview.php:748 msgid "Agent access rate (24h)" msgstr "" -#: ../../include/functions_treeview.php:800 +#: ../../include/functions_treeview.php:804 #: ../../operation/agentes/interface_view.functions.php:722 -#: ../../operation/agentes/pandora_networkmap.view.php:1303 -#: ../../operation/agentes/estado_generalagente.php:826 +#: ../../operation/agentes/pandora_networkmap.view.php:1304 +#: ../../operation/agentes/estado_generalagente.php:784 msgid "Interface traffic" msgstr "" -#: ../../include/functions_treeview.php:823 +#: ../../include/functions_treeview.php:827 msgid "Interface information" msgstr "" -#: ../../include/functions_treeview.php:863 -#: ../../operation/agentes/estado_generalagente.php:549 +#: ../../include/functions_treeview.php:867 +#: ../../operation/agentes/estado_generalagente.php:524 msgid "Position (Long, Lat)" msgstr "" -#: ../../include/functions_treeview.php:872 -#: ../../operation/agentes/ver_agente.php:1552 -#: ../../operation/agentes/ver_agente.php:1889 -#: ../../operation/agentes/estado_generalagente.php:575 +#: ../../include/functions_treeview.php:876 +#: ../../operation/agentes/ver_agente.php:1548 +#: ../../operation/agentes/ver_agente.php:1885 +#: ../../operation/agentes/estado_generalagente.php:544 msgid "Url address" msgstr "" -#: ../../include/functions_treeview.php:886 -#: ../../operation/agentes/estado_generalagente.php:600 +#: ../../include/functions_treeview.php:890 +#: ../../operation/agentes/estado_generalagente.php:569 msgid "Timezone Offset" msgstr "" -#: ../../include/functions_treeview.php:917 +#: ../../include/functions_treeview.php:921 msgid "Advanced information" msgstr "" -#: ../../include/functions_menu.php:561 +#: ../../include/functions_treeview.php:940 +msgid "Go to cluster edition" +msgstr "" + +#: ../../include/functions_treeview.php:949 +msgid "Go to module creation" +msgstr "" + +#: ../../include/functions_treeview.php:958 +msgid "Go to agent edition" +msgstr "" + +#: ../../include/functions_menu.php:563 msgid "Configure user" msgstr "" -#: ../../include/functions_menu.php:562 +#: ../../include/functions_menu.php:564 msgid "Configure profile" msgstr "" -#: ../../include/functions_menu.php:564 +#: ../../include/functions_menu.php:566 msgid "Module templates management" msgstr "" -#: ../../include/functions_menu.php:565 +#: ../../include/functions_menu.php:567 msgid "Inventory modules management" msgstr "" -#: ../../include/functions_menu.php:572 +#: ../../include/functions_menu.php:574 msgid "Builder visual console" msgstr "" -#: ../../include/functions_menu.php:574 +#: ../../include/functions_menu.php:576 msgid "View reporting" msgstr "" -#: ../../include/functions_menu.php:575 +#: ../../include/functions_menu.php:577 msgid "Graph viewer" msgstr "" -#: ../../include/functions_menu.php:577 +#: ../../include/functions_menu.php:579 msgid "Manage custom graphs" msgstr "" -#: ../../include/functions_menu.php:578 +#: ../../include/functions_menu.php:580 msgid "View graph containers" msgstr "" -#: ../../include/functions_menu.php:579 +#: ../../include/functions_menu.php:581 msgid "Manage graph containers" msgstr "" -#: ../../include/functions_menu.php:580 +#: ../../include/functions_menu.php:582 msgid "View graph templates" msgstr "" -#: ../../include/functions_menu.php:581 +#: ../../include/functions_menu.php:583 msgid "Manage graph templates" msgstr "" -#: ../../include/functions_menu.php:582 +#: ../../include/functions_menu.php:584 msgid "Graph template items" msgstr "" -#: ../../include/functions_menu.php:583 +#: ../../include/functions_menu.php:585 msgid "Graph template wizard" msgstr "" -#: ../../include/functions_menu.php:586 +#: ../../include/functions_menu.php:588 +msgid "New custom reports" +msgstr "" + +#: ../../include/functions_menu.php:589 msgid "Edit custom reports" msgstr "" -#: ../../include/functions_menu.php:588 -msgid "Edit item" -msgstr "" - #: ../../include/functions_menu.php:590 -msgid "Wizard sla" -msgstr "" - -#: ../../include/functions_menu.php:591 -msgid "Global custom reports" +msgid "Remove custom reports" msgstr "" #: ../../include/functions_menu.php:592 -msgid "Avanced options" +msgid "Edit item" +msgstr "" + +#: ../../include/functions_menu.php:594 +msgid "Wizard sla" msgstr "" #: ../../include/functions_menu.php:595 +msgid "Global custom reports" +msgstr "" + +#: ../../include/functions_menu.php:596 +msgid "Avanced options" +msgstr "" + +#: ../../include/functions_menu.php:599 msgid "Manage GIS Maps" msgstr "" -#: ../../include/functions_menu.php:598 +#: ../../include/functions_menu.php:602 msgid "Manage messages" msgstr "" -#: ../../include/functions_menu.php:600 +#: ../../include/functions_menu.php:604 msgid "Manage module groups" msgstr "" -#: ../../include/functions_menu.php:601 +#: ../../include/functions_menu.php:605 msgid "Manage custom field" msgstr "" -#: ../../include/functions_menu.php:603 +#: ../../include/functions_menu.php:607 msgid "Manage alert actions" msgstr "" -#: ../../include/functions_menu.php:604 +#: ../../include/functions_menu.php:608 msgid "Manage commands" msgstr "" -#: ../../include/functions_menu.php:606 +#: ../../include/functions_menu.php:610 msgid "Manage export targets" msgstr "" -#: ../../include/functions_menu.php:608 ../../operation/menu.php:254 +#: ../../include/functions_menu.php:612 ../../operation/menu.php:254 msgid "SNMP trap generator" msgstr "" -#: ../../include/functions_menu.php:611 +#: ../../include/functions_menu.php:615 msgid "Manage incident" msgstr "" -#: ../../include/functions_menu.php:613 +#: ../../include/functions_menu.php:617 msgid "Manage groups" msgstr "" -#: ../../include/functions_menu.php:673 +#: ../../include/functions_menu.php:677 msgid "Administration" msgstr "" -#: ../../include/functions_menu.php:936 ../../include/functions_ui.php:303 +#: ../../include/functions_menu.php:941 ../../include/functions_ui.php:303 msgid "Information" msgstr "" -#: ../../include/functions_menu.php:938 ../../include/functions_menu.php:1109 +#: ../../include/functions_menu.php:943 ../../include/functions_menu.php:1114 #: ../../include/class/Diagnostics.class.php:251 msgid "System Info" msgstr "" -#: ../../include/functions_menu.php:939 +#: ../../include/functions_menu.php:944 msgid "PHP System" msgstr "" -#: ../../include/functions_menu.php:954 +#: ../../include/functions_menu.php:959 msgid "MR version" msgstr "" -#: ../../include/functions_menu.php:962 +#: ../../include/functions_menu.php:967 msgid "Update manager" msgstr "" -#: ../../include/functions_menu.php:974 +#: ../../include/functions_menu.php:979 msgid "System report" msgstr "" -#: ../../include/functions_menu.php:1006 +#: ../../include/functions_menu.php:1011 #: ../../include/class/Diagnostics.class.php:243 msgid "Database health status" msgstr "" -#: ../../include/functions_menu.php:1036 +#: ../../include/functions_menu.php:1041 #: ../../include/class/Diagnostics.class.php:247 msgid "Database status info" msgstr "" -#: ../../include/functions_menu.php:1074 +#: ../../include/functions_menu.php:1079 #: ../../include/class/Diagnostics.class.php:260 #, php-format msgid "Tables fragmentation in the %s database" msgstr "" -#: ../../include/functions_menu.php:1168 +#: ../../include/functions_menu.php:1173 msgid "PHP system" msgstr "" @@ -44598,6 +44999,7 @@ msgid "Now, pull down the Manage alerts menu and click on Actions. " msgstr "" #: ../../include/help/clippy/module_unknow.php:35 +#: ../../include/functions_clippy.php:321 msgid "You have unknown modules in this agent." msgstr "" @@ -44914,8 +45316,8 @@ msgid "Please check if the email configuration is correct." msgstr "" #: ../../include/functions_profile.php:188 -#: ../../operation/users/user_edit.php:972 -#: ../../operation/users/user_edit.php:981 +#: ../../operation/users/user_edit.php:969 +#: ../../operation/users/user_edit.php:978 msgid "Profiles/Groups assigned to this user" msgstr "" @@ -44949,150 +45351,150 @@ msgid "" "access" msgstr "" -#: ../../include/functions_ui.php:985 +#: ../../include/functions_ui.php:1017 msgid "Software" msgstr "" -#: ../../include/functions_ui.php:1281 +#: ../../include/functions_ui.php:1318 msgid "Force check" msgstr "" -#: ../../include/functions_ui.php:1525 +#: ../../include/functions_ui.php:1568 msgid "The alert would fire when the value is over " msgstr "" -#: ../../include/functions_ui.php:1530 +#: ../../include/functions_ui.php:1573 msgid "The alert would fire when the value is under " msgstr "" -#: ../../include/functions_ui.php:1545 +#: ../../include/functions_ui.php:1588 msgid "Unknown option." msgstr "" -#: ../../include/functions_ui.php:1907 ../../include/functions_config.php:2666 +#: ../../include/functions_ui.php:1950 ../../include/functions_config.php:2686 msgid "the Flexible Monitoring System" msgstr "" -#: ../../include/functions_ui.php:2286 ../../include/functions_ui.php:2312 +#: ../../include/functions_ui.php:2329 ../../include/functions_ui.php:2355 #, php-format msgid "Total items: %s" msgstr "" -#: ../../include/functions_ui.php:2341 +#: ../../include/functions_ui.php:2384 msgid "First" msgstr "" -#: ../../include/functions_ui.php:2797 +#: ../../include/functions_ui.php:2840 msgid "Unknown type" msgstr "" -#: ../../include/functions_ui.php:3752 +#: ../../include/functions_ui.php:3800 msgid "No matching records found" msgstr "" -#: ../../include/functions_ui.php:3753 +#: ../../include/functions_ui.php:3801 msgid "No data available in table" msgstr "" -#: ../../include/functions_ui.php:3994 ../../include/functions_ui.php:3995 +#: ../../include/functions_ui.php:4066 ../../include/functions_ui.php:4067 msgid "Export current page to CSV" msgstr "" -#: ../../include/functions_ui.php:4224 ../../include/functions_events.php:75 -#: ../../include/functions_events.php:101 ../../operation/events/events.php:689 -#: ../../operation/events/events.php:753 +#: ../../include/functions_ui.php:4298 ../../include/functions_events.php:75 +#: ../../include/functions_events.php:101 ../../operation/events/events.php:694 +#: ../../operation/events/events.php:758 msgid "ALERT" msgstr "" -#: ../../include/functions_ui.php:4312 ../../include/functions_events.php:167 -#: ../../operation/events/events.php:613 +#: ../../include/functions_ui.php:4386 ../../include/functions_events.php:167 +#: ../../operation/events/events.php:618 msgid "MAINTENANCE" msgstr "" -#: ../../include/functions_ui.php:4317 ../../include/functions_events.php:170 -#: ../../operation/events/events.php:618 +#: ../../include/functions_ui.php:4391 ../../include/functions_events.php:170 +#: ../../operation/events/events.php:623 msgid "INFORMATIONAL" msgstr "" -#: ../../include/functions_ui.php:4337 ../../include/functions_events.php:176 -#: ../../operation/events/events.php:628 +#: ../../include/functions_ui.php:4411 ../../include/functions_events.php:176 +#: ../../operation/events/events.php:633 msgid "MINOR" msgstr "" -#: ../../include/functions_ui.php:4342 ../../include/functions_events.php:173 -#: ../../operation/events/events.php:623 +#: ../../include/functions_ui.php:4416 ../../include/functions_events.php:173 +#: ../../operation/events/events.php:628 msgid "MAJOR" msgstr "" -#: ../../include/functions_ui.php:5168 ../../include/functions_html.php:962 -#: ../../include/functions_html.php:3659 ../../include/functions_html.php:4158 -#: ../../include/functions_reporting.php:12166 -#: ../../include/functions_reporting.php:12319 -#: ../../include/functions_reporting.php:12333 -#: ../../include/functions_reporting.php:14672 -#: ../../include/functions_reporting.php:14747 -#: ../../include/functions_groups.php:2647 -#: ../../include/functions_groups.php:2661 -#: ../../include/functions_groups.php:2711 +#: ../../include/functions_ui.php:5243 ../../include/functions_html.php:967 +#: ../../include/functions_html.php:3675 ../../include/functions_html.php:4174 +#: ../../include/functions_reporting.php:12239 +#: ../../include/functions_reporting.php:12392 +#: ../../include/functions_reporting.php:12406 +#: ../../include/functions_reporting.php:14745 +#: ../../include/functions_reporting.php:14820 +#: ../../include/functions_groups.php:2672 +#: ../../include/functions_groups.php:2686 +#: ../../include/functions_groups.php:2736 msgid "Enterprise version not installed" msgstr "" -#: ../../include/functions_ui.php:5563 +#: ../../include/functions_ui.php:5638 msgid "Type at least two characters to search." msgstr "" -#: ../../include/functions_ui.php:6503 +#: ../../include/functions_ui.php:6578 msgid "Unhandled error" msgstr "" -#: ../../include/functions_ui.php:6504 +#: ../../include/functions_ui.php:6579 msgid "An unhandled error occurs" msgstr "" -#: ../../include/functions_ui.php:6775 +#: ../../include/functions_ui.php:6850 #, php-format msgid "" "These controls are using the timezone of the system (%s) instead of yours " "(%s). The difference with your time zone in hours is %s." msgstr "" -#: ../../include/functions_ui.php:7127 +#: ../../include/functions_ui.php:7199 msgid "Results" msgstr "" -#: ../../include/functions_ui.php:7173 +#: ../../include/functions_ui.php:7245 msgid "Execute query" msgstr "" -#: ../../include/functions_ui.php:7196 +#: ../../include/functions_ui.php:7266 msgid "Show password" msgstr "" -#: ../../include/functions_ui.php:7296 +#: ../../include/functions_ui.php:7366 msgid "WEB server" msgstr "" -#: ../../include/functions_ui.php:7306 +#: ../../include/functions_ui.php:7376 msgid "Wizard Module" msgstr "" -#: ../../include/functions_ui.php:7399 +#: ../../include/functions_ui.php:7469 msgid "Select inventory module" msgstr "" -#: ../../include/functions_ui.php:7455 +#: ../../include/functions_ui.php:7532 msgid "Use custom fields" msgstr "" -#: ../../include/functions_ui.php:7581 +#: ../../include/functions_ui.php:7672 msgid "Field name" msgstr "" -#: ../../include/functions_ui.php:7598 +#: ../../include/functions_ui.php:7689 msgid "It's a password" msgstr "" -#: ../../include/functions_ui.php:7606 +#: ../../include/functions_ui.php:7697 msgid "Add field" msgstr "" @@ -45111,21 +45513,21 @@ msgstr "" msgid "Modules successfully added to layout" msgstr "" -#: ../../include/functions_visual_map.php:3108 +#: ../../include/functions_visual_map.php:3111 msgid "Agents successfully added to layout" msgstr "" -#: ../../include/functions_visual_map.php:3504 +#: ../../include/functions_visual_map.php:3512 msgid "Cannot load the visualmap" msgstr "" -#: ../../include/functions_visual_map.php:4175 -#: ../../include/rest-api/models/VisualConsole/Item.php:2108 +#: ../../include/functions_visual_map.php:4184 +#: ../../include/rest-api/models/VisualConsole/Item.php:2111 msgid "Bars graph" msgstr "" -#: ../../include/functions_visual_map.php:4185 -#: ../../include/rest-api/models/VisualConsole/Item.php:2116 +#: ../../include/functions_visual_map.php:4194 +#: ../../include/rest-api/models/VisualConsole/Item.php:2119 msgid "Percentile bar" msgstr "" @@ -45175,7 +45577,7 @@ msgstr "" msgid "No actions defined" msgstr "" -#: ../../include/functions_alerts.php:2665 +#: ../../include/functions_alerts.php:2666 msgid "Alert and command group does not match" msgstr "" @@ -45305,24 +45707,24 @@ msgid "Current ranges" msgstr "" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 -#: ../../include/rest-api/models/VisualConsole/Item.php:1995 +#: ../../include/rest-api/models/VisualConsole/Item.php:1998 msgid "width" msgstr "" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 -#: ../../include/rest-api/models/VisualConsole/Item.php:2005 +#: ../../include/rest-api/models/VisualConsole/Item.php:2008 msgid "height" msgstr "" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 -#: ../../include/rest-api/models/VisualConsole/Item.php:2027 +#: ../../include/rest-api/models/VisualConsole/Item.php:2030 msgid "X" msgstr "" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:273 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:499 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950 -#: ../../include/rest-api/models/VisualConsole/Item.php:2064 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:954 +#: ../../include/rest-api/models/VisualConsole/Item.php:2067 msgid "Show on top" msgstr "" @@ -45365,11 +45767,15 @@ msgstr "" msgid "Show legend" msgstr "" +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:715 +msgid "Recursive" +msgstr "" + #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:621 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280 -#: ../../include/rest-api/models/VisualConsole/View.php:721 -#: ../../include/rest-api/models/VisualConsole/View.php:800 +#: ../../include/rest-api/models/VisualConsole/View.php:687 +#: ../../include/rest-api/models/VisualConsole/View.php:766 msgid "Failed to connect to node" msgstr "" @@ -45392,67 +45798,67 @@ msgstr "" msgid "Specific settings" msgstr "" -#: ../../include/rest-api/models/VisualConsole/View.php:221 +#: ../../include/rest-api/models/VisualConsole/View.php:183 msgid "Item type not valid [" msgstr "" -#: ../../include/rest-api/models/VisualConsole/View.php:226 +#: ../../include/rest-api/models/VisualConsole/View.php:188 msgid "Item type has no getFormInputs method [" msgstr "" -#: ../../include/rest-api/models/VisualConsole/View.php:738 +#: ../../include/rest-api/models/VisualConsole/View.php:704 msgid "NetworkLink from" msgstr "" -#: ../../include/rest-api/models/VisualConsole/View.php:742 -#: ../../include/rest-api/models/VisualConsole/View.php:821 +#: ../../include/rest-api/models/VisualConsole/View.php:708 +#: ../../include/rest-api/models/VisualConsole/View.php:787 #, php-format msgid "Interface %s status" msgstr "" -#: ../../include/rest-api/models/VisualConsole/View.php:747 -#: ../../include/rest-api/models/VisualConsole/View.php:826 +#: ../../include/rest-api/models/VisualConsole/View.php:713 +#: ../../include/rest-api/models/VisualConsole/View.php:792 #: ../../operation/agentes/interface_traffic_graph_win.php:78 msgid "In" msgstr "" -#: ../../include/rest-api/models/VisualConsole/View.php:748 -#: ../../include/rest-api/models/VisualConsole/View.php:827 +#: ../../include/rest-api/models/VisualConsole/View.php:714 +#: ../../include/rest-api/models/VisualConsole/View.php:793 #: ../../operation/agentes/interface_traffic_graph_win.php:79 msgid "Out" msgstr "" -#: ../../include/rest-api/models/VisualConsole/View.php:817 +#: ../../include/rest-api/models/VisualConsole/View.php:783 msgid "NetworkLink to" msgstr "" -#: ../../include/rest-api/models/VisualConsole/View.php:869 +#: ../../include/rest-api/models/VisualConsole/View.php:835 #, php-format msgid "Failed to generate charts: %s" msgstr "" -#: ../../include/rest-api/models/VisualConsole/Item.php:1965 +#: ../../include/rest-api/models/VisualConsole/Item.php:1968 msgid "Label position" msgstr "" -#: ../../include/rest-api/models/VisualConsole/Item.php:2052 +#: ../../include/rest-api/models/VisualConsole/Item.php:2055 msgid "Link enabled" msgstr "" -#: ../../include/rest-api/models/VisualConsole/Item.php:2094 +#: ../../include/rest-api/models/VisualConsole/Item.php:2097 msgid "Static graph" msgstr "" -#: ../../include/rest-api/models/VisualConsole/Item.php:2112 +#: ../../include/rest-api/models/VisualConsole/Item.php:2115 msgid "Event History Graph" msgstr "" -#: ../../include/rest-api/models/VisualConsole/Item.php:2120 +#: ../../include/rest-api/models/VisualConsole/Item.php:2123 msgid "Percentile bubble" msgstr "" -#: ../../include/rest-api/models/VisualConsole/Item.php:2590 -#: ../../include/rest-api/models/VisualConsole/Item.php:2591 +#: ../../include/rest-api/models/VisualConsole/Item.php:2593 +#: ../../include/rest-api/models/VisualConsole/Item.php:2594 msgid "Image Vc" msgstr "" @@ -45494,8 +45900,8 @@ msgstr "" #: ../../include/functions_reports.php:651 #: ../../include/functions_reports.php:1102 -#: ../../include/functions_reporting.php:10729 -#: ../../include/functions_reporting.php:10889 +#: ../../include/functions_reporting.php:10738 +#: ../../include/functions_reporting.php:10898 msgid "Simple graph" msgstr "" @@ -45616,12 +46022,12 @@ msgid "Inventory changes" msgstr "" #: ../../include/functions_reports.php:918 -#: ../../include/functions_reporting.php:6921 +#: ../../include/functions_reporting.php:6930 msgid "Agent configuration" msgstr "" #: ../../include/functions_reports.php:922 -#: ../../include/functions_reporting.php:5230 +#: ../../include/functions_reporting.php:5239 msgid "Group configuration" msgstr "" @@ -45651,60 +46057,61 @@ msgstr "" msgid "Graph Sql" msgstr "" -#: ../../include/functions_html.php:622 ../../include/functions_html.php:1001 +#: ../../include/functions_html.php:622 ../../include/functions_html.php:1006 msgid "Please select an item from this list." msgstr "" -#: ../../include/functions_html.php:648 ../../include/functions_html.php:6363 -msgid "Please select..." -msgstr "" - -#: ../../include/functions_html.php:1622 +#: ../../include/functions_html.php:1630 msgid "Type to search agents" msgstr "" -#: ../../include/functions_html.php:1636 +#: ../../include/functions_html.php:1644 msgid "Type to search modules" msgstr "" -#: ../../include/functions_html.php:1704 +#: ../../include/functions_html.php:1713 msgid "Only common modules" msgstr "" -#: ../../include/functions_html.php:2139 +#: ../../include/functions_html.php:2147 msgid "weeks" msgstr "" -#: ../../include/functions_html.php:2321 +#: ../../include/functions_html.php:2336 msgid "Month day" msgstr "" -#: ../../include/functions_html.php:2323 +#: ../../include/functions_html.php:2338 msgid "Week day" msgstr "" -#: ../../include/functions_html.php:4800 +#: ../../include/functions_html.php:4824 msgid "Select a file" msgstr "" -#: ../../include/functions_html.php:5018 ../../include/functions_html.php:5020 +#: ../../include/functions_html.php:5042 ../../include/functions_html.php:5044 msgid "Type at least two characters to search the module." msgstr "" -#: ../../include/functions_html.php:5182 ../../index.php:533 -#: ../../index.php:817 ../../index.php:891 +#: ../../include/functions_html.php:5206 ../../index.php:533 +#: ../../index.php:818 ../../index.php:892 #, php-format msgid "%s cannot verify the origin of the request. Try again, please." msgstr "" -#: ../../include/functions_html.php:6104 +#: ../../include/functions_html.php:6128 msgid "Type at least two characters to search the user." msgstr "" -#: ../../include/functions_html.php:6507 +#: ../../include/functions_html.php:6535 msgid "Primary group cannot be secondary too." msgstr "" +#: ../../include/functions_html.php:6937 ../../include/functions_html.php:6938 +#: ../../include/functions_html.php:6941 ../../include/functions_html.php:6942 +msgid "Go to top" +msgstr "" + #: ../../include/functions_register.php:105 #, php-format msgid "%s configuration wizard" @@ -45766,7 +46173,7 @@ msgid "Integria inventory" msgstr "" #: ../../include/functions_config.php:252 -#: ../../include/functions_config.php:1876 +#: ../../include/functions_config.php:1888 msgid "Integria API password" msgstr "" @@ -45814,479 +46221,487 @@ msgid "alias_as_name" msgstr "" #: ../../include/functions_config.php:374 -msgid "Console log enabled" +msgid "keep_in_process_status_extra_id" msgstr "" #: ../../include/functions_config.php:378 -msgid "Audit log enabled" +msgid "Console log enabled" msgstr "" #: ../../include/functions_config.php:382 +msgid "Audit log enabled" +msgstr "" + +#: ../../include/functions_config.php:386 msgid "Module Custom ID read only" msgstr "" -#: ../../include/functions_config.php:446 +#: ../../include/functions_config.php:454 msgid "Replication DB host" msgstr "" -#: ../../include/functions_config.php:450 +#: ../../include/functions_config.php:458 msgid "Replication DB database" msgstr "" -#: ../../include/functions_config.php:454 +#: ../../include/functions_config.php:462 msgid "Replication DB user" msgstr "" -#: ../../include/functions_config.php:458 +#: ../../include/functions_config.php:466 msgid "Replication DB password" msgstr "" -#: ../../include/functions_config.php:462 +#: ../../include/functions_config.php:470 msgid "Replication DB port" msgstr "" -#: ../../include/functions_config.php:466 +#: ../../include/functions_config.php:474 msgid "Metaconsole agent cache" msgstr "" -#: ../../include/functions_config.php:474 +#: ../../include/functions_config.php:482 msgid "Enable Update Manager" msgstr "" -#: ../../include/functions_config.php:478 +#: ../../include/functions_config.php:486 msgid "Legacy database HA" msgstr "" -#: ../../include/functions_config.php:482 +#: ../../include/functions_config.php:490 msgid "Ipam Ocuppied Manager Critical" msgstr "" -#: ../../include/functions_config.php:486 +#: ../../include/functions_config.php:494 msgid "Ipam Ocuppied Manager Warning" msgstr "" -#: ../../include/functions_config.php:583 +#: ../../include/functions_config.php:591 msgid "Automatically timezone visual" msgstr "" -#: ../../include/functions_config.php:655 +#: ../../include/functions_config.php:611 +msgid "Recursive search" +msgstr "" + +#: ../../include/functions_config.php:667 msgid "Ldap search timeout" msgstr "" -#: ../../include/functions_config.php:671 +#: ../../include/functions_config.php:683 msgid "Secontary start TLS" msgstr "" -#: ../../include/functions_config.php:787 +#: ../../include/functions_config.php:799 msgid "Saml profile parameters" msgstr "" -#: ../../include/functions_config.php:803 +#: ../../include/functions_config.php:815 msgid "2FA all users" msgstr "" -#: ../../include/functions_config.php:810 +#: ../../include/functions_config.php:822 msgid "Session timeout forced to 90 minutes" msgstr "" -#: ../../include/functions_config.php:830 +#: ../../include/functions_config.php:842 msgid "Event purge" msgstr "" -#: ../../include/functions_config.php:866 +#: ../../include/functions_config.php:878 msgid "Max. days before autodisable deletion" msgstr "" -#: ../../include/functions_config.php:870 +#: ../../include/functions_config.php:882 msgid "Item limit for realtime reports)" msgstr "" -#: ../../include/functions_config.php:906 +#: ../../include/functions_config.php:918 msgid "Big Operatiopn Step to purge old data" msgstr "" -#: ../../include/functions_config.php:940 +#: ../../include/functions_config.php:952 msgid "Max execution event response" msgstr "" -#: ../../include/functions_config.php:948 +#: ../../include/functions_config.php:960 msgid "SNMP walk binary path" msgstr "" -#: ../../include/functions_config.php:952 +#: ../../include/functions_config.php:964 msgid "SNMP walk binary path (fallback for v1)" msgstr "" -#: ../../include/functions_config.php:956 +#: ../../include/functions_config.php:968 msgid "Default WMI Binary" msgstr "" -#: ../../include/functions_config.php:966 +#: ../../include/functions_config.php:978 msgid "SNMP Interface Agent Wizard" msgstr "" -#: ../../include/functions_config.php:977 +#: ../../include/functions_config.php:989 msgid "Notification Autoclose time" msgstr "" -#: ../../include/functions_config.php:997 +#: ../../include/functions_config.php:1009 msgid "Graph color #4" msgstr "" -#: ../../include/functions_config.php:1001 +#: ../../include/functions_config.php:1013 msgid "Graph color #5" msgstr "" -#: ../../include/functions_config.php:1005 +#: ../../include/functions_config.php:1017 msgid "Graph color #6" msgstr "" -#: ../../include/functions_config.php:1009 +#: ../../include/functions_config.php:1021 msgid "Graph color #7" msgstr "" -#: ../../include/functions_config.php:1013 +#: ../../include/functions_config.php:1025 msgid "Graph color #8" msgstr "" -#: ../../include/functions_config.php:1017 +#: ../../include/functions_config.php:1029 msgid "Graph color #9" msgstr "" -#: ../../include/functions_config.php:1021 +#: ../../include/functions_config.php:1033 msgid "Graph color #10" msgstr "" -#: ../../include/functions_config.php:1054 +#: ../../include/functions_config.php:1066 msgid "Show QR code header" msgstr "" -#: ../../include/functions_config.php:1082 +#: ../../include/functions_config.php:1094 msgid "Custom logo white background" msgstr "" -#: ../../include/functions_config.php:1110 +#: ../../include/functions_config.php:1122 msgid "Custom title header" msgstr "" -#: ../../include/functions_config.php:1114 +#: ../../include/functions_config.php:1126 msgid "Custom subtitle header" msgstr "" -#: ../../include/functions_config.php:1134 +#: ../../include/functions_config.php:1146 msgid "Login background" msgstr "" -#: ../../include/functions_config.php:1138 -#: ../../include/functions_config.php:1186 +#: ../../include/functions_config.php:1150 +#: ../../include/functions_config.php:1198 msgid "Custom Docs url" msgstr "" -#: ../../include/functions_config.php:1142 -#: ../../include/functions_config.php:1190 +#: ../../include/functions_config.php:1154 +#: ../../include/functions_config.php:1202 msgid "Custom support url" msgstr "" -#: ../../include/functions_config.php:1162 +#: ../../include/functions_config.php:1174 msgid "Custom logo metaconsole (white background)" msgstr "" -#: ../../include/functions_config.php:1166 +#: ../../include/functions_config.php:1178 msgid "Custom logo login metaconsole" msgstr "" -#: ../../include/functions_config.php:1170 +#: ../../include/functions_config.php:1182 msgid "Custom splash login metaconsole" msgstr "" -#: ../../include/functions_config.php:1174 +#: ../../include/functions_config.php:1186 msgid "Custom title1 login metaconsole" msgstr "" -#: ../../include/functions_config.php:1178 +#: ../../include/functions_config.php:1190 msgid "Custom title2 login metaconsole" msgstr "" -#: ../../include/functions_config.php:1182 +#: ../../include/functions_config.php:1194 msgid "Login background metaconsole" msgstr "" -#: ../../include/functions_config.php:1206 +#: ../../include/functions_config.php:1218 msgid "Default line favourite_view for the Visual Console" msgstr "" -#: ../../include/functions_config.php:1210 +#: ../../include/functions_config.php:1222 msgid "Default line menu items for the Visual Console" msgstr "" -#: ../../include/functions_config.php:1222 +#: ../../include/functions_config.php:1238 msgid "Default line menu items for the Services" msgstr "" -#: ../../include/functions_config.php:1254 +#: ../../include/functions_config.php:1270 msgid "Show units in values report" msgstr "" -#: ../../include/functions_config.php:1262 +#: ../../include/functions_config.php:1278 msgid "Autohidden menu" msgstr "" -#: ../../include/functions_config.php:1266 +#: ../../include/functions_config.php:1282 msgid "Visual animation" msgstr "" -#: ../../include/functions_config.php:1282 +#: ../../include/functions_config.php:1298 msgid "Fixed graph" msgstr "" -#: ../../include/functions_config.php:1290 +#: ../../include/functions_config.php:1306 msgid "Paginate module" msgstr "" -#: ../../include/functions_config.php:1294 +#: ../../include/functions_config.php:1310 #: ../../include/class/ExternalTools.class.php:323 msgid "Custom graphviz directory" msgstr "" -#: ../../include/functions_config.php:1302 +#: ../../include/functions_config.php:1318 msgid "Shortened module graph data" msgstr "" -#: ../../include/functions_config.php:1310 +#: ../../include/functions_config.php:1326 msgid "Show empty groups in group view." msgstr "" -#: ../../include/functions_config.php:1318 +#: ../../include/functions_config.php:1334 msgid "Default type of module charts." msgstr "" -#: ../../include/functions_config.php:1322 +#: ../../include/functions_config.php:1338 msgid "Default Number of elements in Custom Graph." msgstr "" -#: ../../include/functions_config.php:1326 +#: ../../include/functions_config.php:1342 msgid "Default type of interface charts." msgstr "" -#: ../../include/functions_config.php:1342 +#: ../../include/functions_config.php:1358 msgid "Display lateral menus with left click" msgstr "" -#: ../../include/functions_config.php:1351 +#: ../../include/functions_config.php:1367 msgid "Service item padding size" msgstr "" -#: ../../include/functions_config.php:1356 +#: ../../include/functions_config.php:1372 msgid "Default percentil" msgstr "" -#: ../../include/functions_config.php:1360 +#: ../../include/functions_config.php:1376 msgid "Default full scale (TIP)" msgstr "" -#: ../../include/functions_config.php:1364 +#: ../../include/functions_config.php:1380 msgid "Default soft graphs" msgstr "" -#: ../../include/functions_config.php:1368 +#: ../../include/functions_config.php:1384 msgid "Default zoom graphs" msgstr "" -#: ../../include/functions_config.php:1377 +#: ../../include/functions_config.php:1393 msgid "Default height of the chart image" msgstr "" -#: ../../include/functions_config.php:1399 +#: ../../include/functions_config.php:1415 msgid "Add the custom post process" msgstr "" -#: ../../include/functions_config.php:1407 +#: ../../include/functions_config.php:1423 msgid "Delete the custom post process" msgstr "" -#: ../../include/functions_config.php:1461 +#: ../../include/functions_config.php:1477 msgid "Add custom module unit" msgstr "" -#: ../../include/functions_config.php:1467 +#: ../../include/functions_config.php:1483 msgid "Delete custom module unit" msgstr "" -#: ../../include/functions_config.php:1524 +#: ../../include/functions_config.php:1540 msgid "Thousand separator" msgstr "" -#: ../../include/functions_config.php:1531 +#: ../../include/functions_config.php:1547 msgid "Name storage path" msgstr "" -#: ../../include/functions_config.php:1574 +#: ../../include/functions_config.php:1586 msgid "Sflow name dir" msgstr "" -#: ../../include/functions_config.php:1617 +#: ../../include/functions_config.php:1629 msgid "IP ElasticSearch server" msgstr "" -#: ../../include/functions_config.php:1621 +#: ../../include/functions_config.php:1633 msgid "Port ElasticSearch server" msgstr "" -#: ../../include/functions_config.php:1668 +#: ../../include/functions_config.php:1680 msgid "Enable history trap" msgstr "" -#: ../../include/functions_config.php:1688 +#: ../../include/functions_config.php:1700 msgid "Enable history database advanced" msgstr "" -#: ../../include/functions_config.php:1697 +#: ../../include/functions_config.php:1709 msgid "String Days" msgstr "" -#: ../../include/functions_config.php:1713 +#: ../../include/functions_config.php:1725 msgid "Trap Days" msgstr "" -#: ../../include/functions_config.php:1721 +#: ../../include/functions_config.php:1733 msgid "Trap history purge" msgstr "" -#: ../../include/functions_config.php:1793 +#: ../../include/functions_config.php:1805 msgid "Historical database traps purge" msgstr "" -#: ../../include/functions_config.php:1816 +#: ../../include/functions_config.php:1828 msgid "eHorus user login" msgstr "" -#: ../../include/functions_config.php:1828 +#: ../../include/functions_config.php:1840 msgid "eHorus API hostname" msgstr "" -#: ../../include/functions_config.php:1832 +#: ../../include/functions_config.php:1844 msgid "eHorus API port" msgstr "" -#: ../../include/functions_config.php:1836 +#: ../../include/functions_config.php:1848 msgid "eHorus request timeout" msgstr "" -#: ../../include/functions_config.php:1840 +#: ../../include/functions_config.php:1852 msgid "eHorus id custom field" msgstr "" -#: ../../include/functions_config.php:1846 +#: ../../include/functions_config.php:1858 msgid "Integria user login" msgstr "" -#: ../../include/functions_config.php:1854 +#: ../../include/functions_config.php:1866 msgid "Integria user" msgstr "" -#: ../../include/functions_config.php:1858 +#: ../../include/functions_config.php:1870 msgid "Integria password" msgstr "" -#: ../../include/functions_config.php:1872 +#: ../../include/functions_config.php:1884 msgid "integria API hostname" msgstr "" -#: ../../include/functions_config.php:1880 +#: ../../include/functions_config.php:1892 msgid "Integria request timeout" msgstr "" -#: ../../include/functions_config.php:1884 +#: ../../include/functions_config.php:1896 msgid "Integria default group" msgstr "" -#: ../../include/functions_config.php:1888 +#: ../../include/functions_config.php:1900 msgid "Integria custom response default group" msgstr "" -#: ../../include/functions_config.php:1892 +#: ../../include/functions_config.php:1904 msgid "Integria default priority" msgstr "" -#: ../../include/functions_config.php:1896 +#: ../../include/functions_config.php:1908 msgid "Integria custom response default priority" msgstr "" -#: ../../include/functions_config.php:1900 +#: ../../include/functions_config.php:1912 msgid "Integria default creator" msgstr "" -#: ../../include/functions_config.php:1904 +#: ../../include/functions_config.php:1916 msgid "Integria default owner" msgstr "" -#: ../../include/functions_config.php:1908 +#: ../../include/functions_config.php:1920 msgid "Integria custom response default owner" msgstr "" -#: ../../include/functions_config.php:1912 +#: ../../include/functions_config.php:1924 msgid "Integria default ticket type" msgstr "" -#: ../../include/functions_config.php:1916 +#: ../../include/functions_config.php:1928 msgid "Integria custom response default ticket type" msgstr "" -#: ../../include/functions_config.php:1920 +#: ../../include/functions_config.php:1932 msgid "Integria default ticket status" msgstr "" -#: ../../include/functions_config.php:1924 +#: ../../include/functions_config.php:1936 msgid "Integria custom response default ticket status" msgstr "" -#: ../../include/functions_config.php:1928 +#: ../../include/functions_config.php:1940 msgid "Integria default ticket title" msgstr "" -#: ../../include/functions_config.php:1932 +#: ../../include/functions_config.php:1944 msgid "Integria custom response default ticket title" msgstr "" -#: ../../include/functions_config.php:1936 +#: ../../include/functions_config.php:1948 msgid "Integria default ticket content" msgstr "" -#: ../../include/functions_config.php:1940 +#: ../../include/functions_config.php:1952 msgid "Integria custom response default ticket content" msgstr "" -#: ../../include/functions_config.php:1946 +#: ../../include/functions_config.php:1958 msgid "Module Library User" msgstr "" -#: ../../include/functions_config.php:1950 +#: ../../include/functions_config.php:1962 msgid "Module Library Password" msgstr "" -#: ../../include/functions_config.php:1956 +#: ../../include/functions_config.php:1968 msgid "WebSocket bind address" msgstr "" -#: ../../include/functions_config.php:1960 +#: ../../include/functions_config.php:1972 msgid "WebSocket port" msgstr "" -#: ../../include/functions_config.php:1983 +#: ../../include/functions_config.php:1995 #, php-format msgid "Update failed. The next values could not be updated:
-%s" msgstr "" -#: ../../include/functions_config.php:2662 -#: ../../operation/agentes/networkmap.dinamic.php:220 +#: ../../include/functions_config.php:2682 +#: ../../operation/agentes/networkmap.dinamic.php:228 msgid "Pandora FMS" msgstr "" -#: ../../include/functions_config.php:2670 +#: ../../include/functions_config.php:2690 msgid "PandoraFMS Metaconsole" msgstr "" -#: ../../include/functions_config.php:2674 +#: ../../include/functions_config.php:2694 msgid "Centralized operation console" msgstr "" @@ -46387,7 +46802,7 @@ msgstr "" msgid "Resolution %s" msgstr "" -#: ../../include/class/Tree.class.php:790 +#: ../../include/class/Tree.class.php:813 msgid "Module alerts" msgstr "" @@ -46544,7 +46959,6 @@ msgid "Sound not exist" msgstr "" #: ../../include/class/EventSound.class.php:188 -#: ../../operation/events/sound_events.php:261 msgid "Sounds" msgstr "" @@ -46553,7 +46967,7 @@ msgid "Add new sound" msgstr "" #: ../../include/class/EventSound.class.php:212 -msgid "Accoustic console sound list" +msgid "Acoustic console sound list" msgstr "" #: ../../include/class/EventSound.class.php:253 @@ -46597,7 +47011,7 @@ msgid "Something is wrong" msgstr "" #: ../../include/class/HelpFeedBack.class.php:172 -#: ../../include/class/Diagnostics.class.php:1922 +#: ../../include/class/Diagnostics.class.php:1926 msgid "What happened?" msgstr "" @@ -46610,7 +47024,7 @@ msgid "Submit" msgstr "" #: ../../include/class/HelpFeedBack.class.php:214 -#: ../../include/class/Diagnostics.class.php:1995 ../../general/header.php:364 +#: ../../include/class/Diagnostics.class.php:1999 ../../general/header.php:364 #: ../../general/header.php:366 msgid "Feedback" msgstr "" @@ -46668,7 +47082,7 @@ msgid "%s Licence Information" msgstr "" #: ../../include/class/Diagnostics.class.php:274 -#: ../../include/class/Diagnostics.class.php:1274 +#: ../../include/class/Diagnostics.class.php:1278 msgid "Status of the attachment folder" msgstr "" @@ -46861,7 +47275,7 @@ msgstr "" #: ../../include/class/Diagnostics.class.php:759 #: ../../include/class/Diagnostics.class.php:777 -#: ../../include/class/NetworkMap.class.php:3066 +#: ../../include/class/NetworkMap.class.php:3072 msgid "Ip" msgstr "" @@ -46998,423 +47412,423 @@ msgstr "" msgid "Table fragmentation status" msgstr "" -#: ../../include/class/Diagnostics.class.php:1048 +#: ../../include/class/Diagnostics.class.php:1052 msgid "Size server logs (current value)" msgstr "" -#: ../../include/class/Diagnostics.class.php:1052 +#: ../../include/class/Diagnostics.class.php:1056 msgid "Status server logs" msgstr "" -#: ../../include/class/Diagnostics.class.php:1057 +#: ../../include/class/Diagnostics.class.php:1061 msgid "Size error logs (current value)" msgstr "" -#: ../../include/class/Diagnostics.class.php:1061 +#: ../../include/class/Diagnostics.class.php:1065 msgid "Status error logs" msgstr "" -#: ../../include/class/Diagnostics.class.php:1066 +#: ../../include/class/Diagnostics.class.php:1070 msgid "Size console logs (current value)" msgstr "" -#: ../../include/class/Diagnostics.class.php:1070 +#: ../../include/class/Diagnostics.class.php:1074 msgid "Status console logs" msgstr "" -#: ../../include/class/Diagnostics.class.php:1105 +#: ../../include/class/Diagnostics.class.php:1109 msgid "License capacity is less than 90 percent" msgstr "" -#: ../../include/class/Diagnostics.class.php:1108 +#: ../../include/class/Diagnostics.class.php:1112 msgid "License capacity exceeds 90 percent" msgstr "" -#: ../../include/class/Diagnostics.class.php:1116 +#: ../../include/class/Diagnostics.class.php:1120 msgid "" "The average of modules per agent is more than 40. You can have performance " "problems" msgstr "" -#: ../../include/class/Diagnostics.class.php:1121 +#: ../../include/class/Diagnostics.class.php:1125 msgid "The average of modules per agent is less than 40" msgstr "" -#: ../../include/class/Diagnostics.class.php:1159 +#: ../../include/class/Diagnostics.class.php:1163 msgid "The system has no load" msgstr "" -#: ../../include/class/Diagnostics.class.php:1203 +#: ../../include/class/Diagnostics.class.php:1207 msgid "Network Management System" msgstr "" -#: ../../include/class/Diagnostics.class.php:1204 #: ../../include/class/Diagnostics.class.php:1208 +#: ../../include/class/Diagnostics.class.php:1212 msgid "Off" msgstr "" -#: ../../include/class/Diagnostics.class.php:1215 +#: ../../include/class/Diagnostics.class.php:1219 msgid "Status of agents capacity" msgstr "" -#: ../../include/class/Diagnostics.class.php:1220 +#: ../../include/class/Diagnostics.class.php:1224 msgid "Status of average modules per agent" msgstr "" -#: ../../include/class/Diagnostics.class.php:1226 +#: ../../include/class/Diagnostics.class.php:1230 msgid "Interval average of the network modules" msgstr "" -#: ../../include/class/Diagnostics.class.php:1256 +#: ../../include/class/Diagnostics.class.php:1260 msgid "The attached folder contains more than 700 files." msgstr "" -#: ../../include/class/Diagnostics.class.php:1261 +#: ../../include/class/Diagnostics.class.php:1265 msgid "The attached folder contains less than 700 files." msgstr "" -#: ../../include/class/Diagnostics.class.php:1270 +#: ../../include/class/Diagnostics.class.php:1274 msgid "Total files in the attached folder" msgstr "" -#: ../../include/class/Diagnostics.class.php:1305 +#: ../../include/class/Diagnostics.class.php:1309 msgid "" "The tagente_datos table contains too much data. A historical database is " "recommended." msgstr "" -#: ../../include/class/Diagnostics.class.php:1310 +#: ../../include/class/Diagnostics.class.php:1314 msgid "The tagente_datos table contains an acceptable amount of data." msgstr "" -#: ../../include/class/Diagnostics.class.php:1319 +#: ../../include/class/Diagnostics.class.php:1323 msgid "Total data in tagente_datos table" msgstr "" -#: ../../include/class/Diagnostics.class.php:1323 +#: ../../include/class/Diagnostics.class.php:1327 msgid "Tagente_datos table status" msgstr "" -#: ../../include/class/Diagnostics.class.php:1359 +#: ../../include/class/Diagnostics.class.php:1363 msgid "Threads" msgstr "" -#: ../../include/class/Diagnostics.class.php:1369 +#: ../../include/class/Diagnostics.class.php:1373 msgid "Total threads" msgstr "" -#: ../../include/class/Diagnostics.class.php:1376 +#: ../../include/class/Diagnostics.class.php:1380 msgid "Current pandora_server running threads" msgstr "" -#: ../../include/class/Diagnostics.class.php:1380 +#: ../../include/class/Diagnostics.class.php:1384 msgid "" "There's more pandora_server threads than configured, are you running " "multiple servers simultaneusly?." msgstr "" -#: ../../include/class/Diagnostics.class.php:1514 +#: ../../include/class/Diagnostics.class.php:1518 msgid "" "Please check your Pandora Server setup and make sure that the database " "maintenance daemon is running." msgstr "" -#: ../../include/class/Diagnostics.class.php:1518 +#: ../../include/class/Diagnostics.class.php:1522 msgid "" "It' is very important to keep the database up-to-date to get the best " "performance and results in Pandora" msgstr "" -#: ../../include/class/Diagnostics.class.php:1780 +#: ../../include/class/Diagnostics.class.php:1784 msgid "You have more than 10 MB of logs" msgstr "" -#: ../../include/class/Diagnostics.class.php:1783 +#: ../../include/class/Diagnostics.class.php:1787 msgid "You have less than 10 MB of logs" msgstr "" -#: ../../include/class/Diagnostics.class.php:1950 +#: ../../include/class/Diagnostics.class.php:1954 msgid "Include installation data" msgstr "" -#: ../../include/class/Diagnostics.class.php:1987 +#: ../../include/class/Diagnostics.class.php:1991 msgid "Hello Feedback-Men" msgstr "" -#: ../../include/class/Diagnostics.class.php:1997 +#: ../../include/class/Diagnostics.class.php:2001 msgid "Hello" msgstr "" -#: ../../include/class/Diagnostics.class.php:2001 +#: ../../include/class/Diagnostics.class.php:2005 #, php-format msgid "User %s is reporting an issue in its %s experience" msgstr "" -#: ../../include/class/Diagnostics.class.php:2010 +#: ../../include/class/Diagnostics.class.php:2014 msgid "Find some files attached to this mail" msgstr "" -#: ../../include/class/Diagnostics.class.php:2013 +#: ../../include/class/Diagnostics.class.php:2017 msgid "PDF is the diagnostic information retrieved at report time" msgstr "" -#: ../../include/class/Diagnostics.class.php:2016 +#: ../../include/class/Diagnostics.class.php:2020 msgid "CSV contains the statuses of every product file" msgstr "" -#: ../../include/class/Diagnostics.class.php:2021 +#: ../../include/class/Diagnostics.class.php:2025 #, php-format msgid "" "If you think this report must be escalated, feel free to forward this mail " "to \"%s\"" msgstr "" -#: ../../include/class/Diagnostics.class.php:2025 +#: ../../include/class/Diagnostics.class.php:2029 msgid "LEGAL WARNING" msgstr "" -#: ../../include/class/Diagnostics.class.php:2027 +#: ../../include/class/Diagnostics.class.php:2031 msgid "" "The information contained in this transmission is privileged and " "confidential information intended only for the use of the individual or " "entity named above" msgstr "" -#: ../../include/class/Diagnostics.class.php:2031 +#: ../../include/class/Diagnostics.class.php:2035 msgid "" "If the reader of this message is not the intended recipient, you are hereby " "notified that any dissemination, distribution or copying of this " "communication is strictly prohibited" msgstr "" -#: ../../include/class/Diagnostics.class.php:2035 +#: ../../include/class/Diagnostics.class.php:2039 msgid "If you have received this transmission in error, do not read it" msgstr "" -#: ../../include/class/Diagnostics.class.php:2039 +#: ../../include/class/Diagnostics.class.php:2043 msgid "" "Please immediately reply to the sender that you have received this " "communication in error and then delete it" msgstr "" -#: ../../include/class/Diagnostics.class.php:2118 +#: ../../include/class/Diagnostics.class.php:2122 msgid "Invalid cron task" msgstr "" -#: ../../include/class/Diagnostics.class.php:2119 +#: ../../include/class/Diagnostics.class.php:2123 msgid "Sending of information has been processed" msgstr "" -#: ../../include/class/Diagnostics.class.php:2154 -#: ../../include/class/Diagnostics.class.php:2164 +#: ../../include/class/Diagnostics.class.php:2158 +#: ../../include/class/Diagnostics.class.php:2168 msgid "Diagnostics Info" msgstr "" -#: ../../include/class/Diagnostics.class.php:2272 -#: ../../include/class/Diagnostics.class.php:2282 +#: ../../include/class/Diagnostics.class.php:2276 +#: ../../include/class/Diagnostics.class.php:2286 msgid "PHP Info" msgstr "" -#: ../../include/class/NetworkMap.class.php:2382 +#: ../../include/class/NetworkMap.class.php:2388 msgid "Failed to generate dotmap, please select different layout schema" msgstr "" -#: ../../include/class/NetworkMap.class.php:2524 +#: ../../include/class/NetworkMap.class.php:2530 msgid "Failed to retrieve graph data." msgstr "" -#: ../../include/class/NetworkMap.class.php:2808 +#: ../../include/class/NetworkMap.class.php:2814 msgid "Holding Area" msgstr "" -#: ../../include/class/NetworkMap.class.php:2935 +#: ../../include/class/NetworkMap.class.php:2941 #, php-format msgid "Edit node %s" msgstr "" -#: ../../include/class/NetworkMap.class.php:2937 +#: ../../include/class/NetworkMap.class.php:2943 msgid "Show details and options" msgstr "" -#: ../../include/class/NetworkMap.class.php:2938 +#: ../../include/class/NetworkMap.class.php:2944 msgid "Add a interface link" msgstr "" -#: ../../include/class/NetworkMap.class.php:2939 +#: ../../include/class/NetworkMap.class.php:2945 msgid "Set parent interface" msgstr "" -#: ../../include/class/NetworkMap.class.php:2940 +#: ../../include/class/NetworkMap.class.php:2946 msgid "Set as children" msgstr "" -#: ../../include/class/NetworkMap.class.php:2941 +#: ../../include/class/NetworkMap.class.php:2947 msgid "Set parent" msgstr "" -#: ../../include/class/NetworkMap.class.php:2942 -#: ../../include/class/NetworkMap.class.php:2954 +#: ../../include/class/NetworkMap.class.php:2948 +#: ../../include/class/NetworkMap.class.php:2960 msgid "Abort the action of set relationship" msgstr "" -#: ../../include/class/NetworkMap.class.php:2944 -#: ../../include/class/NetworkMap.class.php:3344 +#: ../../include/class/NetworkMap.class.php:2950 +#: ../../include/class/NetworkMap.class.php:3350 msgid "Add node" msgstr "" -#: ../../include/class/NetworkMap.class.php:2945 +#: ../../include/class/NetworkMap.class.php:2951 msgid "Set center" msgstr "" -#: ../../include/class/NetworkMap.class.php:2947 -#: ../../include/class/NetworkMap.class.php:2950 +#: ../../include/class/NetworkMap.class.php:2953 +#: ../../include/class/NetworkMap.class.php:2956 msgid "Proceed" msgstr "" -#: ../../include/class/NetworkMap.class.php:2948 +#: ../../include/class/NetworkMap.class.php:2954 msgid "" "Resetting the map will delete all customizations you have done, including " "manual relationships between elements, new items, etc." msgstr "" -#: ../../include/class/NetworkMap.class.php:2952 +#: ../../include/class/NetworkMap.class.php:2958 msgid "Restart map" msgstr "" -#: ../../include/class/NetworkMap.class.php:2953 +#: ../../include/class/NetworkMap.class.php:2959 msgid "Abort the interface relationship" msgstr "" -#: ../../include/class/NetworkMap.class.php:2971 -#: ../../include/class/NetworkMap.class.php:3020 +#: ../../include/class/NetworkMap.class.php:2977 +#: ../../include/class/NetworkMap.class.php:3026 msgid "Edit node" msgstr "" -#: ../../include/class/NetworkMap.class.php:2981 -#: ../../include/class/NetworkMap.class.php:3036 +#: ../../include/class/NetworkMap.class.php:2987 +#: ../../include/class/NetworkMap.class.php:3042 msgid "Adresses" msgstr "" -#: ../../include/class/NetworkMap.class.php:2983 -#: ../../include/class/NetworkMap.class.php:3041 +#: ../../include/class/NetworkMap.class.php:2989 +#: ../../include/class/NetworkMap.class.php:3047 msgid "OS type" msgstr "" -#: ../../include/class/NetworkMap.class.php:2990 -#: ../../include/class/NetworkMap.class.php:2991 -#: ../../include/class/NetworkMap.class.php:3052 -#: ../../include/class/NetworkMap.class.php:3053 +#: ../../include/class/NetworkMap.class.php:2996 +#: ../../include/class/NetworkMap.class.php:2997 +#: ../../include/class/NetworkMap.class.php:3058 +#: ../../include/class/NetworkMap.class.php:3059 msgid "Node Details" msgstr "" -#: ../../include/class/NetworkMap.class.php:3078 -#: ../../include/class/NetworkMap.class.php:3079 +#: ../../include/class/NetworkMap.class.php:3084 +#: ../../include/class/NetworkMap.class.php:3085 msgid "Interface Information (SNMP)" msgstr "" -#: ../../include/class/NetworkMap.class.php:3092 +#: ../../include/class/NetworkMap.class.php:3098 msgid "Shape" msgstr "" -#: ../../include/class/NetworkMap.class.php:3095 +#: ../../include/class/NetworkMap.class.php:3101 msgid "Circle" msgstr "" -#: ../../include/class/NetworkMap.class.php:3096 +#: ../../include/class/NetworkMap.class.php:3102 msgid "Square" msgstr "" -#: ../../include/class/NetworkMap.class.php:3097 +#: ../../include/class/NetworkMap.class.php:3103 msgid "Rhombus" msgstr "" -#: ../../include/class/NetworkMap.class.php:3113 +#: ../../include/class/NetworkMap.class.php:3119 msgid "name node" msgstr "" -#: ../../include/class/NetworkMap.class.php:3125 -#: ../../include/class/NetworkMap.class.php:3495 +#: ../../include/class/NetworkMap.class.php:3131 +#: ../../include/class/NetworkMap.class.php:3501 msgid "name fictional node" msgstr "" -#: ../../include/class/NetworkMap.class.php:3133 -#: ../../include/class/NetworkMap.class.php:3503 +#: ../../include/class/NetworkMap.class.php:3139 +#: ../../include/class/NetworkMap.class.php:3509 msgid "Networkmap to link" msgstr "" -#: ../../include/class/NetworkMap.class.php:3147 +#: ../../include/class/NetworkMap.class.php:3153 msgid "Update fictional node" msgstr "" -#: ../../include/class/NetworkMap.class.php:3175 -#: ../../include/class/NetworkMap.class.php:3176 +#: ../../include/class/NetworkMap.class.php:3181 +#: ../../include/class/NetworkMap.class.php:3182 msgid "Node options" msgstr "" -#: ../../include/class/NetworkMap.class.php:3187 -#: ../../include/class/NetworkMap.class.php:3281 +#: ../../include/class/NetworkMap.class.php:3193 +#: ../../include/class/NetworkMap.class.php:3287 msgid "Node source" msgstr "" -#: ../../include/class/NetworkMap.class.php:3188 -#: ../../include/class/NetworkMap.class.php:3282 +#: ../../include/class/NetworkMap.class.php:3194 +#: ../../include/class/NetworkMap.class.php:3288 msgid "Interface source" msgstr "" -#: ../../include/class/NetworkMap.class.php:3189 -#: ../../include/class/NetworkMap.class.php:3283 +#: ../../include/class/NetworkMap.class.php:3195 +#: ../../include/class/NetworkMap.class.php:3289 msgid "Interface Target" msgstr "" -#: ../../include/class/NetworkMap.class.php:3191 -#: ../../include/class/NetworkMap.class.php:3284 +#: ../../include/class/NetworkMap.class.php:3197 +#: ../../include/class/NetworkMap.class.php:3290 msgid "Node target" msgstr "" -#: ../../include/class/NetworkMap.class.php:3192 +#: ../../include/class/NetworkMap.class.php:3198 msgid "E." msgstr "" -#: ../../include/class/NetworkMap.class.php:3254 +#: ../../include/class/NetworkMap.class.php:3260 msgid "There are not relations" msgstr "" -#: ../../include/class/NetworkMap.class.php:3327 +#: ../../include/class/NetworkMap.class.php:3333 msgid "Add interface link" msgstr "" -#: ../../include/class/NetworkMap.class.php:3372 -#: ../../include/class/NetworkMap.class.php:3399 -#: ../../include/class/NetworkMap.class.php:3400 -#: ../../include/class/NetworkMap.class.php:3463 -#: ../../include/class/NetworkMap.class.php:3479 -#: ../../include/class/NetworkMap.class.php:3536 +#: ../../include/class/NetworkMap.class.php:3378 +#: ../../include/class/NetworkMap.class.php:3405 +#: ../../include/class/NetworkMap.class.php:3406 +#: ../../include/class/NetworkMap.class.php:3469 +#: ../../include/class/NetworkMap.class.php:3485 +#: ../../include/class/NetworkMap.class.php:3542 msgid "Add agent node" msgstr "" -#: ../../include/class/NetworkMap.class.php:3478 +#: ../../include/class/NetworkMap.class.php:3484 msgid "Add agent node (filter by group)" msgstr "" -#: ../../include/class/NetworkMap.class.php:3520 +#: ../../include/class/NetworkMap.class.php:3526 msgid "Add fictional node" msgstr "" -#: ../../include/class/NetworkMap.class.php:3535 +#: ../../include/class/NetworkMap.class.php:3541 msgid "Add fictional point" msgstr "" -#: ../../include/class/NetworkMap.class.php:3620 +#: ../../include/class/NetworkMap.class.php:3626 #: ../../operation/visual_console/legacy_public_view.php:198 -#: ../../operation/visual_console/legacy_view.php:335 +#: ../../operation/visual_console/legacy_view.php:346 msgid "Until refresh" msgstr "" -#: ../../include/class/NetworkMap.class.php:3775 +#: ../../include/class/NetworkMap.class.php:3781 msgid "Open Minimap" msgstr "" -#: ../../include/class/NetworkMap.class.php:3781 +#: ../../include/class/NetworkMap.class.php:3787 msgid "Hide Labels" msgstr "" @@ -47476,11 +47890,11 @@ msgstr "" msgid "Delete Script" msgstr "" -#: ../../include/class/ManageNetScanScripts.class.php:490 +#: ../../include/class/ManageNetScanScripts.class.php:486 msgid "There are no net scan scripts in the system" msgstr "" -#: ../../include/class/ManageNetScanScripts.class.php:560 +#: ../../include/class/ManageNetScanScripts.class.php:556 msgid "Script fullpath" msgstr "" @@ -47538,12 +47952,12 @@ msgid "Extra (2)" msgstr "" #: ../../include/class/CredentialStore.class.php:986 -#: ../../include/class/CredentialStore.class.php:1307 +#: ../../include/class/CredentialStore.class.php:1309 msgid "Access key ID" msgstr "" #: ../../include/class/CredentialStore.class.php:987 -#: ../../include/class/CredentialStore.class.php:1308 +#: ../../include/class/CredentialStore.class.php:1310 msgid "Secret access key" msgstr "" @@ -47553,22 +47967,22 @@ msgid "Account ID" msgstr "" #: ../../include/class/CredentialStore.class.php:994 -#: ../../include/class/CredentialStore.class.php:1315 +#: ../../include/class/CredentialStore.class.php:1318 msgid "Application secret" msgstr "" #: ../../include/class/CredentialStore.class.php:995 -#: ../../include/class/CredentialStore.class.php:1316 +#: ../../include/class/CredentialStore.class.php:1319 msgid "Tenant or domain name" msgstr "" #: ../../include/class/CredentialStore.class.php:996 -#: ../../include/class/CredentialStore.class.php:1317 +#: ../../include/class/CredentialStore.class.php:1320 msgid "Subscription id" msgstr "" #: ../../include/class/CredentialStore.class.php:1000 -#: ../../include/class/CredentialStore.class.php:1333 +#: ../../include/class/CredentialStore.class.php:1338 msgid "Auth JSON" msgstr "" @@ -47589,45 +48003,45 @@ msgid "3" msgstr "" #: ../../include/class/CredentialStore.class.php:1134 -#: ../../include/class/CredentialStore.class.php:1425 +#: ../../include/class/CredentialStore.class.php:1434 msgid "Authenticated and non-private method" msgstr "" #: ../../include/class/CredentialStore.class.php:1135 -#: ../../include/class/CredentialStore.class.php:1427 +#: ../../include/class/CredentialStore.class.php:1436 msgid "Authenticated and private method" msgstr "" #: ../../include/class/CredentialStore.class.php:1136 -#: ../../include/class/CredentialStore.class.php:1429 +#: ../../include/class/CredentialStore.class.php:1438 msgid "Non-authenticated and non-private method" msgstr "" #: ../../include/class/CredentialStore.class.php:1144 -#: ../../include/class/CredentialStore.class.php:1442 +#: ../../include/class/CredentialStore.class.php:1451 #: ../../include/class/AgentWizard.class.php:910 msgid "User authentication" msgstr "" #: ../../include/class/CredentialStore.class.php:1179 -#: ../../include/class/CredentialStore.class.php:1476 +#: ../../include/class/CredentialStore.class.php:1485 #: ../../include/class/AgentWizard.class.php:939 msgid "Password authentication" msgstr "" -#: ../../include/class/CredentialStore.class.php:1314 +#: ../../include/class/CredentialStore.class.php:1317 msgid "Client ID" msgstr "" -#: ../../include/class/CredentialStore.class.php:1323 +#: ../../include/class/CredentialStore.class.php:1327 msgid "Account ID." msgstr "" -#: ../../include/class/CredentialStore.class.php:1648 +#: ../../include/class/CredentialStore.class.php:1657 msgid "Register new key into keystore" msgstr "" -#: ../../include/class/CredentialStore.class.php:1652 +#: ../../include/class/CredentialStore.class.php:1661 msgid "Update key" msgstr "" @@ -47636,9 +48050,9 @@ msgid "Trap subtype" msgstr "" #: ../../include/class/SnmpConsole.class.php:291 -#: ../../include/functions_reporting.php:5890 -#: ../../include/functions_reporting.php:5907 -#: ../../include/functions_reporting.php:5924 +#: ../../include/functions_reporting.php:5899 +#: ../../include/functions_reporting.php:5916 +#: ../../include/functions_reporting.php:5933 msgid "Not triggered" msgstr "" @@ -47648,25 +48062,25 @@ msgstr "" #: ../../include/class/SnmpConsole.class.php:309 #: ../../include/class/SnmpConsole.class.php:503 -#: ../../include/class/SnmpConsole.class.php:761 +#: ../../include/class/SnmpConsole.class.php:763 #: ../../include/functions_reporting.php:2366 -#: ../../include/functions_reporting.php:4597 -#: ../../include/functions_reporting.php:11390 +#: ../../include/functions_reporting.php:4606 +#: ../../include/functions_reporting.php:11399 msgid "Not validated" msgstr "" #: ../../include/class/SnmpConsole.class.php:310 #: ../../include/class/SnmpConsole.class.php:501 -#: ../../include/class/SnmpConsole.class.php:771 +#: ../../include/class/SnmpConsole.class.php:773 #: ../../include/functions_reporting.php:2365 -#: ../../include/functions_reporting.php:4596 -#: ../../include/functions_reporting.php:11389 +#: ../../include/functions_reporting.php:4605 +#: ../../include/functions_reporting.php:11398 #: ../../include/functions_events.php:2547 -#: ../../include/functions_events.php:3269 -#: ../../include/functions_events.php:3544 -#: ../../include/functions_events.php:3553 -#: ../../include/functions_events.php:3560 -#: ../../include/functions_events.php:3567 +#: ../../include/functions_events.php:3274 +#: ../../include/functions_events.php:3549 +#: ../../include/functions_events.php:3558 +#: ../../include/functions_events.php:3565 +#: ../../include/functions_events.php:3572 msgid "Validated" msgstr "" @@ -47674,46 +48088,46 @@ msgstr "" msgid "Group by Enterprise String/IP" msgstr "" -#: ../../include/class/SnmpConsole.class.php:783 +#: ../../include/class/SnmpConsole.class.php:785 #: ../../operation/snmpconsole/snmp_statistics.php:199 msgid "View agent details" msgstr "" -#: ../../include/class/SnmpConsole.class.php:902 -#: ../../include/class/SnmpConsole.class.php:903 +#: ../../include/class/SnmpConsole.class.php:904 +#: ../../include/class/SnmpConsole.class.php:905 msgid "Hide details" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "Count:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "First trap:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "Last trap:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1403 +#: ../../include/class/SnmpConsole.class.php:1405 msgid "Type:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1410 +#: ../../include/class/SnmpConsole.class.php:1412 msgid "Description:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1417 +#: ../../include/class/SnmpConsole.class.php:1419 msgid "Enterprise String:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1426 -#: ../../include/class/SnmpConsole.class.php:1440 +#: ../../include/class/SnmpConsole.class.php:1428 +#: ../../include/class/SnmpConsole.class.php:1442 msgid "Variable bindings:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1436 +#: ../../include/class/SnmpConsole.class.php:1438 msgid "See more details" msgstr "" @@ -47787,51 +48201,51 @@ msgstr "" msgid "Press enter to search" msgstr "" -#: ../../include/class/TipsWindow.class.php:432 +#: ../../include/class/TipsWindow.class.php:444 msgid "Tip deleted" msgstr "" -#: ../../include/class/TipsWindow.class.php:482 +#: ../../include/class/TipsWindow.class.php:494 msgid "Search by title" msgstr "" -#: ../../include/class/TipsWindow.class.php:683 +#: ../../include/class/TipsWindow.class.php:703 msgid "Tip created" msgstr "" -#: ../../include/class/TipsWindow.class.php:743 -#: ../../include/class/TipsWindow.class.php:911 +#: ../../include/class/TipsWindow.class.php:763 +#: ../../include/class/TipsWindow.class.php:931 msgid "Wrong size, we recommend images of 464x260 px" msgstr "" -#: ../../include/class/TipsWindow.class.php:751 -#: ../../include/class/TipsWindow.class.php:919 +#: ../../include/class/TipsWindow.class.php:771 +#: ../../include/class/TipsWindow.class.php:939 msgid "Please select a image" msgstr "" -#: ../../include/class/TipsWindow.class.php:755 -#: ../../include/class/TipsWindow.class.php:923 +#: ../../include/class/TipsWindow.class.php:775 +#: ../../include/class/TipsWindow.class.php:943 msgid "Add image" msgstr "" -#: ../../include/class/TipsWindow.class.php:758 -#: ../../include/class/TipsWindow.class.php:926 +#: ../../include/class/TipsWindow.class.php:778 +#: ../../include/class/TipsWindow.class.php:946 msgid "Images" msgstr "" -#: ../../include/class/TipsWindow.class.php:823 +#: ../../include/class/TipsWindow.class.php:843 msgid "Tip edited" msgstr "" -#: ../../include/class/TipsWindow.class.php:1096 +#: ../../include/class/TipsWindow.class.php:1116 msgid "Incorrect file" msgstr "" -#: ../../include/class/TipsWindow.class.php:1100 +#: ../../include/class/TipsWindow.class.php:1120 msgid "Format image invalid" msgstr "" -#: ../../include/class/TipsWindow.class.php:1104 +#: ../../include/class/TipsWindow.class.php:1124 msgid "Image size too large" msgstr "" @@ -47840,15 +48254,19 @@ msgstr "" msgid "NetScan Custom" msgstr "" -#: ../../include/class/CustomNetScan.class.php:623 +#: ../../include/class/CustomNetScan.class.php:527 +msgid "The minimum recomended interval for Recon Task is 5 minutes" +msgstr "" + +#: ../../include/class/CustomNetScan.class.php:622 msgid "Recon script" msgstr "" -#: ../../include/class/CustomNetScan.class.php:663 +#: ../../include/class/CustomNetScan.class.php:662 msgid "Explanation" msgstr "" -#: ../../include/class/CustomNetScan.class.php:679 +#: ../../include/class/CustomNetScan.class.php:678 msgid "macro_desc" msgstr "" @@ -47922,7 +48340,7 @@ msgid "The modules is already added" msgstr "" #: ../../include/class/ModuleTemplates.class.php:1097 -#: ../../include/class/ModuleTemplates.class.php:1361 +#: ../../include/class/ModuleTemplates.class.php:1365 msgid "Add components" msgstr "" @@ -47959,11 +48377,11 @@ msgstr "" msgid "Do you want delete this module?" msgstr "" -#: ../../include/class/ModuleTemplates.class.php:1454 +#: ../../include/class/ModuleTemplates.class.php:1458 msgid "Do you want delete all templates?" msgstr "" -#: ../../include/class/ModuleTemplates.class.php:1457 +#: ../../include/class/ModuleTemplates.class.php:1461 msgid "Do you want delete the selected templates?" msgstr "" @@ -48603,6 +49021,95 @@ msgstr "" msgid "If something is not working as expected, look for this icon and report!" msgstr "" +#: ../../include/class/AgentDeployWizard.class.php:306 +msgid "Please note that all OS must be 64-bit based architecture" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:309 +msgid "Choose your OS" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:321 +#, php-format +msgid "" +"Use your %s Data Server IP address here. It must be possible to establish a " +"connection from the agent to port 41121/tcp of this address." +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:326 +msgid "Server address" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:379 +msgid "view the following instructions" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:385 +msgid "If you need more information regarding agents" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:415 +msgid "Generate installer" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:436 +msgid "Linux agent" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:446 +msgid "" +"Run the following command in the shell of your Linux server to perform the " +"installation of the generated agent:" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:449 +#: ../../include/class/AgentDeployWizard.class.php:491 +msgid "" +"Once installed, you must run the following command to start the software " +"agent service:" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:458 +msgid "dependencies" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:460 +msgid "" +"For the correct operation of the Linux agent it is necessary that the server " +"has installed the following " +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:478 +msgid "Windows agent" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:488 +msgid "Run the following command in cmd.exe as an administrator:" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:510 +msgid "Mac agent" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:524 +msgid "" +"To complete the installation process, please perform a manual installation " +"and configure the server address to XXX and specify the group as XXX. Thank " +"you for your cooperation." +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:530 +msgid "Click to Download the agent" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:551 +msgid "Change configuration" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:728 +msgid "Installer" +msgstr "" + #: ../../include/class/SatelliteCollection.class.php:306 msgid "Error adding collection" msgstr "" @@ -48750,12 +49257,12 @@ msgstr "" msgid "Current value" msgstr "" -#: ../../include/class/AgentWizard.class.php:5716 +#: ../../include/class/AgentWizard.class.php:5712 #, php-format msgid "The operation '%s' is not permitted. Review for remote components." msgstr "" -#: ../../include/class/AgentWizard.class.php:6182 +#: ../../include/class/AgentWizard.class.php:6178 msgid "Modules about to be created" msgstr "" @@ -48953,432 +49460,432 @@ msgstr "" msgid "Event Report Module" msgstr "" -#: ../../include/functions_reporting.php:3335 +#: ../../include/functions_reporting.php:3344 msgid "Agent/Modules" msgstr "" -#: ../../include/functions_reporting.php:3432 +#: ../../include/functions_reporting.php:3441 msgid "Agent/Modules Status" msgstr "" -#: ../../include/functions_reporting.php:3581 +#: ../../include/functions_reporting.php:3590 msgid "Exception - Everything" msgstr "" -#: ../../include/functions_reporting.php:3587 +#: ../../include/functions_reporting.php:3596 #, php-format msgid "Exception - Modules over or equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3590 +#: ../../include/functions_reporting.php:3599 #, php-format msgid "Modules over or equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3595 +#: ../../include/functions_reporting.php:3604 #, php-format msgid "Exception - Modules under or equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3598 +#: ../../include/functions_reporting.php:3607 #, php-format msgid "Modules under or equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3603 +#: ../../include/functions_reporting.php:3612 #, php-format msgid "Exception - Modules under %s" msgstr "" -#: ../../include/functions_reporting.php:3606 +#: ../../include/functions_reporting.php:3615 #, php-format msgid "Modules under %s" msgstr "" -#: ../../include/functions_reporting.php:3611 +#: ../../include/functions_reporting.php:3620 #, php-format msgid "Exception - Modules over %s" msgstr "" -#: ../../include/functions_reporting.php:3614 +#: ../../include/functions_reporting.php:3623 #, php-format msgid "Modules over %s" msgstr "" -#: ../../include/functions_reporting.php:3619 +#: ../../include/functions_reporting.php:3628 #, php-format msgid "Exception - Equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3622 +#: ../../include/functions_reporting.php:3631 #, php-format msgid "Equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3627 +#: ../../include/functions_reporting.php:3636 #, php-format msgid "Exception - Not equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3630 +#: ../../include/functions_reporting.php:3639 #, php-format msgid "Not equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3634 +#: ../../include/functions_reporting.php:3643 msgid "Exception - Modules at normal status" msgstr "" -#: ../../include/functions_reporting.php:3635 +#: ../../include/functions_reporting.php:3644 msgid "Modules at normal status" msgstr "" -#: ../../include/functions_reporting.php:3639 +#: ../../include/functions_reporting.php:3648 msgid "Exception - Modules at critical or warning status" msgstr "" -#: ../../include/functions_reporting.php:3640 +#: ../../include/functions_reporting.php:3649 msgid "Modules at critical or warning status" msgstr "" -#: ../../include/functions_reporting.php:3920 +#: ../../include/functions_reporting.php:3929 msgid "There are no Modules under those conditions." msgstr "" -#: ../../include/functions_reporting.php:3924 +#: ../../include/functions_reporting.php:3933 #, php-format msgid "There are no Modules over or equal to %s." msgstr "" -#: ../../include/functions_reporting.php:3928 +#: ../../include/functions_reporting.php:3937 #, php-format msgid "There are no Modules less or equal to %s." msgstr "" -#: ../../include/functions_reporting.php:3932 +#: ../../include/functions_reporting.php:3941 #, php-format msgid "There are no Modules less %s." msgstr "" -#: ../../include/functions_reporting.php:3936 +#: ../../include/functions_reporting.php:3945 #, php-format msgid "There are no Modules over %s." msgstr "" -#: ../../include/functions_reporting.php:3940 +#: ../../include/functions_reporting.php:3949 #, php-format msgid "There are no Modules equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3944 +#: ../../include/functions_reporting.php:3953 #, php-format msgid "There are no Modules not equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3948 +#: ../../include/functions_reporting.php:3957 msgid "There are no Modules normal status" msgstr "" -#: ../../include/functions_reporting.php:3952 +#: ../../include/functions_reporting.php:3961 msgid "There are no Modules at critial or warning status" msgstr "" -#: ../../include/functions_reporting.php:4380 +#: ../../include/functions_reporting.php:4389 msgid "Event Report Agent" msgstr "" -#: ../../include/functions_reporting.php:4799 +#: ../../include/functions_reporting.php:4808 msgid "Database Serialized" msgstr "" -#: ../../include/functions_reporting.php:4995 +#: ../../include/functions_reporting.php:5004 msgid "Last Value" msgstr "" -#: ../../include/functions_reporting.php:5045 -#: ../../include/functions_reporting.php:5088 +#: ../../include/functions_reporting.php:5054 +#: ../../include/functions_reporting.php:5097 msgid "No data to display within the selected interval" msgstr "" -#: ../../include/functions_reporting.php:5319 +#: ../../include/functions_reporting.php:5328 msgid "Network interfaces report" msgstr "" -#: ../../include/functions_reporting.php:5413 +#: ../../include/functions_reporting.php:5422 msgid "Custom render report" msgstr "" -#: ../../include/functions_reporting.php:5453 -#: ../../include/functions_reporting.php:5479 +#: ../../include/functions_reporting.php:5462 +#: ../../include/functions_reporting.php:5488 msgid "" "This query is insecure, it could apply unwanted modiffications on the schema" msgstr "" -#: ../../include/functions_reporting.php:5658 +#: ../../include/functions_reporting.php:5667 msgid "The group has no agents or none of the agents has any network interface" msgstr "" -#: ../../include/functions_reporting.php:5683 +#: ../../include/functions_reporting.php:5692 msgid "bytes/s" msgstr "" -#: ../../include/functions_reporting.php:6350 +#: ../../include/functions_reporting.php:6359 msgid "SQL Graph Vertical Bars" msgstr "" -#: ../../include/functions_reporting.php:6354 +#: ../../include/functions_reporting.php:6363 msgid "SQL Graph Horizontal Bars" msgstr "" -#: ../../include/functions_reporting.php:6358 +#: ../../include/functions_reporting.php:6367 msgid "SQL Graph Pie" msgstr "" -#: ../../include/functions_reporting.php:6585 +#: ../../include/functions_reporting.php:6594 msgid "Netflow Area" msgstr "" -#: ../../include/functions_reporting.php:6589 +#: ../../include/functions_reporting.php:6598 msgid "Netflow Summary" msgstr "" -#: ../../include/functions_reporting.php:6593 +#: ../../include/functions_reporting.php:6602 msgid "Netflow Data" msgstr "" -#: ../../include/functions_reporting.php:6601 +#: ../../include/functions_reporting.php:6610 msgid "Unknown report" msgstr "" -#: ../../include/functions_reporting.php:6695 +#: ../../include/functions_reporting.php:6704 msgid "Prediction Date" msgstr "" -#: ../../include/functions_reporting.php:7705 +#: ../../include/functions_reporting.php:7714 msgid "" "Illegal query: Due security restrictions, there are some tokens or words you " "cannot use: *, delete, drop, alter, modify, password, pass, insert or update." msgstr "" -#: ../../include/functions_reporting.php:9118 -#: ../../include/functions_reporting.php:9836 +#: ../../include/functions_reporting.php:9127 +#: ../../include/functions_reporting.php:9845 msgid "No Address" msgstr "" -#: ../../include/functions_reporting.php:10135 +#: ../../include/functions_reporting.php:10144 msgid "" "The monitor have no data in this range of dates or monitor type is not " "numeric" msgstr "" -#: ../../include/functions_reporting.php:10153 +#: ../../include/functions_reporting.php:10162 msgid "The monitor type is not numeric" msgstr "" -#: ../../include/functions_reporting.php:10579 +#: ../../include/functions_reporting.php:10588 msgid "Maximum" msgstr "" -#: ../../include/functions_reporting.php:10657 +#: ../../include/functions_reporting.php:10666 msgid "Automatic combined graph" msgstr "" -#: ../../include/functions_reporting.php:12079 -#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12088 +#: ../../include/functions_reporting.php:12112 +#: ../../include/functions_reporting.php:12151 msgid "Server health" msgstr "" -#: ../../include/functions_reporting.php:12079 +#: ../../include/functions_reporting.php:12088 #, php-format msgid "%d Downed servers" msgstr "" -#: ../../include/functions_reporting.php:12084 -#: ../../include/functions_reporting.php:12107 +#: ../../include/functions_reporting.php:12093 +#: ../../include/functions_reporting.php:12116 +#: ../../include/functions_reporting.php:12157 msgid "Monitor health" msgstr "" -#: ../../include/functions_reporting.php:12084 +#: ../../include/functions_reporting.php:12093 #, php-format msgid "%d Not Normal monitors" msgstr "" -#: ../../include/functions_reporting.php:12084 -#: ../../include/functions_reporting.php:12108 +#: ../../include/functions_reporting.php:12093 +#: ../../include/functions_reporting.php:12117 msgid "of monitors up" msgstr "" -#: ../../include/functions_reporting.php:12089 -msgid "Module sanityX" +#: ../../include/functions_reporting.php:12098 +#: ../../include/functions_reporting.php:12120 +#: ../../include/functions_reporting.php:12163 +msgid "Module sanity" msgstr "" -#: ../../include/functions_reporting.php:12089 +#: ../../include/functions_reporting.php:12098 #, php-format msgid "%d Not inited monitors" msgstr "" -#: ../../include/functions_reporting.php:12089 -#: ../../include/functions_reporting.php:12112 +#: ../../include/functions_reporting.php:12098 +#: ../../include/functions_reporting.php:12121 msgid "of total modules inited" msgstr "" -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:13202 -#: ../../include/functions_reporting.php:13212 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:13275 +#: ../../include/functions_reporting.php:13285 #, php-format msgid "%d Fired alerts" msgstr "" -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:12116 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12125 msgid "of defined alerts not fired" msgstr "" -#: ../../include/functions_reporting.php:12111 -msgid "Module sanity" -msgstr "" - -#: ../../include/functions_reporting.php:12184 -#: ../../include/functions_groups.php:2733 +#: ../../include/functions_reporting.php:12257 +#: ../../include/functions_groups.php:2758 msgid "Defined and fired alerts" msgstr "" -#: ../../include/functions_reporting.php:12363 +#: ../../include/functions_reporting.php:12436 msgid "Defined users" msgstr "" -#: ../../include/functions_reporting.php:13059 +#: ../../include/functions_reporting.php:13132 msgid "Agent without data" msgstr "" -#: ../../include/functions_reporting.php:13198 +#: ../../include/functions_reporting.php:13271 #, php-format msgid "%d Normal modules" msgstr "" -#: ../../include/functions_reporting.php:13199 +#: ../../include/functions_reporting.php:13272 #, php-format msgid "%d Critical modules" msgstr "" -#: ../../include/functions_reporting.php:13200 +#: ../../include/functions_reporting.php:13273 #, php-format msgid "%d Warning modules" msgstr "" -#: ../../include/functions_reporting.php:13201 +#: ../../include/functions_reporting.php:13274 #, php-format msgid "%d Unknown modules" msgstr "" -#: ../../include/functions_reporting.php:13206 +#: ../../include/functions_reporting.php:13279 #, php-format msgid "%d Total agents" msgstr "" -#: ../../include/functions_reporting.php:13207 +#: ../../include/functions_reporting.php:13280 #, php-format msgid "%d Normal agents" msgstr "" -#: ../../include/functions_reporting.php:13208 +#: ../../include/functions_reporting.php:13281 #, php-format msgid "%d Critical agents" msgstr "" -#: ../../include/functions_reporting.php:13209 +#: ../../include/functions_reporting.php:13282 #, php-format msgid "%d Warning agents" msgstr "" -#: ../../include/functions_reporting.php:13210 +#: ../../include/functions_reporting.php:13283 #, php-format msgid "%d Unknown agents" msgstr "" -#: ../../include/functions_reporting.php:13211 +#: ../../include/functions_reporting.php:13284 #, php-format msgid "%d not init agents" msgstr "" -#: ../../include/functions_reporting.php:14639 +#: ../../include/functions_reporting.php:14712 msgid "Total running modules" msgstr "" -#: ../../include/functions_reporting.php:14642 -#: ../../include/functions_reporting.php:14657 -#: ../../include/functions_reporting.php:14669 -#: ../../include/functions_reporting.php:14687 -#: ../../include/functions_reporting.php:14699 -#: ../../include/functions_reporting.php:14711 -#: ../../include/functions_reporting.php:14723 +#: ../../include/functions_reporting.php:14715 +#: ../../include/functions_reporting.php:14730 +#: ../../include/functions_reporting.php:14742 +#: ../../include/functions_reporting.php:14760 +#: ../../include/functions_reporting.php:14772 +#: ../../include/functions_reporting.php:14784 +#: ../../include/functions_reporting.php:14796 msgid "Ratio" msgstr "" -#: ../../include/functions_reporting.php:14642 -#: ../../include/functions_reporting.php:14657 -#: ../../include/functions_reporting.php:14669 -#: ../../include/functions_reporting.php:14687 -#: ../../include/functions_reporting.php:14699 -#: ../../include/functions_reporting.php:14711 -#: ../../include/functions_reporting.php:14723 +#: ../../include/functions_reporting.php:14715 +#: ../../include/functions_reporting.php:14730 +#: ../../include/functions_reporting.php:14742 +#: ../../include/functions_reporting.php:14760 +#: ../../include/functions_reporting.php:14772 +#: ../../include/functions_reporting.php:14784 +#: ../../include/functions_reporting.php:14796 msgid "Modules by second" msgstr "" -#: ../../include/functions_reporting.php:14654 +#: ../../include/functions_reporting.php:14727 msgid "Local modules" msgstr "" -#: ../../include/functions_reporting.php:14664 +#: ../../include/functions_reporting.php:14737 msgid "Network modules" msgstr "" -#: ../../include/functions_reporting.php:14683 +#: ../../include/functions_reporting.php:14756 msgid "Plugin modules" msgstr "" -#: ../../include/functions_reporting.php:14695 +#: ../../include/functions_reporting.php:14768 msgid "Prediction modules" msgstr "" -#: ../../include/functions_reporting.php:14707 +#: ../../include/functions_reporting.php:14780 msgid "WMI modules" msgstr "" -#: ../../include/functions_reporting.php:14719 +#: ../../include/functions_reporting.php:14792 msgid "Web modules" msgstr "" -#: ../../include/functions_reporting.php:14757 +#: ../../include/functions_reporting.php:14830 #: ../../include/lib/Dashboard/Widgets/tactical.php:287 msgid "Server performance" msgstr "" -#: ../../include/functions_reporting.php:14870 +#: ../../include/functions_reporting.php:14943 msgid "Start condition" msgstr "" -#: ../../include/functions_reporting.php:14870 +#: ../../include/functions_reporting.php:14943 msgid "Stop condition" msgstr "" -#: ../../include/functions_reporting.php:14880 +#: ../../include/functions_reporting.php:14953 msgid "Weekly:" msgstr "" -#: ../../include/functions_reporting.php:14922 +#: ../../include/functions_reporting.php:14995 msgid "Monthly:" msgstr "" -#: ../../include/functions_reporting.php:15473 +#: ../../include/functions_reporting.php:15546 msgid "Module Histogram Graph" msgstr "" -#: ../../include/functions_reporting.php:15836 +#: ../../include/functions_reporting.php:15913 msgid "Attached to this email there's a PDF file of the" msgstr "" -#: ../../include/functions_reporting.php:15837 +#: ../../include/functions_reporting.php:15914 msgid "report" msgstr "" @@ -49434,84 +49941,84 @@ msgstr "" msgid "Something gone wrong creating directory" msgstr "" -#: ../../include/functions_filemanager.php:541 -#: ../../include/functions_filemanager.php:821 +#: ../../include/functions_filemanager.php:553 +#: ../../include/functions_filemanager.php:838 msgid "Create a Directory" msgstr "" -#: ../../include/functions_filemanager.php:545 -#: ../../include/functions_filemanager.php:832 -#: ../../include/functions_filemanager.php:835 +#: ../../include/functions_filemanager.php:559 +#: ../../include/functions_filemanager.php:850 +#: ../../include/functions_filemanager.php:853 msgid "Create File" msgstr "" -#: ../../include/functions_filemanager.php:549 -#: ../../include/functions_filemanager.php:846 -#: ../../include/functions_filemanager.php:849 +#: ../../include/functions_filemanager.php:564 +#: ../../include/functions_filemanager.php:864 +#: ../../include/functions_filemanager.php:867 msgid "Upload Files" msgstr "" -#: ../../include/functions_filemanager.php:583 -#: ../../include/functions_filemanager.php:793 +#: ../../include/functions_filemanager.php:598 +#: ../../include/functions_filemanager.php:808 msgid "Real path" msgstr "" -#: ../../include/functions_filemanager.php:618 +#: ../../include/functions_filemanager.php:633 #, php-format msgid "Directory %s doesn't exist!" msgstr "" -#: ../../include/functions_filemanager.php:663 +#: ../../include/functions_filemanager.php:678 msgid "Parent directory" msgstr "" -#: ../../include/functions_filemanager.php:677 +#: ../../include/functions_filemanager.php:692 msgid "Directory" msgstr "" -#: ../../include/functions_filemanager.php:685 +#: ../../include/functions_filemanager.php:700 msgid "Compressed file" msgstr "" -#: ../../include/functions_filemanager.php:689 -#: ../../include/functions_filemanager.php:696 +#: ../../include/functions_filemanager.php:704 +#: ../../include/functions_filemanager.php:711 msgid "Text file" msgstr "" -#: ../../include/functions_filemanager.php:729 +#: ../../include/functions_filemanager.php:744 msgid "This file could be executed by any user" msgstr "" -#: ../../include/functions_filemanager.php:730 +#: ../../include/functions_filemanager.php:745 msgid "Make sure it can't perform dangerous tasks" msgstr "" -#: ../../include/functions_filemanager.php:804 +#: ../../include/functions_filemanager.php:819 msgid "No files or directories to show." msgstr "" -#: ../../include/functions_filemanager.php:818 -#: ../../include/functions_filemanager.php:940 +#: ../../include/functions_filemanager.php:835 +#: ../../include/functions_filemanager.php:961 msgid "Create directory" msgstr "" -#: ../../include/functions_filemanager.php:880 +#: ../../include/functions_filemanager.php:900 msgid "The zip upload in this dir, easy to upload multiple files." msgstr "" -#: ../../include/functions_filemanager.php:882 +#: ../../include/functions_filemanager.php:902 msgid "Decompress" msgstr "" -#: ../../include/functions_filemanager.php:954 +#: ../../include/functions_filemanager.php:976 msgid "Create file" msgstr "" -#: ../../include/functions_filemanager.php:968 +#: ../../include/functions_filemanager.php:990 msgid "Upload file/s" msgstr "" -#: ../../include/functions_filemanager.php:999 +#: ../../include/functions_filemanager.php:1021 msgid "The directory is read-only" msgstr "" @@ -49524,15 +50031,15 @@ msgstr "" msgid "Copy of %s" msgstr "" -#: ../../include/lib/Dashboard/Manager.php:1007 +#: ../../include/lib/Dashboard/Manager.php:1011 msgid "Error create or update dashboard" msgstr "" -#: ../../include/lib/Dashboard/Manager.php:1479 +#: ../../include/lib/Dashboard/Manager.php:1483 msgid "Icon image dashboard" msgstr "" -#: ../../include/lib/Dashboard/Widget.php:468 +#: ../../include/lib/Dashboard/Widget.php:469 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:263 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:347 #: ../../include/lib/Dashboard/Widgets/reports.php:336 @@ -49540,28 +50047,28 @@ msgstr "" msgid "Failed to connect to node %d" msgstr "" -#: ../../include/lib/Dashboard/Widget.php:483 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:621 +#: ../../include/lib/Dashboard/Widget.php:484 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:634 msgid "Please configure this widget before usage" msgstr "" -#: ../../include/lib/Dashboard/Widget.php:491 +#: ../../include/lib/Dashboard/Widget.php:492 #: ../../include/lib/Dashboard/Widgets/maps_status.php:390 #: ../../include/lib/Dashboard/Widgets/events_list.php:561 msgid "Widget cannot be loaded" msgstr "" -#: ../../include/lib/Dashboard/Widget.php:491 +#: ../../include/lib/Dashboard/Widget.php:492 #: ../../include/lib/Dashboard/Widgets/maps_status.php:390 msgid "Please, configure the widget again to recover it" msgstr "" #: ../../include/lib/Dashboard/Widgets/groups_status.php:158 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:510 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:533 msgid "General group status" msgstr "" -#: ../../include/lib/Dashboard/Widgets/groups_status.php:464 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:477 msgid "Not agents in this group" msgstr "" @@ -49591,7 +50098,7 @@ msgid "No modules in selected groups" msgstr "" #: ../../include/lib/Dashboard/Widgets/heatmap.php:173 -#: ../../include/lib/Dashboard/Widgets/heatmap.php:385 +#: ../../include/lib/Dashboard/Widgets/heatmap.php:386 msgid "Heatmap" msgstr "" @@ -49628,7 +50135,7 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/sla_percent.php:471 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:482 #: ../../include/lib/Dashboard/Widgets/events_list.php:528 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:646 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:659 msgid "You don't have access" msgstr "" @@ -49650,13 +50157,14 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:280 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:361 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:464 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:443 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:256 msgid "Agent / module" msgstr "" #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:457 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:552 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:465 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:466 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:699 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:408 msgid "Not found modules" @@ -49689,7 +50197,7 @@ msgid "Maps" msgstr "" #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:175 -#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:709 +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:711 msgid "Avg|Sum|Max|Min Module Data" msgstr "" @@ -49767,7 +50275,7 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:174 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:199 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:172 -#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:537 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:545 msgid "Color tabs modules" msgstr "" @@ -49851,21 +50359,21 @@ msgid "Zoom level" msgstr "" #: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:376 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:417 msgid "Triggered alerts report" msgstr "" -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:349 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:390 msgid "Not alert fired" msgstr "" -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:358 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:399 #: ../../include/lib/Dashboard/Widgets/events_list.php:521 msgid "You must select some group" msgstr "" #: ../../include/lib/Dashboard/Widgets/events_list.php:175 -#: ../../include/lib/Dashboard/Widgets/events_list.php:715 +#: ../../include/lib/Dashboard/Widgets/events_list.php:722 msgid "List of latest events" msgstr "" @@ -49875,16 +50383,16 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/events_list.php:383 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:299 -#: ../../include/functions_events.php:3261 -#: ../../include/functions_events.php:3267 -#: ../../include/functions_events.php:3289 +#: ../../include/functions_events.php:3266 +#: ../../include/functions_events.php:3272 +#: ../../include/functions_events.php:3294 msgid "All event" msgstr "" #: ../../include/lib/Dashboard/Widgets/events_list.php:384 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:300 -#: ../../include/functions_events.php:3263 -#: ../../include/functions_events.php:3297 +#: ../../include/functions_events.php:3268 +#: ../../include/functions_events.php:3302 msgid "Only validated" msgstr "" @@ -49897,6 +50405,34 @@ msgstr "" msgid "Please, event filter has been removed." msgstr "" +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:420 +msgid "Color chart" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:431 +msgid "Show label" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:458 +msgid "Label size in px" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:470 +msgid "Color label" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:481 +msgid "Show Value" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:501 +msgid "Value size in px" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:513 +msgid "Color value" +msgstr "" + #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:172 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:626 msgid "Event cardboard" @@ -50031,12 +50567,12 @@ msgid "Missing Service id" msgstr "" #: ../../include/lib/Dashboard/Widgets/agent_module.php:173 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:766 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:779 msgid "Agent/Module View" msgstr "" #: ../../include/lib/Dashboard/Widgets/agent_module.php:250 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:454 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:459 msgid "Filter modules" msgstr "" @@ -50090,61 +50626,61 @@ msgstr "" msgid "unknown" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:354 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:357 msgid "Type tree" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:386 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:389 msgid "Open all groups" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:407 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:411 msgid "Agents status" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:442 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:447 msgid "Modules status" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:508 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:513 #, php-format msgid "" "The user doesn't have permission to read agents. Please contact with your %s " "administrator." msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:654 -#: ../../operation/tree.php:471 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:647 +#: ../../operation/tree.php:473 msgid "Operating systems found" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:658 -#: ../../operation/tree.php:474 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:651 +#: ../../operation/tree.php:476 msgid "Tags found" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:662 -#: ../../operation/tree.php:477 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:655 +#: ../../operation/tree.php:479 msgid "Module Groups found" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:666 -#: ../../operation/tree.php:480 ../../operation/search_main.php:56 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:659 +#: ../../operation/tree.php:482 ../../operation/search_main.php:56 msgid "Modules found" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:671 -#: ../../operation/tree.php:484 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:664 +#: ../../operation/tree.php:486 msgid "Groups found" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:732 -#: ../../operation/tree.php:536 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:725 +#: ../../operation/tree.php:538 msgid "Not normal agents" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:733 -#: ../../operation/tree.php:537 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:726 +#: ../../operation/tree.php:539 msgid "Not normal modules" msgstr "" @@ -50159,10 +50695,6 @@ msgid "" "*usage.* will match: cpu_usage, vram usage." msgstr "" -#: ../../include/lib/Dashboard/Widgets/top_n.php:280 -msgid "Avg." -msgstr "" - #: ../../include/lib/Dashboard/Widgets/top_n.php:456 msgid "There are no agents/modules found matching filter set" msgstr "" @@ -50226,73 +50758,73 @@ msgstr "" msgid "Cluster already defined, please use another name." msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:782 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:783 msgid "Cluster name" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:783 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:784 msgid "" "An agent with the same name of the cluster will be created, as well a " "special service with the same name" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:797 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:798 msgid "Cluster type" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:798 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:799 msgid "" "AA is a cluster where all members are working. In AP cluster only master " "member is working" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:806 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:807 msgid "Active - Active" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:807 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:808 msgid "Active - Pasive" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:827 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:828 msgid "Target cluster agent will be stored under this group" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:844 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:845 msgid "" "You must select a Prediction Server to perform all cluster status " "calculations" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1041 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1042 msgid "critical if" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1050 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1073 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1051 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1074 #, php-format msgid "% of balanced modules are down (equal or greater)." msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1089 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1090 msgid "Please, set thresholds for all active-passive modules" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1100 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1101 msgid "Please, set thresholds for all active-active modules" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1205 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1206 msgid "Please, check all active-passive modules critical for this cluster" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1207 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1208 msgid "" "If a critical balanced module is going to critical status, then cluster will " "be critical." msgstr "" -#: ../../include/lib/Core/DBMaintainer.php:174 +#: ../../include/lib/Core/DBMaintainer.php:177 #, php-format msgid "Connection problems: %s" msgstr "" @@ -50409,53 +50941,53 @@ msgid "Collapse the tree" msgstr "" #: ../../include/functions_snmp_browser.php:1115 -#: ../../include/functions_snmp_browser.php:1170 +#: ../../include/functions_snmp_browser.php:1178 msgid "Search options" msgstr "" -#: ../../include/functions_snmp_browser.php:1160 +#: ../../include/functions_snmp_browser.php:1168 msgid "SNMP v3 options" msgstr "" -#: ../../include/functions_snmp_browser.php:1192 +#: ../../include/functions_snmp_browser.php:1200 msgid "Search matches" msgstr "" -#: ../../include/functions_snmp_browser.php:1208 +#: ../../include/functions_snmp_browser.php:1216 msgid "Create agent modules" msgstr "" -#: ../../include/functions_snmp_browser.php:1217 +#: ../../include/functions_snmp_browser.php:1225 msgid "Create policy modules" msgstr "" -#: ../../include/functions_snmp_browser.php:1226 +#: ../../include/functions_snmp_browser.php:1234 msgid "Create network components" msgstr "" -#: ../../include/functions_snmp_browser.php:1656 +#: ../../include/functions_snmp_browser.php:1665 msgid " available" msgstr "" -#: ../../include/functions_snmp_browser.php:1663 +#: ../../include/functions_snmp_browser.php:1672 msgid " to apply" msgstr "" -#: ../../include/functions_snmp_browser.php:1668 -#: ../../operation/snmpconsole/snmp_browser.php:535 +#: ../../include/functions_snmp_browser.php:1677 +#: ../../operation/snmpconsole/snmp_browser.php:540 msgid "Create new policy" msgstr "" -#: ../../include/functions_snmp_browser.php:1723 +#: ../../include/functions_snmp_browser.php:1732 msgid "Undo" msgstr "" -#: ../../include/chart_generator.php:117 +#: ../../include/chart_generator.php:122 #: ../../operation/agentes/stat_win.php:51 #: ../../operation/agentes/stat_win.php:176 #: ../../operation/agentes/realtime_win.php:51 #: ../../operation/agentes/interface_traffic_graph_win.php:54 -#: ../../operation/inventory/inventory.php:369 +#: ../../operation/inventory/inventory.php:371 msgid "There was a problem connecting with the node" msgstr "" @@ -50494,7 +51026,8 @@ msgid "GIS map layers" msgstr "" #: ../../include/functions_groups.php:251 -#: ../../operation/agentes/pandora_networkmap.view.php:2413 +#: ../../operation/agentes/networkmap.dinamic.php:150 +#: ../../operation/agentes/pandora_networkmap.view.php:2414 msgid "Network maps" msgstr "" @@ -50528,159 +51061,153 @@ msgstr "" msgid "Latest events" msgstr "" -#: ../../include/functions_events.php:2910 +#: ../../include/functions_events.php:2915 msgid "Going to unknown" msgstr "" -#: ../../include/functions_events.php:2918 +#: ../../include/functions_events.php:2923 msgid "Alert manually validated" msgstr "" -#: ../../include/functions_events.php:2922 +#: ../../include/functions_events.php:2927 msgid "Going from critical to warning" msgstr "" -#: ../../include/functions_events.php:2928 +#: ../../include/functions_events.php:2933 msgid "Going up to critical state" msgstr "" -#: ../../include/functions_events.php:2934 +#: ../../include/functions_events.php:2939 msgid "Going up to normal state" msgstr "" -#: ../../include/functions_events.php:2938 +#: ../../include/functions_events.php:2943 msgid "Going down from normal to warning" msgstr "" -#: ../../include/functions_events.php:2950 +#: ../../include/functions_events.php:2955 msgid "Discovery server detected a new host" msgstr "" -#: ../../include/functions_events.php:2954 +#: ../../include/functions_events.php:2959 msgid "New agent created" msgstr "" -#: ../../include/functions_events.php:2971 +#: ../../include/functions_events.php:2976 msgid "Unknown type:" msgstr "" -#: ../../include/functions_events.php:3262 -#: ../../include/functions_events.php:3293 +#: ../../include/functions_events.php:3267 +#: ../../include/functions_events.php:3298 msgid "Only new" msgstr "" -#: ../../include/functions_events.php:3264 -#: ../../include/functions_events.php:3301 +#: ../../include/functions_events.php:3269 +#: ../../include/functions_events.php:3306 msgid "Only in process" msgstr "" -#: ../../include/functions_events.php:3265 -#: ../../include/functions_events.php:3305 +#: ../../include/functions_events.php:3270 +#: ../../include/functions_events.php:3310 msgid "Only not validated" msgstr "" -#: ../../include/functions_events.php:3270 -#: ../../include/functions_events.php:3543 -#: ../../include/functions_events.php:3552 -msgid "In process" -msgstr "" - -#: ../../include/functions_events.php:3271 +#: ../../include/functions_events.php:3276 msgid "Not Validated" msgstr "" -#: ../../include/functions_events.php:3463 +#: ../../include/functions_events.php:3468 msgid "Change owner" msgstr "" -#: ../../include/functions_events.php:3528 +#: ../../include/functions_events.php:3533 msgid "Change status" msgstr "" -#: ../../include/functions_events.php:3625 -#: ../../include/functions_events.php:5361 +#: ../../include/functions_events.php:3630 +#: ../../include/functions_events.php:5366 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:330 msgid "Add comment" msgstr "" -#: ../../include/functions_events.php:3648 -#: ../../include/functions_events.php:3652 -#: ../../operation/events/events.php:978 +#: ../../include/functions_events.php:3653 +#: ../../include/functions_events.php:3657 +#: ../../operation/events/events.php:983 msgid "Delete event" msgstr "" -#: ../../include/functions_events.php:3675 +#: ../../include/functions_events.php:3680 msgid "Custom responses" msgstr "" -#: ../../include/functions_events.php:4281 +#: ../../include/functions_events.php:4286 msgid "Extended information" msgstr "" -#: ../../include/functions_events.php:4312 +#: ../../include/functions_events.php:4317 msgid "There was an error connecting to the node" msgstr "" -#: ../../include/functions_events.php:4333 +#: ../../include/functions_events.php:4338 msgid "Agent details" msgstr "" -#: ../../include/functions_events.php:4347 +#: ../../include/functions_events.php:4352 msgid "This agent belongs to metaconsole, is not possible display it" msgstr "" -#: ../../include/functions_events.php:4442 +#: ../../include/functions_events.php:4447 msgid "View custom fields" msgstr "" -#: ../../include/functions_events.php:4465 +#: ../../include/functions_events.php:4470 msgid "Module details" msgstr "" -#: ../../include/functions_events.php:4481 +#: ../../include/functions_events.php:4486 msgid "No assigned" msgstr "" -#: ../../include/functions_events.php:4562 -#: ../../include/functions_events.php:4571 +#: ../../include/functions_events.php:4567 +#: ../../include/functions_events.php:4576 msgid "Go to data overview" msgstr "" -#: ../../include/functions_events.php:4688 +#: ../../include/functions_events.php:4693 #, php-format msgid "Invalid custom data: %s" msgstr "" -#: ../../include/functions_events.php:4917 +#: ../../include/functions_events.php:4922 msgid "First event" msgstr "" -#: ../../include/functions_events.php:4920 +#: ../../include/functions_events.php:4925 msgid "Last event" msgstr "" -#: ../../include/functions_events.php:5017 +#: ../../include/functions_events.php:5022 msgid "Autovalidated" msgstr "" -#: ../../include/functions_events.php:5093 +#: ../../include/functions_events.php:5098 msgid "ID extra" msgstr "" -#: ../../include/functions_events.php:5210 +#: ../../include/functions_events.php:5215 msgid "There are no comments" msgstr "" -#: ../../include/functions_events.php:5274 ../../general/logon_ok.php:214 +#: ../../include/functions_events.php:5279 msgid "by" msgstr "" -#: ../../include/functions_events.php:5941 +#: ../../include/functions_events.php:5946 #, php-format msgid "Event # %d" msgstr "" -#: ../../include/functions_events.php:5944 +#: ../../include/functions_events.php:5949 msgid "Executing command: " msgstr "" @@ -50753,15 +51280,15 @@ msgstr "" msgid "User is blocked" msgstr "" -#: ../../index.php:1003 +#: ../../index.php:1004 msgid "User doesn\\'t exist." msgstr "" -#: ../../index.php:1025 +#: ../../index.php:1026 msgid "User only can use the API." msgstr "" -#: ../../index.php:1231 +#: ../../index.php:1232 #, php-format msgid "Metaconsole MR (%d) is different than this one (%d)" msgstr "" @@ -50798,35 +51325,35 @@ msgstr "" msgid "policies" msgstr "" -#: ../../operation/tree.php:215 +#: ../../operation/tree.php:216 msgid "Search group" msgstr "" -#: ../../operation/tree.php:221 ../../operation/tree.php:310 +#: ../../operation/tree.php:222 ../../operation/tree.php:312 msgid "Show not init modules" msgstr "" -#: ../../operation/tree.php:232 +#: ../../operation/tree.php:233 msgid "Search agent" msgstr "" -#: ../../operation/tree.php:244 +#: ../../operation/tree.php:245 msgid "Show not init agents" msgstr "" -#: ../../operation/tree.php:254 +#: ../../operation/tree.php:255 msgid "Show full hirearchy" msgstr "" -#: ../../operation/tree.php:288 +#: ../../operation/tree.php:289 msgid "Show only disabled" msgstr "" -#: ../../operation/tree.php:305 +#: ../../operation/tree.php:307 msgid "Search module" msgstr "" -#: ../../operation/tree.php:355 +#: ../../operation/tree.php:357 msgid "Tree search" msgstr "" @@ -50899,33 +51426,28 @@ msgstr "" msgid "If checkbox is clicked then block size global configuration is used" msgstr "" -#: ../../operation/users/user_edit.php:519 -#: ../../operation/users/user_edit.php:528 +#: ../../operation/users/user_edit.php:524 msgid "Theme" msgstr "" -#: ../../operation/users/user_edit.php:529 -msgid "This change will only apply to nodes" -msgstr "" - -#: ../../operation/users/user_edit.php:846 +#: ../../operation/users/user_edit.php:843 msgid "eHorus user configuration" msgstr "" -#: ../../operation/users/user_edit.php:851 +#: ../../operation/users/user_edit.php:848 msgid "eHorus user acces enabled" msgstr "" -#: ../../operation/users/user_edit.php:905 +#: ../../operation/users/user_edit.php:902 msgid "Integria user configuration" msgstr "" -#: ../../operation/users/user_edit.php:948 +#: ../../operation/users/user_edit.php:945 msgid "" "You can not change your user info under the current authentication scheme" msgstr "" -#: ../../operation/users/user_edit.php:1036 +#: ../../operation/users/user_edit.php:1033 msgid "This user doesn't have any assigned profile/group." msgstr "" @@ -50956,40 +51478,40 @@ msgstr "" msgid "Matches" msgstr "" -#: ../../operation/visual_console/view.php:407 +#: ../../operation/visual_console/view.php:409 msgid "Delete Item" msgstr "" -#: ../../operation/visual_console/view.php:413 +#: ../../operation/visual_console/view.php:415 msgid "Copy Item" msgstr "" -#: ../../operation/visual_console/view.php:430 +#: ../../operation/visual_console/view.php:432 msgid "Force remote checks" msgstr "" -#: ../../operation/visual_console/view.php:788 +#: ../../operation/visual_console/view.php:790 msgid "Are you sure you wish to set the visual console in maintenance mode" msgstr "" -#: ../../operation/visual_console/view.php:791 -#: ../../operation/visual_console/view.php:798 +#: ../../operation/visual_console/view.php:793 +#: ../../operation/visual_console/view.php:800 msgid "Are you sure you wish to disable maintenance mode" msgstr "" -#: ../../operation/visual_console/view.php:794 +#: ../../operation/visual_console/view.php:796 msgid "The visual console was set to maintenance mode" msgstr "" -#: ../../operation/visual_console/view.php:796 +#: ../../operation/visual_console/view.php:798 msgid "ago by user" msgstr "" -#: ../../operation/visual_console/view.php:803 +#: ../../operation/visual_console/view.php:805 msgid "Maintenance mode" msgstr "" -#: ../../operation/visual_console/view.php:864 +#: ../../operation/visual_console/view.php:866 msgid "Are you sure" msgstr "" @@ -51021,64 +51543,65 @@ msgstr "" msgid "Show events" msgstr "" -#: ../../operation/agentes/stat_win.php:299 +#: ../../operation/agentes/stat_win.php:303 #: ../../operation/agentes/graphs.php:239 msgid "Show alerts" msgstr "" -#: ../../operation/agentes/stat_win.php:307 -#: ../../operation/agentes/stat_win.php:418 -#: ../../operation/agentes/interface_traffic_graph_win.php:209 +#: ../../operation/agentes/stat_win.php:311 +#: ../../operation/agentes/stat_win.php:430 +#: ../../operation/agentes/interface_traffic_graph_win.php:214 msgid "Begin time" msgstr "" -#: ../../operation/agentes/stat_win.php:325 -#: ../../operation/agentes/stat_win.php:428 -#: ../../operation/agentes/interface_traffic_graph_win.php:215 +#: ../../operation/agentes/stat_win.php:333 +#: ../../operation/agentes/stat_win.php:444 +#: ../../operation/agentes/interface_traffic_graph_win.php:231 #: ../../operation/agentes/graphs.php:233 #: ../../operation/reporting/graph_viewer.php:346 msgid "Time range" msgstr "" -#: ../../operation/agentes/stat_win.php:340 +#: ../../operation/agentes/stat_win.php:348 #: ../../operation/reporting/graph_viewer.php:390 msgid "Zoom" msgstr "" -#: ../../operation/agentes/stat_win.php:360 -#: ../../operation/agentes/interface_traffic_graph_win.php:229 +#: ../../operation/agentes/stat_win.php:368 +#: ../../operation/agentes/interface_traffic_graph_win.php:245 msgid "Show percentil" msgstr "" -#: ../../operation/agentes/stat_win.php:386 +#: ../../operation/agentes/stat_win.php:394 msgid "Show AVG/MAX/MIN data series in graph" msgstr "" -#: ../../operation/agentes/stat_win.php:484 -#: ../../operation/agentes/interface_traffic_graph_win.php:308 +#: ../../operation/agentes/stat_win.php:500 +#: ../../operation/agentes/interface_traffic_graph_win.php:318 +#: ../../operation/agentes/interface_traffic_graph_win.php:322 msgid "Graph configuration menu" msgstr "" -#: ../../operation/agentes/alerts_status.php:344 +#: ../../operation/agentes/alerts_status.php:346 msgid "No actions" msgstr "" -#: ../../operation/agentes/alerts_status.php:378 -#: ../../operation/agentes/estado_monitores.php:577 +#: ../../operation/agentes/alerts_status.php:380 +#: ../../operation/agentes/estado_monitores.php:575 #: ../../operation/agentes/alerts_status.functions.php:223 msgid "Free text for search (*):" msgstr "" -#: ../../operation/agentes/alerts_status.php:379 +#: ../../operation/agentes/alerts_status.php:381 #: ../../operation/agentes/alerts_status.functions.php:224 msgid "Filter by module name, template name or action name" msgstr "" -#: ../../operation/agentes/alerts_status.php:475 +#: ../../operation/agentes/alerts_status.php:481 msgid "Full list of alerts" msgstr "" -#: ../../operation/agentes/alerts_status.php:567 +#: ../../operation/agentes/alerts_status.php:577 msgid "You must select at least one alert." msgstr "" @@ -51153,15 +51676,15 @@ msgid "Search in custom fields" msgstr "" #: ../../operation/agentes/estado_agente.php:467 -#: ../../operation/agentes/status_monitor.php:1058 +#: ../../operation/agentes/status_monitor.php:1060 msgid "Manage filter" msgstr "" -#: ../../operation/agentes/estado_agente.php:1059 +#: ../../operation/agentes/estado_agente.php:1067 msgid "L.S change" msgstr "" -#: ../../operation/agentes/estado_agente.php:1238 +#: ../../operation/agentes/estado_agente.php:1247 msgid "Agent events" msgstr "" @@ -51210,14 +51733,14 @@ msgid "Latest events for this agent" msgstr "" #: ../../operation/agentes/networkmap.dinamic.php:102 -#: ../../operation/agentes/pandora_networkmap.view.php:2347 +#: ../../operation/agentes/pandora_networkmap.view.php:2348 #: ../../operation/snmpconsole/snmp_statistics.php:45 #: ../../operation/snmpconsole/snmp_browser.php:56 msgid "Normal screen" msgstr "" #: ../../operation/agentes/networkmap.dinamic.php:126 -#: ../../operation/agentes/pandora_networkmap.view.php:2375 +#: ../../operation/agentes/pandora_networkmap.view.php:2376 msgid "List of networkmap" msgstr "" @@ -51376,39 +51899,39 @@ msgid "Succesfully created" msgstr "" #: ../../operation/agentes/pandora_networkmap.php:215 -#: ../../operation/agentes/pandora_networkmap.php:514 +#: ../../operation/agentes/pandora_networkmap.php:515 msgid "Succesfully updated" msgstr "" -#: ../../operation/agentes/pandora_networkmap.php:539 +#: ../../operation/agentes/pandora_networkmap.php:540 msgid "Succesfully duplicate" msgstr "" -#: ../../operation/agentes/pandora_networkmap.php:562 +#: ../../operation/agentes/pandora_networkmap.php:563 msgid "Succesfully deleted" msgstr "" -#: ../../operation/agentes/pandora_networkmap.php:672 +#: ../../operation/agentes/pandora_networkmap.php:673 msgid "List of network maps" msgstr "" -#: ../../operation/agentes/pandora_networkmap.php:787 +#: ../../operation/agentes/pandora_networkmap.php:788 msgid "Empty map" msgstr "" -#: ../../operation/agentes/pandora_networkmap.php:791 +#: ../../operation/agentes/pandora_networkmap.php:792 msgid "Pending to generate" msgstr "" -#: ../../operation/agentes/pandora_networkmap.php:846 +#: ../../operation/agentes/pandora_networkmap.php:847 msgid "There are no maps defined." msgstr "" -#: ../../operation/agentes/pandora_networkmap.php:860 +#: ../../operation/agentes/pandora_networkmap.php:861 msgid "Create network map" msgstr "" -#: ../../operation/agentes/pandora_networkmap.php:860 +#: ../../operation/agentes/pandora_networkmap.php:861 msgid "Create empty network map" msgstr "" @@ -51417,11 +51940,11 @@ msgstr "" msgid "%s Interface Graph" msgstr "" -#: ../../operation/agentes/interface_traffic_graph_win.php:252 +#: ../../operation/agentes/interface_traffic_graph_win.php:268 msgid "Zoom factor" msgstr "" -#: ../../operation/agentes/interface_traffic_graph_win.php:259 +#: ../../operation/agentes/interface_traffic_graph_win.php:275 msgid "Full" msgstr "" @@ -51488,21 +52011,21 @@ msgstr "" msgid "Custom graph create from the tab graphs in the agent." msgstr "" -#: ../../operation/agentes/datos_agente.php:173 +#: ../../operation/agentes/datos_agente.php:174 msgid "Received data from" msgstr "" -#: ../../operation/agentes/datos_agente.php:180 +#: ../../operation/agentes/datos_agente.php:181 msgid "Main database" msgstr "" -#: ../../operation/agentes/datos_agente.php:181 +#: ../../operation/agentes/datos_agente.php:182 msgid "" "Switch between the main database and the history database to retrieve module " "data" msgstr "" -#: ../../operation/agentes/datos_agente.php:211 +#: ../../operation/agentes/datos_agente.php:213 #: ../../operation/agentes/alerts_status.functions.php:151 msgid "Free text for search" msgstr "" @@ -51537,7 +52060,7 @@ msgid "% Bandwidth usage (out)" msgstr "" #: ../../operation/agentes/interface_view.functions.php:731 -#: ../../operation/agentes/pandora_networkmap.view.php:1308 +#: ../../operation/agentes/pandora_networkmap.view.php:1309 msgid "inOctets and outOctets must be enabled." msgstr "" @@ -51592,53 +52115,49 @@ msgstr "" msgid "Interface view" msgstr "" -#: ../../operation/agentes/status_monitor.php:327 ../../operation/menu.php:186 -msgid "Monitor detail" -msgstr "" - -#: ../../operation/agentes/status_monitor.php:592 +#: ../../operation/agentes/status_monitor.php:591 #: ../../operation/agentes/alerts_status.functions.php:127 msgid "No tags" msgstr "" -#: ../../operation/agentes/status_monitor.php:675 +#: ../../operation/agentes/status_monitor.php:674 msgid "Wux server module" msgstr "" -#: ../../operation/agentes/status_monitor.php:971 +#: ../../operation/agentes/status_monitor.php:973 msgid "Min. hours in current status" msgstr "" -#: ../../operation/agentes/status_monitor.php:981 +#: ../../operation/agentes/status_monitor.php:983 msgid "Not condition" msgstr "" -#: ../../operation/agentes/status_monitor.php:996 +#: ../../operation/agentes/status_monitor.php:998 msgid "" "If you check this option, those elements that do NOT meet any of the " "requirements will be shown" msgstr "" -#: ../../operation/agentes/status_monitor.php:1541 +#: ../../operation/agentes/status_monitor.php:1543 msgid "Data Type" msgstr "" -#: ../../operation/agentes/status_monitor.php:1585 +#: ../../operation/agentes/status_monitor.php:1587 msgid "W/C" msgstr "" -#: ../../operation/agentes/status_monitor.php:1671 -#: ../../operation/agentes/pandora_networkmap.view.php:1819 +#: ../../operation/agentes/status_monitor.php:1673 +#: ../../operation/agentes/pandora_networkmap.view.php:1820 msgid "(Adopt) " msgstr "" -#: ../../operation/agentes/status_monitor.php:1679 -#: ../../operation/agentes/pandora_networkmap.view.php:1827 +#: ../../operation/agentes/status_monitor.php:1681 +#: ../../operation/agentes/pandora_networkmap.view.php:1828 msgid "(Unlinked) (Adopt) " msgstr "" -#: ../../operation/agentes/status_monitor.php:1682 -#: ../../operation/agentes/pandora_networkmap.view.php:1830 +#: ../../operation/agentes/status_monitor.php:1684 +#: ../../operation/agentes/pandora_networkmap.view.php:1831 msgid "(Unlinked) " msgstr "" @@ -51646,6 +52165,10 @@ msgstr "" msgid "Summary of the status groups" msgstr "" +#: ../../operation/agentes/group_view.php:233 +msgid "Total items" +msgstr "" + #: ../../operation/agentes/estado_monitores.php:51 msgid "Tag's information" msgstr "" @@ -51662,21 +52185,15 @@ msgstr "" msgid "List of modules" msgstr "" -#: ../../operation/agentes/estado_monitores.php:191 -msgid "" -"To see the list of modules paginated, enable this option in the Styles " -"Configuration." -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:519 +#: ../../operation/agentes/estado_monitores.php:516 msgid "Not Normal" msgstr "" -#: ../../operation/agentes/estado_monitores.php:559 +#: ../../operation/agentes/estado_monitores.php:557 msgid "Status:" msgstr "" -#: ../../operation/agentes/estado_monitores.php:578 +#: ../../operation/agentes/estado_monitores.php:576 msgid "Search by module name, list matches." msgstr "" @@ -51684,24 +52201,24 @@ msgstr "" msgid "Show only the task with the recon script \"SNMP L2 Recon\"." msgstr "" -#: ../../operation/agentes/pandora_networkmap.view.php:1687 +#: ../../operation/agentes/pandora_networkmap.view.php:1688 msgid "Success be updated." msgstr "" -#: ../../operation/agentes/pandora_networkmap.view.php:1784 +#: ../../operation/agentes/pandora_networkmap.view.php:1785 msgid "Name: " msgstr "" -#: ../../operation/agentes/pandora_networkmap.view.php:1834 +#: ../../operation/agentes/pandora_networkmap.view.php:1835 msgid "Policy: " msgstr "" -#: ../../operation/agentes/pandora_networkmap.view.php:1931 +#: ../../operation/agentes/pandora_networkmap.view.php:1932 msgid "Data: " msgstr "" -#: ../../operation/agentes/pandora_networkmap.view.php:1933 -#: ../../operation/agentes/estado_generalagente.php:923 +#: ../../operation/agentes/pandora_networkmap.view.php:1934 +#: ../../operation/agentes/estado_generalagente.php:830 msgid "Last contact: " msgstr "" @@ -51709,27 +52226,27 @@ msgstr "" msgid "Sons" msgstr "" -#: ../../operation/agentes/ver_agente.php:1596 +#: ../../operation/agentes/ver_agente.php:1592 msgid "Log Viewer" msgstr "" -#: ../../operation/agentes/ver_agente.php:1635 +#: ../../operation/agentes/ver_agente.php:1631 msgid "Terminal" msgstr "" -#: ../../operation/agentes/ver_agente.php:1657 +#: ../../operation/agentes/ver_agente.php:1653 msgid "Processes" msgstr "" -#: ../../operation/agentes/ver_agente.php:1840 +#: ../../operation/agentes/ver_agente.php:1836 msgid "Data View" msgstr "" -#: ../../operation/agentes/ver_agente.php:1910 +#: ../../operation/agentes/ver_agente.php:1906 msgid "Network configuration" msgstr "" -#: ../../operation/agentes/ver_agente.php:1925 +#: ../../operation/agentes/ver_agente.php:1921 msgid "Agent main view" msgstr "" @@ -51741,43 +52258,27 @@ msgstr "" msgid "In scheduled downtime" msgstr "" -#: ../../operation/agentes/estado_generalagente.php:395 +#: ../../operation/agentes/estado_generalagente.php:366 msgid "Agent contact" msgstr "" -#: ../../operation/agentes/estado_generalagente.php:401 +#: ../../operation/agentes/estado_generalagente.php:372 msgid "Refresh data" msgstr "" -#: ../../operation/agentes/estado_generalagente.php:435 -msgid "Out of bounds" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:470 -msgid "Next contact" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:555 -msgid "There is no GIS data." -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:688 +#: ../../operation/agentes/estado_generalagente.php:657 msgid "Agent access rate (Last 24h)" msgstr "" -#: ../../operation/agentes/estado_generalagente.php:745 +#: ../../operation/agentes/estado_generalagente.php:714 msgid "Active incident on this agent" msgstr "" -#: ../../operation/agentes/estado_generalagente.php:903 -msgid "Events info (24hr.)" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:1050 +#: ../../operation/agentes/estado_generalagente.php:957 msgid "Agent data" msgstr "" -#: ../../operation/agentes/estado_generalagente.php:1111 +#: ../../operation/agentes/estado_generalagente.php:1018 msgid "Interface information (SNMP)" msgstr "" @@ -51785,8 +52286,8 @@ msgstr "" msgid "This agent has not modules inventory" msgstr "" -#: ../../operation/agentes/agent_inventory.php:193 -#: ../../operation/agentes/agent_inventory.php:194 +#: ../../operation/agentes/agent_inventory.php:248 +#: ../../operation/agentes/agent_inventory.php:249 msgid "Diff view" msgstr "" @@ -51941,7 +52442,7 @@ msgstr "" #: ../../operation/network/network_report.php:183 #: ../../operation/network/network_usage_map.php:189 -#: ../../operation/netflow/nf_live_view.php:483 +#: ../../operation/netflow/nf_live_view.php:556 msgid "Defined period" msgstr "" @@ -51978,47 +52479,56 @@ msgstr "" msgid "Results to show" msgstr "" -#: ../../operation/netflow/nf_live_view.php:130 +#: ../../operation/netflow/nf_live_view.php:135 msgid "Netflow live view" msgstr "" -#: ../../operation/netflow/nf_live_view.php:163 +#: ../../operation/netflow/nf_live_view.php:172 msgid "Error creating filter" msgstr "" -#: ../../operation/netflow/nf_live_view.php:165 +#: ../../operation/netflow/nf_live_view.php:174 msgid "Filter created successfully" msgstr "" -#: ../../operation/netflow/nf_live_view.php:184 +#: ../../operation/netflow/nf_live_view.php:193 msgid "Filter updated successfully" msgstr "" -#: ../../operation/netflow/nf_live_view.php:185 +#: ../../operation/netflow/nf_live_view.php:194 msgid "Error updating filter" msgstr "" -#: ../../operation/netflow/nf_live_view.php:228 +#: ../../operation/netflow/nf_live_view.php:237 msgid "Connection" msgstr "" -#: ../../operation/netflow/nf_live_view.php:284 +#: ../../operation/netflow/nf_live_view.php:293 msgid "Select a filter" msgstr "" -#: ../../operation/netflow/nf_live_view.php:357 +#: ../../operation/netflow/nf_live_view.php:366 msgid "IP address resolution" msgstr "" -#: ../../operation/netflow/nf_live_view.php:357 +#: ../../operation/netflow/nf_live_view.php:366 msgid "Resolve the IP addresses to get their hostnames." msgstr "" -#: ../../operation/netflow/nf_live_view.php:360 +#: ../../operation/netflow/nf_live_view.php:369 msgid "Source ip" msgstr "" -#: ../../operation/netflow/nf_live_view.php:465 +#: ../../operation/netflow/nf_live_view.php:387 +msgid "New filter name" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:425 +#, php-format +msgid "WARNING threshold for the maximum % of traffic of an IP." +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:538 #: ../../operation/incidents/integriaims_export_csv.php:84 #: ../../operation/incidents/configure_integriaims_incident.php:353 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:339 @@ -52026,31 +52536,31 @@ msgstr "" msgid "Resolution" msgstr "" -#: ../../operation/netflow/nf_live_view.php:477 +#: ../../operation/netflow/nf_live_view.php:550 msgid "The interval will be divided in chunks the length of the resolution." msgstr "" -#: ../../operation/netflow/nf_live_view.php:508 +#: ../../operation/netflow/nf_live_view.php:581 msgid "Aggregated by" msgstr "" -#: ../../operation/netflow/nf_live_view.php:525 +#: ../../operation/netflow/nf_live_view.php:598 msgid "Max values" msgstr "" -#: ../../operation/netflow/nf_live_view.php:575 +#: ../../operation/netflow/nf_live_view.php:648 msgid "Draw" msgstr "" -#: ../../operation/netflow/nf_live_view.php:587 +#: ../../operation/netflow/nf_live_view.php:660 msgid "Save as new filter" msgstr "" -#: ../../operation/netflow/nf_live_view.php:588 +#: ../../operation/netflow/nf_live_view.php:661 msgid "Update current filter" msgstr "" -#: ../../operation/netflow/nf_live_view.php:618 +#: ../../operation/netflow/nf_live_view.php:691 msgid "No filter selected" msgstr "" @@ -52083,19 +52593,20 @@ msgstr "" msgid "Trap Enterprise String" msgstr "" -#: ../../operation/snmpconsole/snmp_browser.php:77 +#: ../../operation/snmpconsole/snmp_browser.php:79 msgid "SNMP Browser" msgstr "" -#: ../../operation/snmpconsole/snmp_browser.php:218 +#: ../../operation/snmpconsole/snmp_browser.php:223 msgid "Adding modules in progress" msgstr "" -#: ../../operation/snmpconsole/snmp_browser.php:546 +#: ../../operation/snmpconsole/snmp_browser.php:551 msgid "Create policy" msgstr "" -#: ../../operation/snmpconsole/snmp_browser.php:638 +#: ../../operation/snmpconsole/snmp_browser.php:621 +#: ../../operation/snmpconsole/snmp_browser.php:697 msgid "Are you sure you want add module?" msgstr "" @@ -52139,11 +52650,10 @@ msgid "RSS" msgstr "" #: ../../operation/menu.php:570 ../../operation/menu.php:583 -#: ../../operation/events/sound_events.php:63 -#: ../../operation/events/sound_events.php:164 -#: ../../operation/events/events.php:1532 -#: ../../operation/events/events.php:1582 -msgid "Accoustic console" +#: ../../operation/events/sound_events.php:62 +#: ../../operation/events/events.php:1586 +#: ../../operation/events/events.php:1636 +msgid "Acoustic console" msgstr "" #: ../../operation/menu.php:648 @@ -52405,44 +52915,42 @@ msgstr "" msgid "No tickets to show" msgstr "" -#: ../../operation/inventory/inventory.php:535 -#: ../../operation/inventory/inventory.php:570 +#: ../../operation/inventory/inventory.php:537 +#: ../../operation/inventory/inventory.php:572 msgid "Basic info" msgstr "" -#: ../../operation/inventory/inventory.php:661 +#: ../../operation/inventory/inventory.php:663 msgid "Order by agent" msgstr "" -#: ../../operation/inventory/inventory.php:733 +#: ../../operation/inventory/inventory.php:734 msgid "You must select at least one filter." msgstr "" -#: ../../operation/inventory/inventory.php:859 -#: ../../operation/inventory/inventory.php:860 -#: ../../operation/inventory/inventory.php:948 -#: ../../operation/inventory/inventory.php:949 -#: ../../operation/inventory/inventory.php:1100 -#: ../../operation/inventory/inventory.php:1101 -#: ../../operation/inventory/inventory.php:1211 -#: ../../operation/inventory/inventory.php:1212 +#: ../../operation/inventory/inventory.php:814 +#: ../../operation/inventory/inventory.php:815 +#: ../../operation/inventory/inventory.php:925 +#: ../../operation/inventory/inventory.php:926 +#: ../../operation/inventory/inventory.php:1086 +#: ../../operation/inventory/inventory.php:1087 +#: ../../operation/inventory/inventory.php:1176 +#: ../../operation/inventory/inventory.php:1177 +#: ../../operation/inventory/inventory.php:1206 +#: ../../operation/inventory/inventory.php:1207 msgid "No inventory found" msgstr "" -#: ../../operation/inventory/inventory.php:1001 -#: ../../operation/inventory/inventory.php:1295 +#: ../../operation/inventory/inventory.php:1247 msgid "Secondary IP" msgstr "" -#: ../../operation/inventory/inventory.php:1010 -#: ../../operation/inventory/inventory.php:1304 +#: ../../operation/inventory/inventory.php:1256 msgid "Values Custom Fields" msgstr "" -#: ../../operation/inventory/inventory.php:1031 -#: ../../operation/inventory/inventory.php:1032 -#: ../../operation/inventory/inventory.php:1325 -#: ../../operation/inventory/inventory.php:1326 +#: ../../operation/inventory/inventory.php:1278 +#: ../../operation/inventory/inventory.php:1279 msgid "Agent info not found" msgstr "" @@ -52528,14 +53036,6 @@ msgstr "" msgid "Custom graph viewer" msgstr "" -#: ../../operation/events/sound_events.php:229 -msgid "Time Sound" -msgstr "" - -#: ../../operation/events/sound_events.php:288 -msgid "Events not found" -msgstr "" - #: ../../operation/events/events_rss.php:195 msgid "Your IP is not into the IP list with API access." msgstr "" @@ -52544,175 +53044,175 @@ msgstr "" msgid "The URL of your feed has bad hash." msgstr "" -#: ../../operation/events/events.php:884 +#: ../../operation/events/events.php:889 msgid "Validate events" msgstr "" -#: ../../operation/events/events.php:901 +#: ../../operation/events/events.php:906 msgid "Validate event" msgstr "" -#: ../../operation/events/events.php:936 +#: ../../operation/events/events.php:941 msgid "Change to in progress status" msgstr "" -#: ../../operation/events/events.php:961 +#: ../../operation/events/events.php:966 msgid "Delete events" msgstr "" -#: ../../operation/events/events.php:1440 +#: ../../operation/events/events.php:1494 msgid "Event viewer" msgstr "" -#: ../../operation/events/events.php:1482 +#: ../../operation/events/events.php:1536 msgid "History event list" msgstr "" -#: ../../operation/events/events.php:1493 +#: ../../operation/events/events.php:1547 msgid "RSS Events" msgstr "" -#: ../../operation/events/events.php:1504 +#: ../../operation/events/events.php:1558 msgid "Export to CSV file" msgstr "" -#: ../../operation/events/events.php:1587 +#: ../../operation/events/events.php:1641 msgid "History" msgstr "" -#: ../../operation/events/events.php:1641 +#: ../../operation/events/events.php:1695 msgid "Errors" msgstr "" -#: ../../operation/events/events.php:1706 -#: ../../operation/events/events.php:1727 +#: ../../operation/events/events.php:1760 +#: ../../operation/events/events.php:1781 msgid "WARNING: This could cause a performace impact." msgstr "" -#: ../../operation/events/events.php:1725 +#: ../../operation/events/events.php:1779 msgid "Search in secondary groups" msgstr "" -#: ../../operation/events/events.php:1815 +#: ../../operation/events/events.php:1869 msgid "Search for elements NOT containing given text." msgstr "" -#: ../../operation/events/events.php:2076 +#: ../../operation/events/events.php:2130 msgid "Id source event" msgstr "" -#: ../../operation/events/events.php:2134 +#: ../../operation/events/events.php:2188 msgid "From (date:time)" msgstr "" -#: ../../operation/events/events.php:2192 +#: ../../operation/events/events.php:2246 msgid "To (date:time)" msgstr "" -#: ../../operation/events/events.php:2203 +#: ../../operation/events/events.php:2257 msgid "Filter custom data by field name" msgstr "" -#: ../../operation/events/events.php:2204 +#: ../../operation/events/events.php:2258 msgid "Filter custom data by field value" msgstr "" -#: ../../operation/events/events.php:2224 +#: ../../operation/events/events.php:2278 msgid "Custom data filter" msgstr "" -#: ../../operation/events/events.php:2246 +#: ../../operation/events/events.php:2300 msgid "Custom data search" msgstr "" -#: ../../operation/events/events.php:2372 +#: ../../operation/events/events.php:2426 msgid "Current filter" msgstr "" -#: ../../operation/events/events.php:2377 +#: ../../operation/events/events.php:2431 msgid "Not set." msgstr "" -#: ../../operation/events/events.php:2390 +#: ../../operation/events/events.php:2444 msgid "Any status." msgstr "" -#: ../../operation/events/events.php:2394 +#: ../../operation/events/events.php:2448 msgid "New events." msgstr "" -#: ../../operation/events/events.php:2398 +#: ../../operation/events/events.php:2452 msgid "Validated." msgstr "" -#: ../../operation/events/events.php:2402 +#: ../../operation/events/events.php:2456 msgid "In proccess." msgstr "" -#: ../../operation/events/events.php:2406 +#: ../../operation/events/events.php:2460 msgid "Not validated." msgstr "" -#: ../../operation/events/events.php:2418 +#: ../../operation/events/events.php:2472 msgid "Any time." msgstr "" -#: ../../operation/events/events.php:2420 -#: ../../operation/events/events.php:3030 +#: ../../operation/events/events.php:2474 +#: ../../operation/events/events.php:3089 msgid "Last hour." msgstr "" -#: ../../operation/events/events.php:2422 +#: ../../operation/events/events.php:2476 #, php-format msgid "Last %d hours." msgstr "" -#: ../../operation/events/events.php:2430 +#: ../../operation/events/events.php:2484 msgid "Duplicated" msgstr "" -#: ../../operation/events/events.php:2433 +#: ../../operation/events/events.php:2487 msgid "All events." msgstr "" -#: ../../operation/events/events.php:2437 +#: ../../operation/events/events.php:2491 msgid "Group agents." msgstr "" -#: ../../operation/events/events.php:2439 +#: ../../operation/events/events.php:2493 msgid "Group extra id." msgstr "" -#: ../../operation/events/events.php:2543 +#: ../../operation/events/events.php:2597 msgid "In progress selected" msgstr "" -#: ../../operation/events/events.php:2544 +#: ../../operation/events/events.php:2598 msgid "Validate selected" msgstr "" -#: ../../operation/events/events.php:2566 +#: ../../operation/events/events.php:2620 msgid "Execute event response" msgstr "" -#: ../../operation/events/events.php:2598 +#: ../../operation/events/events.php:2652 #, php-format msgid "A maximum of %s event custom responses can be selected" msgstr "" -#: ../../operation/events/events.php:2603 +#: ../../operation/events/events.php:2657 msgid "Please, select an event" msgstr "" -#: ../../operation/events/events.php:2689 +#: ../../operation/events/events.php:2743 msgid "has at least" msgstr "" -#: ../../operation/events/events.php:2691 +#: ../../operation/events/events.php:2745 msgid "events" msgstr "" -#: ../../operation/events/events.php:3032 +#: ../../operation/events/events.php:3091 msgid "hours." msgstr "" @@ -53127,15 +53627,15 @@ msgstr "" msgid "Console only reporting node" msgstr "" -#: ../../general/reporting_console_node.php:77 +#: ../../general/reporting_console_node.php:82 msgid "Mr" msgstr "" -#: ../../general/reporting_console_node.php:85 +#: ../../general/reporting_console_node.php:90 msgid "Memory limit" msgstr "" -#: ../../general/reporting_console_node.php:93 +#: ../../general/reporting_console_node.php:98 msgid "Php version" msgstr "" @@ -53348,16 +53848,78 @@ msgstr "" msgid "Maintenance tasks in progress" msgstr "" -#: ../../general/logon_ok.php:175 +#: ../../general/logon_ok.php:184 #, php-format msgid "%s Overview" msgstr "" -#: ../../general/logon_ok.php:228 +#: ../../general/logon_ok.php:226 +msgid "By" +msgstr "" + +#: ../../general/logon_ok.php:237 +msgid "Welcome to our monitoring tool so grand," +msgstr "" + +#: ../../general/logon_ok.php:238 +msgid "Where data insights are at your command." +msgstr "" + +#: ../../general/logon_ok.php:239 +msgid "Sales, marketing, operations too," +msgstr "" + +#: ../../general/logon_ok.php:240 +msgid "Customer support, we've got you." +msgstr "" + +#: ../../general/logon_ok.php:243 +msgid "Our interface is user-friendly," +msgstr "" + +#: ../../general/logon_ok.php:244 +msgid "Customize your dashboard, it's easy." +msgstr "" + +#: ../../general/logon_ok.php:245 +msgid "Set up alerts and gain insights so keen," +msgstr "" + +#: ../../general/logon_ok.php:246 +msgid "Optimize your data, like you've never seen." +msgstr "" + +#: ../../general/logon_ok.php:249 +msgid "Unleash its power now, and join the pro league," +msgstr "" + +#: ../../general/logon_ok.php:250 +msgid "Unlock the potential of your data to intrigue." +msgstr "" + +#: ../../general/logon_ok.php:251 +msgid "Monitoring made simple, efficient and fun," +msgstr "" + +#: ../../general/logon_ok.php:252 +msgid "Discover a whole new way to get things done." +msgstr "" + +#: ../../general/logon_ok.php:255 +msgid "And take control of your IT once and for all." +msgstr "" + +#: ../../general/logon_ok.php:257 +msgid "" +"You can replace this message with a personalized one at Admin tools -> Site " +"news." +msgstr "" + +#: ../../general/logon_ok.php:273 msgid "News board" msgstr "" -#: ../../general/logon_ok.php:304 +#: ../../general/logon_ok.php:349 msgid "Latest activity" msgstr "" @@ -53382,7 +53944,7 @@ msgstr "" msgid "You cannot use this node until system is unified" msgstr "" -#: ../../general/node_deactivated.php:56 +#: ../../general/node_deactivated.php:61 #, php-format msgid "Please navigate to %s to unify system" msgstr "" @@ -53399,7 +53961,7 @@ msgid "" "security logs of Pandora System Database" msgstr "" -#: ../../general/main_menu.php:79 ../../general/main_menu.php:86 +#: ../../general/main_menu.php:80 ../../general/main_menu.php:87 msgid "Management" msgstr "" @@ -53432,12 +53994,12 @@ msgstr "" msgid "Go to Login" msgstr "" -#: ../../general/login_page.php:297 ../../general/login_page.php:302 -msgid "Login as admin" +#: ../../general/login_page.php:297 ../../general/login_page.php:355 +msgid "Let's go" msgstr "" -#: ../../general/login_page.php:355 -msgid "Let's go" +#: ../../general/login_page.php:302 +msgid "Login as admin" msgstr "" #: ../../general/login_page.php:409 diff --git a/pandora_console/pandoradb_data.sql b/pandora_console/pandoradb_data.sql index b75242bd30..7409d3cfcd 100644 --- a/pandora_console/pandoradb_data.sql +++ b/pandora_console/pandoradb_data.sql @@ -118,10 +118,10 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES ('custom_report_front_logo', 'images/pandora_logo_white.jpg'), ('custom_report_front_header', ''), ('custom_report_front_footer', ''), -('MR', 63), +('MR', 64), ('identification_reminder', 1), ('identification_reminder_timestamp', 0), -('current_package', 771), +('current_package', 772), ('post_process_custom_values', '{"0.00000038580247":"Seconds to months","0.00000165343915":"Seconds to weeks","0.00001157407407":"Seconds to days","0.01666666666667":"Seconds to minutes","0.00000000093132":"Bytes to Gigabytes","0.00000095367432":"Bytes to Megabytes","0.00097656250000":"Bytes to Kilobytes","0.00000001653439":"Timeticks to weeks","0.00000011574074":"Timeticks to days"}'), ('custom_docs_logo', 'default_docs.png'), ('custom_support_logo', 'default_support.png'), @@ -152,7 +152,7 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES ('gotty', '/usr/bin/gotty'), ('custom_module_units', '{"bytes":"bytes","entries":"entries","files":"files","hits":"hits","sessions":"sessions","users":"users","ºC":"ºC","ºF":"ºF"}'), ('server_unique_identifier', replace(uuid(),'-','')), -('lts_name', ''); +('lts_name', 'Renaissance'); UNLOCK TABLES; -- From 78075cefb9163c85db70ab59045f1a70a1e87a04 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Wed, 7 Jun 2023 10:45:06 +0200 Subject: [PATCH 23/80] #11504 Fixed wmi credential --- pandora_console/godmode/wizards/HostDevices.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/wizards/HostDevices.class.php b/pandora_console/godmode/wizards/HostDevices.class.php index 23a822d08d..8cf3a6b4e8 100755 --- a/pandora_console/godmode/wizards/HostDevices.class.php +++ b/pandora_console/godmode/wizards/HostDevices.class.php @@ -1460,7 +1460,7 @@ class HostDevices extends Wizard } include_once $config['homedir'].'/include/class/CredentialStore.class.php'; - $available_keys = CredentialStore::getKeys('CUSTOM'); + $available_keys = CredentialStore::getKeys('WMI'); if (check_acl($config['id_user'], 0, 'UM')) { $link_to_cs = '

'.$product_name.'

-

'.__('Version').' '.$pandora_version.' - '.(enterprise_installed() ? 'Enterprise' : 'Community').'

+

'.__('Version').' '.$pandora_version.$lts_name.' - '.(enterprise_installed() ? 'Enterprise' : 'Community').'

'.__('MR version').' MR'.$config['MR'].'

Build'.$build_version.'

'.__('Support expires').''.$license_expiry_date.'

'; diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index fecc1b5976..5fc2c45473 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -11524,6 +11524,12 @@ span.subsection_header_title.secondary { margin-left: 0px; } +.table-about p span i { + color: #454545; + font-size: 15px; + font-weight: bold; +} + .table-about p.about-last-p { padding-bottom: 17px; } From aa5658ac0f1a045080aa39b5b8a02075fc41c2fb Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 7 Jun 2023 15:23:42 +0200 Subject: [PATCH 25/80] mr and translates pandora_enterprise#11457 --- pandora_console/extras/mr/63.sql | 2 -- pandora_console/extras/mr/64.sql | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/extras/mr/63.sql b/pandora_console/extras/mr/63.sql index 8d0b323acb..9aca7c604c 100644 --- a/pandora_console/extras/mr/63.sql +++ b/pandora_console/extras/mr/63.sql @@ -40,6 +40,4 @@ CREATE TABLE IF NOT EXISTS `tsesion_filter_log_viewer` ( ALTER TABLE `talert_template_module_actions` ADD COLUMN `recovered` TINYINT NOT NULL DEFAULT 0; -UPDATE tconfig SET value = 'Renaissance' WHERE token LIKE 'lts_name'; - COMMIT; diff --git a/pandora_console/extras/mr/64.sql b/pandora_console/extras/mr/64.sql index f1dc8afc4c..d18bd229f3 100644 --- a/pandora_console/extras/mr/64.sql +++ b/pandora_console/extras/mr/64.sql @@ -83,4 +83,6 @@ ADD COLUMN `metaconsole_data_section` VARCHAR(255) NOT NULL DEFAULT '' AFTER `me ALTER TABLE `tusuario` ADD COLUMN `metaconsole_default_event_filter` INT UNSIGNED NOT NULL DEFAULT 0 AFTER `default_event_filter`; +UPDATE tconfig SET value = 'Renaissance' WHERE token LIKE 'lts_name'; + COMMIT; From 8971aec8cb2772fe1fb53ec205203c042a0431fd Mon Sep 17 00:00:00 2001 From: artica Date: Thu, 8 Jun 2023 01:01:01 +0200 Subject: [PATCH 26/80] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 49281be530..aedd54879c 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230607 +Version: 7.0NG.771-230608 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 1248cd98a8..97fc042f39 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.771-230607" +pandora_version="7.0NG.771-230608" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index cba3683d63..1b874b8456 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230607'; +use constant AGENT_BUILD => '230608'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 87eed5cdd5..47612d85d2 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230607 +%define release 230608 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 6a7ac453f9..f48f139699 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230607 +%define release 230608 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 23038a0443..112beed258 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230607" +PI_BUILD="230608" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 55feddb1ec..70d1a6c4f7 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230607} +{230608} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 6d6b83b581..6451ae8893 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.771 Build 230607") +#define PANDORA_VERSION ("7.0NG.771 Build 230608") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index dead47eaeb..0954290825 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.771(Build 230607))" + VALUE "ProductVersion", "(7.0NG.771(Build 230608))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 840ef27ca7..cae40c5d8c 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230607 +Version: 7.0NG.771-230608 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index f79ad89a02..d4cf13b07b 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.771-230607" +pandora_version="7.0NG.771-230608" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 8721542bc1..bbf689839f 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230607'; +$build_version = 'PC230608'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 6e34c7d23a..724ac008d9 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index a1259cef25..64a8ae3e9b 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230607 +%define release 230608 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 9b50a92602..20e4d9c231 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230607 +%define release 230608 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index f274d964f1..0145ed20c2 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230607" +PI_BUILD="230608" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index ccb6c1b0d8..04957516fb 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.771 Build 230607"; +my $version = "7.0NG.771 Build 230608"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index e219d0ebc6..f442f51253 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.771 Build 230607"; +my $version = "7.0NG.771 Build 230608"; # save program name for logging my $progname = basename($0); From 94b4584d453e43ae5b5edc7e201f12a9b1707878 Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Thu, 8 Jun 2023 08:29:35 +0200 Subject: [PATCH 27/80] 11521-Fix filter SNMP graph --- pandora_console/extensions/realtime_graphs.php | 2 +- pandora_console/include/styles/pandora.css | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pandora_console/extensions/realtime_graphs.php b/pandora_console/extensions/realtime_graphs.php index cc59576da5..14ae13c04b 100644 --- a/pandora_console/extensions/realtime_graphs.php +++ b/pandora_console/extensions/realtime_graphs.php @@ -220,7 +220,7 @@ function pandora_realtime_graphs() false, '', 'white-box-content', - 'box-flat white_table_graph fixed_filter_bar' + 'box-flat white_table_graph fixed_filter_bar top_0px_important mrgn_btn_35px_imp' ); $chart[time()]['graph'] = '0'; diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index fecc1b5976..953f1c3706 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -7158,6 +7158,10 @@ div.graph div.legend table { margin-bottom: 35px; } +.mrgn_btn_35px_imp { + margin-bottom: 35px !important; +} + .mrgn_btn_40px { margin-bottom: 40px; } From d0c1867e56e98ca37e69d4c3a3ef1ab7e208700b Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 8 Jun 2023 08:48:13 +0200 Subject: [PATCH 28/80] #11497 Fix message height --- pandora_console/include/styles/pandora.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index fecc1b5976..cb0a5ba361 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -11856,6 +11856,10 @@ div.relative > div > div#ui-datepicker-div { width: 400px; } +#message_dialog_connection { + height: auto !important; +} + #module_relations > thead > tr { border: none !important; border-bottom: 1px solid #e2e2e2 !important; From 44d134662f4fc8d35101b10c1114b4a1ce65f34c Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Thu, 8 Jun 2023 09:01:04 +0200 Subject: [PATCH 29/80] 11519-Action buttons black theme --- pandora_console/include/styles/omnishell.css | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pandora_console/include/styles/omnishell.css b/pandora_console/include/styles/omnishell.css index 5c6f6413c5..afee4d0d58 100644 --- a/pandora_console/include/styles/omnishell.css +++ b/pandora_console/include/styles/omnishell.css @@ -534,11 +534,6 @@ ul.datatable_filter > li > div.action-buttons > button { margin-bottom: 0px !important; } -#backgroundMaskId { - bottom: 0px !important; - height: auto !important; -} - #image-1, #image-2 { padding-left: 0px !important; From cfb9911559631ca1a080f97b954d5d1f9f4b5f13 Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Thu, 8 Jun 2023 11:18:05 +0200 Subject: [PATCH 30/80] 11477-Hide menu scroll --- pandora_console/include/styles/menu.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/styles/menu.css b/pandora_console/include/styles/menu.css index 037d6361c0..8de579dcee 100644 --- a/pandora_console/include/styles/menu.css +++ b/pandora_console/include/styles/menu.css @@ -26,7 +26,7 @@ } #div_display::-webkit-scrollbar:vertical { - width: 5px; + width: 0px; } #div_display::-webkit-scrollbar-button:increment, @@ -57,7 +57,7 @@ } #div_management::-webkit-scrollbar:vertical { - width: 5px; + width: 0px; } #div_management::-webkit-scrollbar-button:increment, From 00f94f673242d3eb93e09e73248737183c437985 Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 9 Jun 2023 01:01:08 +0200 Subject: [PATCH 31/80] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index aedd54879c..fcc92f95d0 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230608 +Version: 7.0NG.771-230609 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 97fc042f39..c290ca23d6 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.771-230608" +pandora_version="7.0NG.771-230609" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 1b874b8456..db9e29df76 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230608'; +use constant AGENT_BUILD => '230609'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 47612d85d2..e5650695da 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230608 +%define release 230609 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index f48f139699..a154909e56 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230608 +%define release 230609 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 112beed258..0b7d06ec0e 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230608" +PI_BUILD="230609" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 70d1a6c4f7..094e48f85d 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230608} +{230609} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 6451ae8893..929669bf83 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.771 Build 230608") +#define PANDORA_VERSION ("7.0NG.771 Build 230609") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 0954290825..f4a12c6595 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.771(Build 230608))" + VALUE "ProductVersion", "(7.0NG.771(Build 230609))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index cae40c5d8c..c3d6fe9d73 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230608 +Version: 7.0NG.771-230609 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index d4cf13b07b..cb01453f59 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.771-230608" +pandora_version="7.0NG.771-230609" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index bbf689839f..4899e52039 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230608'; +$build_version = 'PC230609'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 724ac008d9..64d3cd5c86 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 64a8ae3e9b..1903cb90b7 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230608 +%define release 230609 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 20e4d9c231..4fd792a980 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230608 +%define release 230609 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 0145ed20c2..020ddf6300 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230608" +PI_BUILD="230609" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 04957516fb..6c383f5893 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.771 Build 230608"; +my $version = "7.0NG.771 Build 230609"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index f442f51253..0b7d07dfa0 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.771 Build 230608"; +my $version = "7.0NG.771 Build 230609"; # save program name for logging my $progname = basename($0); From 1e462d5e89fc7879e502372a435d25e29ffcfbce Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 9 Jun 2023 12:22:32 +0200 Subject: [PATCH 32/80] #11526 bugs in visual console --- pandora_console/godmode/reporting/map_builder.php | 4 ++-- pandora_console/include/styles/pandora_black.css | 4 ++++ .../include/visual-console-client/vc.main.min.js | 2 +- .../include/visual-console-client/vc.main.min.js.map | 2 +- visual_console_client/src/items/Percentile.ts | 12 ++++++------ 5 files changed, 14 insertions(+), 10 deletions(-) diff --git a/pandora_console/godmode/reporting/map_builder.php b/pandora_console/godmode/reporting/map_builder.php index 85d4ecb6c4..64f5156a68 100644 --- a/pandora_console/godmode/reporting/map_builder.php +++ b/pandora_console/godmode/reporting/map_builder.php @@ -168,8 +168,8 @@ if ($delete_layout || $copy_layout) { // ACL for the visual console // $vconsole_read = check_acl ($config['id_user'], $group_id, "VR"); - $vconsole_write = check_acl_restricted_all($config['id_user'], $group_id, 'VW'); - $vconsole_manage = check_acl_restricted_all($config['id_user'], $group_id, 'VM'); + $vconsole_write = check_acl_restricted_all($config['id_user'], $group_id, 'VW', true); + $vconsole_manage = check_acl_restricted_all($config['id_user'], $group_id, 'VM', true); if (!$vconsole_write && !$vconsole_manage) { db_pandora_audit( diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css index bd32734296..75aa87e3ab 100644 --- a/pandora_console/include/styles/pandora_black.css +++ b/pandora_console/include/styles/pandora_black.css @@ -1610,3 +1610,7 @@ a.pandora_pagination, .font-title-font { color: #fff; } + +#visual-console-container a p { + color: #3f3f3f; +} diff --git a/pandora_console/include/visual-console-client/vc.main.min.js b/pandora_console/include/visual-console-client/vc.main.min.js index ddf086d274..60134e8265 100644 --- a/pandora_console/include/visual-console-client/vc.main.min.js +++ b/pandora_console/include/visual-console-client/vc.main.min.js @@ -1,2 +1,2 @@ -(function(){"use strict";var __webpack_modules__={630:function(t,e,n){n.r(e),n.d(e,{FormContainer:function(){return a},InputGroup:function(){return s}});var r=n(510),i=function(){return i=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0&&(this.inputGroupsByName=e.reduce((function(t,e){return e.onDataRequested(i.handleItemDataRequested),t[e.name]=e,t}),this.inputGroupsByName)),n.length>0&&(this.enabledInputGroupNames=o(o([],this.enabledInputGroupNames,!0),n.filter((function(t){return null!=i.inputGroupsByName[t]})),!0))}return t.prototype.getInputGroup=function(t){return this.inputGroupsByName[t]||null},t.prototype.addInputGroup=function(t,e){return void 0===e&&(e=null),t.onDataRequested(this.handleItemDataRequested),this.inputGroupsByName[t.name]=t,this.enabledInputGroupNames=this.enabledInputGroupNames.filter((function(e){return e!==t.name})),null!==e?e<=0?this.enabledInputGroupNames=o([t.name],this.enabledInputGroupNames,!0):e>=this.enabledInputGroupNames.length?this.enabledInputGroupNames=o(o([],this.enabledInputGroupNames,!0),[t.name],!1):this.enabledInputGroupNames=o(o(o([],this.enabledInputGroupNames.slice(0,e),!0),[t.name],!1),this.enabledInputGroupNames.slice(e),!0):this.enabledInputGroupNames=o(o([],this.enabledInputGroupNames,!0),[t.name],!1),this},t.prototype.removeInputGroup=function(t){return delete this.inputGroupsByName[t],this.enabledInputGroupNames=this.enabledInputGroupNames.filter((function(e){return e!==t})),this},t.prototype.getFormElement=function(t){var e=this;void 0===t&&(t="update");var n=document.createElement("form");n.id="visual-console-item-edition",n.className="visual-console-item-edition",n.addEventListener("submit",(function(t){t.preventDefault(),e.submitEventManager.emit({nativeEvent:t,data:e.enabledInputGroupNames.reduce((function(t,n){return e.inputGroupsByName[n]&&(t=i(i({},t),e.inputGroupsByName[n].data)),t}),{})})}));var r=document.createElement("div");return r.className="input-groups",this.enabledInputGroupNames.forEach((function(t){e.inputGroupsByName[t]&&r.appendChild(e.inputGroupsByName[t].element)})),n.appendChild(r),n},t.prototype.reset=function(){var t=this;this.enabledInputGroupNames.forEach((function(e){t.inputGroupsByName[e]&&t.inputGroupsByName[e].reset()}))},t.prototype.onSubmit=function(t){return this.submitEventManager.on(t)},t.prototype.onInputGroupDataRequested=function(t){return this.itemDataRequestedEventManager.on(t)},t}()},478:function(t,e,n){n.d(e,{TB:function(){return l}});var r=n(541),i=n(510),o=n(630),s=function(){return s=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0){var r=e.labelElementRef.getBoundingClientRect(),i=r.width,o=r.height;switch(e.props.labelPosition){case"up":case"down":n-=o;break;case"left":case"right":t-=i}}var s={width:e.props.width,height:e.props.height},a={width:t,height:n};e.sizeChanged(s,a)&&(e.resizeElement(t,n),e.resizedEventManager.emit({item:e,prevSize:s,newSize:a}),e.debouncedResizementSave(t,n))})))},t.prototype.stopResizementListener=function(){this.removeResizement&&(this.removeResizement(),this.removeResizement=null)},t.prototype.init=function(){this.elementRef=this.createContainerDomElement(),this.labelElementRef=this.createLabelDomElement(),this.childElementRef=this.createDomElement(),this.elementRef.appendChild(this.childElementRef),this.elementRef.appendChild(this.labelElementRef),this.resizeElement(this.itemProps.width,this.itemProps.height),this.changeLabelPosition(this.itemProps.labelPosition)},t.prototype.createContainerDomElement=function(){var t,e=this;return this.props.isLinkEnabled?(t=document.createElement("a"),this.props.link?t.href=this.props.link:t.className="textDecorationNone"):(t=document.createElement("div")).className="textDecorationNone",t.classList.add("visual-console-item"),this.props.isOnTop&&t.classList.add("is-on-top"),t.style.left="".concat(this.props.x,"px"),t.style.top="".concat(this.props.y,"px"),this.props.alertOutline&&t.classList.add("is-alert-triggered"),t.addEventListener("dblclick",(function(t){e.meta.isBeingMoved||e.meta.isBeingResized||(e.unSelectItem(),e.selectItem(),e.dblClickEventManager.emit({item:e,nativeEvent:t}))})),t.addEventListener("click",(function(t){if(e.meta.editMode)t.preventDefault(),t.stopPropagation();else if(e.itemProps.isLinkEnabled&&null!=e.itemProps.link){var n=document.createElement("div");n.className="div-visual-console-spinner";var r=document.createElement("div");r.className="visual-console-spinner",n.appendChild(r);for(var i=t.composedPath(),o="visual-console-container",s=0;s0){var n=document.createElement("table"),r=document.createElement("tr"),i=document.createElement("tr"),o=document.createElement("tr"),s=document.createElement("td");switch(s.innerHTML=e,r.appendChild(s),n.appendChild(i),n.appendChild(r),n.appendChild(o),n.style.textAlign="center",this.props.labelPosition){case"up":case"down":this.props.width>0&&(n.style.width="".concat(this.props.width,"px"),n.style.height="");break;case"left":case"right":this.props.height>0&&(n.style.width="",n.style.height="".concat(this.props.height,"px"))}t.appendChild(n)}return t},t.prototype.getLabelWithMacrosReplaced=function(){var t=this.props;return(0,r.No)([{macro:"_date_",value:(0,r.rN)(new Date)},{macro:"_time_",value:(0,r.bc)(new Date)},{macro:"_agent_",value:null!=t.agentAlias?t.agentAlias:""},{macro:"_agentdescription_",value:null!=t.agentDescription?t.agentDescription:""},{macro:"_address_",value:null!=t.agentAddress?t.agentAddress:""},{macro:"_module_",value:null!=t.moduleName?t.moduleName:""},{macro:"_moduledescription_",value:null!=t.moduleDescription?t.moduleDescription:""}],this.props.label||"")},t.prototype.updateDomElement=function(t){t.innerHTML=this.createDomElement().innerHTML},Object.defineProperty(t.prototype,"props",{get:function(){return s({},this.itemProps)},set:function(t){this.setProps(t)},enumerable:!1,configurable:!0}),t.prototype.setProps=function(t){var e=this.props;this.itemProps=t,this.shouldBeUpdated(e,t)&&this.render(e,this._metadata)},Object.defineProperty(t.prototype,"meta",{get:function(){return s({},this._metadata)},set:function(t){this.setMeta(t)},enumerable:!1,configurable:!0}),t.prototype.setMeta=function(t){var e=this._metadata;this._metadata=s(s({},e),t),void 0!==t.isSelected&&e.isSelected!==t.isSelected&&this.selectionChangedEventManager.emit({selected:t.isSelected}),this.render(this.itemProps,e)},t.prototype.shouldBeUpdated=function(t,e){return t!==e},t.prototype.render=function(t,e){void 0===t&&(t=null),void 0===e&&(e=null),t&&this.updateDomElement(this.childElementRef),t&&!this.positionChanged(t,this.props)||(this.moveElement(this.props.x,this.props.y),t&&13!=t.type&&21!=t.type&&this.updateDomElement(this.childElementRef)),t&&!this.sizeChanged(t,this.props)||(this.resizeElement(this.props.width,this.props.height),t&&13!=t.type&&21!=t.type&&this.updateDomElement(this.childElementRef));var n=this.labelElementRef.innerHTML,r=this.createLabelDomElement().innerHTML;if(n!==r&&(this.labelElementRef.innerHTML=r),t&&t.labelPosition===this.props.labelPosition||this.changeLabelPosition(this.props.labelPosition),t&&t.isOnTop===this.props.isOnTop||(this.props.isOnTop?this.elementRef.classList.add("is-on-top"):this.elementRef.classList.remove("is-on-top")),t&&t.isLinkEnabled!==this.props.isLinkEnabled){var i=this.createContainerDomElement();i.innerHTML=this.elementRef.innerHTML;for(var o=this.elementRef.attributes,s=0;s0?e.item(0):null;if(n)switch(this.props.labelPosition){case"up":case"down":this.props.width>0&&(n.style.width="".concat(this.props.width,"px"),n.style.height="");break;case"left":case"right":this.props.height>0&&(n.style.width="",n.style.height="".concat(this.props.height,"px"))}},t.prototype.moveElement=function(t,e){this.elementRef.style.left="".concat(t,"px"),this.elementRef.style.top="".concat(e,"px")},t.prototype.move=function(t,e){this.moveElement(t,e),this.itemProps=s(s({},this.props),{x:t,y:e})},t.prototype.sizeChanged=function(t,e){return t.width!==e.width||t.height!==e.height},t.prototype.resizeElement=function(t,e){if(13!=this.props.type&&21!=this.props.type&&(this.childElementRef.style.width=t>0?"".concat(t,"px"):"",this.childElementRef.style.height=e>0?"".concat(e,"px"):""),this.props.label&&this.props.label.length>0){var n=this.labelElementRef.getElementsByTagName("table"),r=n.length>0?n.item(0):null;if(r)switch(this.props.labelPosition){case"up":case"down":r.style.width=t>0?"".concat(t,"px"):"";break;case"left":case"right":r.style.height=e>0?"".concat(e,"px"):""}}},t.prototype.resize=function(t,e){this.resizeElement(t,e),this.itemProps=s(s({},this.props),{width:t,height:e})},t.prototype.onClick=function(t){var e=this.clickEventManager.on(t);return this.disposables.push(e),e},t.prototype.onDblClick=function(t){var e=this.dblClickEventManager.on(t);return this.disposables.push(e),e},t.prototype.onMoved=function(t){var e=this.movedEventManager.on(t);return this.disposables.push(e),e},t.prototype.onMovementFinished=function(t){var e=this.movementFinishedEventManager.on(t);return this.disposables.push(e),e},t.prototype.onResized=function(t){var e=this.resizedEventManager.on(t);return this.disposables.push(e),e},t.prototype.onResizeFinished=function(t){var e=this.resizeFinishedEventManager.on(t);return this.disposables.push(e),e},t.prototype.onRemove=function(t){var e=this.removeEventManager.on(t);return this.disposables.push(e),e},t.prototype.onSelectionChanged=function(t){var e=this.selectionChangedEventManager.on(t);return this.disposables.push(e),e},t.prototype.selectItem=function(){this.meta=s(s({},this.meta),{isSelected:!0}),this.initMovementListener(this.elementRef),13!==this.props.type&&21!==this.props.type&&this.initResizementListener(this.elementRef)},t.prototype.unSelectItem=function(){this.meta=s(s({},this.meta),{isSelected:!1}),this.stopMovementListener(),13!==this.props.type&&this.stopResizementListener()},t.prototype.getFormContainer=function(){return t.getFormContainer(this.props)},t.getFormContainer=function(t){var e=t.type?function(t){var e="";switch(t){case 0:e=(0,r.t)("Static image");break;case 1:e=(0,r.t)("Module graph");break;case 2:case 6:case 7:case 8:e=(0,r.t)("Simple value");break;case 3:case 9:case 15:case 16:e=(0,r.t)("Percentile item");break;case 4:e=(0,r.t)("Label");break;case 5:e=(0,r.t)("Icon");break;case 10:e=(0,r.t)("Service");break;case 11:e=(0,r.t)("Group");break;case 12:e=(0,r.t)("Box");break;case 13:e=(0,r.t)("Line");break;case 14:e=(0,r.t)("Event history graph");break;case 17:e=(0,r.t)("Serialized pie graph");break;case 18:e=(0,r.t)("Bars graph");break;case 19:e=(0,r.t)("Clock");break;case 20:e=(0,r.t)("Color cloud");break;case 21:e=(0,r.t)("Network link");break;case 22:e=(0,r.t)("Odometer");break;case 23:e=(0,r.t)("Basic chart");break;default:e=(0,r.t)("Item")}return e}(t.type):(0,r.t)("Item");return new o.FormContainer(e,[],[])},t}();e.ZP=c},709:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){__webpack_require__.d(__webpack_exports__,{K:function(){return barsGraphPropsDecoder}});var _lib__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(541),_Item__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(478),__extends=(extendStatics=function(t,e){return extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},extendStatics(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}extendStatics(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),extendStatics,__assign=function(){return __assign=Object.assign||function(t){for(var e,n=1,r=arguments.length;n=i;)s++,t/=i;return t=i?Math.round(2*t)/2:Math.round(2*t),isNaN(t)&&(t=0),t+" "+["","K","M","G","T","P","E","Z","Y"][s]+n},BasicChart.prototype.pad=function(t,e,n){var r=t+"";return e<=r.length?r:this.pad(r+n,e,n)},BasicChart}(_Item__WEBPACK_IMPORTED_MODULE_1__.ZP);__webpack_exports__.Z=BasicChart},369:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){__webpack_require__.d(__webpack_exports__,{p:function(){return donutGraphPropsDecoder}});var _lib__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(541),_Item__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(478),__extends=(extendStatics=function(t,e){return extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},extendStatics(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}extendStatics(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),extendStatics,__assign=function(){return __assign=Object.assign||function(t){for(var e,n=1,r=arguments.length;n-1&&t.listeners.splice(n,1)},this.emit=function(e){t.listeners.forEach((function(t){return t(e)})),t.listenersOncer.forEach((function(t){return t(e)})),t.listenersOncer=[]},this.pipe=function(e){return t.on((function(t){return e.emit(t)}))}}},541:function(t,e,n){n.d(e,{Dw:function(){return M},Aq:function(){return C},Ds:function(){return E},NV:function(){return _},fk:function(){return x},rN:function(){return y},bc:function(){return v},SM:function(){return m},bs:function(){return h},MH:function(){return d},JW:function(){return a},gx:function(){return l},xn:function(){return o},I1:function(){return i},oF:function(){return p},OR:function(){return f},No:function(){return g},HY:function(){return u},VJ:function(){return s},t:function(){return k}});var r=function(){return r=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0&&!isNaN(parseInt(t))?parseInt(t):e}function o(t,e){return"number"==typeof t?t:"string"==typeof t&&t.length>0&&!isNaN(parseFloat(t))?parseFloat(t):e}function s(t){return null==t||0===t.length}function a(t,e){return"string"==typeof t&&t.length>0?t:e}function l(t){return"boolean"==typeof t?t:"number"==typeof t?t>0:"string"==typeof t&&("1"===t||"true"===t)}function c(t,e,n){void 0===n&&(n=" "),"number"==typeof t&&(t="".concat(t)),"number"==typeof n&&(n="".concat(n));var r=e-t.length;if(0===r)return t;if(r<0)return t.substr(Math.abs(r));if(r===n.length)return"".concat(n).concat(t);if(r0&&r_||d+o+y.width-g>u.width||o===b&&d<0&&r>f+b+c,x=i0&&im||v+s+y.height-g>u.height||s===E&&v<0&&i>h+E+p;(e=w?0:k?b:d+o)<0&&(e=0),(n=x?0:P?E:v+s)<0&&(n=0),a=r,l=i,e===o&&n===s||(C(e,n),M(e,n),o=e,s=n)},x=function(){o=0,s=0,a=0,l=0,document.removeEventListener("mousemove",k),document.removeEventListener("mouseup",x),t.draggable=i,document.body.style.userSelect="auto"},P=function(e){if(2!==e.button){e.stopPropagation(),t.draggable=!1,t.setAttribute("ondragstart","return false;"),t.setAttribute("draggable","false");var n=w(t,r);o=n.left,s=n.top,a=e.pageX,l=e.pageY,c=e.offsetX,p=e.offsetY,u=r.getBoundingClientRect(),d=w(r),h=d.top,m=h+u.height,f=d.left,_=f+u.width,y=t.getBoundingClientRect(),v=window.getComputedStyle(t).borderWidth||"0",g=2*Number.parseInt(v),document.addEventListener("mousemove",k),document.addEventListener("mouseup",x),document.body.style.userSelect="none"}};return t.addEventListener("mousedown",P),function(){t.removeEventListener("mousedown",P),x()}}function C(t,e){var n=document.createElement("div");n.className="resize-draggable",t.appendChild(n);var r=t.parentElement,i=t.draggable,o=0,s=0,a=0,l=0,c=0,p=r.getBoundingClientRect(),u=w(r),d=u.top,h=d+p.height,m=u.left,f=m+p.width,_=w(t),y=_.top,v=_.left,g=window.getComputedStyle(t).borderWidth||"0",M=Number.parseInt(g),C=E(32,e),k=b(16,e),x=function(t){var e=o+(t.pageX-a),n=s+(t.pageY-l);e===o&&n===s||ev+(o-c)||(e<15?e=15:e+v-M/2>=f&&(e=f-v),n<15?n=15:n+y-M/2>=h&&(n=h-y),k(e,n),C(e,n),o=e,s=n,a=t.pageX,l=t.pageY)},P=function(){o=0,s=0,a=0,l=0,c=0,document.removeEventListener("mousemove",x),document.removeEventListener("mouseup",P),t.draggable=i,document.body.style.userSelect="auto"};return n.addEventListener("mousedown",(function(e){e.stopPropagation(),t.draggable=!1;var n=t.getBoundingClientRect(),i=n.width,g=n.height;o=i,s=g,a=e.pageX,l=e.pageY,c=e.offsetX,e.offsetY,p=r.getBoundingClientRect(),u=w(r),d=u.top,h=d+p.height,m=u.left,f=m+p.width,_=w(t),y=_.top,v=_.left,document.addEventListener("mousemove",x),document.addEventListener("mouseup",P),document.body.style.userSelect="none"})),function(){n.remove(),P()}}function k(t){return t}function x(t,e,n){return void 0===e&&(e=140),void 0===n&&(n="…"),t.trim().length>e?t.substr(0,e).trim()+n:t}}},__webpack_module_cache__={};function __webpack_require__(t){var e=__webpack_module_cache__[t];if(void 0!==e)return e.exports;var n=__webpack_module_cache__[t]={exports:{}};return __webpack_modules__[t](n,n.exports,__webpack_require__),n.exports}__webpack_require__.d=function(t,e){for(var n in e)__webpack_require__.o(e,n)&&!__webpack_require__.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},__webpack_require__.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},__webpack_require__.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var __webpack_exports__={};!function(){var t,e=__webpack_require__(541),n=__webpack_require__(478),r=(t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)},function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}),i=function(){return i=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0){var y=_.item(0);if(null!=y){y.setAttribute("width","".concat(i+s)),y.setAttribute("height","".concat(o+s));var v=y.getElementsByTagNameNS(A,"line");if(v.length>0){var g=v.item(0);null!=g&&(g.setAttribute("x1","".concat(d)),g.setAttribute("y1","".concat(h)),g.setAttribute("x2","".concat(m)),g.setAttribute("y2","".concat(f)),g.setAttribute("stroke",u||"black"),g.setAttribute("stroke-width","".concat(s)))}}}if(this.moveMode){var b=document.createElement("div"),E=document.createElement("div");if(this.isMoving){var w=t.getElementsByClassName("visual-console-item-line-circle-start");w.length>0&&(k=w.item(0))&&(b=k);var M=t.getElementsByClassName("visual-console-item-line-circle-end");M.length>0&&(k=M.item(0))&&(E=k)}if(b.classList.add("visual-console-item-line-circle","visual-console-item-line-circle-start"),b.style.width="".concat(2*this.circleRadius,"px"),b.style.height="".concat(2*this.circleRadius,"px"),b.style.borderRadius="50%",b.style.backgroundColor="".concat(u),b.style.position="absolute",b.style.left="".concat(d-this.circleRadius,"px"),b.style.top="".concat(h-this.circleRadius,"px"),b.style.cursor="move",E.classList.add("visual-console-item-line-circle","visual-console-item-line-circle-end"),E.style.width="".concat(2*this.circleRadius,"px"),E.style.height="".concat(2*this.circleRadius,"px"),E.style.borderRadius="50%",E.style.backgroundColor="".concat(u),E.style.position="absolute",E.style.left="".concat(m-this.circleRadius,"px"),E.style.top="".concat(f-this.circleRadius,"px"),E.style.cursor="move",null!==t.parentElement){for(var C=t.parentElement.getElementsByClassName("visual-console-item-line-circle");C.length>0;)(k=C.item(0))&&k.remove();t.parentElement.appendChild(b),t.parentElement.appendChild(E)}this.initStartPositionMovementListener(b,this.elementRef.parentElement),this.initEndPositionMovementListener(E,this.elementRef.parentElement)}else if(this.moveMode)this.stopStartPositionMovementListener();else if(this.stopStartPositionMovementListener(),null!==t.parentElement)for(C=t.parentElement.getElementsByClassName("visual-console-item-line-circle");C.length>0;){var k;(k=C.item(0))&&k.remove()}},n.extractBoxSizeAndPosition=function(t,e){return{width:Math.abs(t.x-e.x),height:Math.abs(t.y-e.y),x:Math.min(t.x,e.x),y:Math.min(t.y,e.y)}},n.prototype.move=function(e,n){t.prototype.moveElement.call(this,e,n);var r=this.props.startPosition.x-this.props.endPosition.x<=0,i=this.props.startPosition.y-this.props.endPosition.y<=0,o={x:r?e:this.props.width+e,y:i?n:this.props.height+n},s={x:r?this.props.width+e:e,y:i?this.props.height+n:n};this.props=T(T({},this.props),{startPosition:o,endPosition:s})},n.prototype.remove=function(){this.stopStartPositionMovementListener(),t.prototype.remove.call(this)},n.prototype.onLineMovementFinished=function(t){var e=this.lineMovedEventManager.on(t);return this.lineMovedEventDisposables.push(e),e},n}(n.ZP),S=L,D=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),R=function(){return R=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0){if(null!=(r=g.item(0))){for(var b=r.getElementsByTagNameNS(N,"line"),E=r.getElementsByTagNameNS(N,"g");E.length>0;)E[0].remove();b.length>0&&(n=b.item(0))}if(null!=r&&null!=n){var w=25,M=p.x-o+a/2+l/2,C=p.y-s+a/2+c/2,k=u.x-o+a/2+l/2,x=u.y-s+a/2+c/2,P=p.x-o+a/2+l/2,I=p.y-s+a/2+c/2,T=u.x-o+a/2+l/2,O=u.y-s+a/2+c/2,A=180*Math.atan2(x-C,k-M)/Math.PI;if(y<=0&&(b=m.split("
"),y=0,b.forEach((function(t){t.length>y&&(y=10*t.length)})),v<=0&&(v=25*b.length)),f<=0&&(b=h.split("
"),f=0,b.forEach((function(t){t.length>f&&(f=10*t.length)})),_<=0&&(_=25*b.length)),PT&&(P-=w+y,T+=w),IO&&(I-=w+v,O+=w),void 0===d&&(d="#000"),null!==e.parentElement){for(var L=e.parentElement.getElementsByClassName("vc-item-nl-label");L.length>0;){var S=L.item(0);S&&S.remove()}for(var D=e.parentElement.getElementsByClassName("vc-item-nl-arrow");D.length>0;){var R=D.item(0);R&&R.remove()}}var B=2*a,z=M+(k-M)/2-B,W=C+(x-C)/2-B,j=document.createElement("div");j.classList.add("vc-item-nl-arrow"),j.style.position="absolute",j.style.border="".concat(B,"px solid transparent"),j.style.borderBottom="".concat(B,"px solid ").concat(d),j.style.left="".concat(z,"px"),j.style.top="".concat(W,"px"),j.style.transform="rotate(".concat(90+A,"deg)");var H=document.createElement("div");if(H.classList.add("vc-item-nl-arrow"),H.style.position="absolute",H.style.border="".concat(B,"px solid transparent"),H.style.borderBottom="".concat(B,"px solid ").concat(d),H.style.left="".concat(z,"px"),H.style.top="".concat(W,"px"),H.style.transform="rotate(".concat(270+A,"deg)"),null!==e.parentElement&&(e.parentElement.appendChild(j),e.parentElement.appendChild(H)),""!=m){var V=document.createElement("div");try{V.innerHTML=m,V.style.position="absolute",V.style.left="".concat(P,"px"),V.style.top="".concat(I,"px"),V.style.width="".concat(y,"px"),V.style.border="2px solid ".concat(d),V.classList.add("vc-item-nl-label","label-start")}catch(t){console.error(t)}null!==e.parentElement&&e.parentElement.appendChild(V)}if(""!=h){var G=document.createElement("div");try{G.innerHTML=h,G.style.position="absolute",G.style.left="".concat(T,"px"),G.style.top="".concat(O,"px"),G.style.width="".concat(f,"px"),G.style.border="2px solid ".concat(d),G.classList.add("vc-item-nl-label","label-end")}catch(t){console.error(t)}null!==e.parentElement&&e.parentElement.appendChild(G)}}}},n}(S),W=z,j=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),H=function(){return H=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0){var _=document.createElementNS(t,"text");_.setAttribute("text-anchor","middle"),_.setAttribute("font-size","8"),_.setAttribute("transform","translate(30 50) rotate(90)"),_.setAttribute("fill",r),_.textContent=f,h.append(_)}var y=document.createElementNS(t,"g");y.setAttribute("class","marks");var v=document.createElementNS(t,"g");v.setAttribute("class","mark"),v.setAttribute("transform","translate(50 50)");var g=document.createElementNS(t,"line");g.setAttribute("x1","36"),g.setAttribute("y1","0"),g.setAttribute("x2","46"),g.setAttribute("y2","0"),g.setAttribute("stroke",r),g.setAttribute("stroke-width","5");var b=document.createElementNS(t,"line");b.setAttribute("x1","36"),b.setAttribute("y1","0"),b.setAttribute("x2","46"),b.setAttribute("y2","0"),b.setAttribute("stroke",n),b.setAttribute("stroke-width","1"),v.append(g,b),y.append(v);for(var E=1;E<60;E++){var w=document.createElementNS(t,"line");w.setAttribute("y1","0"),w.setAttribute("y2","0"),w.setAttribute("stroke",r),w.setAttribute("transform","translate(50 50) rotate(".concat(6*E,")")),E%5==0?(w.setAttribute("x1","38"),w.setAttribute("x2","46"),w.setAttribute("stroke-width",E%15==0?"2":"1")):(w.setAttribute("x1","42"),w.setAttribute("x2","46"),w.setAttribute("stroke-width","0.5")),y.append(w)}var M=document.createElementNS(t,"g");M.setAttribute("class","hour-hand"),M.setAttribute("transform","translate(50 50)");var C=document.createElementNS(t,"line");C.setAttribute("class","hour-hand-a"),C.setAttribute("x1","0"),C.setAttribute("y1","0"),C.setAttribute("x2","30"),C.setAttribute("y2","0"),C.setAttribute("stroke",o),C.setAttribute("stroke-width","4"),C.setAttribute("stroke-linecap","round");var k=document.createElementNS(t,"line");k.setAttribute("class","hour-hand-b"),k.setAttribute("x1","0"),k.setAttribute("y1","0"),k.setAttribute("x2","29.9"),k.setAttribute("y2","0"),k.setAttribute("stroke",i),k.setAttribute("stroke-width","3.1"),k.setAttribute("stroke-linecap","round"),M.append(C,k);var x=document.createElementNS(t,"g");x.setAttribute("class","minute-hand"),x.setAttribute("transform","translate(50 50)");var P=document.createElementNS(t,"line");P.setAttribute("class","minute-hand-a"),P.setAttribute("x1","0"),P.setAttribute("y1","0"),P.setAttribute("x2","40"),P.setAttribute("y2","0"),P.setAttribute("stroke",o),P.setAttribute("stroke-width","2"),P.setAttribute("stroke-linecap","round");var I=document.createElementNS(t,"line");I.setAttribute("class","minute-hand-b"),I.setAttribute("x1","0"),I.setAttribute("y1","0"),I.setAttribute("x2","39.9"),I.setAttribute("y2","0"),I.setAttribute("stroke",i),I.setAttribute("stroke-width","1.5"),I.setAttribute("stroke-linecap","round");var T=document.createElementNS(t,"circle");T.setAttribute("r","3"),T.setAttribute("fill",i),x.append(P,I,T);var O=document.createElementNS(t,"g");O.setAttribute("class","second-hand"),O.setAttribute("transform","translate(50 50)");var A=document.createElementNS(t,"line");A.setAttribute("x1","0"),A.setAttribute("y1","0"),A.setAttribute("x2","46"),A.setAttribute("y2","0"),A.setAttribute("stroke",s),A.setAttribute("stroke-width","1"),A.setAttribute("stroke-linecap","round");var L=document.createElementNS(t,"circle");L.setAttribute("r","2"),L.setAttribute("fill",s),O.append(A,L);var S=document.createElementNS(t,"circle");S.setAttribute("cx","50"),S.setAttribute("cy","50"),S.setAttribute("r","0.3"),S.setAttribute("fill",i);var D=this.getOriginDate(),R=D.getSeconds(),N=D.getMinutes(),B=6*R,z=6*N+R/60*6,W=30*D.getHours()+N/60*30;if(M.setAttribute("transform","translate(50 50) rotate(".concat(W,")")),x.setAttribute("transform","translate(50 50) rotate(".concat(z,")")),O.setAttribute("transform","translate(50 50) rotate(".concat(B,")")),d.append(h,y,M,x,O,S),d.setAttribute("transform","rotate(-90)"),u.innerHTML="\n \n "),u.append(d),"datetime"===this.props.clockFormat){var j=document.createElement("span");j.className="date",j.textContent=(0,e.rN)(D,"default"),j.style.fontSize="".concat(p,"px"),this.props.color&&(j.style.color=this.props.color),u.append(j)}return u},n.prototype.createDigitalClock=function(){var t=document.createElement("div");t.className="digital-clock";var n=this.getElementSize(),r=n.width,i=n.height,o=r;i0){var m=document.createElement("span");m.className="timezone",m.textContent=h,m.style.fontSize="".concat(c,"px"),this.props.color&&(m.style.color=this.props.color),t.append(m)}return t},n.prototype.getOriginDate=function(t){void 0===t&&(t=null);var e=t||new Date,n=1e3*this.props.clockTimezoneOffset,r=60*e.getTimezoneOffset()*1e3,i=e.getTime()+n+r;return new Date(i)},n.prototype.getHumanTimezone=function(t){void 0===t&&(t=this.props.clockTimezone);var e=t.split("/")[1];return(void 0===e?"":e).replace("_"," ")},n.prototype.getElementSize=function(t,e){switch(void 0===t&&(t=this.props.width),void 0===e&&(e=this.props.height),this.props.clockType){case"analogic":var n=100;t>0&&e>0?n=Math.min(t,e):t>0?n=t:e>0&&(n=e);var r=0;return"datetime"===this.props.clockFormat&&(r=e/8),{width:n,height:n+r};case"digital":return t>0&&e>0?e=t/20?e=t/2:e>0?t=2*e:(t=100,e=50),{width:t,height:e};default:throw new Error("invalid clock type.")}},n.TICK_INTERVAL=1e3,n}(n.ZP),X=Y,Q=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),$=function(){return $=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0){t.style.borderStyle="solid";var e=Math.min(this.props.width,this.props.height)/2,n=Math.min(this.props.borderWidth,e);t.style.borderWidth="".concat(n,"px"),this.props.borderColor&&(t.style.borderColor=this.props.borderColor)}return t},e.prototype.updateDomElement=function(t){if(this.props.fillTransparent?t.style.backgroundColor="transparent":this.props.fillColor&&(t.style.backgroundColor=this.props.fillColor),this.props.borderWidth>0){t.style.borderStyle="solid";var e=Math.min(this.props.width,this.props.height)/2,n=Math.min(this.props.borderWidth,e);t.style.borderWidth="".concat(n,"px"),this.props.borderColor&&(t.style.borderColor=this.props.borderColor)}},e}(n.ZP),nt=et,rt=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),it=function(){return it=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0&&(r=(0,e.No)([{macro:/\(?_VALUE_\)?/i,value:r}],i)),t.innerHTML=r}return t},n.prototype.createLabelDomElement=function(){var t=document.createElement("div");return t.className="visual-console-item-label",t},n}(n.ZP),ht=dt,mt=__webpack_require__(280),ft=Math.PI,_t=2*ft,yt=1e-6,vt=_t-yt;function gt(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function bt(){return new gt}gt.prototype=bt.prototype={constructor:gt,moveTo:function(t,e){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)},closePath:function(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},lineTo:function(t,e){this._+="L"+(this._x1=+t)+","+(this._y1=+e)},quadraticCurveTo:function(t,e,n,r){this._+="Q"+ +t+","+ +e+","+(this._x1=+n)+","+(this._y1=+r)},bezierCurveTo:function(t,e,n,r,i,o){this._+="C"+ +t+","+ +e+","+ +n+","+ +r+","+(this._x1=+i)+","+(this._y1=+o)},arcTo:function(t,e,n,r,i){t=+t,e=+e,n=+n,r=+r,i=+i;var o=this._x1,s=this._y1,a=n-t,l=r-e,c=o-t,p=s-e,u=c*c+p*p;if(i<0)throw new Error("negative radius: "+i);if(null===this._x1)this._+="M"+(this._x1=t)+","+(this._y1=e);else if(u>yt)if(Math.abs(p*a-l*c)>yt&&i){var d=n-o,h=r-s,m=a*a+l*l,f=d*d+h*h,_=Math.sqrt(m),y=Math.sqrt(u),v=i*Math.tan((ft-Math.acos((m+u-f)/(2*_*y)))/2),g=v/y,b=v/_;Math.abs(g-1)>yt&&(this._+="L"+(t+g*c)+","+(e+g*p)),this._+="A"+i+","+i+",0,0,"+ +(p*d>c*h)+","+(this._x1=t+b*a)+","+(this._y1=e+b*l)}else this._+="L"+(this._x1=t)+","+(this._y1=e)},arc:function(t,e,n,r,i,o){t=+t,e=+e,o=!!o;var s=(n=+n)*Math.cos(r),a=n*Math.sin(r),l=t+s,c=e+a,p=1^o,u=o?r-i:i-r;if(n<0)throw new Error("negative radius: "+n);null===this._x1?this._+="M"+l+","+c:(Math.abs(this._x1-l)>yt||Math.abs(this._y1-c)>yt)&&(this._+="L"+l+","+c),n&&(u<0&&(u=u%_t+_t),u>vt?this._+="A"+n+","+n+",0,1,"+p+","+(t-s)+","+(e-a)+"A"+n+","+n+",0,1,"+p+","+(this._x1=l)+","+(this._y1=c):u>yt&&(this._+="A"+n+","+n+",0,"+ +(u>=ft)+","+p+","+(this._x1=t+n*Math.cos(i))+","+(this._y1=e+n*Math.sin(i))))},rect:function(t,e,n,r){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)+"h"+ +n+"v"+ +r+"h"+-n+"Z"},toString:function(){return this._}};var Et=bt;function wt(t){return function(){return t}}var Mt=Math.abs,Ct=Math.atan2,kt=Math.cos,xt=Math.max,Pt=Math.min,It=Math.sin,Tt=Math.sqrt,Ot=1e-12,At=Math.PI,Lt=At/2,St=2*At;function Dt(t){return t>1?0:t<-1?At:Math.acos(t)}function Rt(t){return t>=1?Lt:t<=-1?-Lt:Math.asin(t)}function Nt(t){return t.innerRadius}function Bt(t){return t.outerRadius}function zt(t){return t.startAngle}function Wt(t){return t.endAngle}function jt(t){return t&&t.padAngle}function Ht(t,e,n,r,i,o,s,a){var l=n-t,c=r-e,p=s-i,u=a-o,d=u*l-p*c;if(!(d*dO*O+A*A&&(C=x,k=P),{cx:C,cy:k,x01:-p,y01:-u,x11:C*(i/E-1),y11:k*(i/E-1)}}var Gt=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),Ut=function(){return Ut=Object.assign||function(t){for(var e,n=1,r=arguments.length;nd;if(a||(a=l=Et()),uOt)if(m>St-Ot)a.moveTo(u*kt(d),u*It(d)),a.arc(0,0,u,d,h,!f),p>Ot&&(a.moveTo(p*kt(h),p*It(h)),a.arc(0,0,p,h,d,f));else{var _,y,v=d,g=h,b=d,E=h,w=m,M=m,C=s.apply(this,arguments)/2,k=C>Ot&&(r?+r.apply(this,arguments):Tt(p*p+u*u)),x=Pt(Mt(u-p)/2,+n.apply(this,arguments)),P=x,I=x;if(k>Ot){var T=Rt(k/p*It(C)),O=Rt(k/u*It(C));(w-=2*T)>Ot?(b+=T*=f?1:-1,E-=T):(w=0,b=E=(d+h)/2),(M-=2*O)>Ot?(v+=O*=f?1:-1,g-=O):(M=0,v=g=(d+h)/2)}var A=u*kt(v),L=u*It(v),S=p*kt(E),D=p*It(E);if(x>Ot){var R,N=u*kt(g),B=u*It(g),z=p*kt(b),W=p*It(b);if(mOt?I>Ot?(_=Vt(z,W,A,L,u,I,f),y=Vt(N,B,S,D,u,I,f),a.moveTo(_.cx+_.x01,_.cy+_.y01),IOt&&w>Ot?P>Ot?(_=Vt(S,D,N,B,p,-P,f),y=Vt(A,L,z,W,p,-P,f),a.lineTo(_.cx+_.x01,_.cy+_.y01),P0){var d=document.createElementNS(qt,"tspan");d.setAttribute("x","0"),d.setAttribute("dy","1em"),d.textContent="".concat(t),d.style.fontSize="8pt";var h=document.createElementNS(qt,"tspan");h.setAttribute("x","0"),h.setAttribute("dy","1em"),h.textContent="".concat(this.props.unit),h.style.fontSize="8pt",u.append(d,h),u.setAttribute("transform","translate(50 33)")}else u.textContent="".concat(t),u.style.fontSize="8pt",u.setAttribute("transform","translate(50 50)");else u.textContent="".concat(n,"%"),u.setAttribute("transform","translate(50 50)");i.append(u)}return!0!==this.props.agentDisabled&&!0!==this.props.moduleDisabled||i.setAttribute("opacity","0.2"),null!==i&&r.append(i),r},e.prototype.updateDomElement=function(t){!1===this.meta.isBeingResized&&this.resizeElement(this.props.width,this.props.height),t.innerHTML=this.createDomElement().innerHTML},e.prototype.resizeElement=function(e,n){"progress-bar"===this.props.percentileType?t.prototype.resizeElement.call(this,e,35):t.prototype.resizeElement.call(this,e,e)},e.prototype.resize=function(e){this.resizeElement(e,e);var n=this.props.maxValue||0;"progress-bar"===this.props.percentileType&&(n=35),t.prototype.setProps.call(this,Ut(Ut({},this.props),{width:e,height:n}))},e.prototype.getProgress=function(){var t=this.props.minValue||0,e=this.props.maxValue||100,n=null==this.props.value?0:this.props.value;return n<=t?0:n>=e?100:Math.trunc((n-t)/(e-t)*100)},e}(n.ZP),Yt=Jt,Xt=__webpack_require__(369),Qt=__webpack_require__(709),$t=__webpack_require__(600),te=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),ee=function(){return ee=Object.assign||function(t){for(var e,n=1,r=arguments.length;n3&&n<=6?e=" K":n>6&&n<=9?e=" M":n>9&&n<=12?e=" G":n>12&&n<=15&&(e=" T"),e},e.prototype.getCoords=function(t,e){if(""!==this.props.minMaxValue){var n=JSON.parse(this.props.minMaxValue);if(n.min===t)t=0;else if(n.max===t||100===t)t=100;else{var r=n.max-n.min;t=100-100*(n.max-t)/r}}t=180-1.8*t;var i=e+Math.cos(t*Math.PI/180)*e,o=e-Math.sin(t*Math.PI/180)*e;return"".concat(i,",").concat(o)},e.prototype.truncateTitle=function(t){if(null!=t&&t.length>22){var e=t.length/2,n=e-9,r=t.substr(0,e-n),i=t.substr(e+n);return"".concat(r,"...").concat(i)}return t},e}(n.ZP),pe=ce,ue=__webpack_require__(880),de=function(){return de=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0?t.selected=!0:t.selected=!1,i.selectionChangedEventManager.emit(t)},this.handleContainerClick=function(){i.unSelectItems()},this.containerRef=t,this._props=function(t){var n=t.id,r=t.name,i=t.groupId,o=t.backgroundURL,s=t.backgroundColor,a=t.isFavorite,l=t.relationLineWidth,c=t.maintenanceMode;if(null==n||isNaN(parseInt(n)))throw new TypeError("invalid Id.");if("string"!=typeof r||0===r.length)throw new TypeError("invalid name.");if(null==i||isNaN(parseInt(i)))throw new TypeError("invalid group Id.");return de({id:parseInt(n),name:r,groupId:parseInt(i),backgroundURL:(0,e.JW)(o,null),backgroundColor:(0,e.JW)(s,null),isFavorite:(0,e.gx)(a),relationLineWidth:(0,e.I1)(l,0),maintenanceMode:c},(0,e.HY)(t))}(n),this.render(),(r=r.sort((function(t,e){return null==t.id||null==e.id?0:t.id>e.id?1:-1}))).forEach((function(t){return i.addElement(t,i)})),this.buildRelations(),this.elements.forEach((function(t){t instanceof S&&i.refreshLink(t)})),this.containerRef.addEventListener("click",this.handleContainerClick)}return t.prototype.coordinatesInItem=function(t,e,n){return 13!=n.type&&21!=n.type&&t>n.x&&tn.y&&e0?(null==this.lineLinks[n]&&(this.lineLinks[n]={}),this.lineLinks[n][e]={start:n,end:r}):this.lines[e].start>0&&(this.lineLinks[this.lines[e].start][e].start=0,this.lines[e].start=0),r>0?(null==this.lineLinks[r]&&(this.lineLinks[r]={}),this.lineLinks[r][e]={start:n,end:r}):this.lines[e].end>0&&(this.lineLinks[this.lines[e].end][e].end=0,this.lines[e].end=0),this.lines[e]={start:n,end:r},this.lineLinks)this.lineLinks[i][e]&&(0==this.lineLinks[i][e].start&&0==this.lineLinks[i][e].end&&(delete this.lineLinks[i][e],0===Object.keys(this.lineLinks[i]).length&&delete this.lineLinks[i]),(this.lineLinks[i][e].start!=n&&this.lineLinks[i][e].end==r||this.lineLinks[i][e].start==n&&this.lineLinks[i][e].end!=r)&&(delete this.lineLinks[i][e],0===Object.keys(this.lineLinks[i]).length&&delete this.lineLinks[i]))}catch(t){console.error(t)}},t.prototype.updateLinesConnected=function(t,n,r){var i=this;null!=this.lineLinks[t.id]&&(Object.keys(this.lineLinks[t.id]).forEach((function(o){var s=parseInt(o);if(-1!==i.elementIds.indexOf(s)){var a=i.elementsById[s];if(a.props){var l=a.props.startPosition.x,c=a.props.startPosition.y,p=a.props.endPosition.x,u=a.props.endPosition.y;t.id==i.lineLinks[t.id][s].start&&(l=n.x+t.width/2,c=n.y+t.height/2),t.id==i.lineLinks[t.id][s].end&&(p=n.x+t.width/2,u=n.y+t.height/2),i.updateElement(de(de({},a.props),{startX:l,startY:c,endX:p,endY:u})),r&&(0,e.Ds)(500,(function(t){i.lineMovedEventManager.emit({item:t.line,startPosition:{x:t.startX,y:t.startY},endPosition:{x:t.endX,y:t.endY}})}))({line:a,startX:l,startY:c,endX:p,endY:u})}}})),this.buildRelations(t.id,n.x+t.width/2,n.y+t.height/2))},Object.defineProperty(t.prototype,"elements",{get:function(){var t=this;return this.elementIds.map((function(e){return t.elementsById[e]})).filter((function(t){return null!=t}))},enumerable:!1,configurable:!0}),t.prototype.addElement=function(t,n){void 0===n&&(n=this);try{var r=function(t){var n=(0,e.I1)(t.type,null);if(null==n)throw new TypeError("missing item type.");var r=(0,e.SM)(t);switch(n){case 0:return new l(s(t),r);case 1:return new $t.Z((0,$t.C)(t),r);case 2:case 6:case 7:case 8:return new ht(ut(t),r);case 3:case 9:case 15:case 16:return new Yt(Zt(t),r);case 4:return new at(ot(t),r);case 5:return new h(u(t),r);case 10:return new ie(ne(t),r);case 11:return new U(V(t),r);case 12:return new nt(tt(t),r);case 13:return new S(O(t),r);case 14:return new mt.Z((0,mt.o)(t),r);case 17:return new Xt.Z((0,Xt.p)(t),r);case 18:return new Qt.Z((0,Qt.K)(t),r);case 19:return new X(J(t),r);case 20:return new x(E(t),r);case 21:return new W(B(t),r);case 22:return new pe(ae(t),r);case 23:return new ue.Z((0,ue.u)(t),r);default:throw new TypeError("item not found")}}(t);return n.elementsById[r.props.id]=r,n.elementIds.push(r.props.id),r.onRemove(n.handleElementRemove),r.onSelectionChanged(n.handleElementSelectionChanged),r.onClick(n.handleElementClick),r.onDblClick(n.handleElementDblClick),r instanceof S?(r.onLineMovementFinished(n.handleLineElementMovementFinished),this.refreshLink(r)):(r.onMoved(n.handleElementMovement),r.onMovementFinished(n.handleElementMovementFinished),r.onResized(n.handleElementResizement),r.onResizeFinished(n.handleElementResizementFinished)),n.containerRef.append(r.elementRef),r}catch(t){console.error("Error creating a new element:",t.message)}},t.prototype.updateElements=function(t){var e=this,n=t.map((function(t){return t.id||null})).filter((function(t){return null!=t}));this.elementIds.filter((function(t){return n.indexOf(t)<0})).forEach((function(t){null!=e.elementsById[t]&&(e.elementsById[t].remove(),delete e.elementsById[t])})),this.elementIds=n,t.forEach((function(t){if(t.id)if(null==e.elementsById[t.id])e.addElement(t);else try{e.elementsById[t.id].props=he(t)}catch(t){console.error("Error updating an element:",t.message)}})),this.buildRelations()},t.prototype.updateElement=function(t){try{this.elementsById[t.id].props=de({},he(t))}catch(t){console.error("Error updating element:",t.message)}this.buildRelations()},Object.defineProperty(t.prototype,"props",{get:function(){return de({},this._props)},set:function(t){var e=this.props;this._props=t,this.render(e)},enumerable:!1,configurable:!0}),t.prototype.render=function(t){void 0===t&&(t=null),t?(t.backgroundURL!==this.props.backgroundURL&&(this.containerRef.style.backgroundImage=null!==this.props.backgroundURL?"url(".concat(this.props.backgroundURL,")"):""),null!=this.props.backgroundColor&&t.backgroundColor!==this.props.backgroundColor&&(this.containerRef.style.backgroundColor=this.props.backgroundColor),this.sizeChanged(t,this.props)&&this.resizeElement(this.props.width,this.props.height)):(this.props.backgroundURL&&(this.containerRef.style.backgroundImage=null!==this.props.backgroundURL?"url(".concat(this.props.backgroundURL,")"):""),this.props.backgroundColor&&(this.containerRef.style.backgroundColor=this.props.backgroundColor),this.resizeElement(this.props.width,this.props.height))},t.prototype.sizeChanged=function(t,e){return t.width!==e.width||t.height!==e.height},t.prototype.resizeElement=function(t,e){this.containerRef.style.width="".concat(t,"px"),this.containerRef.style.height="".concat(e,"px")},t.prototype.resize=function(t,e){this.props=de(de({},this.props),{width:t,height:e})},t.prototype.remove=function(){this.disposables.forEach((function(t){return t.dispose()})),this.elements.forEach((function(t){return t.remove()})),this.elementsById={},this.elementIds=[],this.clearRelations(),this.containerRef.removeEventListener("click",this.handleContainerClick),this.containerRef.innerHTML=""},t.prototype.buildRelations=function(t,e,n){var r=this;this.clearRelations(),this.elements.forEach((function(i){if(null!==i.props.parentId){var o=r.elementsById[i.props.parentId],s=r.elementsById[i.props.id];o&&s&&(null!=t?i.props.parentId==t?r.addRelationLine(o,s,e,n):i.props.id==t?r.addRelationLine(o,s,void 0,void 0,e,n):r.addRelationLine(o,s):r.addRelationLine(o,s))}}))},t.prototype.clearRelations=function(t){if(null!=t)for(var e in this.relations){var n=e.split("|"),r=Number.parseInt(n[0]),i=Number.parseInt(n[1]);t!==r&&t!==i||(this.relations[e].remove(),delete this.relations[e])}else for(var e in this.relations)this.relations[e].remove(),delete this.relations[e]},t.prototype.getRelationLine=function(t,e){var n="".concat(t,"|").concat(e);return this.relations[n]||null},t.prototype.getItemRelations=function(t){var e=[];for(var n in this.relations){var r=n.split("|"),i=Number.parseInt(r[0]),o=Number.parseInt(r[1]);t!==i&&t!==o||e.push({parentId:i,childId:o,line:this.relations[n]})}return e},t.prototype.getVisualCenter=function(t,e){var n=t.x+e.elementRef.clientWidth/2,r=t.y+e.elementRef.clientHeight/2;if(void 0!==e.props.label||""!==e.props.label||null!==e.props.label)switch(e.props.labelPosition){case"up":r=t.y+(e.elementRef.clientHeight+e.labelElementRef.clientHeight)/2;break;case"down":r=t.y+(e.elementRef.clientHeight-e.labelElementRef.clientHeight)/2;break;case"right":n=t.x+(e.elementRef.clientWidth-e.labelElementRef.clientWidth)/2;break;case"left":n=t.x+(e.elementRef.clientWidth+e.labelElementRef.clientWidth)/2}return{x:n,y:r}},t.prototype.addRelationLine=function(t,n,r,i,o,s){var a="".concat(t.props.id,"|").concat(n.props.id);null!=this.relations[a]&&this.relations[a].remove();var l=this.getVisualCenter(t.props,t),c=l.x,p=l.y,u=this.getVisualCenter(n.props,n),d=u.x,h=u.y;null!=r&&(c=r),null!=i&&(p=i),null!=o&&(d=o),null!=s&&(h=s);var m=new S(O({id:0,type:13,startX:c,startY:p,endX:d,endY:h,width:0,height:0,lineWidth:this.props.relationLineWidth,color:(0,e.JW)(n.props.colorStatus,"#CCC")}),(0,e.SM)({receivedAt:new Date}));return this.relations[a]=m,m.elementRef.style.zIndex="0",this.containerRef.append(m.elementRef),m},t.prototype.onItemClick=function(t){var e=this.clickEventManager.on(t);return this.disposables.push(e),e},t.prototype.onItemDblClick=function(t){var e=this.dblClickEventManager.on(t);return this.disposables.push(e),e},t.prototype.onItemMoved=function(t){var e=this.movedEventManager.on(t);return this.disposables.push(e),e},t.prototype.onLineMoved=function(t){var e=this.lineMovedEventManager.on(t);return this.disposables.push(e),e},t.prototype.onItemResized=function(t){var e=this.resizedEventManager.on(t);return this.disposables.push(e),e},t.prototype.onItemSelectionChanged=function(t){var e=this.selectionChangedEventManager.on(t);return this.disposables.push(e),e},t.prototype.enableEditMode=function(){this.elements.forEach((function(t){t.meta=de(de({},t.meta),{editMode:!0})})),this.containerRef.classList.add("is-editing")},t.prototype.disableEditMode=function(){this.elements.forEach((function(t){t.meta=de(de({},t.meta),{editMode:!1})})),this.containerRef.classList.remove("is-editing")},t.prototype.enableMaintenanceMode=function(){this.elements.forEach((function(t){t.meta=de(de({},t.meta),{maintenanceMode:!0})})),this.containerRef.classList.add("is-maintenance"),this.containerRef.classList.remove("is-editing")},t.prototype.disableMaintenanceMode=function(){this.elements.forEach((function(t){t.meta=de(de({},t.meta),{maintenanceMode:!1})})),this.containerRef.classList.remove("is-maintenance"),this.containerRef.classList.add("is-editing")},t.prototype.selectItem=function(t,e){var n=this;void 0===e&&(e=!1),e?this.elementIds.forEach((function(e){var r=n.elementsById[e].meta;e!==t&&r.isSelected?n.elementsById[e].unSelectItem():e!==t||r.isSelected||n.elementsById[e].selectItem()})):this.elementsById[t]&&this.elementsById[t].selectItem()},t.prototype.unSelectItem=function(t){this.elementsById[t]&&this.elementsById[t].meta.isSelected&&this.elementsById[t].unSelectItem()},t.prototype.unSelectItems=function(){var t=this;this.elementIds.forEach((function(e){t.elementsById[e]&&t.elementsById[e].unSelectItem()}))},t.itemDescriptiveName=function(t){var n;switch(t.props.type){case 0:n="".concat((0,e.t)("Static graph")," - ").concat(t.props.imageSrc);break;case 1:n=(0,e.t)("Module graph");break;case 19:n=(0,e.t)("Clock");break;case 18:n=(0,e.t)("Bars graph");break;case 14:n=(0,e.t)("Event history graph");break;case 3:n=(0,e.t)("Percentile bar");break;case 15:n=(0,e.t)("Circular progress bar");break;case 16:n=(0,e.t)("Circular progress bar (interior)");break;case 2:n=(0,e.t)("Simple Value");break;case 4:n=(0,e.t)("Label");break;case 11:n=(0,e.t)("Group");break;case 20:n=(0,e.t)("Color cloud");break;case 5:n="".concat((0,e.t)("Icon")," - ").concat(t.props.imageSrc);break;case 22:n=(0,e.t)("Odometer");break;case 23:n=(0,e.t)("BasicChart");break;default:n=(0,e.t)("Item")}var r=t.props;return null!=r.agentAlias&&null!=r.moduleName?n+=" (".concat((0,e.fk)(r.agentAlias,18)," - ").concat((0,e.fk)(r.moduleName,25),")"):null!=r.agentAlias&&(n+=" (".concat((0,e.fk)(r.agentAlias,25),")")),n},t.items=((le={})[0]=l,le[1]=$t.Z,le[2]=ht,le[6]=ht,le[7]=ht,le[8]=ht,le[3]=Yt,le[9]=Yt,le[15]=Yt,le[16]=Yt,le[4]=at,le[5]=h,le[10]=ie,le[11]=U,le[12]=nt,le[13]=S,le[14]=mt.Z,le[17]=Xt.Z,le[18]=Qt.Z,le[19]=X,le[20]=x,le[21]=W,le[22]=pe,le[23]=ue.Z,le),t}(),fe=function(){function t(t){this.cancellable={cancel:function(){}},this._status="waiting",this.statusChangeEventManager=new P.Z,this.disposables=[],this.taskInitiator=t}return Object.defineProperty(t.prototype,"status",{get:function(){return this._status},set:function(t){this._status=t,this.statusChangeEventManager.emit(t)},enumerable:!1,configurable:!0}),t.prototype.init=function(){var t=this;this.cancellable=this.taskInitiator((function(){t.status="finished"})),this.status="started"},t.prototype.cancel=function(){this.cancellable.cancel(),this.status="cancelled"},t.prototype.onStatusChange=function(t){var e=this.statusChangeEventManager.on(t);return this.disposables.push(e),e},t}(),_e=function(){function t(){this.tasks={}}return t.prototype.add=function(t,e,n){void 0===n&&(n=0),this.tasks[t]&&"started"===this.tasks[t].status&&this.tasks[t].cancel();var r=n>0?function(t,e){return new fe((function(){var n=null;return t.onStatusChange((function(r){"finished"===r&&(n=window.setTimeout((function(){t.init()}),e))})),t.init(),{cancel:function(){n&&clearTimeout(n),t.cancel()}}}))}(new fe(e),n):new fe(e);return this.tasks[t]=r,this.tasks[t]},t.prototype.init=function(t){!this.tasks[t]||"waiting"!==this.tasks[t].status&&"cancelled"!==this.tasks[t].status&&"finished"!==this.tasks[t].status||this.tasks[t].init()},t.prototype.cancel=function(t){this.tasks[t]&&"started"===this.tasks[t].status&&this.tasks[t].cancel()},t}();window.VisualConsole=me,window.VisualConsole.Form=m,window.AsyncTaskManager=_e}()})(); +(function(){"use strict";var __webpack_modules__={630:function(t,e,n){n.r(e),n.d(e,{FormContainer:function(){return a},InputGroup:function(){return s}});var r=n(510),i=function(){return i=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0&&(this.inputGroupsByName=e.reduce((function(t,e){return e.onDataRequested(i.handleItemDataRequested),t[e.name]=e,t}),this.inputGroupsByName)),n.length>0&&(this.enabledInputGroupNames=o(o([],this.enabledInputGroupNames,!0),n.filter((function(t){return null!=i.inputGroupsByName[t]})),!0))}return t.prototype.getInputGroup=function(t){return this.inputGroupsByName[t]||null},t.prototype.addInputGroup=function(t,e){return void 0===e&&(e=null),t.onDataRequested(this.handleItemDataRequested),this.inputGroupsByName[t.name]=t,this.enabledInputGroupNames=this.enabledInputGroupNames.filter((function(e){return e!==t.name})),null!==e?e<=0?this.enabledInputGroupNames=o([t.name],this.enabledInputGroupNames,!0):e>=this.enabledInputGroupNames.length?this.enabledInputGroupNames=o(o([],this.enabledInputGroupNames,!0),[t.name],!1):this.enabledInputGroupNames=o(o(o([],this.enabledInputGroupNames.slice(0,e),!0),[t.name],!1),this.enabledInputGroupNames.slice(e),!0):this.enabledInputGroupNames=o(o([],this.enabledInputGroupNames,!0),[t.name],!1),this},t.prototype.removeInputGroup=function(t){return delete this.inputGroupsByName[t],this.enabledInputGroupNames=this.enabledInputGroupNames.filter((function(e){return e!==t})),this},t.prototype.getFormElement=function(t){var e=this;void 0===t&&(t="update");var n=document.createElement("form");n.id="visual-console-item-edition",n.className="visual-console-item-edition",n.addEventListener("submit",(function(t){t.preventDefault(),e.submitEventManager.emit({nativeEvent:t,data:e.enabledInputGroupNames.reduce((function(t,n){return e.inputGroupsByName[n]&&(t=i(i({},t),e.inputGroupsByName[n].data)),t}),{})})}));var r=document.createElement("div");return r.className="input-groups",this.enabledInputGroupNames.forEach((function(t){e.inputGroupsByName[t]&&r.appendChild(e.inputGroupsByName[t].element)})),n.appendChild(r),n},t.prototype.reset=function(){var t=this;this.enabledInputGroupNames.forEach((function(e){t.inputGroupsByName[e]&&t.inputGroupsByName[e].reset()}))},t.prototype.onSubmit=function(t){return this.submitEventManager.on(t)},t.prototype.onInputGroupDataRequested=function(t){return this.itemDataRequestedEventManager.on(t)},t}()},478:function(t,e,n){n.d(e,{TB:function(){return l}});var r=n(541),i=n(510),o=n(630),s=function(){return s=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0){var r=e.labelElementRef.getBoundingClientRect(),i=r.width,o=r.height;switch(e.props.labelPosition){case"up":case"down":n-=o;break;case"left":case"right":t-=i}}var s={width:e.props.width,height:e.props.height},a={width:t,height:n};e.sizeChanged(s,a)&&(e.resizeElement(t,n),e.resizedEventManager.emit({item:e,prevSize:s,newSize:a}),e.debouncedResizementSave(t,n))})))},t.prototype.stopResizementListener=function(){this.removeResizement&&(this.removeResizement(),this.removeResizement=null)},t.prototype.init=function(){this.elementRef=this.createContainerDomElement(),this.labelElementRef=this.createLabelDomElement(),this.childElementRef=this.createDomElement(),this.elementRef.appendChild(this.childElementRef),this.elementRef.appendChild(this.labelElementRef),this.resizeElement(this.itemProps.width,this.itemProps.height),this.changeLabelPosition(this.itemProps.labelPosition)},t.prototype.createContainerDomElement=function(){var t,e=this;return this.props.isLinkEnabled?(t=document.createElement("a"),this.props.link?t.href=this.props.link:t.className="textDecorationNone"):(t=document.createElement("div")).className="textDecorationNone",t.classList.add("visual-console-item"),this.props.isOnTop&&t.classList.add("is-on-top"),t.style.left="".concat(this.props.x,"px"),t.style.top="".concat(this.props.y,"px"),this.props.alertOutline&&t.classList.add("is-alert-triggered"),t.addEventListener("dblclick",(function(t){e.meta.isBeingMoved||e.meta.isBeingResized||(e.unSelectItem(),e.selectItem(),e.dblClickEventManager.emit({item:e,nativeEvent:t}))})),t.addEventListener("click",(function(t){if(e.meta.editMode)t.preventDefault(),t.stopPropagation();else if(e.itemProps.isLinkEnabled&&null!=e.itemProps.link){var n=document.createElement("div");n.className="div-visual-console-spinner";var r=document.createElement("div");r.className="visual-console-spinner",n.appendChild(r);for(var i=t.composedPath(),o="visual-console-container",s=0;s0){var n=document.createElement("table"),r=document.createElement("tr"),i=document.createElement("tr"),o=document.createElement("tr"),s=document.createElement("td");switch(s.innerHTML=e,r.appendChild(s),n.appendChild(i),n.appendChild(r),n.appendChild(o),n.style.textAlign="center",this.props.labelPosition){case"up":case"down":this.props.width>0&&(n.style.width="".concat(this.props.width,"px"),n.style.height="");break;case"left":case"right":this.props.height>0&&(n.style.width="",n.style.height="".concat(this.props.height,"px"))}t.appendChild(n)}return t},t.prototype.getLabelWithMacrosReplaced=function(){var t=this.props;return(0,r.No)([{macro:"_date_",value:(0,r.rN)(new Date)},{macro:"_time_",value:(0,r.bc)(new Date)},{macro:"_agent_",value:null!=t.agentAlias?t.agentAlias:""},{macro:"_agentdescription_",value:null!=t.agentDescription?t.agentDescription:""},{macro:"_address_",value:null!=t.agentAddress?t.agentAddress:""},{macro:"_module_",value:null!=t.moduleName?t.moduleName:""},{macro:"_moduledescription_",value:null!=t.moduleDescription?t.moduleDescription:""}],this.props.label||"")},t.prototype.updateDomElement=function(t){t.innerHTML=this.createDomElement().innerHTML},Object.defineProperty(t.prototype,"props",{get:function(){return s({},this.itemProps)},set:function(t){this.setProps(t)},enumerable:!1,configurable:!0}),t.prototype.setProps=function(t){var e=this.props;this.itemProps=t,this.shouldBeUpdated(e,t)&&this.render(e,this._metadata)},Object.defineProperty(t.prototype,"meta",{get:function(){return s({},this._metadata)},set:function(t){this.setMeta(t)},enumerable:!1,configurable:!0}),t.prototype.setMeta=function(t){var e=this._metadata;this._metadata=s(s({},e),t),void 0!==t.isSelected&&e.isSelected!==t.isSelected&&this.selectionChangedEventManager.emit({selected:t.isSelected}),this.render(this.itemProps,e)},t.prototype.shouldBeUpdated=function(t,e){return t!==e},t.prototype.render=function(t,e){void 0===t&&(t=null),void 0===e&&(e=null),t&&this.updateDomElement(this.childElementRef),t&&!this.positionChanged(t,this.props)||(this.moveElement(this.props.x,this.props.y),t&&13!=t.type&&21!=t.type&&this.updateDomElement(this.childElementRef)),t&&!this.sizeChanged(t,this.props)||(this.resizeElement(this.props.width,this.props.height),t&&13!=t.type&&21!=t.type&&this.updateDomElement(this.childElementRef));var n=this.labelElementRef.innerHTML,r=this.createLabelDomElement().innerHTML;if(n!==r&&(this.labelElementRef.innerHTML=r),t&&t.labelPosition===this.props.labelPosition||this.changeLabelPosition(this.props.labelPosition),t&&t.isOnTop===this.props.isOnTop||(this.props.isOnTop?this.elementRef.classList.add("is-on-top"):this.elementRef.classList.remove("is-on-top")),t&&t.isLinkEnabled!==this.props.isLinkEnabled){var i=this.createContainerDomElement();i.innerHTML=this.elementRef.innerHTML;for(var o=this.elementRef.attributes,s=0;s0?e.item(0):null;if(n)switch(this.props.labelPosition){case"up":case"down":this.props.width>0&&(n.style.width="".concat(this.props.width,"px"),n.style.height="");break;case"left":case"right":this.props.height>0&&(n.style.width="",n.style.height="".concat(this.props.height,"px"))}},t.prototype.moveElement=function(t,e){this.elementRef.style.left="".concat(t,"px"),this.elementRef.style.top="".concat(e,"px")},t.prototype.move=function(t,e){this.moveElement(t,e),this.itemProps=s(s({},this.props),{x:t,y:e})},t.prototype.sizeChanged=function(t,e){return t.width!==e.width||t.height!==e.height},t.prototype.resizeElement=function(t,e){if(13!=this.props.type&&21!=this.props.type&&(this.childElementRef.style.width=t>0?"".concat(t,"px"):"",this.childElementRef.style.height=e>0?"".concat(e,"px"):""),this.props.label&&this.props.label.length>0){var n=this.labelElementRef.getElementsByTagName("table"),r=n.length>0?n.item(0):null;if(r)switch(this.props.labelPosition){case"up":case"down":r.style.width=t>0?"".concat(t,"px"):"";break;case"left":case"right":r.style.height=e>0?"".concat(e,"px"):""}}},t.prototype.resize=function(t,e){this.resizeElement(t,e),this.itemProps=s(s({},this.props),{width:t,height:e})},t.prototype.onClick=function(t){var e=this.clickEventManager.on(t);return this.disposables.push(e),e},t.prototype.onDblClick=function(t){var e=this.dblClickEventManager.on(t);return this.disposables.push(e),e},t.prototype.onMoved=function(t){var e=this.movedEventManager.on(t);return this.disposables.push(e),e},t.prototype.onMovementFinished=function(t){var e=this.movementFinishedEventManager.on(t);return this.disposables.push(e),e},t.prototype.onResized=function(t){var e=this.resizedEventManager.on(t);return this.disposables.push(e),e},t.prototype.onResizeFinished=function(t){var e=this.resizeFinishedEventManager.on(t);return this.disposables.push(e),e},t.prototype.onRemove=function(t){var e=this.removeEventManager.on(t);return this.disposables.push(e),e},t.prototype.onSelectionChanged=function(t){var e=this.selectionChangedEventManager.on(t);return this.disposables.push(e),e},t.prototype.selectItem=function(){this.meta=s(s({},this.meta),{isSelected:!0}),this.initMovementListener(this.elementRef),13!==this.props.type&&21!==this.props.type&&this.initResizementListener(this.elementRef)},t.prototype.unSelectItem=function(){this.meta=s(s({},this.meta),{isSelected:!1}),this.stopMovementListener(),13!==this.props.type&&this.stopResizementListener()},t.prototype.getFormContainer=function(){return t.getFormContainer(this.props)},t.getFormContainer=function(t){var e=t.type?function(t){var e="";switch(t){case 0:e=(0,r.t)("Static image");break;case 1:e=(0,r.t)("Module graph");break;case 2:case 6:case 7:case 8:e=(0,r.t)("Simple value");break;case 3:case 9:case 15:case 16:e=(0,r.t)("Percentile item");break;case 4:e=(0,r.t)("Label");break;case 5:e=(0,r.t)("Icon");break;case 10:e=(0,r.t)("Service");break;case 11:e=(0,r.t)("Group");break;case 12:e=(0,r.t)("Box");break;case 13:e=(0,r.t)("Line");break;case 14:e=(0,r.t)("Event history graph");break;case 17:e=(0,r.t)("Serialized pie graph");break;case 18:e=(0,r.t)("Bars graph");break;case 19:e=(0,r.t)("Clock");break;case 20:e=(0,r.t)("Color cloud");break;case 21:e=(0,r.t)("Network link");break;case 22:e=(0,r.t)("Odometer");break;case 23:e=(0,r.t)("Basic chart");break;default:e=(0,r.t)("Item")}return e}(t.type):(0,r.t)("Item");return new o.FormContainer(e,[],[])},t}();e.ZP=c},709:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){__webpack_require__.d(__webpack_exports__,{K:function(){return barsGraphPropsDecoder}});var _lib__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(541),_Item__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(478),__extends=(extendStatics=function(t,e){return extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},extendStatics(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}extendStatics(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),extendStatics,__assign=function(){return __assign=Object.assign||function(t){for(var e,n=1,r=arguments.length;n=i;)s++,t/=i;return t=i?Math.round(2*t)/2:Math.round(2*t),isNaN(t)&&(t=0),t+" "+["","K","M","G","T","P","E","Z","Y"][s]+n},BasicChart.prototype.pad=function(t,e,n){var r=t+"";return e<=r.length?r:this.pad(r+n,e,n)},BasicChart}(_Item__WEBPACK_IMPORTED_MODULE_1__.ZP);__webpack_exports__.Z=BasicChart},369:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){__webpack_require__.d(__webpack_exports__,{p:function(){return donutGraphPropsDecoder}});var _lib__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(541),_Item__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(478),__extends=(extendStatics=function(t,e){return extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},extendStatics(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}extendStatics(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),extendStatics,__assign=function(){return __assign=Object.assign||function(t){for(var e,n=1,r=arguments.length;n-1&&t.listeners.splice(n,1)},this.emit=function(e){t.listeners.forEach((function(t){return t(e)})),t.listenersOncer.forEach((function(t){return t(e)})),t.listenersOncer=[]},this.pipe=function(e){return t.on((function(t){return e.emit(t)}))}}},541:function(t,e,n){n.d(e,{Dw:function(){return M},Aq:function(){return C},Ds:function(){return E},NV:function(){return _},fk:function(){return x},rN:function(){return y},bc:function(){return v},SM:function(){return m},bs:function(){return h},MH:function(){return d},JW:function(){return a},gx:function(){return l},xn:function(){return o},I1:function(){return i},oF:function(){return p},OR:function(){return f},No:function(){return g},HY:function(){return u},VJ:function(){return s},t:function(){return k}});var r=function(){return r=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0&&!isNaN(parseInt(t))?parseInt(t):e}function o(t,e){return"number"==typeof t?t:"string"==typeof t&&t.length>0&&!isNaN(parseFloat(t))?parseFloat(t):e}function s(t){return null==t||0===t.length}function a(t,e){return"string"==typeof t&&t.length>0?t:e}function l(t){return"boolean"==typeof t?t:"number"==typeof t?t>0:"string"==typeof t&&("1"===t||"true"===t)}function c(t,e,n){void 0===n&&(n=" "),"number"==typeof t&&(t="".concat(t)),"number"==typeof n&&(n="".concat(n));var r=e-t.length;if(0===r)return t;if(r<0)return t.substr(Math.abs(r));if(r===n.length)return"".concat(n).concat(t);if(r0&&r_||d+o+y.width-g>u.width||o===b&&d<0&&r>f+b+c,x=i0&&im||v+s+y.height-g>u.height||s===E&&v<0&&i>h+E+p;(e=w?0:k?b:d+o)<0&&(e=0),(n=x?0:P?E:v+s)<0&&(n=0),a=r,l=i,e===o&&n===s||(C(e,n),M(e,n),o=e,s=n)},x=function(){o=0,s=0,a=0,l=0,document.removeEventListener("mousemove",k),document.removeEventListener("mouseup",x),t.draggable=i,document.body.style.userSelect="auto"},P=function(e){if(2!==e.button){e.stopPropagation(),t.draggable=!1,t.setAttribute("ondragstart","return false;"),t.setAttribute("draggable","false");var n=w(t,r);o=n.left,s=n.top,a=e.pageX,l=e.pageY,c=e.offsetX,p=e.offsetY,u=r.getBoundingClientRect(),d=w(r),h=d.top,m=h+u.height,f=d.left,_=f+u.width,y=t.getBoundingClientRect(),v=window.getComputedStyle(t).borderWidth||"0",g=2*Number.parseInt(v),document.addEventListener("mousemove",k),document.addEventListener("mouseup",x),document.body.style.userSelect="none"}};return t.addEventListener("mousedown",P),function(){t.removeEventListener("mousedown",P),x()}}function C(t,e){var n=document.createElement("div");n.className="resize-draggable",t.appendChild(n);var r=t.parentElement,i=t.draggable,o=0,s=0,a=0,l=0,c=0,p=r.getBoundingClientRect(),u=w(r),d=u.top,h=d+p.height,m=u.left,f=m+p.width,_=w(t),y=_.top,v=_.left,g=window.getComputedStyle(t).borderWidth||"0",M=Number.parseInt(g),C=E(32,e),k=b(16,e),x=function(t){var e=o+(t.pageX-a),n=s+(t.pageY-l);e===o&&n===s||ev+(o-c)||(e<15?e=15:e+v-M/2>=f&&(e=f-v),n<15?n=15:n+y-M/2>=h&&(n=h-y),k(e,n),C(e,n),o=e,s=n,a=t.pageX,l=t.pageY)},P=function(){o=0,s=0,a=0,l=0,c=0,document.removeEventListener("mousemove",x),document.removeEventListener("mouseup",P),t.draggable=i,document.body.style.userSelect="auto"};return n.addEventListener("mousedown",(function(e){e.stopPropagation(),t.draggable=!1;var n=t.getBoundingClientRect(),i=n.width,g=n.height;o=i,s=g,a=e.pageX,l=e.pageY,c=e.offsetX,e.offsetY,p=r.getBoundingClientRect(),u=w(r),d=u.top,h=d+p.height,m=u.left,f=m+p.width,_=w(t),y=_.top,v=_.left,document.addEventListener("mousemove",x),document.addEventListener("mouseup",P),document.body.style.userSelect="none"})),function(){n.remove(),P()}}function k(t){return t}function x(t,e,n){return void 0===e&&(e=140),void 0===n&&(n="…"),t.trim().length>e?t.substr(0,e).trim()+n:t}}},__webpack_module_cache__={};function __webpack_require__(t){var e=__webpack_module_cache__[t];if(void 0!==e)return e.exports;var n=__webpack_module_cache__[t]={exports:{}};return __webpack_modules__[t](n,n.exports,__webpack_require__),n.exports}__webpack_require__.d=function(t,e){for(var n in e)__webpack_require__.o(e,n)&&!__webpack_require__.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},__webpack_require__.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},__webpack_require__.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var __webpack_exports__={};!function(){var t,e=__webpack_require__(541),n=__webpack_require__(478),r=(t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)},function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}),i=function(){return i=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0){var y=_.item(0);if(null!=y){y.setAttribute("width","".concat(i+s)),y.setAttribute("height","".concat(o+s));var v=y.getElementsByTagNameNS(O,"line");if(v.length>0){var g=v.item(0);null!=g&&(g.setAttribute("x1","".concat(d)),g.setAttribute("y1","".concat(h)),g.setAttribute("x2","".concat(m)),g.setAttribute("y2","".concat(f)),g.setAttribute("stroke",u||"black"),g.setAttribute("stroke-width","".concat(s)))}}}if(this.moveMode){var b=document.createElement("div"),E=document.createElement("div");if(this.isMoving){var w=t.getElementsByClassName("visual-console-item-line-circle-start");w.length>0&&(k=w.item(0))&&(b=k);var M=t.getElementsByClassName("visual-console-item-line-circle-end");M.length>0&&(k=M.item(0))&&(E=k)}if(b.classList.add("visual-console-item-line-circle","visual-console-item-line-circle-start"),b.style.width="".concat(2*this.circleRadius,"px"),b.style.height="".concat(2*this.circleRadius,"px"),b.style.borderRadius="50%",b.style.backgroundColor="".concat(u),b.style.position="absolute",b.style.left="".concat(d-this.circleRadius,"px"),b.style.top="".concat(h-this.circleRadius,"px"),b.style.cursor="move",E.classList.add("visual-console-item-line-circle","visual-console-item-line-circle-end"),E.style.width="".concat(2*this.circleRadius,"px"),E.style.height="".concat(2*this.circleRadius,"px"),E.style.borderRadius="50%",E.style.backgroundColor="".concat(u),E.style.position="absolute",E.style.left="".concat(m-this.circleRadius,"px"),E.style.top="".concat(f-this.circleRadius,"px"),E.style.cursor="move",null!==t.parentElement){for(var C=t.parentElement.getElementsByClassName("visual-console-item-line-circle");C.length>0;)(k=C.item(0))&&k.remove();t.parentElement.appendChild(b),t.parentElement.appendChild(E)}this.initStartPositionMovementListener(b,this.elementRef.parentElement),this.initEndPositionMovementListener(E,this.elementRef.parentElement)}else if(this.moveMode)this.stopStartPositionMovementListener();else if(this.stopStartPositionMovementListener(),null!==t.parentElement)for(C=t.parentElement.getElementsByClassName("visual-console-item-line-circle");C.length>0;){var k;(k=C.item(0))&&k.remove()}},n.extractBoxSizeAndPosition=function(t,e){return{width:Math.abs(t.x-e.x),height:Math.abs(t.y-e.y),x:Math.min(t.x,e.x),y:Math.min(t.y,e.y)}},n.prototype.move=function(e,n){t.prototype.moveElement.call(this,e,n);var r=this.props.startPosition.x-this.props.endPosition.x<=0,i=this.props.startPosition.y-this.props.endPosition.y<=0,o={x:r?e:this.props.width+e,y:i?n:this.props.height+n},s={x:r?this.props.width+e:e,y:i?this.props.height+n:n};this.props=A(A({},this.props),{startPosition:o,endPosition:s})},n.prototype.remove=function(){this.stopStartPositionMovementListener(),t.prototype.remove.call(this)},n.prototype.onLineMovementFinished=function(t){var e=this.lineMovedEventManager.on(t);return this.lineMovedEventDisposables.push(e),e},n}(n.ZP),S=L,D=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),R=function(){return R=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0){if(null!=(r=g.item(0))){for(var b=r.getElementsByTagNameNS(N,"line"),E=r.getElementsByTagNameNS(N,"g");E.length>0;)E[0].remove();b.length>0&&(n=b.item(0))}if(null!=r&&null!=n){var w=25,M=p.x-o+a/2+l/2,C=p.y-s+a/2+c/2,k=u.x-o+a/2+l/2,x=u.y-s+a/2+c/2,P=p.x-o+a/2+l/2,I=p.y-s+a/2+c/2,A=u.x-o+a/2+l/2,T=u.y-s+a/2+c/2,O=180*Math.atan2(x-C,k-M)/Math.PI;if(y<=0&&(b=m.split("
"),y=0,b.forEach((function(t){t.length>y&&(y=10*t.length)})),v<=0&&(v=25*b.length)),f<=0&&(b=h.split("
"),f=0,b.forEach((function(t){t.length>f&&(f=10*t.length)})),_<=0&&(_=25*b.length)),PA&&(P-=w+y,A+=w),IT&&(I-=w+v,T+=w),void 0===d&&(d="#000"),null!==e.parentElement){for(var L=e.parentElement.getElementsByClassName("vc-item-nl-label");L.length>0;){var S=L.item(0);S&&S.remove()}for(var D=e.parentElement.getElementsByClassName("vc-item-nl-arrow");D.length>0;){var R=D.item(0);R&&R.remove()}}var B=2*a,z=M+(k-M)/2-B,W=C+(x-C)/2-B,j=document.createElement("div");j.classList.add("vc-item-nl-arrow"),j.style.position="absolute",j.style.border="".concat(B,"px solid transparent"),j.style.borderBottom="".concat(B,"px solid ").concat(d),j.style.left="".concat(z,"px"),j.style.top="".concat(W,"px"),j.style.transform="rotate(".concat(90+O,"deg)");var H=document.createElement("div");if(H.classList.add("vc-item-nl-arrow"),H.style.position="absolute",H.style.border="".concat(B,"px solid transparent"),H.style.borderBottom="".concat(B,"px solid ").concat(d),H.style.left="".concat(z,"px"),H.style.top="".concat(W,"px"),H.style.transform="rotate(".concat(270+O,"deg)"),null!==e.parentElement&&(e.parentElement.appendChild(j),e.parentElement.appendChild(H)),""!=m){var V=document.createElement("div");try{V.innerHTML=m,V.style.position="absolute",V.style.left="".concat(P,"px"),V.style.top="".concat(I,"px"),V.style.width="".concat(y,"px"),V.style.border="2px solid ".concat(d),V.classList.add("vc-item-nl-label","label-start")}catch(t){console.error(t)}null!==e.parentElement&&e.parentElement.appendChild(V)}if(""!=h){var G=document.createElement("div");try{G.innerHTML=h,G.style.position="absolute",G.style.left="".concat(A,"px"),G.style.top="".concat(T,"px"),G.style.width="".concat(f,"px"),G.style.border="2px solid ".concat(d),G.classList.add("vc-item-nl-label","label-end")}catch(t){console.error(t)}null!==e.parentElement&&e.parentElement.appendChild(G)}}}},n}(S),W=z,j=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),H=function(){return H=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0){var _=document.createElementNS(t,"text");_.setAttribute("text-anchor","middle"),_.setAttribute("font-size","8"),_.setAttribute("transform","translate(30 50) rotate(90)"),_.setAttribute("fill",r),_.textContent=f,h.append(_)}var y=document.createElementNS(t,"g");y.setAttribute("class","marks");var v=document.createElementNS(t,"g");v.setAttribute("class","mark"),v.setAttribute("transform","translate(50 50)");var g=document.createElementNS(t,"line");g.setAttribute("x1","36"),g.setAttribute("y1","0"),g.setAttribute("x2","46"),g.setAttribute("y2","0"),g.setAttribute("stroke",r),g.setAttribute("stroke-width","5");var b=document.createElementNS(t,"line");b.setAttribute("x1","36"),b.setAttribute("y1","0"),b.setAttribute("x2","46"),b.setAttribute("y2","0"),b.setAttribute("stroke",n),b.setAttribute("stroke-width","1"),v.append(g,b),y.append(v);for(var E=1;E<60;E++){var w=document.createElementNS(t,"line");w.setAttribute("y1","0"),w.setAttribute("y2","0"),w.setAttribute("stroke",r),w.setAttribute("transform","translate(50 50) rotate(".concat(6*E,")")),E%5==0?(w.setAttribute("x1","38"),w.setAttribute("x2","46"),w.setAttribute("stroke-width",E%15==0?"2":"1")):(w.setAttribute("x1","42"),w.setAttribute("x2","46"),w.setAttribute("stroke-width","0.5")),y.append(w)}var M=document.createElementNS(t,"g");M.setAttribute("class","hour-hand"),M.setAttribute("transform","translate(50 50)");var C=document.createElementNS(t,"line");C.setAttribute("class","hour-hand-a"),C.setAttribute("x1","0"),C.setAttribute("y1","0"),C.setAttribute("x2","30"),C.setAttribute("y2","0"),C.setAttribute("stroke",o),C.setAttribute("stroke-width","4"),C.setAttribute("stroke-linecap","round");var k=document.createElementNS(t,"line");k.setAttribute("class","hour-hand-b"),k.setAttribute("x1","0"),k.setAttribute("y1","0"),k.setAttribute("x2","29.9"),k.setAttribute("y2","0"),k.setAttribute("stroke",i),k.setAttribute("stroke-width","3.1"),k.setAttribute("stroke-linecap","round"),M.append(C,k);var x=document.createElementNS(t,"g");x.setAttribute("class","minute-hand"),x.setAttribute("transform","translate(50 50)");var P=document.createElementNS(t,"line");P.setAttribute("class","minute-hand-a"),P.setAttribute("x1","0"),P.setAttribute("y1","0"),P.setAttribute("x2","40"),P.setAttribute("y2","0"),P.setAttribute("stroke",o),P.setAttribute("stroke-width","2"),P.setAttribute("stroke-linecap","round");var I=document.createElementNS(t,"line");I.setAttribute("class","minute-hand-b"),I.setAttribute("x1","0"),I.setAttribute("y1","0"),I.setAttribute("x2","39.9"),I.setAttribute("y2","0"),I.setAttribute("stroke",i),I.setAttribute("stroke-width","1.5"),I.setAttribute("stroke-linecap","round");var A=document.createElementNS(t,"circle");A.setAttribute("r","3"),A.setAttribute("fill",i),x.append(P,I,A);var T=document.createElementNS(t,"g");T.setAttribute("class","second-hand"),T.setAttribute("transform","translate(50 50)");var O=document.createElementNS(t,"line");O.setAttribute("x1","0"),O.setAttribute("y1","0"),O.setAttribute("x2","46"),O.setAttribute("y2","0"),O.setAttribute("stroke",s),O.setAttribute("stroke-width","1"),O.setAttribute("stroke-linecap","round");var L=document.createElementNS(t,"circle");L.setAttribute("r","2"),L.setAttribute("fill",s),T.append(O,L);var S=document.createElementNS(t,"circle");S.setAttribute("cx","50"),S.setAttribute("cy","50"),S.setAttribute("r","0.3"),S.setAttribute("fill",i);var D=this.getOriginDate(),R=D.getSeconds(),N=D.getMinutes(),B=6*R,z=6*N+R/60*6,W=30*D.getHours()+N/60*30;if(M.setAttribute("transform","translate(50 50) rotate(".concat(W,")")),x.setAttribute("transform","translate(50 50) rotate(".concat(z,")")),T.setAttribute("transform","translate(50 50) rotate(".concat(B,")")),d.append(h,y,M,x,T,S),d.setAttribute("transform","rotate(-90)"),u.innerHTML="\n \n "),u.append(d),"datetime"===this.props.clockFormat){var j=document.createElement("span");j.className="date",j.textContent=(0,e.rN)(D,"default"),j.style.fontSize="".concat(p,"px"),this.props.color&&(j.style.color=this.props.color),u.append(j)}return u},n.prototype.createDigitalClock=function(){var t=document.createElement("div");t.className="digital-clock";var n=this.getElementSize(),r=n.width,i=n.height,o=r;i0){var m=document.createElement("span");m.className="timezone",m.textContent=h,m.style.fontSize="".concat(c,"px"),this.props.color&&(m.style.color=this.props.color),t.append(m)}return t},n.prototype.getOriginDate=function(t){void 0===t&&(t=null);var e=t||new Date,n=1e3*this.props.clockTimezoneOffset,r=60*e.getTimezoneOffset()*1e3,i=e.getTime()+n+r;return new Date(i)},n.prototype.getHumanTimezone=function(t){void 0===t&&(t=this.props.clockTimezone);var e=t.split("/")[1];return(void 0===e?"":e).replace("_"," ")},n.prototype.getElementSize=function(t,e){switch(void 0===t&&(t=this.props.width),void 0===e&&(e=this.props.height),this.props.clockType){case"analogic":var n=100;t>0&&e>0?n=Math.min(t,e):t>0?n=t:e>0&&(n=e);var r=0;return"datetime"===this.props.clockFormat&&(r=e/8),{width:n,height:n+r};case"digital":return t>0&&e>0?e=t/20?e=t/2:e>0?t=2*e:(t=100,e=50),{width:t,height:e};default:throw new Error("invalid clock type.")}},n.TICK_INTERVAL=1e3,n}(n.ZP),X=Y,Q=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),$=function(){return $=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0){t.style.borderStyle="solid";var e=Math.min(this.props.width,this.props.height)/2,n=Math.min(this.props.borderWidth,e);t.style.borderWidth="".concat(n,"px"),this.props.borderColor&&(t.style.borderColor=this.props.borderColor)}return t},e.prototype.updateDomElement=function(t){if(this.props.fillTransparent?t.style.backgroundColor="transparent":this.props.fillColor&&(t.style.backgroundColor=this.props.fillColor),this.props.borderWidth>0){t.style.borderStyle="solid";var e=Math.min(this.props.width,this.props.height)/2,n=Math.min(this.props.borderWidth,e);t.style.borderWidth="".concat(n,"px"),this.props.borderColor&&(t.style.borderColor=this.props.borderColor)}},e}(n.ZP),nt=et,rt=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),it=function(){return it=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0&&(r=(0,e.No)([{macro:/\(?_VALUE_\)?/i,value:r}],i)),t.innerHTML=r}return t},n.prototype.createLabelDomElement=function(){var t=document.createElement("div");return t.className="visual-console-item-label",t},n}(n.ZP),ht=dt,mt=__webpack_require__(280),ft=Math.PI,_t=2*ft,yt=1e-6,vt=_t-yt;function gt(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function bt(){return new gt}gt.prototype=bt.prototype={constructor:gt,moveTo:function(t,e){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)},closePath:function(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},lineTo:function(t,e){this._+="L"+(this._x1=+t)+","+(this._y1=+e)},quadraticCurveTo:function(t,e,n,r){this._+="Q"+ +t+","+ +e+","+(this._x1=+n)+","+(this._y1=+r)},bezierCurveTo:function(t,e,n,r,i,o){this._+="C"+ +t+","+ +e+","+ +n+","+ +r+","+(this._x1=+i)+","+(this._y1=+o)},arcTo:function(t,e,n,r,i){t=+t,e=+e,n=+n,r=+r,i=+i;var o=this._x1,s=this._y1,a=n-t,l=r-e,c=o-t,p=s-e,u=c*c+p*p;if(i<0)throw new Error("negative radius: "+i);if(null===this._x1)this._+="M"+(this._x1=t)+","+(this._y1=e);else if(u>yt)if(Math.abs(p*a-l*c)>yt&&i){var d=n-o,h=r-s,m=a*a+l*l,f=d*d+h*h,_=Math.sqrt(m),y=Math.sqrt(u),v=i*Math.tan((ft-Math.acos((m+u-f)/(2*_*y)))/2),g=v/y,b=v/_;Math.abs(g-1)>yt&&(this._+="L"+(t+g*c)+","+(e+g*p)),this._+="A"+i+","+i+",0,0,"+ +(p*d>c*h)+","+(this._x1=t+b*a)+","+(this._y1=e+b*l)}else this._+="L"+(this._x1=t)+","+(this._y1=e)},arc:function(t,e,n,r,i,o){t=+t,e=+e,o=!!o;var s=(n=+n)*Math.cos(r),a=n*Math.sin(r),l=t+s,c=e+a,p=1^o,u=o?r-i:i-r;if(n<0)throw new Error("negative radius: "+n);null===this._x1?this._+="M"+l+","+c:(Math.abs(this._x1-l)>yt||Math.abs(this._y1-c)>yt)&&(this._+="L"+l+","+c),n&&(u<0&&(u=u%_t+_t),u>vt?this._+="A"+n+","+n+",0,1,"+p+","+(t-s)+","+(e-a)+"A"+n+","+n+",0,1,"+p+","+(this._x1=l)+","+(this._y1=c):u>yt&&(this._+="A"+n+","+n+",0,"+ +(u>=ft)+","+p+","+(this._x1=t+n*Math.cos(i))+","+(this._y1=e+n*Math.sin(i))))},rect:function(t,e,n,r){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)+"h"+ +n+"v"+ +r+"h"+-n+"Z"},toString:function(){return this._}};var Et=bt;function wt(t){return function(){return t}}var Mt=Math.abs,Ct=Math.atan2,kt=Math.cos,xt=Math.max,Pt=Math.min,It=Math.sin,At=Math.sqrt,Tt=1e-12,Ot=Math.PI,Lt=Ot/2,St=2*Ot;function Dt(t){return t>1?0:t<-1?Ot:Math.acos(t)}function Rt(t){return t>=1?Lt:t<=-1?-Lt:Math.asin(t)}function Nt(t){return t.innerRadius}function Bt(t){return t.outerRadius}function zt(t){return t.startAngle}function Wt(t){return t.endAngle}function jt(t){return t&&t.padAngle}function Ht(t,e,n,r,i,o,s,a){var l=n-t,c=r-e,p=s-i,u=a-o,d=u*l-p*c;if(!(d*dT*T+O*O&&(C=x,k=P),{cx:C,cy:k,x01:-p,y01:-u,x11:C*(i/E-1),y11:k*(i/E-1)}}var Gt=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),Ut=function(){return Ut=Object.assign||function(t){for(var e,n=1,r=arguments.length;nd;if(a||(a=l=Et()),uTt)if(m>St-Tt)a.moveTo(u*kt(d),u*It(d)),a.arc(0,0,u,d,h,!f),p>Tt&&(a.moveTo(p*kt(h),p*It(h)),a.arc(0,0,p,h,d,f));else{var _,y,v=d,g=h,b=d,E=h,w=m,M=m,C=s.apply(this,arguments)/2,k=C>Tt&&(r?+r.apply(this,arguments):At(p*p+u*u)),x=Pt(Mt(u-p)/2,+n.apply(this,arguments)),P=x,I=x;if(k>Tt){var A=Rt(k/p*It(C)),T=Rt(k/u*It(C));(w-=2*A)>Tt?(b+=A*=f?1:-1,E-=A):(w=0,b=E=(d+h)/2),(M-=2*T)>Tt?(v+=T*=f?1:-1,g-=T):(M=0,v=g=(d+h)/2)}var O=u*kt(v),L=u*It(v),S=p*kt(E),D=p*It(E);if(x>Tt){var R,N=u*kt(g),B=u*It(g),z=p*kt(b),W=p*It(b);if(mTt?I>Tt?(_=Vt(z,W,O,L,u,I,f),y=Vt(N,B,S,D,u,I,f),a.moveTo(_.cx+_.x01,_.cy+_.y01),ITt&&w>Tt?P>Tt?(_=Vt(S,D,N,B,p,-P,f),y=Vt(O,L,z,W,p,-P,f),a.lineTo(_.cx+_.x01,_.cy+_.y01),P0){var d=document.createElementNS(qt,"tspan");d.setAttribute("x","0"),d.setAttribute("dy","1em"),d.textContent="".concat(t),d.style.fontSize="8pt";var h=document.createElementNS(qt,"tspan");h.setAttribute("x","0"),h.setAttribute("dy","1em"),h.textContent="".concat(this.props.unit),h.style.fontSize="8pt",u.append(d,h),u.setAttribute("transform","translate(50 33)")}else u.textContent="".concat(t),u.style.fontSize="8pt",u.setAttribute("transform","translate(50 50)");else u.textContent="".concat(n,"%"),u.setAttribute("transform","translate(50 50)");i.append(u)}return!0!==this.props.agentDisabled&&!0!==this.props.moduleDisabled||i.setAttribute("opacity","0.2"),null!==i&&r.append(i),r},e.prototype.updateDomElement=function(t){!1===this.meta.isBeingResized&&this.resizeElement(this.props.width,this.props.height),t.innerHTML=this.createDomElement().innerHTML},e.prototype.resizeElement=function(e,n){"progress-bar"===this.props.percentileType?t.prototype.resizeElement.call(this,e,35):t.prototype.resizeElement.call(this,e,e)},e.prototype.resize=function(e){this.resizeElement(e,e);var n=this.props.maxValue||0;"progress-bar"===this.props.percentileType&&(n=35),t.prototype.setProps.call(this,Ut(Ut({},this.props),{width:e,height:n}))},e.prototype.getProgress=function(){var t=this.props.minValue||0,e=this.props.maxValue||100,n=null==this.props.value?0:this.props.value;return n<=t?0:n>=e?100:Math.trunc((n-t)/(e-t)*100)},e}(n.ZP),Yt=Jt,Xt=__webpack_require__(369),Qt=__webpack_require__(709),$t=__webpack_require__(600),te=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},t(e,n)};return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),ee=function(){return ee=Object.assign||function(t){for(var e,n=1,r=arguments.length;n3&&n<=6?e=" K":n>6&&n<=9?e=" M":n>9&&n<=12?e=" G":n>12&&n<=15&&(e=" T"),e},e.prototype.getCoords=function(t,e){if(""!==this.props.minMaxValue){var n=JSON.parse(this.props.minMaxValue);if(n.min===t)t=0;else if(n.max===t||100===t)t=100;else{var r=n.max-n.min;t=100-100*(n.max-t)/r}}t=180-1.8*t;var i=e+Math.cos(t*Math.PI/180)*e,o=e-Math.sin(t*Math.PI/180)*e;return"".concat(i,",").concat(o)},e.prototype.truncateTitle=function(t){if(null!=t&&t.length>22){var e=t.length/2,n=e-9,r=t.substr(0,e-n),i=t.substr(e+n);return"".concat(r,"...").concat(i)}return t},e}(n.ZP),pe=ce,ue=__webpack_require__(880),de=function(){return de=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0?t.selected=!0:t.selected=!1,i.selectionChangedEventManager.emit(t)},this.handleContainerClick=function(){i.unSelectItems()},this.containerRef=t,this._props=function(t){var n=t.id,r=t.name,i=t.groupId,o=t.backgroundURL,s=t.backgroundColor,a=t.isFavorite,l=t.relationLineWidth,c=t.maintenanceMode;if(null==n||isNaN(parseInt(n)))throw new TypeError("invalid Id.");if("string"!=typeof r||0===r.length)throw new TypeError("invalid name.");if(null==i||isNaN(parseInt(i)))throw new TypeError("invalid group Id.");return de({id:parseInt(n),name:r,groupId:parseInt(i),backgroundURL:(0,e.JW)(o,null),backgroundColor:(0,e.JW)(s,null),isFavorite:(0,e.gx)(a),relationLineWidth:(0,e.I1)(l,0),maintenanceMode:c},(0,e.HY)(t))}(n),this.render(),(r=r.sort((function(t,e){return null==t.id||null==e.id?0:t.id>e.id?1:-1}))).forEach((function(t){return i.addElement(t,i)})),this.buildRelations(),this.elements.forEach((function(t){t instanceof S&&i.refreshLink(t)})),this.containerRef.addEventListener("click",this.handleContainerClick)}return t.prototype.coordinatesInItem=function(t,e,n){return 13!=n.type&&21!=n.type&&t>n.x&&tn.y&&e0?(null==this.lineLinks[n]&&(this.lineLinks[n]={}),this.lineLinks[n][e]={start:n,end:r}):this.lines[e].start>0&&(this.lineLinks[this.lines[e].start][e].start=0,this.lines[e].start=0),r>0?(null==this.lineLinks[r]&&(this.lineLinks[r]={}),this.lineLinks[r][e]={start:n,end:r}):this.lines[e].end>0&&(this.lineLinks[this.lines[e].end][e].end=0,this.lines[e].end=0),this.lines[e]={start:n,end:r},this.lineLinks)this.lineLinks[i][e]&&(0==this.lineLinks[i][e].start&&0==this.lineLinks[i][e].end&&(delete this.lineLinks[i][e],0===Object.keys(this.lineLinks[i]).length&&delete this.lineLinks[i]),(this.lineLinks[i][e].start!=n&&this.lineLinks[i][e].end==r||this.lineLinks[i][e].start==n&&this.lineLinks[i][e].end!=r)&&(delete this.lineLinks[i][e],0===Object.keys(this.lineLinks[i]).length&&delete this.lineLinks[i]))}catch(t){console.error(t)}},t.prototype.updateLinesConnected=function(t,n,r){var i=this;null!=this.lineLinks[t.id]&&(Object.keys(this.lineLinks[t.id]).forEach((function(o){var s=parseInt(o);if(-1!==i.elementIds.indexOf(s)){var a=i.elementsById[s];if(a.props){var l=a.props.startPosition.x,c=a.props.startPosition.y,p=a.props.endPosition.x,u=a.props.endPosition.y;t.id==i.lineLinks[t.id][s].start&&(l=n.x+t.width/2,c=n.y+t.height/2),t.id==i.lineLinks[t.id][s].end&&(p=n.x+t.width/2,u=n.y+t.height/2),i.updateElement(de(de({},a.props),{startX:l,startY:c,endX:p,endY:u})),r&&(0,e.Ds)(500,(function(t){i.lineMovedEventManager.emit({item:t.line,startPosition:{x:t.startX,y:t.startY},endPosition:{x:t.endX,y:t.endY}})}))({line:a,startX:l,startY:c,endX:p,endY:u})}}})),this.buildRelations(t.id,n.x+t.width/2,n.y+t.height/2))},Object.defineProperty(t.prototype,"elements",{get:function(){var t=this;return this.elementIds.map((function(e){return t.elementsById[e]})).filter((function(t){return null!=t}))},enumerable:!1,configurable:!0}),t.prototype.addElement=function(t,n){void 0===n&&(n=this);try{var r=function(t){var n=(0,e.I1)(t.type,null);if(null==n)throw new TypeError("missing item type.");var r=(0,e.SM)(t);switch(n){case 0:return new l(s(t),r);case 1:return new $t.Z((0,$t.C)(t),r);case 2:case 6:case 7:case 8:return new ht(ut(t),r);case 3:case 9:case 15:case 16:return new Yt(Zt(t),r);case 4:return new at(ot(t),r);case 5:return new h(u(t),r);case 10:return new ie(ne(t),r);case 11:return new U(V(t),r);case 12:return new nt(tt(t),r);case 13:return new S(T(t),r);case 14:return new mt.Z((0,mt.o)(t),r);case 17:return new Xt.Z((0,Xt.p)(t),r);case 18:return new Qt.Z((0,Qt.K)(t),r);case 19:return new X(J(t),r);case 20:return new x(E(t),r);case 21:return new W(B(t),r);case 22:return new pe(ae(t),r);case 23:return new ue.Z((0,ue.u)(t),r);default:throw new TypeError("item not found")}}(t);return n.elementsById[r.props.id]=r,n.elementIds.push(r.props.id),r.onRemove(n.handleElementRemove),r.onSelectionChanged(n.handleElementSelectionChanged),r.onClick(n.handleElementClick),r.onDblClick(n.handleElementDblClick),r instanceof S?(r.onLineMovementFinished(n.handleLineElementMovementFinished),this.refreshLink(r)):(r.onMoved(n.handleElementMovement),r.onMovementFinished(n.handleElementMovementFinished),r.onResized(n.handleElementResizement),r.onResizeFinished(n.handleElementResizementFinished)),n.containerRef.append(r.elementRef),r}catch(t){console.error("Error creating a new element:",t.message)}},t.prototype.updateElements=function(t){var e=this,n=t.map((function(t){return t.id||null})).filter((function(t){return null!=t}));this.elementIds.filter((function(t){return n.indexOf(t)<0})).forEach((function(t){null!=e.elementsById[t]&&(e.elementsById[t].remove(),delete e.elementsById[t])})),this.elementIds=n,t.forEach((function(t){if(t.id)if(null==e.elementsById[t.id])e.addElement(t);else try{e.elementsById[t.id].props=he(t)}catch(t){console.error("Error updating an element:",t.message)}})),this.buildRelations()},t.prototype.updateElement=function(t){try{this.elementsById[t.id].props=de({},he(t))}catch(t){console.error("Error updating element:",t.message)}this.buildRelations()},Object.defineProperty(t.prototype,"props",{get:function(){return de({},this._props)},set:function(t){var e=this.props;this._props=t,this.render(e)},enumerable:!1,configurable:!0}),t.prototype.render=function(t){void 0===t&&(t=null),t?(t.backgroundURL!==this.props.backgroundURL&&(this.containerRef.style.backgroundImage=null!==this.props.backgroundURL?"url(".concat(this.props.backgroundURL,")"):""),null!=this.props.backgroundColor&&t.backgroundColor!==this.props.backgroundColor&&(this.containerRef.style.backgroundColor=this.props.backgroundColor),this.sizeChanged(t,this.props)&&this.resizeElement(this.props.width,this.props.height)):(this.props.backgroundURL&&(this.containerRef.style.backgroundImage=null!==this.props.backgroundURL?"url(".concat(this.props.backgroundURL,")"):""),this.props.backgroundColor&&(this.containerRef.style.backgroundColor=this.props.backgroundColor),this.resizeElement(this.props.width,this.props.height))},t.prototype.sizeChanged=function(t,e){return t.width!==e.width||t.height!==e.height},t.prototype.resizeElement=function(t,e){this.containerRef.style.width="".concat(t,"px"),this.containerRef.style.height="".concat(e,"px")},t.prototype.resize=function(t,e){this.props=de(de({},this.props),{width:t,height:e})},t.prototype.remove=function(){this.disposables.forEach((function(t){return t.dispose()})),this.elements.forEach((function(t){return t.remove()})),this.elementsById={},this.elementIds=[],this.clearRelations(),this.containerRef.removeEventListener("click",this.handleContainerClick),this.containerRef.innerHTML=""},t.prototype.buildRelations=function(t,e,n){var r=this;this.clearRelations(),this.elements.forEach((function(i){if(null!==i.props.parentId){var o=r.elementsById[i.props.parentId],s=r.elementsById[i.props.id];o&&s&&(null!=t?i.props.parentId==t?r.addRelationLine(o,s,e,n):i.props.id==t?r.addRelationLine(o,s,void 0,void 0,e,n):r.addRelationLine(o,s):r.addRelationLine(o,s))}}))},t.prototype.clearRelations=function(t){if(null!=t)for(var e in this.relations){var n=e.split("|"),r=Number.parseInt(n[0]),i=Number.parseInt(n[1]);t!==r&&t!==i||(this.relations[e].remove(),delete this.relations[e])}else for(var e in this.relations)this.relations[e].remove(),delete this.relations[e]},t.prototype.getRelationLine=function(t,e){var n="".concat(t,"|").concat(e);return this.relations[n]||null},t.prototype.getItemRelations=function(t){var e=[];for(var n in this.relations){var r=n.split("|"),i=Number.parseInt(r[0]),o=Number.parseInt(r[1]);t!==i&&t!==o||e.push({parentId:i,childId:o,line:this.relations[n]})}return e},t.prototype.getVisualCenter=function(t,e){var n=t.x+e.elementRef.clientWidth/2,r=t.y+e.elementRef.clientHeight/2;if(void 0!==e.props.label||""!==e.props.label||null!==e.props.label)switch(e.props.labelPosition){case"up":r=t.y+(e.elementRef.clientHeight+e.labelElementRef.clientHeight)/2;break;case"down":r=t.y+(e.elementRef.clientHeight-e.labelElementRef.clientHeight)/2;break;case"right":n=t.x+(e.elementRef.clientWidth-e.labelElementRef.clientWidth)/2;break;case"left":n=t.x+(e.elementRef.clientWidth+e.labelElementRef.clientWidth)/2}return{x:n,y:r}},t.prototype.addRelationLine=function(t,n,r,i,o,s){var a="".concat(t.props.id,"|").concat(n.props.id);null!=this.relations[a]&&this.relations[a].remove();var l=this.getVisualCenter(t.props,t),c=l.x,p=l.y,u=this.getVisualCenter(n.props,n),d=u.x,h=u.y;null!=r&&(c=r),null!=i&&(p=i),null!=o&&(d=o),null!=s&&(h=s);var m=new S(T({id:0,type:13,startX:c,startY:p,endX:d,endY:h,width:0,height:0,lineWidth:this.props.relationLineWidth,color:(0,e.JW)(n.props.colorStatus,"#CCC")}),(0,e.SM)({receivedAt:new Date}));return this.relations[a]=m,m.elementRef.style.zIndex="0",this.containerRef.append(m.elementRef),m},t.prototype.onItemClick=function(t){var e=this.clickEventManager.on(t);return this.disposables.push(e),e},t.prototype.onItemDblClick=function(t){var e=this.dblClickEventManager.on(t);return this.disposables.push(e),e},t.prototype.onItemMoved=function(t){var e=this.movedEventManager.on(t);return this.disposables.push(e),e},t.prototype.onLineMoved=function(t){var e=this.lineMovedEventManager.on(t);return this.disposables.push(e),e},t.prototype.onItemResized=function(t){var e=this.resizedEventManager.on(t);return this.disposables.push(e),e},t.prototype.onItemSelectionChanged=function(t){var e=this.selectionChangedEventManager.on(t);return this.disposables.push(e),e},t.prototype.enableEditMode=function(){this.elements.forEach((function(t){t.meta=de(de({},t.meta),{editMode:!0})})),this.containerRef.classList.add("is-editing")},t.prototype.disableEditMode=function(){this.elements.forEach((function(t){t.meta=de(de({},t.meta),{editMode:!1})})),this.containerRef.classList.remove("is-editing")},t.prototype.enableMaintenanceMode=function(){this.elements.forEach((function(t){t.meta=de(de({},t.meta),{maintenanceMode:!0})})),this.containerRef.classList.add("is-maintenance"),this.containerRef.classList.remove("is-editing")},t.prototype.disableMaintenanceMode=function(){this.elements.forEach((function(t){t.meta=de(de({},t.meta),{maintenanceMode:!1})})),this.containerRef.classList.remove("is-maintenance"),this.containerRef.classList.add("is-editing")},t.prototype.selectItem=function(t,e){var n=this;void 0===e&&(e=!1),e?this.elementIds.forEach((function(e){var r=n.elementsById[e].meta;e!==t&&r.isSelected?n.elementsById[e].unSelectItem():e!==t||r.isSelected||n.elementsById[e].selectItem()})):this.elementsById[t]&&this.elementsById[t].selectItem()},t.prototype.unSelectItem=function(t){this.elementsById[t]&&this.elementsById[t].meta.isSelected&&this.elementsById[t].unSelectItem()},t.prototype.unSelectItems=function(){var t=this;this.elementIds.forEach((function(e){t.elementsById[e]&&t.elementsById[e].unSelectItem()}))},t.itemDescriptiveName=function(t){var n;switch(t.props.type){case 0:n="".concat((0,e.t)("Static graph")," - ").concat(t.props.imageSrc);break;case 1:n=(0,e.t)("Module graph");break;case 19:n=(0,e.t)("Clock");break;case 18:n=(0,e.t)("Bars graph");break;case 14:n=(0,e.t)("Event history graph");break;case 3:n=(0,e.t)("Percentile bar");break;case 15:n=(0,e.t)("Circular progress bar");break;case 16:n=(0,e.t)("Circular progress bar (interior)");break;case 2:n=(0,e.t)("Simple Value");break;case 4:n=(0,e.t)("Label");break;case 11:n=(0,e.t)("Group");break;case 20:n=(0,e.t)("Color cloud");break;case 5:n="".concat((0,e.t)("Icon")," - ").concat(t.props.imageSrc);break;case 22:n=(0,e.t)("Odometer");break;case 23:n=(0,e.t)("BasicChart");break;default:n=(0,e.t)("Item")}var r=t.props;return null!=r.agentAlias&&null!=r.moduleName?n+=" (".concat((0,e.fk)(r.agentAlias,18)," - ").concat((0,e.fk)(r.moduleName,25),")"):null!=r.agentAlias&&(n+=" (".concat((0,e.fk)(r.agentAlias,25),")")),n},t.items=((le={})[0]=l,le[1]=$t.Z,le[2]=ht,le[6]=ht,le[7]=ht,le[8]=ht,le[3]=Yt,le[9]=Yt,le[15]=Yt,le[16]=Yt,le[4]=at,le[5]=h,le[10]=ie,le[11]=U,le[12]=nt,le[13]=S,le[14]=mt.Z,le[17]=Xt.Z,le[18]=Qt.Z,le[19]=X,le[20]=x,le[21]=W,le[22]=pe,le[23]=ue.Z,le),t}(),fe=function(){function t(t){this.cancellable={cancel:function(){}},this._status="waiting",this.statusChangeEventManager=new P.Z,this.disposables=[],this.taskInitiator=t}return Object.defineProperty(t.prototype,"status",{get:function(){return this._status},set:function(t){this._status=t,this.statusChangeEventManager.emit(t)},enumerable:!1,configurable:!0}),t.prototype.init=function(){var t=this;this.cancellable=this.taskInitiator((function(){t.status="finished"})),this.status="started"},t.prototype.cancel=function(){this.cancellable.cancel(),this.status="cancelled"},t.prototype.onStatusChange=function(t){var e=this.statusChangeEventManager.on(t);return this.disposables.push(e),e},t}(),_e=function(){function t(){this.tasks={}}return t.prototype.add=function(t,e,n){void 0===n&&(n=0),this.tasks[t]&&"started"===this.tasks[t].status&&this.tasks[t].cancel();var r=n>0?function(t,e){return new fe((function(){var n=null;return t.onStatusChange((function(r){"finished"===r&&(n=window.setTimeout((function(){t.init()}),e))})),t.init(),{cancel:function(){n&&clearTimeout(n),t.cancel()}}}))}(new fe(e),n):new fe(e);return this.tasks[t]=r,this.tasks[t]},t.prototype.init=function(t){!this.tasks[t]||"waiting"!==this.tasks[t].status&&"cancelled"!==this.tasks[t].status&&"finished"!==this.tasks[t].status||this.tasks[t].init()},t.prototype.cancel=function(t){this.tasks[t]&&"started"===this.tasks[t].status&&this.tasks[t].cancel()},t}();window.VisualConsole=me,window.VisualConsole.Form=m,window.AsyncTaskManager=_e}()})(); //# sourceMappingURL=vc.main.min.js.map \ No newline at end of file diff --git a/pandora_console/include/visual-console-client/vc.main.min.js.map b/pandora_console/include/visual-console-client/vc.main.min.js.map index 25eb5c5745..8d55c19c46 100644 --- a/pandora_console/include/visual-console-client/vc.main.min.js.map +++ b/pandora_console/include/visual-console-client/vc.main.min.js.map @@ -1 +1 @@ -{"version":3,"file":"vc.main.min.js","mappings":"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","sources":["webpack://pandora-fms-visual-console/./src/Form.ts","webpack://pandora-fms-visual-console/./src/Item.ts","webpack://pandora-fms-visual-console/./src/items/BarsGraph.ts","webpack://pandora-fms-visual-console/./src/items/BasicChart.ts","webpack://pandora-fms-visual-console/./src/items/DonutGraph.ts","webpack://pandora-fms-visual-console/./src/items/EventsHistory.ts","webpack://pandora-fms-visual-console/./src/items/ModuleGraph.ts","webpack://pandora-fms-visual-console/./src/lib/FontAwesomeIcon.ts","webpack://pandora-fms-visual-console/./src/lib/TypedEvent.ts","webpack://pandora-fms-visual-console/./src/lib/index.ts","webpack://pandora-fms-visual-console/webpack/bootstrap","webpack://pandora-fms-visual-console/webpack/runtime/define property getters","webpack://pandora-fms-visual-console/webpack/runtime/hasOwnProperty shorthand","webpack://pandora-fms-visual-console/webpack/runtime/make namespace object","webpack://pandora-fms-visual-console/./src/items/StaticGraph.ts","webpack://pandora-fms-visual-console/./src/items/Icon.ts","webpack://pandora-fms-visual-console/./node_modules/@fortawesome/free-solid-svg-icons/index.es.js","webpack://pandora-fms-visual-console/./src/items/ColorCloud.ts","webpack://pandora-fms-visual-console/./src/items/Line.ts","webpack://pandora-fms-visual-console/./src/items/NetworkLink.ts","webpack://pandora-fms-visual-console/./src/items/Group.ts","webpack://pandora-fms-visual-console/./src/items/Clock/index.ts","webpack://pandora-fms-visual-console/./src/items/Box.ts","webpack://pandora-fms-visual-console/./src/items/Label.ts","webpack://pandora-fms-visual-console/./src/items/SimpleValue.ts","webpack://pandora-fms-visual-console/./node_modules/d3-path/src/path.js","webpack://pandora-fms-visual-console/./node_modules/d3-shape/src/constant.js","webpack://pandora-fms-visual-console/./node_modules/d3-shape/src/math.js","webpack://pandora-fms-visual-console/./node_modules/d3-shape/src/arc.js","webpack://pandora-fms-visual-console/./src/items/Percentile.ts","webpack://pandora-fms-visual-console/./src/items/Service.ts","webpack://pandora-fms-visual-console/./src/items/Odometer.ts","webpack://pandora-fms-visual-console/./src/VisualConsole.ts","webpack://pandora-fms-visual-console/./src/lib/AsyncTaskManager.ts","webpack://pandora-fms-visual-console/./src/index.ts"],"sourcesContent":["import TypedEvent, { Listener, Disposable } from \"./lib/TypedEvent\";\nimport { AnyObject, UnknownObject } from \"./lib/types\";\nimport { t } from \"./lib\";\n\ninterface InputGroupDataRequestedEvent {\n identifier: string;\n params: UnknownObject;\n done: (error: Error | null, data?: unknown) => void;\n}\n\n// TODO: Document\nexport abstract class InputGroup {\n private _name: string = \"\";\n private _element?: HTMLElement;\n public readonly initialData: Data;\n protected currentData: Partial = {};\n // Event manager for data requests.\n private readonly dataRequestedEventManager = new TypedEvent<\n InputGroupDataRequestedEvent\n >();\n\n public constructor(name: string, initialData: Data) {\n this.name = name;\n this.initialData = initialData;\n }\n\n public set name(name: string) {\n if (name.length === 0) throw new RangeError(\"empty name\");\n this._name = name;\n }\n\n public get name(): string {\n return this._name;\n }\n\n public get data(): Partial {\n return { ...this.currentData };\n }\n\n public get element(): HTMLElement {\n if (this._element == null) {\n const element = document.createElement(\"div\");\n element.className = `input-group input-group-${this.name}`;\n\n const content = this.createContent();\n\n if (content instanceof Array) {\n content.forEach(element.appendChild);\n } else {\n element.appendChild(content);\n }\n\n this._element = element;\n }\n\n return this._element;\n }\n\n public reset(): void {\n this.currentData = {};\n }\n\n protected updateData(data: Partial): void {\n this.currentData = {\n ...this.currentData,\n ...data\n };\n // TODO: Update item.\n }\n\n protected requestData(\n identifier: string,\n params: UnknownObject,\n done: (error: Error | null, data?: unknown) => void\n ): void {\n this.dataRequestedEventManager.emit({ identifier, params, done });\n }\n\n public onDataRequested(\n listener: Listener\n ): Disposable {\n return this.dataRequestedEventManager.on(listener);\n }\n\n protected abstract createContent(): HTMLElement | HTMLElement[];\n\n // public abstract get isValid(): boolean;\n}\n\nexport interface SubmitFormEvent {\n nativeEvent: Event;\n data: AnyObject;\n}\n\n// TODO: Document\nexport class FormContainer {\n public readonly title: string;\n private inputGroupsByName: { [name: string]: InputGroup } = {};\n private enabledInputGroupNames: string[] = [];\n // Event manager for submit events.\n private readonly submitEventManager = new TypedEvent();\n // Event manager for item data requests.\n private readonly itemDataRequestedEventManager = new TypedEvent<\n InputGroupDataRequestedEvent\n >();\n private handleItemDataRequested = this.itemDataRequestedEventManager.emit;\n\n public constructor(\n title: string,\n inputGroups: InputGroup[] = [],\n enabledInputGroups: string[] = []\n ) {\n this.title = title;\n\n if (inputGroups.length > 0) {\n this.inputGroupsByName = inputGroups.reduce((prevVal, inputGroup) => {\n // Add event handlers.\n inputGroup.onDataRequested(this.handleItemDataRequested);\n prevVal[inputGroup.name] = inputGroup;\n return prevVal;\n }, this.inputGroupsByName);\n }\n\n if (enabledInputGroups.length > 0) {\n this.enabledInputGroupNames = [\n ...this.enabledInputGroupNames,\n ...enabledInputGroups.filter(\n name => this.inputGroupsByName[name] != null\n )\n ];\n }\n }\n\n public getInputGroup(inputGroupName: string): InputGroup | null {\n return this.inputGroupsByName[inputGroupName] || null;\n }\n\n public addInputGroup(\n inputGroup: InputGroup,\n index: number | null = null\n ): FormContainer {\n // Add event handlers.\n inputGroup.onDataRequested(this.handleItemDataRequested);\n this.inputGroupsByName[inputGroup.name] = inputGroup;\n\n // Remove the current stored name if exist.\n this.enabledInputGroupNames = this.enabledInputGroupNames.filter(\n name => name !== inputGroup.name\n );\n\n if (index !== null) {\n if (index <= 0) {\n this.enabledInputGroupNames = [\n inputGroup.name,\n ...this.enabledInputGroupNames\n ];\n } else if (index >= this.enabledInputGroupNames.length) {\n this.enabledInputGroupNames = [\n ...this.enabledInputGroupNames,\n inputGroup.name\n ];\n } else {\n this.enabledInputGroupNames = [\n // part of the array before the specified index\n ...this.enabledInputGroupNames.slice(0, index),\n // inserted item\n inputGroup.name,\n // part of the array after the specified index\n ...this.enabledInputGroupNames.slice(index)\n ];\n }\n } else {\n this.enabledInputGroupNames = [\n ...this.enabledInputGroupNames,\n inputGroup.name\n ];\n }\n\n return this;\n }\n\n public removeInputGroup(inputGroupName: string): FormContainer {\n delete this.inputGroupsByName[inputGroupName];\n // Remove the current stored name.\n this.enabledInputGroupNames = this.enabledInputGroupNames.filter(\n name => name !== inputGroupName\n );\n\n return this;\n }\n\n public getFormElement(\n type: \"creation\" | \"update\" = \"update\"\n ): HTMLFormElement {\n const form = document.createElement(\"form\");\n form.id = \"visual-console-item-edition\";\n form.className = \"visual-console-item-edition\";\n form.addEventListener(\"submit\", e => {\n e.preventDefault();\n this.submitEventManager.emit({\n nativeEvent: e,\n data: this.enabledInputGroupNames.reduce((data, name) => {\n if (this.inputGroupsByName[name]) {\n data = {\n ...data,\n ...this.inputGroupsByName[name].data\n };\n }\n return data;\n }, {})\n });\n });\n\n const formContent = document.createElement(\"div\");\n formContent.className = \"input-groups\";\n\n this.enabledInputGroupNames.forEach(name => {\n if (this.inputGroupsByName[name]) {\n formContent.appendChild(this.inputGroupsByName[name].element);\n }\n });\n\n form.appendChild(formContent);\n\n return form;\n }\n\n public reset(): void {\n this.enabledInputGroupNames.forEach(name => {\n if (this.inputGroupsByName[name]) {\n this.inputGroupsByName[name].reset();\n }\n });\n }\n\n // public get isValid(): boolean {\n // for (let i = 0; i < this.enabledInputGroupNames.length; i++) {\n // const inputGroup = this.inputGroupsByName[this.enabledInputGroupNames[i]];\n // if (inputGroup && !inputGroup.isValid) return false;\n // }\n\n // return true;\n // }\n\n public onSubmit(listener: Listener): Disposable {\n return this.submitEventManager.on(listener);\n }\n\n public onInputGroupDataRequested(\n listener: Listener\n ): Disposable {\n return this.itemDataRequestedEventManager.on(listener);\n }\n}\n","import {\n Position,\n Size,\n AnyObject,\n WithModuleProps,\n ItemMeta,\n LinkedVisualConsoleProps,\n WithAgentProps\n} from \"./lib/types\";\nimport {\n sizePropsDecoder,\n positionPropsDecoder,\n parseIntOr,\n parseBoolean,\n notEmptyStringOr,\n replaceMacros,\n humanDate,\n humanTime,\n addMovementListener,\n debounce,\n addResizementListener,\n t\n} from \"./lib\";\nimport TypedEvent, { Listener, Disposable } from \"./lib/TypedEvent\";\nimport { FormContainer, InputGroup } from \"./Form\";\n\n// Enum: https://www.typescriptlang.org/docs/handbook/enums.html.\nexport const enum ItemType {\n STATIC_GRAPH = 0,\n MODULE_GRAPH = 1,\n SIMPLE_VALUE = 2,\n PERCENTILE_BAR = 3,\n LABEL = 4,\n ICON = 5,\n SIMPLE_VALUE_MAX = 6,\n SIMPLE_VALUE_MIN = 7,\n SIMPLE_VALUE_AVG = 8,\n PERCENTILE_BUBBLE = 9,\n SERVICE = 10,\n GROUP_ITEM = 11,\n BOX_ITEM = 12,\n LINE_ITEM = 13,\n AUTO_SLA_GRAPH = 14,\n CIRCULAR_PROGRESS_BAR = 15,\n CIRCULAR_INTERIOR_PROGRESS_BAR = 16,\n DONUT_GRAPH = 17,\n BARS_GRAPH = 18,\n CLOCK = 19,\n COLOR_CLOUD = 20,\n NETWORK_LINK = 21,\n ODOMETER = 22,\n BASIC_CHART = 23\n}\n\n// Base item properties. This interface should be extended by the item implementations.\nexport interface ItemProps extends Position, Size {\n readonly id: number;\n readonly type: ItemType;\n label: string | null;\n labelPosition: \"up\" | \"right\" | \"down\" | \"left\";\n isLinkEnabled: boolean;\n link: string | null;\n isOnTop: boolean;\n parentId: number | null;\n aclGroupId: number | null;\n cacheExpiration: number | null;\n colorStatus: string;\n cellId: number | null;\n alertOutline: boolean;\n}\n\nexport interface ItemClickEvent {\n item: VisualConsoleItem;\n nativeEvent: Event;\n}\n\n// FIXME: Fix type compatibility.\nexport interface ItemRemoveEvent {\n // data: Props;\n item: VisualConsoleItem;\n}\n\nexport interface ItemMovedEvent {\n item: VisualConsoleItem;\n prevPosition: Position;\n newPosition: Position;\n}\n\nexport interface ItemResizedEvent {\n item: VisualConsoleItem;\n prevSize: Size;\n newSize: Size;\n}\n\nexport interface ItemSelectionChangedEvent {\n selected: boolean;\n}\n\n/**\n * Extract a valid enum value from a raw label position value.\n * @param labelPosition Raw value.\n */\nconst parseLabelPosition = (\n labelPosition: unknown\n): ItemProps[\"labelPosition\"] => {\n switch (labelPosition) {\n case \"up\":\n case \"right\":\n case \"down\":\n case \"left\":\n return labelPosition;\n default:\n return \"down\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the item props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function itemBasePropsDecoder(data: AnyObject): ItemProps | never {\n if (data.id == null || isNaN(parseInt(data.id))) {\n throw new TypeError(\"invalid id.\");\n }\n if (data.type == null || isNaN(parseInt(data.type))) {\n throw new TypeError(\"invalid type.\");\n }\n\n return {\n id: parseInt(data.id),\n type: parseInt(data.type),\n label: notEmptyStringOr(data.label, null),\n labelPosition: parseLabelPosition(data.labelPosition),\n isLinkEnabled: parseBoolean(data.isLinkEnabled),\n link: notEmptyStringOr(data.link, null),\n isOnTop: parseBoolean(data.isOnTop),\n parentId: parseIntOr(data.parentId, null),\n aclGroupId: parseIntOr(data.aclGroupId, null),\n cacheExpiration: parseIntOr(data.cacheExpiration, null),\n colorStatus: notEmptyStringOr(data.colorStatus, \"#CCC\"),\n cellId: parseIntOr(data.cellId, null),\n alertOutline: parseBoolean(data.alertOutline),\n ...sizePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...positionPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\n//TODO: Document\nexport function titleItem(id: number): string {\n let title = \"\";\n switch (id) {\n case ItemType.STATIC_GRAPH:\n title = t(\"Static image\");\n break;\n case ItemType.MODULE_GRAPH:\n title = t(\"Module graph\");\n break;\n case ItemType.SIMPLE_VALUE:\n title = t(\"Simple value\");\n break;\n case ItemType.PERCENTILE_BAR:\n title = t(\"Percentile item\");\n break;\n case ItemType.LABEL:\n title = t(\"Label\");\n break;\n case ItemType.ICON:\n title = t(\"Icon\");\n break;\n case ItemType.SIMPLE_VALUE_MAX:\n title = t(\"Simple value\");\n break;\n case ItemType.SIMPLE_VALUE_MIN:\n title = t(\"Simple value\");\n break;\n case ItemType.SIMPLE_VALUE_AVG:\n title = t(\"Simple value\");\n break;\n case ItemType.PERCENTILE_BUBBLE:\n title = t(\"Percentile item\");\n break;\n case ItemType.SERVICE:\n title = t(\"Service\");\n break;\n case ItemType.GROUP_ITEM:\n title = t(\"Group\");\n break;\n case ItemType.BOX_ITEM:\n title = t(\"Box\");\n break;\n case ItemType.LINE_ITEM:\n title = t(\"Line\");\n break;\n case ItemType.AUTO_SLA_GRAPH:\n title = t(\"Event history graph\");\n break;\n case ItemType.CIRCULAR_PROGRESS_BAR:\n title = t(\"Percentile item\");\n break;\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n title = t(\"Percentile item\");\n break;\n case ItemType.DONUT_GRAPH:\n title = t(\"Serialized pie graph\");\n break;\n case ItemType.BARS_GRAPH:\n title = t(\"Bars graph\");\n break;\n case ItemType.CLOCK:\n title = t(\"Clock\");\n break;\n case ItemType.COLOR_CLOUD:\n title = t(\"Color cloud\");\n break;\n case ItemType.NETWORK_LINK:\n title = t(\"Network link\");\n break;\n case ItemType.ODOMETER:\n title = t(\"Odometer\");\n break;\n case ItemType.BASIC_CHART:\n title = t(\"Basic chart\");\n break;\n default:\n title = t(\"Item\");\n break;\n }\n\n return title;\n}\n\n/**\n * Base class of the visual console items. Should be extended to use its capabilities.\n */\nabstract class VisualConsoleItem {\n // Properties of the item.\n private itemProps: Props;\n // Metadata of the item.\n private _metadata: ItemMeta;\n // Reference to the DOM element which will contain the item.\n public elementRef: HTMLElement = document.createElement(\"div\");\n public labelElementRef: HTMLElement = document.createElement(\"div\");\n // Reference to the DOM element which will contain the view of the item which extends this class.\n protected childElementRef: HTMLElement = document.createElement(\"div\");\n // Event manager for click events.\n private readonly clickEventManager = new TypedEvent();\n // Event manager for double click events.\n private readonly dblClickEventManager = new TypedEvent();\n // Event manager for moved events.\n private readonly movedEventManager = new TypedEvent();\n // Event manager for stopped movement events.\n private readonly movementFinishedEventManager = new TypedEvent<\n ItemMovedEvent\n >();\n // Event manager for resized events.\n private readonly resizedEventManager = new TypedEvent();\n // Event manager for resize finished events.\n private readonly resizeFinishedEventManager = new TypedEvent<\n ItemResizedEvent\n >();\n // Event manager for remove events.\n private readonly removeEventManager = new TypedEvent();\n // Event manager for selection change events.\n private readonly selectionChangedEventManager = new TypedEvent<\n ItemSelectionChangedEvent\n >();\n // List of references to clean the event listeners.\n private readonly disposables: Disposable[] = [];\n\n // This function will only run the 2nd arg function after the time\n // of the first arg have passed after its last execution.\n private debouncedMovementSave = debounce(\n 500, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n // Update the metadata information.\n // Don't use the .meta property cause we don't need DOM updates.\n this._metadata.isBeingMoved = false;\n\n const prevPosition = {\n x: this.props.x,\n y: this.props.y\n };\n const newPosition = {\n x: x,\n y: y\n };\n\n if (!this.positionChanged(prevPosition, newPosition)) return;\n\n // Save the new position to the props.\n this.move(x, y);\n // Emit the movement event.\n this.movementFinishedEventManager.emit({\n item: this,\n prevPosition: prevPosition,\n newPosition: newPosition\n });\n }\n );\n // This property will store the function\n // to clean the movement listener.\n private removeMovement: Function | null = null;\n\n /**\n * Start the movement funtionality.\n * @param element Element to move inside its container.\n */\n private initMovementListener(element: HTMLElement): void {\n // Avoid line movement as 'block' force using circles.\n if (\n this.props.type == ItemType.LINE_ITEM ||\n this.props.type == ItemType.NETWORK_LINK\n ) {\n return;\n }\n\n this.removeMovement = addMovementListener(\n element,\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n const prevPosition = {\n x: this.props.x,\n y: this.props.y\n };\n const newPosition = { x, y };\n\n this.meta = {\n ...this.meta,\n isSelected: true\n };\n\n if (!this.positionChanged(prevPosition, newPosition)) return;\n\n // Update the metadata information.\n // Don't use the .meta property cause we don't need DOM updates.\n this._metadata.isBeingMoved = true;\n // Move the DOM element.\n this.moveElement(x, y);\n // Emit the movement event.\n this.movedEventManager.emit({\n item: this,\n prevPosition: prevPosition,\n newPosition: newPosition\n });\n // Run the save function.\n this.debouncedMovementSave(x, y);\n }\n );\n }\n /**\n * Stop the movement fun\n */\n private stopMovementListener(): void {\n if (this.removeMovement) {\n this.removeMovement();\n this.removeMovement = null;\n }\n }\n\n // This function will only run the 2nd arg function after the time\n // of the first arg have passed after its last execution.\n private debouncedResizementSave = debounce(\n 500, // ms.\n (width: Size[\"width\"], height: Size[\"height\"]) => {\n // Update the metadata information.\n // Don't use the .meta property cause we don't need DOM updates.\n this._metadata.isBeingResized = false;\n\n const prevSize = {\n width: this.props.width,\n height: this.props.height\n };\n const newSize = { width, height };\n\n if (!this.sizeChanged(prevSize, newSize)) return;\n\n // Save the new position to the props.\n this.resize(width, height);\n\n // Emit the resize finished event.\n this.resizeFinishedEventManager.emit({\n item: this,\n prevSize: prevSize,\n newSize: newSize\n });\n }\n );\n // This property will store the function\n // to clean the resizement listener.\n private removeResizement: Function | null = null;\n\n /**\n * Start the resizement funtionality.\n * @param element Element to move inside its container.\n */\n protected initResizementListener(element: HTMLElement): void {\n if (\n this.props.type == ItemType.LINE_ITEM ||\n this.props.type == ItemType.NETWORK_LINK\n ) {\n return;\n }\n this.removeResizement = addResizementListener(\n element,\n (width: Size[\"width\"], height: Size[\"height\"]) => {\n // Update the metadata information.\n // Don't use the .meta property cause we don't need DOM updates.\n this._metadata.isBeingResized = true;\n\n // The label it's outside the item's size, so we need\n // to get rid of its size to get the real size of the\n // item's content.\n if (this.props.label && this.props.label.length > 0) {\n const {\n width: labelWidth,\n height: labelHeight\n } = this.labelElementRef.getBoundingClientRect();\n\n switch (this.props.labelPosition) {\n case \"up\":\n case \"down\":\n height -= labelHeight;\n break;\n case \"left\":\n case \"right\":\n width -= labelWidth;\n break;\n }\n }\n\n const prevSize = {\n width: this.props.width,\n height: this.props.height\n };\n const newSize = { width, height };\n\n if (!this.sizeChanged(prevSize, newSize)) return;\n\n // Move the DOM element.\n this.resizeElement(width, height);\n // Emit the resizement event.\n this.resizedEventManager.emit({\n item: this,\n prevSize,\n newSize\n });\n // Run the save function.\n this.debouncedResizementSave(width, height);\n }\n );\n }\n /**\n * Stop the resizement functionality.\n */\n private stopResizementListener(): void {\n if (this.removeResizement) {\n this.removeResizement();\n this.removeResizement = null;\n }\n }\n\n /**\n * To create a new element which will be inside the item box.\n * @return Item.\n */\n protected abstract createDomElement(): HTMLElement;\n\n public constructor(\n props: Props,\n metadata: ItemMeta,\n deferInit: boolean = false\n ) {\n this.itemProps = props;\n this._metadata = metadata;\n\n if (!deferInit) this.init();\n }\n\n /**\n * To create and append the DOM elements.\n */\n protected init(): void {\n /*\n * Get a HTMLElement which represents the container box\n * of the Visual Console item. This element will manage\n * all the common things like click events, show a border\n * when hovered, etc.\n */\n this.elementRef = this.createContainerDomElement();\n this.labelElementRef = this.createLabelDomElement();\n\n /*\n * Get a HTMLElement which represents the custom view\n * of the Visual Console item. This element will be\n * different depending on the item implementation.\n */\n this.childElementRef = this.createDomElement();\n\n // Insert the elements into the container.\n this.elementRef.appendChild(this.childElementRef);\n this.elementRef.appendChild(this.labelElementRef);\n\n // Resize element.\n this.resizeElement(this.itemProps.width, this.itemProps.height);\n // Set label position.\n this.changeLabelPosition(this.itemProps.labelPosition);\n }\n\n /**\n * To create a new box for the visual console item.\n * @return Item box.\n */\n private createContainerDomElement(): HTMLElement {\n let box;\n if (this.props.isLinkEnabled) {\n box = document.createElement(\"a\") as HTMLAnchorElement;\n\n if (this.props.link) {\n box.href = this.props.link;\n } else {\n box.className = \"textDecorationNone\";\n }\n } else {\n box = document.createElement(\"div\") as HTMLDivElement;\n box.className = \"textDecorationNone\";\n }\n\n box.classList.add(\"visual-console-item\");\n if (this.props.isOnTop) {\n box.classList.add(\"is-on-top\");\n }\n box.style.left = `${this.props.x}px`;\n box.style.top = `${this.props.y}px`;\n\n if (this.props.alertOutline) {\n box.classList.add(\"is-alert-triggered\");\n }\n\n // Init the click listeners.\n box.addEventListener(\"dblclick\", e => {\n if (!this.meta.isBeingMoved && !this.meta.isBeingResized) {\n this.unSelectItem();\n this.selectItem();\n\n this.dblClickEventManager.emit({\n item: this,\n nativeEvent: e\n });\n }\n });\n box.addEventListener(\"click\", e => {\n if (this.meta.editMode) {\n e.preventDefault();\n e.stopPropagation();\n } else {\n // Add loading click item.\n if (this.itemProps.isLinkEnabled && this.itemProps.link != null) {\n const divParent = document.createElement(\"div\");\n divParent.className = \"div-visual-console-spinner\";\n const divSpinner = document.createElement(\"div\");\n divSpinner.className = \"visual-console-spinner\";\n divParent.appendChild(divSpinner);\n let path = e.composedPath();\n let containerId = \"visual-console-container\";\n for (let index = 0; index < path.length; index++) {\n const element = path[index] as HTMLInputElement;\n if (\n element.id != undefined &&\n element.id != null &&\n element.id != \"\"\n ) {\n if (element.id.includes(containerId) === true) {\n containerId = element.id;\n break;\n }\n }\n }\n\n const containerVC = document.getElementById(containerId);\n if (containerVC != null) {\n containerVC.classList.add(\"is-updating\");\n containerVC.appendChild(divParent);\n }\n }\n }\n\n if (!this.meta.isBeingMoved && !this.meta.isBeingResized) {\n this.clickEventManager.emit({\n item: this,\n nativeEvent: e\n });\n }\n });\n\n // Metadata state.\n if (this.meta.maintenanceMode) {\n box.classList.add(\"is-maintenance\");\n }\n if (this.meta.editMode) {\n box.classList.add(\"is-editing\");\n }\n if (this.meta.isFetching) {\n box.classList.add(\"is-fetching\");\n }\n if (this.meta.isUpdating) {\n box.classList.add(\"is-updating\");\n }\n if (this.meta.isSelected) {\n box.classList.add(\"is-selected\");\n }\n\n return box;\n }\n\n /**\n * To create a new label for the visual console item.\n * @return Item label.\n */\n protected createLabelDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"visual-console-item-label\";\n // Add the label if it exists.\n const label = this.getLabelWithMacrosReplaced();\n if (label.length > 0) {\n // Ugly table we need to use to replicate the legacy style.\n const table = document.createElement(\"table\");\n const row = document.createElement(\"tr\");\n const emptyRow1 = document.createElement(\"tr\");\n const emptyRow2 = document.createElement(\"tr\");\n const cell = document.createElement(\"td\");\n\n cell.innerHTML = label;\n row.appendChild(cell);\n table.appendChild(emptyRow1);\n table.appendChild(row);\n table.appendChild(emptyRow2);\n table.style.textAlign = \"center\";\n\n // Change the table size depending on its position.\n switch (this.props.labelPosition) {\n case \"up\":\n case \"down\":\n if (this.props.width > 0) {\n table.style.width = `${this.props.width}px`;\n table.style.height = \"\";\n }\n break;\n case \"left\":\n case \"right\":\n if (this.props.height > 0) {\n table.style.width = \"\";\n table.style.height = `${this.props.height}px`;\n }\n break;\n }\n\n // element.innerHTML = this.props.label;\n element.appendChild(table);\n }\n\n return element;\n }\n\n /**\n * Return the label stored into the props with some macros replaced.\n */\n protected getLabelWithMacrosReplaced(): string {\n // We assert that the props may have some needed properties.\n const props = this.props as Partial;\n\n return replaceMacros(\n [\n {\n macro: \"_date_\",\n value: humanDate(new Date())\n },\n {\n macro: \"_time_\",\n value: humanTime(new Date())\n },\n {\n macro: \"_agent_\",\n value: props.agentAlias != null ? props.agentAlias : \"\"\n },\n {\n macro: \"_agentdescription_\",\n value: props.agentDescription != null ? props.agentDescription : \"\"\n },\n {\n macro: \"_address_\",\n value: props.agentAddress != null ? props.agentAddress : \"\"\n },\n {\n macro: \"_module_\",\n value: props.moduleName != null ? props.moduleName : \"\"\n },\n {\n macro: \"_moduledescription_\",\n value: props.moduleDescription != null ? props.moduleDescription : \"\"\n }\n ],\n this.props.label || \"\"\n );\n }\n\n /**\n * To update the content element.\n * @return Item.\n */\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.createDomElement().innerHTML;\n }\n\n /**\n * Public accessor of the `props` property.\n * @return Properties.\n */\n public get props(): Props {\n return { ...this.itemProps }; // Return a copy.\n }\n\n /**\n * Public setter of the `props` property.\n * If the new props are different enough than the\n * stored props, a render would be fired.\n * @param newProps\n */\n public set props(newProps: Props) {\n this.setProps(newProps);\n }\n\n /**\n * Clasic and protected version of the setter of the `props` property.\n * Useful to override it from children classes.\n * @param newProps\n */\n protected setProps(newProps: Props) {\n const prevProps = this.props;\n // Update the internal props.\n this.itemProps = newProps;\n\n // From this point, things which rely on this.props can access to the changes.\n\n // Check if we should re-render.\n if (this.shouldBeUpdated(prevProps, newProps))\n this.render(prevProps, this._metadata);\n }\n\n /**\n * Public accessor of the `meta` property.\n * @return Properties.\n */\n public get meta(): ItemMeta {\n return { ...this._metadata }; // Return a copy.\n }\n\n /**\n * Public setter of the `meta` property.\n * If the new meta are different enough than the\n * stored meta, a render would be fired.\n * @param newProps\n */\n public set meta(newMetadata: ItemMeta) {\n this.setMeta(newMetadata);\n }\n\n /**\n * Classic version of the setter of the `meta` property.\n * Useful to override it from children classes.\n * @param newProps\n */\n public setMeta(newMetadata: Partial): void {\n const prevMetadata = this._metadata;\n // Update the internal meta.\n this._metadata = {\n ...prevMetadata,\n ...newMetadata\n };\n\n if (\n typeof newMetadata.isSelected !== \"undefined\" &&\n prevMetadata.isSelected !== newMetadata.isSelected\n ) {\n this.selectionChangedEventManager.emit({\n selected: newMetadata.isSelected\n });\n }\n\n // From this point, things which rely on this.props can access to the changes.\n\n // Check if we should re-render.\n // if (this.shouldBeUpdated(prevMetadata, newMetadata))\n this.render(this.itemProps, prevMetadata);\n }\n\n /**\n * To compare the previous and the new props and returns a boolean value\n * in case the difference is meaningfull enough to perform DOM changes.\n *\n * Here, the only comparision is done by reference.\n *\n * Override this function to perform a different comparision depending on the item needs.\n *\n * @param prevProps\n * @param newProps\n * @return Whether the difference is meaningful enough to perform DOM changes or not.\n */\n protected shouldBeUpdated(prevProps: Props, newProps: Props): boolean {\n return prevProps !== newProps;\n }\n\n /**\n * To recreate or update the HTMLElement which represents the item into the DOM.\n * @param prevProps If exists it will be used to only perform DOM updates instead of a full replace.\n */\n public render(\n prevProps: Props | null = null,\n prevMeta: ItemMeta | null = null\n ): void {\n if (prevProps) {\n this.updateDomElement(this.childElementRef);\n }\n // Move box.\n if (!prevProps || this.positionChanged(prevProps, this.props)) {\n this.moveElement(this.props.x, this.props.y);\n if (\n prevProps &&\n prevProps.type != ItemType.LINE_ITEM &&\n prevProps.type != ItemType.NETWORK_LINK\n ) {\n this.updateDomElement(this.childElementRef);\n }\n }\n // Resize box.\n if (!prevProps || this.sizeChanged(prevProps, this.props)) {\n this.resizeElement(this.props.width, this.props.height);\n if (\n prevProps &&\n prevProps.type != ItemType.LINE_ITEM &&\n prevProps.type != ItemType.NETWORK_LINK\n ) {\n this.updateDomElement(this.childElementRef);\n }\n }\n // Change label.\n const oldLabelHtml = this.labelElementRef.innerHTML;\n const newLabelHtml = this.createLabelDomElement().innerHTML;\n if (oldLabelHtml !== newLabelHtml) {\n this.labelElementRef.innerHTML = newLabelHtml;\n }\n // Change label position.\n if (!prevProps || prevProps.labelPosition !== this.props.labelPosition) {\n this.changeLabelPosition(this.props.labelPosition);\n }\n //Change z-index class is-on-top\n if (!prevProps || prevProps.isOnTop !== this.props.isOnTop) {\n if (this.props.isOnTop) {\n this.elementRef.classList.add(\"is-on-top\");\n } else {\n this.elementRef.classList.remove(\"is-on-top\");\n }\n }\n // Change link.\n if (prevProps && prevProps.isLinkEnabled !== this.props.isLinkEnabled) {\n const container = this.createContainerDomElement();\n // Add the children of the old element.\n container.innerHTML = this.elementRef.innerHTML;\n // Copy the attributes.\n const attrs = this.elementRef.attributes;\n for (let i = 0; i < attrs.length; i++) {\n if (attrs[i].nodeName !== \"id\") {\n let cloneIsNeeded = this.elementRef.getAttributeNode(\n attrs[i].nodeName\n );\n if (cloneIsNeeded !== null) {\n container.setAttributeNode(cloneIsNeeded.cloneNode());\n }\n }\n }\n // Replace the reference.\n if (this.elementRef.parentNode !== null) {\n this.elementRef.parentNode.replaceChild(container, this.elementRef);\n }\n\n // Changed the reference to the main element. It's ugly, but needed.\n this.elementRef = container;\n }\n\n if (\n prevProps &&\n this.props.isLinkEnabled &&\n prevProps.link !== this.props.link\n ) {\n if (this.props.link !== null) {\n this.elementRef.setAttribute(\"href\", this.props.link);\n }\n }\n\n // Change metadata related things.\n if (\n !prevMeta ||\n prevMeta.editMode !== this.meta.editMode ||\n prevMeta.maintenanceMode !== this.meta.maintenanceMode\n ) {\n if (this.meta.editMode && this.meta.maintenanceMode === false) {\n this.elementRef.classList.add(\"is-editing\");\n this.elementRef.classList.remove(\"is-alert-triggered\");\n } else {\n this.elementRef.classList.remove(\"is-editing\");\n\n if (this.props.alertOutline) {\n this.elementRef.classList.add(\"is-alert-triggered\");\n }\n }\n }\n\n if (!prevMeta || prevMeta.isFetching !== this.meta.isFetching) {\n if (this.meta.isFetching) {\n this.elementRef.classList.add(\"is-fetching\");\n } else {\n this.elementRef.classList.remove(\"is-fetching\");\n }\n }\n\n if (!prevMeta || prevMeta.isUpdating !== this.meta.isUpdating) {\n if (this.meta.isUpdating) {\n this.elementRef.classList.add(\"is-updating\");\n\n const divParent = document.createElement(\"div\");\n divParent.className = \"div-visual-console-spinner\";\n const divSpinner = document.createElement(\"div\");\n divSpinner.className = \"visual-console-spinner\";\n divParent.appendChild(divSpinner);\n this.elementRef.appendChild(divParent);\n } else {\n this.elementRef.classList.remove(\"is-updating\");\n\n const div = this.elementRef.querySelector(\n \".div-visual-console-spinner\"\n );\n if (div !== null) {\n const parent = div.parentElement;\n if (parent !== null) {\n parent.removeChild(div);\n }\n }\n }\n\n this.updateDomElement(this.childElementRef);\n }\n if (!prevMeta || prevMeta.isSelected !== this.meta.isSelected) {\n if (this.meta.isSelected) {\n this.elementRef.classList.add(\"is-selected\");\n } else {\n this.elementRef.classList.remove(\"is-selected\");\n }\n }\n }\n\n /**\n * To remove the event listeners and the elements from the DOM.\n */\n public remove(): void {\n // Call the remove event.\n this.removeEventManager.emit({ item: this });\n // Event listeners.\n this.disposables.forEach(disposable => {\n try {\n disposable.dispose();\n } catch (ignored) { } // eslint-disable-line no-empty\n });\n // VisualConsoleItem DOM element.\n this.elementRef.remove();\n }\n\n /**\n * Compare the previous and the new position and return\n * a boolean value in case the position changed.\n * @param prevPosition\n * @param newPosition\n * @return Whether the position changed or not.\n */\n protected positionChanged(\n prevPosition: Position,\n newPosition: Position\n ): boolean {\n return prevPosition.x !== newPosition.x || prevPosition.y !== newPosition.y;\n }\n\n /**\n * Move the label around the item content.\n * @param position Label position.\n */\n protected changeLabelPosition(position: Props[\"labelPosition\"]): void {\n switch (position) {\n case \"up\":\n this.elementRef.style.flexDirection = \"column-reverse\";\n break;\n case \"left\":\n this.elementRef.style.flexDirection = \"row-reverse\";\n break;\n case \"right\":\n this.elementRef.style.flexDirection = \"row\";\n break;\n case \"down\":\n default:\n this.elementRef.style.flexDirection = \"column\";\n break;\n }\n\n // Ugly table to show the label as its legacy counterpart.\n const tables = this.labelElementRef.getElementsByTagName(\"table\");\n const table = tables.length > 0 ? tables.item(0) : null;\n // Change the table size depending on its position.\n if (table) {\n switch (this.props.labelPosition) {\n case \"up\":\n case \"down\":\n if (this.props.width > 0) {\n table.style.width = `${this.props.width}px`;\n table.style.height = \"\";\n }\n break;\n case \"left\":\n case \"right\":\n if (this.props.height > 0) {\n table.style.width = \"\";\n table.style.height = `${this.props.height}px`;\n }\n break;\n }\n }\n }\n\n /**\n * Move the DOM container.\n * @param x Horizontal axis position.\n * @param y Vertical axis position.\n */\n protected moveElement(x: number, y: number): void {\n this.elementRef.style.left = `${x}px`;\n this.elementRef.style.top = `${y}px`;\n }\n\n /**\n * Update the position into the properties and move the DOM container.\n * @param x Horizontal axis position.\n * @param y Vertical axis position.\n */\n public move(x: number, y: number): void {\n this.moveElement(x, y);\n this.itemProps = {\n ...this.props, // Object spread: http://es6-features.org/#SpreadOperator\n x,\n y\n };\n }\n\n /**\n * Compare the previous and the new size and return\n * a boolean value in case the size changed.\n * @param prevSize\n * @param newSize\n * @return Whether the size changed or not.\n */\n protected sizeChanged(prevSize: Size, newSize: Size): boolean {\n return (\n prevSize.width !== newSize.width || prevSize.height !== newSize.height\n );\n }\n\n /**\n * Resize the DOM content container.\n * @param width\n * @param height\n */\n protected resizeElement(width: number, height: number): void {\n // The most valuable size is the content size.\n if (\n this.props.type != ItemType.LINE_ITEM &&\n this.props.type != ItemType.NETWORK_LINK\n ) {\n this.childElementRef.style.width = width > 0 ? `${width}px` : \"\";\n this.childElementRef.style.height = height > 0 ? `${height}px` : \"\";\n }\n\n if (this.props.label && this.props.label.length > 0) {\n // Ugly table to show the label as its legacy counterpart.\n const tables = this.labelElementRef.getElementsByTagName(\"table\");\n const table = tables.length > 0 ? tables.item(0) : null;\n\n if (table) {\n switch (this.props.labelPosition) {\n case \"up\":\n case \"down\":\n table.style.width = width > 0 ? `${width}px` : \"\";\n break;\n case \"left\":\n case \"right\":\n table.style.height = height > 0 ? `${height}px` : \"\";\n break;\n }\n }\n }\n }\n\n /**\n * Update the size into the properties and resize the DOM container.\n * @param width\n * @param height\n */\n public resize(width: number, height: number): void {\n this.resizeElement(width, height);\n this.itemProps = {\n ...this.props, // Object spread: http://es6-features.org/#SpreadOperator\n width,\n height\n };\n }\n\n /**\n * To add an event handler to the click of the linked visual console elements.\n * @param listener Function which is going to be executed when a linked console is clicked.\n */\n public onClick(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.clickEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the double click of the linked visual console elements.\n * @param listener Function which is going to be executed when a linked console is double clicked.\n */\n public onDblClick(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.dblClickEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the movement of visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onMoved(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.movedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the movement stopped of visual console elements.\n * @param listener Function which is going to be executed when a linked console's movement is finished.\n */\n public onMovementFinished(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.movementFinishedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the resizement of visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onResized(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.resizedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the resizement finish of visual console elements.\n * @param listener Function which is going to be executed when a linked console is finished resizing.\n */\n public onResizeFinished(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.resizeFinishedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the removal of the item.\n * @param listener Function which is going to be executed when a item is removed.\n */\n public onRemove(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.removeEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to item selection.\n * @param listener Function which is going to be executed when a item is removed.\n */\n public onSelectionChanged(\n listener: Listener\n ): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.selectionChangedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Select an item.\n * @param itemId Item Id.\n * @param unique To remove the selection of other items or not.\n */\n public selectItem(): void {\n this.meta = {\n ...this.meta,\n isSelected: true\n };\n\n this.initMovementListener(this.elementRef);\n if (\n this.props.type !== ItemType.LINE_ITEM &&\n this.props.type !== ItemType.NETWORK_LINK\n ) {\n this.initResizementListener(this.elementRef);\n }\n }\n\n /**\n * Unselect an item.\n * @param itemId Item Id.\n */\n public unSelectItem(): void {\n this.meta = {\n ...this.meta,\n isSelected: false\n };\n\n this.stopMovementListener();\n if (this.props.type !== ItemType.LINE_ITEM) {\n this.stopResizementListener();\n }\n }\n\n // TODO: Document\n public getFormContainer(): FormContainer {\n return VisualConsoleItem.getFormContainer(this.props);\n }\n\n // TODO: Document\n public static getFormContainer(props: Partial): FormContainer {\n const title: string = props.type ? titleItem(props.type) : t(\"Item\");\n return new FormContainer(title, [], []);\n }\n}\n\nexport default VisualConsoleItem;\n","import { AnyObject, WithModuleProps } from \"../lib/types\";\nimport { modulePropsDecoder, decodeBase64, stringIsEmpty, t } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type BarsGraphProps = {\n type: ItemType.BARS_GRAPH;\n html: string;\n backgroundColor: \"white\" | \"black\" | \"transparent\";\n typeGraph: \"horizontal\" | \"vertical\";\n gridColor: string;\n} & ItemProps &\n WithModuleProps;\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param BarsGraphProps Raw value.\n */\nconst parseBarsGraphProps = (\n backgroundColor: unknown\n): BarsGraphProps[\"backgroundColor\"] => {\n switch (backgroundColor) {\n case \"white\":\n case \"black\":\n case \"transparent\":\n return backgroundColor;\n default:\n return \"transparent\";\n }\n};\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param typeGraph Raw value.\n */\nconst parseTypeGraph = (typeGraph: unknown): BarsGraphProps[\"typeGraph\"] => {\n switch (typeGraph) {\n case \"horizontal\":\n case \"vertical\":\n return typeGraph;\n default:\n return \"vertical\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the bars graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function barsGraphPropsDecoder(data: AnyObject): BarsGraphProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.BARS_GRAPH,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n backgroundColor: parseBarsGraphProps(data.backgroundColor),\n typeGraph: parseTypeGraph(data.typeGraph),\n gridColor: stringIsEmpty(data.gridColor) ? \"#000000\" : data.gridColor,\n ...modulePropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class BarsGraph extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.innerHTML = this.props.html;\n element.className = \"bars-graph\";\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n setTimeout(() => {\n try {\n eval(scripts[i].innerHTML.trim());\n } catch (ignored) {} // eslint-disable-line no-empty\n }, 0);\n }\n }\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.props.html;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n }\n}\n","import {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n modulePropsDecoder,\n decodeBase64,\n stringIsEmpty,\n parseIntOr\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type BasicChartProps = {\n type: ItemType.BASIC_CHART;\n html: string;\n period: number | null;\n value: number | null;\n status: string;\n moduleNameColor: string;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the basic chart props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function basicChartPropsDecoder(\n data: AnyObject\n): BasicChartProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.BASIC_CHART,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n period: parseIntOr(data.period, null),\n value: parseFloat(data.value),\n status: stringIsEmpty(data.status) ? \"#B2B2B2\" : data.status,\n moduleNameColor: stringIsEmpty(data.moduleNameColor)\n ? \"#3f3f3f\"\n : data.moduleNameColor,\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class BasicChart extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n\n const header = document.createElement(\"div\");\n header.className = \"basic-chart-header\";\n\n const moduleName = document.createElement(\"h2\");\n moduleName.className = \"basic-chart-header-name\";\n moduleName.textContent = this.props.moduleName;\n moduleName.style.color = `${this.props.moduleNameColor}`;\n header.appendChild(moduleName);\n\n let value = \"\";\n if (this.props.value !== null) {\n value = this.number_format(this.props.value, false, \"\", 2, 1000);\n }\n\n const moduleValue = document.createElement(\"h2\");\n moduleValue.className = \"basic-chart-header-value\";\n moduleValue.textContent = `${value}`;\n moduleValue.style.color = this.props.status;\n header.appendChild(moduleValue);\n\n element.innerHTML = this.props.html;\n element.className = \"basic-chart\";\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Remove the overview graph.\n const legendP = element.getElementsByTagName(\"p\");\n for (let i = 0; i < legendP.length; i++) {\n legendP[i].style.margin = \"0px\";\n }\n\n // Remove the overview graph.\n const overviewGraphs = element.getElementsByClassName(\"overview_graph\");\n for (let i = 0; i < overviewGraphs.length; i++) {\n overviewGraphs[i].remove();\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n setTimeout(() => {\n try {\n eval(scripts[i].innerHTML.trim());\n } catch (ignored) {} // eslint-disable-line no-empty\n }, 0);\n }\n }\n\n element.innerHTML = this.props.html;\n element.insertBefore(header, element.firstChild);\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n const header = document.createElement(\"div\");\n header.className = \"basic-chart-header\";\n\n const moduleName = document.createElement(\"h2\");\n moduleName.className = \"basic-chart-header-name\";\n moduleName.textContent = this.props.moduleName;\n moduleName.style.color = `${this.props.moduleNameColor}`;\n header.appendChild(moduleName);\n\n let value = \"\";\n if (this.props.value !== null) {\n value = this.number_format(this.props.value, false, \"\", 2, 1000);\n }\n\n const moduleValue = document.createElement(\"h2\");\n moduleValue.className = \"basic-chart-header-value\";\n moduleValue.textContent = `${value}`;\n moduleValue.style.color = this.props.status;\n header.appendChild(moduleValue);\n\n element.innerHTML = this.props.html;\n element.insertBefore(header, element.firstChild);\n\n // Remove the overview graph.\n const legendP = element.getElementsByTagName(\"p\");\n for (let i = 0; i < legendP.length; i++) {\n legendP[i].style.margin = \"0px\";\n }\n\n // Remove the overview graph.\n const overviewGraphs = element.getElementsByClassName(\"overview_graph\");\n for (let i = 0; i < overviewGraphs.length; i++) {\n overviewGraphs[i].remove();\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n }\n\n protected number_format(\n number: number,\n force_integer: boolean,\n unit: string,\n short_data: number,\n divisor: number\n ) {\n divisor = typeof divisor !== \"undefined\" ? divisor : 1000;\n var decimals = 2;\n\n // Set maximum decimal precision to 99 in case short_data is not set.\n if (!short_data) {\n short_data = 99;\n }\n\n if (force_integer) {\n if (Math.round(number) != number) {\n return \"\";\n }\n } else {\n short_data++;\n const aux_decimals = this.pad(\"1\", short_data, 0);\n number =\n Math.round(number * Number.parseInt(aux_decimals)) /\n Number.parseInt(aux_decimals);\n }\n\n var shorts = [\"\", \"K\", \"M\", \"G\", \"T\", \"P\", \"E\", \"Z\", \"Y\"];\n var pos = 0;\n\n while (Math.abs(number) >= divisor) {\n // As long as the number can be divided by 1000 or 1024.\n pos++;\n number = number / divisor;\n }\n\n if (divisor) {\n number = Math.round(number * decimals) / decimals;\n } else {\n number = Math.round(number * decimals);\n }\n\n if (isNaN(number)) {\n number = 0;\n }\n\n return number + \" \" + shorts[pos] + unit;\n }\n\n protected pad(input: string, length: number, padding: number): string {\n var str = input + \"\";\n return length <= str.length\n ? str\n : this.pad(str + padding, length, padding);\n }\n}\n","import {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n modulePropsDecoder,\n decodeBase64,\n stringIsEmpty,\n t\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type DonutGraphProps = {\n type: ItemType.DONUT_GRAPH;\n html: string;\n legendBackgroundColor: string;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the donut graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function donutGraphPropsDecoder(\n data: AnyObject\n): DonutGraphProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.DONUT_GRAPH,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n legendBackgroundColor: stringIsEmpty(data.legendBackgroundColor)\n ? \"#ffffff\"\n : data.legendBackgroundColor,\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class DonutGraph extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"donut-graph\";\n element.innerHTML = this.props.html;\n element.style.backgroundColor = this.props.legendBackgroundColor;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n setTimeout(() => {\n try {\n eval(scripts[i].innerHTML.trim());\n } catch (ignored) {} // eslint-disable-line no-empty\n }, 0);\n }\n }\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.props.html;\n element.style.backgroundColor = this.props.legendBackgroundColor;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n }\n}\n","import { AnyObject, WithModuleProps } from \"../lib/types\";\nimport {\n modulePropsDecoder,\n parseIntOr,\n decodeBase64,\n stringIsEmpty,\n t\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type EventsHistoryProps = {\n type: ItemType.AUTO_SLA_GRAPH;\n maxTime: number | null;\n legendColor: string;\n html: string;\n} & ItemProps &\n WithModuleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the events history props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function eventsHistoryPropsDecoder(\n data: AnyObject\n): EventsHistoryProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.AUTO_SLA_GRAPH,\n maxTime: parseIntOr(data.maxTime, null),\n legendColor: data.legendColor,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n ...modulePropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class EventsHistory extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"events-history\";\n element.innerHTML = this.props.html;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n setTimeout(() => {\n try {\n eval(scripts[i].innerHTML.trim());\n } catch (ignored) {} // eslint-disable-line no-empty\n }, 0);\n }\n }\n\n var flotText = element.getElementsByClassName(\n \"noresizevc\"\n ) as HTMLCollectionOf;\n flotText[0].style.color = this.props.legendColor;\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.props.html;\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const aux = document.createElement(\"div\");\n aux.innerHTML = this.props.html;\n const scripts = aux.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n\n var flotText = element.getElementsByClassName(\n \"noresizevc\"\n ) as HTMLCollectionOf;\n flotText[0].style.color = this.props.legendColor;\n }\n}\n","import {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n modulePropsDecoder,\n decodeBase64,\n stringIsEmpty,\n parseIntOr\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type ModuleGraphProps = {\n type: ItemType.MODULE_GRAPH;\n html: string;\n backgroundType: \"white\" | \"black\" | \"transparent\";\n graphType: \"line\" | \"area\";\n period: number | null;\n customGraphId: number | null;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param backgroundType Raw value.\n */\nconst parseBackgroundType = (\n backgroundType: unknown\n): ModuleGraphProps[\"backgroundType\"] => {\n switch (backgroundType) {\n case \"white\":\n case \"black\":\n case \"transparent\":\n return backgroundType;\n default:\n return \"transparent\";\n }\n};\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param graphType Raw value.\n */\nconst parseGraphType = (graphType: unknown): ModuleGraphProps[\"graphType\"] => {\n switch (graphType) {\n case \"line\":\n case \"area\":\n return graphType;\n default:\n return \"line\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the module graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function moduleGraphPropsDecoder(\n data: AnyObject\n): ModuleGraphProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.MODULE_GRAPH,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n backgroundType: parseBackgroundType(data.backgroundType),\n period: parseIntOr(data.period, null),\n graphType: parseGraphType(data.graphType),\n customGraphId: parseIntOr(data.customGraphId, null),\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class ModuleGraph extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n\n element.innerHTML = this.props.html;\n element.className = \"module-graph\";\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n setTimeout(() => {\n try {\n eval(scripts[i].innerHTML.trim());\n } catch (ignored) {} // eslint-disable-line no-empty\n }, 0);\n }\n }\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.props.html;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n }\n}\n","import { IconDefinition } from \"@fortawesome/free-solid-svg-icons\";\nimport \"./FontAwesomeIcon.styles.css\";\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\ninterface ExtraProps {\n size?: \"small\" | \"medium\" | \"large\";\n color?: string;\n spin?: boolean;\n pulse?: boolean;\n}\n\nconst fontAwesomeIcon = (\n iconDefinition: IconDefinition,\n title: string,\n { size, color, spin, pulse }: ExtraProps = {}\n): HTMLElement => {\n const container = document.createElement(\"figure\");\n container.title = title;\n container.className = `fa fa-${iconDefinition.iconName}`;\n\n if (size) container.classList.add(`fa-${size}`);\n\n if (spin) container.classList.add(\"fa-spin\");\n else if (pulse) container.classList.add(\"fa-pulse\");\n\n const icon = document.createElementNS(svgNS, \"svg\");\n // Auto resize SVG using the view box magic: https://css-tricks.com/scale-svg/\n icon.setAttribute(\n \"viewBox\",\n `0 0 ${iconDefinition.icon[0]} ${iconDefinition.icon[1]}`\n );\n if (color) icon.setAttribute(\"fill\", color);\n\n // Path\n const path = document.createElementNS(svgNS, \"path\");\n const pathData =\n typeof iconDefinition.icon[4] === \"string\"\n ? iconDefinition.icon[4]\n : iconDefinition.icon[4][0];\n path.setAttribute(\"d\", pathData);\n\n icon.appendChild(path);\n container.appendChild(icon);\n\n return container;\n};\n\nexport default fontAwesomeIcon;\n","export interface Listener {\n (event: T): void;\n}\n\nexport interface Disposable {\n dispose: () => void;\n}\n\n/** passes through events as they happen. You will not get events from before you start listening */\nexport default class TypedEvent {\n private listeners: Listener[] = [];\n private listenersOncer: Listener[] = [];\n\n public on = (listener: Listener): Disposable => {\n this.listeners.push(listener);\n return {\n dispose: () => this.off(listener)\n };\n };\n\n public once = (listener: Listener): void => {\n this.listenersOncer.push(listener);\n };\n\n public off = (listener: Listener): void => {\n const callbackIndex = this.listeners.indexOf(listener);\n if (callbackIndex > -1) this.listeners.splice(callbackIndex, 1);\n };\n\n public emit = (event: T): void => {\n /** Update any general listeners */\n this.listeners.forEach(listener => listener(event));\n\n /** Clear the `once` queue */\n this.listenersOncer.forEach(listener => listener(event));\n this.listenersOncer = [];\n };\n\n public pipe = (te: TypedEvent): Disposable => this.on(e => te.emit(e));\n}\n","import {\n AnyObject,\n Position,\n Size,\n WithAgentProps,\n WithModuleProps,\n LinkedVisualConsoleProps,\n LinkedVisualConsolePropsStatus,\n UnknownObject,\n ItemMeta\n} from \"./types\";\n\nimport helpTipIcon from \"./help-tip.png\";\nimport fontAwesomeIcon from \"./FontAwesomeIcon\";\nimport { faPencilAlt, faListAlt } from \"@fortawesome/free-solid-svg-icons\";\nimport \"./autocomplete.css\";\n\n/**\n * Return a number or a default value from a raw value.\n * @param value Raw value from which we will try to extract a valid number.\n * @param defaultValue Default value to use if we cannot extract a valid number.\n * @return A valid number or the default value.\n */\nexport function parseIntOr(value: unknown, defaultValue: T): number | T {\n if (typeof value === \"number\") return value;\n if (typeof value === \"string\" && value.length > 0 && !isNaN(parseInt(value)))\n return parseInt(value);\n else return defaultValue;\n}\n\n/**\n * Return a number or a default value from a raw value.\n * @param value Raw value from which we will try to extract a valid number.\n * @param defaultValue Default value to use if we cannot extract a valid number.\n * @return A valid number or the default value.\n */\nexport function parseFloatOr(value: unknown, defaultValue: T): number | T {\n if (typeof value === \"number\") return value;\n if (\n typeof value === \"string\" &&\n value.length > 0 &&\n !isNaN(parseFloat(value))\n )\n return parseFloat(value);\n else return defaultValue;\n}\n\n/**\n * Check if a string exists and it's not empty.\n * @param value Value to check.\n * @return The check result.\n */\nexport function stringIsEmpty(value?: string | null): boolean {\n return value == null || value.length === 0;\n}\n\n/**\n * Return a not empty string or a default value from a raw value.\n * @param value Raw value from which we will try to extract a non empty string.\n * @param defaultValue Default value to use if we cannot extract a non empty string.\n * @return A non empty string or the default value.\n */\nexport function notEmptyStringOr(\n value: unknown,\n defaultValue: T\n): string | T {\n return typeof value === \"string\" && value.length > 0 ? value : defaultValue;\n}\n\n/**\n * Return a boolean from a raw value.\n * @param value Raw value from which we will try to extract the boolean.\n * @return A valid boolean value. false by default.\n */\nexport function parseBoolean(value: unknown): boolean {\n if (typeof value === \"boolean\") return value;\n else if (typeof value === \"number\") return value > 0;\n else if (typeof value === \"string\") return value === \"1\" || value === \"true\";\n else return false;\n}\n\n/**\n * Return a valid date or a default value from a raw value.\n * @param value Raw value from which we will try to extract a valid date.\n * @param defaultValue Default value to use if we cannot extract a valid date.\n * @return A valid date or the default value.\n */\nexport function parseDateOr(value: unknown, defaultValue: T): Date | T {\n if (value instanceof Date) return value;\n else if (typeof value === \"number\") return new Date(value * 1000);\n else if (\n typeof value === \"string\" &&\n !Number.isNaN(new Date(value).getTime())\n )\n return new Date(value);\n else return defaultValue;\n}\n\n/**\n * Pad the current string with another string (multiple times, if needed)\n * until the resulting string reaches the given length.\n * The padding is applied from the start (left) of the current string.\n * @param value Text that needs to be padded.\n * @param length Length of the returned text.\n * @param pad Text to add.\n * @return Padded text.\n */\nexport function leftPad(\n value: string | number,\n length: number,\n pad: string | number = \" \"\n): string {\n if (typeof value === \"number\") value = `${value}`;\n if (typeof pad === \"number\") pad = `${pad}`;\n\n const diffLength = length - value.length;\n if (diffLength === 0) return value;\n if (diffLength < 0) return value.substr(Math.abs(diffLength));\n\n if (diffLength === pad.length) return `${pad}${value}`;\n if (diffLength < pad.length) return `${pad.substring(0, diffLength)}${value}`;\n\n const repeatTimes = Math.floor(diffLength / pad.length);\n const restLength = diffLength - pad.length * repeatTimes;\n\n let newPad = \"\";\n for (let i = 0; i < repeatTimes; i++) newPad += pad;\n\n if (restLength === 0) return `${newPad}${value}`;\n return `${newPad}${pad.substring(0, restLength)}${value}`;\n}\n\n/* Decoders */\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the position.\n */\nexport function positionPropsDecoder(data: AnyObject): Position {\n return {\n x: parseIntOr(data.x, 0),\n y: parseIntOr(data.y, 0)\n };\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the size.\n * @throws Will throw a TypeError if the width and height are not valid numbers.\n */\nexport function sizePropsDecoder(data: AnyObject): Size | never {\n if (\n data.width == null ||\n isNaN(parseInt(data.width)) ||\n data.height == null ||\n isNaN(parseInt(data.height))\n ) {\n throw new TypeError(\"invalid size.\");\n }\n\n return {\n width: parseInt(data.width),\n height: parseInt(data.height)\n };\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the agent properties.\n */\nexport function agentPropsDecoder(data: AnyObject): WithAgentProps {\n const agentProps: WithAgentProps = {\n agentId: parseIntOr(data.agentId, null),\n agentName: notEmptyStringOr(data.agentName, null),\n agentAlias: notEmptyStringOr(data.agentAlias, null),\n agentDescription: notEmptyStringOr(data.agentDescription, null),\n agentAddress: notEmptyStringOr(data.agentAddress, null),\n agentDisabled: parseBoolean(data.agentDisabled)\n };\n\n return data.metaconsoleId != null\n ? {\n metaconsoleId: data.metaconsoleId,\n ...agentProps // Object spread: http://es6-features.org/#SpreadOperator\n }\n : agentProps;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the module and agent properties.\n */\nexport function modulePropsDecoder(data: AnyObject): WithModuleProps {\n return {\n moduleId: parseIntOr(data.moduleId, null),\n moduleName: notEmptyStringOr(data.moduleName, null),\n moduleDescription: notEmptyStringOr(data.moduleDescription, null),\n moduleDisabled: parseBoolean(data.moduleDisabled),\n ...agentPropsDecoder(data) // Object spread: http://es6-features.org/#SpreadOperator\n };\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the linked visual console properties.\n * @throws Will throw a TypeError if the status calculation properties are invalid.\n */\nexport function linkedVCPropsDecoder(\n data: AnyObject\n): LinkedVisualConsoleProps | never {\n let linkedLayoutStatusProps: LinkedVisualConsolePropsStatus = {\n linkedLayoutStatusType: \"default\"\n };\n switch (data.linkedLayoutStatusType) {\n case \"weight\": {\n const weight = parseIntOr(data.linkedLayoutStatusTypeWeight, null);\n if (weight == null)\n throw new TypeError(\"invalid status calculation properties.\");\n\n if (data.linkedLayoutStatusTypeWeight)\n linkedLayoutStatusProps = {\n linkedLayoutStatusType: \"weight\",\n linkedLayoutStatusTypeWeight: weight\n };\n break;\n }\n case \"service\": {\n const warningThreshold = parseIntOr(\n data.linkedLayoutStatusTypeWarningThreshold,\n null\n );\n const criticalThreshold = parseIntOr(\n data.linkedLayoutStatusTypeCriticalThreshold,\n null\n );\n if (warningThreshold == null || criticalThreshold == null) {\n throw new TypeError(\"invalid status calculation properties.\");\n }\n\n linkedLayoutStatusProps = {\n linkedLayoutStatusType: \"service\",\n linkedLayoutStatusTypeWarningThreshold: warningThreshold,\n linkedLayoutStatusTypeCriticalThreshold: criticalThreshold\n };\n break;\n }\n }\n\n return {\n linkedLayoutId: parseIntOr(data.linkedLayoutId, null),\n linkedLayoutNodeId: parseIntOr(data.linkedLayoutNodeId, null),\n ...linkedLayoutStatusProps // Object spread: http://es6-features.org/#SpreadOperator\n };\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the item's meta properties.\n */\nexport function itemMetaDecoder(data: UnknownObject): ItemMeta | never {\n const receivedAt = parseDateOr(data.receivedAt, null);\n if (receivedAt === null) throw new TypeError(\"invalid meta structure\");\n\n let error = null;\n if (data.error instanceof Error) error = data.error;\n else if (typeof data.error === \"string\") error = new Error(data.error);\n\n return {\n receivedAt,\n error,\n editMode: parseBoolean(data.editMode),\n maintenanceMode: parseBoolean(data.maintenanceMode),\n isFromCache: parseBoolean(data.isFromCache),\n isFetching: false,\n isUpdating: false,\n isBeingMoved: false,\n isBeingResized: false,\n isSelected: false,\n lineMode: false\n };\n}\n\n/**\n * To get a CSS rule with the most used prefixes.\n * @param ruleName Name of the CSS rule.\n * @param ruleValue Value of the CSS rule.\n * @return An array of rules with the prefixes applied.\n */\nexport function prefixedCssRules(\n ruleName: string,\n ruleValue: string\n): string[] {\n const rule = `${ruleName}: ${ruleValue};`;\n return [\n `-webkit-${rule}`,\n `-moz-${rule}`,\n `-ms-${rule}`,\n `-o-${rule}`,\n `${rule}`\n ];\n}\n\n/**\n * Decode a base64 string.\n * @param input Data encoded using base64.\n * @return Decoded data.\n */\nexport function decodeBase64(input: string): string {\n return decodeURIComponent(escape(window.atob(input)));\n}\n\n/**\n * Generate a date representation with the format 'd/m/Y'.\n * @param initialDate Date to be used instead of a generated one.\n * @param locale Locale to use if localization is required and available.\n * @example 24/02/2020.\n * @return Date representation.\n */\nexport function humanDate(date: Date, locale: string | null = null): string {\n if (locale && Intl && Intl.DateTimeFormat) {\n // Format using the user locale.\n const options: Intl.DateTimeFormatOptions = {\n day: \"2-digit\",\n month: \"2-digit\",\n year: \"numeric\"\n };\n return Intl.DateTimeFormat(locale, options).format(date);\n } else {\n // Use getDate, getDay returns the week day.\n const day = leftPad(date.getDate(), 2, 0);\n // The getMonth function returns the month starting by 0.\n const month = leftPad(date.getMonth() + 1, 2, 0);\n const year = leftPad(date.getFullYear(), 4, 0);\n\n // Format: 'd/m/Y'.\n return `${day}/${month}/${year}`;\n }\n}\n\n/**\n * Generate a time representation with the format 'hh:mm:ss'.\n * @param initialDate Date to be used instead of a generated one.\n * @example 01:34:09.\n * @return Time representation.\n */\nexport function humanTime(date: Date): string {\n const hours = leftPad(date.getHours(), 2, 0);\n const minutes = leftPad(date.getMinutes(), 2, 0);\n const seconds = leftPad(date.getSeconds(), 2, 0);\n\n return `${hours}:${minutes}:${seconds}`;\n}\n\ninterface Macro {\n macro: string | RegExp;\n value: string;\n}\n/**\n * Replace the macros of a text.\n * @param macros List of macros and their replacements.\n * @param text Text in which we need to replace the macros.\n */\nexport function replaceMacros(macros: Macro[], text: string): string {\n return macros.reduce(\n (acc, { macro, value }) => acc.replace(macro, value),\n text\n );\n}\n\n/**\n * Create a function which will limit the rate of execution of\n * the selected function to one time for the selected interval.\n * @param delay Interval.\n * @param fn Function to be executed at a limited rate.\n */\nexport function throttle(delay: number, fn: (...args: T[]) => R) {\n let last = 0;\n return (...args: T[]) => {\n const now = Date.now();\n if (now - last < delay) return;\n last = now;\n return fn(...args);\n };\n}\n\n/**\n * Create a function which will call the selected function only\n * after the interval time has passed after its last execution.\n * @param delay Interval.\n * @param fn Function to be executed after the last call.\n */\nexport function debounce(delay: number, fn: (...args: T[]) => void) {\n let timerRef: number | null = null;\n return (...args: T[]) => {\n if (timerRef !== null) window.clearTimeout(timerRef);\n timerRef = window.setTimeout(() => {\n fn(...args);\n timerRef = null;\n }, delay);\n };\n}\n\n/**\n * Retrieve the offset of an element relative to the page.\n * @param el Node used to calculate the offset.\n */\nfunction getOffset(el: HTMLElement | null, parent?: HTMLElement) {\n let x = 0;\n let y = 0;\n while (\n el &&\n !Number.isNaN(el.offsetLeft) &&\n !Number.isNaN(el.offsetTop) &&\n el !== parent\n ) {\n x += el.offsetLeft - el.scrollLeft;\n y += el.offsetTop - el.scrollTop;\n el = el.offsetParent as HTMLElement | null;\n }\n return { top: y, left: x };\n}\n\n/**\n * Add the grab & move functionality to a certain element inside it's container.\n *\n * @param element Element to move.\n * @param onMoved Function to execute when the element moves.\n * @param altContainer Alternative element to contain the moved element.\n *\n * @return A function which will clean the event handlers when executed.\n */\nexport function addMovementListener(\n element: HTMLElement,\n onMoved: (x: Position[\"x\"], y: Position[\"y\"]) => void,\n altContainer?: HTMLElement\n): Function {\n const container = altContainer || (element.parentElement as HTMLElement);\n\n // Store the initial draggable state.\n const isDraggable = element.draggable;\n // Init the coordinates.\n let lastX: Position[\"x\"] = 0;\n let lastY: Position[\"y\"] = 0;\n let lastMouseX: Position[\"x\"] = 0;\n let lastMouseY: Position[\"y\"] = 0;\n let mouseElementOffsetX: Position[\"x\"] = 0;\n let mouseElementOffsetY: Position[\"y\"] = 0;\n // Bounds.\n let containerBounds = container.getBoundingClientRect();\n let containerOffset = getOffset(container);\n let containerTop = containerOffset.top;\n let containerBottom = containerTop + containerBounds.height;\n let containerLeft = containerOffset.left;\n let containerRight = containerLeft + containerBounds.width;\n let elementBounds = element.getBoundingClientRect();\n let borderWidth = window.getComputedStyle(element).borderWidth || \"0\";\n let borderFix = Number.parseInt(borderWidth) * 2;\n\n // Will run onMoved 32ms after its last execution.\n const debouncedMovement = debounce(32, onMoved);\n // Will run onMoved one time max every 16ms.\n const throttledMovement = throttle(16, onMoved);\n\n const handleMove = (e: MouseEvent) => {\n // Calculate the new element coordinates.\n let x = 0;\n let y = 0;\n\n const mouseX = e.pageX;\n const mouseY = e.pageY;\n const mouseDeltaX = mouseX - lastMouseX;\n const mouseDeltaY = mouseY - lastMouseY;\n\n const minX = 0;\n const maxX = containerBounds.width - elementBounds.width + borderFix;\n const minY = 0;\n const maxY = containerBounds.height - elementBounds.height + borderFix;\n\n const outOfBoundsLeft =\n mouseX < containerLeft ||\n (lastX === 0 &&\n mouseDeltaX > 0 &&\n mouseX < containerLeft + mouseElementOffsetX);\n const outOfBoundsRight =\n mouseX > containerRight ||\n mouseDeltaX + lastX + elementBounds.width - borderFix >\n containerBounds.width ||\n (lastX === maxX &&\n mouseDeltaX < 0 &&\n mouseX > containerLeft + maxX + mouseElementOffsetX);\n const outOfBoundsTop =\n mouseY < containerTop ||\n (lastY === 0 &&\n mouseDeltaY > 0 &&\n mouseY < containerTop + mouseElementOffsetY);\n const outOfBoundsBottom =\n mouseY > containerBottom ||\n mouseDeltaY + lastY + elementBounds.height - borderFix >\n containerBounds.height ||\n (lastY === maxY &&\n mouseDeltaY < 0 &&\n mouseY > containerTop + maxY + mouseElementOffsetY);\n\n if (outOfBoundsLeft) x = minX;\n else if (outOfBoundsRight) x = maxX;\n else x = mouseDeltaX + lastX;\n\n if (outOfBoundsTop) y = minY;\n else if (outOfBoundsBottom) y = maxY;\n else y = mouseDeltaY + lastY;\n\n if (x < 0) x = minX;\n if (y < 0) y = minY;\n\n // Store the last mouse coordinates.\n lastMouseX = mouseX;\n lastMouseY = mouseY;\n\n if (x === lastX && y === lastY) return;\n\n // Run the movement events.\n throttledMovement(x, y);\n debouncedMovement(x, y);\n\n // Store the coordinates of the element.\n lastX = x;\n lastY = y;\n };\n const handleEnd = () => {\n // Reset the positions.\n lastX = 0;\n lastY = 0;\n lastMouseX = 0;\n lastMouseY = 0;\n // Remove the move event.\n document.removeEventListener(\"mousemove\", handleMove);\n // Clean itself.\n document.removeEventListener(\"mouseup\", handleEnd);\n // Reset the draggable property to its initial state.\n element.draggable = isDraggable;\n // Reset the body selection property to a default state.\n document.body.style.userSelect = \"auto\";\n };\n const handleStart = (e: MouseEvent) => {\n // Avoid starting the movement on right click.\n if (e.button === 2) return;\n\n e.stopPropagation();\n\n // Disable the drag temporarily.\n element.draggable = false;\n\n // Fix for Firefox browser.\n element.setAttribute(\"ondragstart\", \"return false;\");\n element.setAttribute(\"draggable\", \"false\");\n\n // Store the difference between the cursor and\n // the initial coordinates of the element.\n const elementOffset = getOffset(element, container);\n lastX = elementOffset.left;\n lastY = elementOffset.top;\n\n // Store the mouse position.\n lastMouseX = e.pageX;\n lastMouseY = e.pageY;\n // Store the relative position between the mouse and the element.\n mouseElementOffsetX = e.offsetX;\n mouseElementOffsetY = e.offsetY;\n\n // Initialize the bounds.\n containerBounds = container.getBoundingClientRect();\n containerOffset = getOffset(container);\n containerTop = containerOffset.top;\n containerBottom = containerTop + containerBounds.height;\n containerLeft = containerOffset.left;\n containerRight = containerLeft + containerBounds.width;\n elementBounds = element.getBoundingClientRect();\n borderWidth = window.getComputedStyle(element).borderWidth || \"0\";\n borderFix = Number.parseInt(borderWidth) * 2;\n\n // Listen to the mouse movement.\n document.addEventListener(\"mousemove\", handleMove);\n // Listen to the moment when the mouse click is not pressed anymore.\n document.addEventListener(\"mouseup\", handleEnd);\n // Limit the mouse selection of the body.\n document.body.style.userSelect = \"none\";\n };\n\n // Event to listen the init of the movement.\n element.addEventListener(\"mousedown\", handleStart);\n\n // Returns a function to clean the event listeners.\n return () => {\n element.removeEventListener(\"mousedown\", handleStart);\n handleEnd();\n };\n}\n\n/**\n * Add the grab & resize functionality to a certain element.\n *\n * @param element Element to move.\n * @param onResized Function to execute when the element is resized.\n *\n * @return A function which will clean the event handlers when executed.\n */\nexport function addResizementListener(\n element: HTMLElement,\n onResized: (x: Position[\"x\"], y: Position[\"y\"]) => void\n): Function {\n const minWidth = 15;\n const minHeight = 15;\n\n const resizeDraggable = document.createElement(\"div\");\n resizeDraggable.className = \"resize-draggable\";\n element.appendChild(resizeDraggable);\n\n // Container of the resizable element.\n const container = element.parentElement as HTMLElement;\n // Store the initial draggable state.\n const isDraggable = element.draggable;\n // Init the coordinates.\n let lastWidth: Size[\"width\"] = 0;\n let lastHeight: Size[\"height\"] = 0;\n let lastMouseX: Position[\"x\"] = 0;\n let lastMouseY: Position[\"y\"] = 0;\n let mouseElementOffsetX: Position[\"x\"] = 0;\n let mouseElementOffsetY: Position[\"y\"] = 0;\n // Init the bounds.\n let containerBounds = container.getBoundingClientRect();\n let containerOffset = getOffset(container);\n let containerTop = containerOffset.top;\n let containerBottom = containerTop + containerBounds.height;\n let containerLeft = containerOffset.left;\n let containerRight = containerLeft + containerBounds.width;\n let elementOffset = getOffset(element);\n let elementTop = elementOffset.top;\n let elementLeft = elementOffset.left;\n let borderWidth = window.getComputedStyle(element).borderWidth || \"0\";\n let borderFix = Number.parseInt(borderWidth);\n\n // Will run onResized 32ms after its last execution.\n const debouncedResizement = debounce(32, onResized);\n // Will run onResized one time max every 16ms.\n const throttledResizement = throttle(16, onResized);\n\n const handleResize = (e: MouseEvent) => {\n // Calculate the new element coordinates.\n let width = lastWidth + (e.pageX - lastMouseX);\n let height = lastHeight + (e.pageY - lastMouseY);\n\n if (width === lastWidth && height === lastHeight) return;\n\n if (\n width < lastWidth &&\n e.pageX > elementLeft + (lastWidth - mouseElementOffsetX)\n )\n return;\n\n if (width < minWidth) {\n // Minimum value.\n width = minWidth;\n } else if (width + elementLeft - borderFix / 2 >= containerRight) {\n // Limit the size to the container.\n width = containerRight - elementLeft;\n }\n if (height < minHeight) {\n // Minimum value.\n height = minHeight;\n } else if (height + elementTop - borderFix / 2 >= containerBottom) {\n // Limit the size to the container.\n height = containerBottom - elementTop;\n }\n\n // Run the movement events.\n throttledResizement(width, height);\n debouncedResizement(width, height);\n\n // Store the coordinates of the element.\n lastWidth = width;\n lastHeight = height;\n // Store the last mouse coordinates.\n lastMouseX = e.pageX;\n lastMouseY = e.pageY;\n };\n const handleEnd = () => {\n // Reset the positions.\n lastWidth = 0;\n lastHeight = 0;\n lastMouseX = 0;\n lastMouseY = 0;\n mouseElementOffsetX = 0;\n mouseElementOffsetY = 0;\n // Remove the move event.\n document.removeEventListener(\"mousemove\", handleResize);\n // Clean itself.\n document.removeEventListener(\"mouseup\", handleEnd);\n // Reset the draggable property to its initial state.\n element.draggable = isDraggable;\n // Reset the body selection property to a default state.\n document.body.style.userSelect = \"auto\";\n };\n const handleStart = (e: MouseEvent) => {\n e.stopPropagation();\n\n // Disable the drag temporarily.\n element.draggable = false;\n\n // Store the difference between the cursor and\n // the initial coordinates of the element.\n const { width, height } = element.getBoundingClientRect();\n lastWidth = width;\n lastHeight = height;\n // Store the mouse position.\n lastMouseX = e.pageX;\n lastMouseY = e.pageY;\n // Store the relative position between the mouse and the element.\n mouseElementOffsetX = e.offsetX;\n mouseElementOffsetY = e.offsetY;\n\n // Initialize the bounds.\n containerBounds = container.getBoundingClientRect();\n containerOffset = getOffset(container);\n containerTop = containerOffset.top;\n containerBottom = containerTop + containerBounds.height;\n containerLeft = containerOffset.left;\n containerRight = containerLeft + containerBounds.width;\n elementOffset = getOffset(element);\n elementTop = elementOffset.top;\n elementLeft = elementOffset.left;\n\n // Listen to the mouse movement.\n document.addEventListener(\"mousemove\", handleResize);\n // Listen to the moment when the mouse click is not pressed anymore.\n document.addEventListener(\"mouseup\", handleEnd);\n // Limit the mouse selection of the body.\n document.body.style.userSelect = \"none\";\n };\n\n // Event to listen the init of the movement.\n resizeDraggable.addEventListener(\"mousedown\", handleStart);\n\n // Returns a function to clean the event listeners.\n return () => {\n resizeDraggable.remove();\n handleEnd();\n };\n}\n\n// TODO: Document and code\nexport function t(text: string): string {\n return text;\n}\n\nexport function helpTip(text: string): HTMLElement {\n const container = document.createElement(\"a\");\n container.className = \"tip\";\n const icon = document.createElement(\"img\");\n icon.src = helpTipIcon;\n icon.className = \"forced_title\";\n icon.setAttribute(\"alt\", text);\n icon.setAttribute(\"data-title\", text);\n icon.setAttribute(\"data-use_title_for_force_title\", \"1\");\n\n container.appendChild(icon);\n\n return container;\n}\n\ninterface PeriodSelectorOption {\n value: number;\n text: string;\n}\nexport function periodSelector(\n selectedValue: PeriodSelectorOption[\"value\"] | null,\n emptyOption: PeriodSelectorOption | null,\n options: PeriodSelectorOption[],\n onChange: (value: PeriodSelectorOption[\"value\"]) => void\n): HTMLElement {\n if (selectedValue === null) selectedValue = 0;\n const initialValue = emptyOption ? emptyOption.value : 0;\n let currentValue: number =\n selectedValue != null ? selectedValue : initialValue;\n // Main container.\n const container = document.createElement(\"div\");\n // Container for the period selector.\n const periodsContainer = document.createElement(\"div\");\n const selectPeriods = document.createElement(\"select\");\n const useManualPeriodsBtn = document.createElement(\"a\");\n // Container for the custom period input.\n const manualPeriodsContainer = document.createElement(\"div\");\n const inputTimeValue = document.createElement(\"input\");\n const unitsSelect = document.createElement(\"select\");\n const usePeriodsBtn = document.createElement(\"a\");\n // Units to multiply the custom period input.\n const unitOptions: { value: string; text: string }[] = [\n { value: \"1\", text: t(\"Seconds\").toLowerCase() },\n { value: \"60\", text: t(\"Minutes\").toLowerCase() },\n { value: \"3600\", text: t(\"Hours\").toLowerCase() },\n { value: \"86400\", text: t(\"Days\").toLowerCase() },\n { value: \"604800\", text: t(\"Weeks\").toLowerCase() },\n { value: `${86400 * 30}`, text: t(\"Months\").toLowerCase() },\n { value: `${86400 * 30 * 12}`, text: t(\"Years\").toLowerCase() }\n ];\n\n // Will be executed every time the value changes.\n const handleChange = (value: number) => {\n currentValue = value;\n onChange(currentValue);\n };\n // Will return the first period option smaller than the value.\n const findPeriodsOption = (value: number) =>\n options\n .sort((a, b) => (a.value < b.value ? 1 : -1))\n .find(optionVal => value >= optionVal.value);\n // Will return the first multiple of the value using the custom input multipliers.\n const findManualPeriodsOptionValue = (value: number) =>\n unitOptions\n .map(unitOption => Number.parseInt(unitOption.value))\n .sort((a, b) => (a < b ? 1 : -1))\n .find(optionVal => value % optionVal === 0);\n // Will find and set a valid option for the period selector.\n const setPeriodsValue = (value: number) => {\n let option = findPeriodsOption(value);\n selectPeriods.value = `${option ? option.value : initialValue}`;\n };\n // Will transform the value to show the perfect fit for the custom input period.\n const setManualPeriodsValue = (value: number) => {\n const optionVal = findManualPeriodsOptionValue(value);\n if (optionVal) {\n inputTimeValue.value = `${value / optionVal}`;\n unitsSelect.value = `${optionVal}`;\n } else {\n inputTimeValue.value = `${value}`;\n unitsSelect.value = \"1\";\n }\n };\n\n // Will modify the value to show the perfect fit for this element and show its container.\n const showPeriods = () => {\n let option = findPeriodsOption(currentValue);\n const newValue = option ? option.value : initialValue;\n selectPeriods.value = `${newValue}`;\n\n if (newValue !== currentValue) handleChange(newValue);\n\n container.replaceChild(periodsContainer, manualPeriodsContainer);\n };\n // Will modify the value to show the perfect fit for this element and show its container.\n const showManualPeriods = () => {\n const optionVal = findManualPeriodsOptionValue(currentValue);\n\n if (optionVal) {\n inputTimeValue.value = `${currentValue / optionVal}`;\n unitsSelect.value = `${optionVal}`;\n } else {\n inputTimeValue.value = `${currentValue}`;\n unitsSelect.value = \"1\";\n }\n\n container.replaceChild(manualPeriodsContainer, periodsContainer);\n };\n\n // Append the elements\n\n periodsContainer.appendChild(selectPeriods);\n periodsContainer.appendChild(useManualPeriodsBtn);\n\n manualPeriodsContainer.appendChild(inputTimeValue);\n manualPeriodsContainer.appendChild(unitsSelect);\n manualPeriodsContainer.appendChild(usePeriodsBtn);\n\n if (\n options.find(option => option.value === selectedValue) ||\n (emptyOption && emptyOption.value === selectedValue)\n ) {\n // Start with the custom periods select.\n container.appendChild(periodsContainer);\n } else {\n // Start with the manual time input\n container.appendChild(manualPeriodsContainer);\n }\n\n // Set and fill the elements.\n\n // Periods selector.\n\n selectPeriods.addEventListener(\"change\", (e: Event) =>\n handleChange(\n parseIntOr((e.target as HTMLSelectElement).value, initialValue)\n )\n );\n if (emptyOption) {\n const optionElem = document.createElement(\"option\");\n optionElem.value = `${emptyOption.value}`;\n optionElem.text = emptyOption.text;\n selectPeriods.appendChild(optionElem);\n }\n options.forEach(option => {\n const optionElem = document.createElement(\"option\");\n optionElem.value = `${option.value}`;\n optionElem.text = option.text;\n selectPeriods.appendChild(optionElem);\n });\n\n setPeriodsValue(selectedValue);\n\n useManualPeriodsBtn.appendChild(\n fontAwesomeIcon(faPencilAlt, t(\"Show manual period input\"), {\n size: \"small\"\n })\n );\n useManualPeriodsBtn.addEventListener(\"click\", e => {\n e.preventDefault();\n showManualPeriods();\n });\n\n // Manual periods input.\n\n inputTimeValue.type = \"number\";\n inputTimeValue.min = \"0\";\n inputTimeValue.required = true;\n inputTimeValue.addEventListener(\"change\", (e: Event) =>\n handleChange(\n parseIntOr((e.target as HTMLSelectElement).value, 0) *\n parseIntOr(unitsSelect.value, 1)\n )\n );\n // Select for time units.\n unitsSelect.addEventListener(\"change\", (e: Event) =>\n handleChange(\n parseIntOr(inputTimeValue.value, 0) *\n parseIntOr((e.target as HTMLSelectElement).value, 1)\n )\n );\n unitOptions.forEach(option => {\n const optionElem = document.createElement(\"option\");\n optionElem.value = `${option.value}`;\n optionElem.text = option.text;\n unitsSelect.appendChild(optionElem);\n });\n\n setManualPeriodsValue(selectedValue);\n\n usePeriodsBtn.appendChild(\n fontAwesomeIcon(faListAlt, t(\"Show periods selector\"), { size: \"small\" })\n );\n usePeriodsBtn.addEventListener(\"click\", e => {\n e.preventDefault();\n showPeriods();\n });\n\n return container;\n}\n\n/**\n * Cuts the text if their length is greater than the selected max length\n * and applies the selected ellipse to the result text.\n * @param str Text to cut\n * @param max Maximum length after cutting the text\n * @param ellipse String to be added to the cutted text\n * @returns Full text or text cutted with the ellipse\n */\nexport function ellipsize(\n str: string,\n max: number = 140,\n ellipse: string = \"…\"\n): string {\n return str.trim().length > max ? str.substr(0, max).trim() + ellipse : str;\n}\n\n// TODO: Document\nexport function autocompleteInput(\n initialValue: string | null,\n onDataRequested: (value: string, done: (data: T[]) => void) => void,\n renderListElement: (data: T) => HTMLElement,\n onSelected: (data: T) => string\n): HTMLElement {\n const container = document.createElement(\"div\");\n container.classList.add(\"autocomplete\");\n\n const input = document.createElement(\"input\");\n input.type = \"text\";\n input.required = true;\n if (initialValue !== null) input.value = initialValue;\n\n const list = document.createElement(\"div\");\n list.classList.add(\"autocomplete-items\");\n\n const cleanList = () => {\n list.innerHTML = \"\";\n };\n\n input.addEventListener(\"keyup\", e => {\n const value = (e.target as HTMLInputElement).value;\n if (value) {\n onDataRequested(value, data => {\n cleanList();\n if (data instanceof Array) {\n data.forEach(item => {\n const listElement = renderListElement(item);\n listElement.addEventListener(\"click\", () => {\n input.value = onSelected(item);\n cleanList();\n });\n list.appendChild(listElement);\n });\n }\n });\n } else {\n cleanList();\n }\n });\n\n container.appendChild(input);\n container.appendChild(list);\n\n return container;\n}\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// define __esModule on exports\n__webpack_require__.r = function(exports) {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","import {\n WithModuleProps,\n LinkedVisualConsoleProps,\n AnyObject\n} from \"../lib/types\";\n\nimport {\n modulePropsDecoder,\n linkedVCPropsDecoder,\n notEmptyStringOr\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type StaticGraphProps = {\n type: ItemType.STATIC_GRAPH;\n imageSrc: string; // URL?\n showLastValueTooltip: \"default\" | \"enabled\" | \"disabled\";\n statusImageSrc: string | null; // URL?\n lastValue: string | null;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param showLastValueTooltip Raw value.\n */\nconst parseShowLastValueTooltip = (\n showLastValueTooltip: unknown\n): StaticGraphProps[\"showLastValueTooltip\"] => {\n switch (showLastValueTooltip) {\n case \"default\":\n case \"enabled\":\n case \"disabled\":\n return showLastValueTooltip;\n default:\n return \"default\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the static graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function staticGraphPropsDecoder(\n data: AnyObject\n): StaticGraphProps | never {\n if (typeof data.imageSrc !== \"string\" || data.imageSrc.length === 0) {\n throw new TypeError(\"invalid image src.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.STATIC_GRAPH,\n imageSrc: data.imageSrc,\n showLastValueTooltip: parseShowLastValueTooltip(data.showLastValueTooltip),\n statusImageSrc: notEmptyStringOr(data.statusImageSrc, null),\n lastValue: notEmptyStringOr(data.lastValue, null),\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class StaticGraph extends Item {\n protected createDomElement(): HTMLElement {\n const imgSrc = this.props.statusImageSrc || this.props.imageSrc;\n const element = document.createElement(\"div\");\n element.className = \"static-graph\";\n element.setAttribute(\"ondragstart\", \"return false;\");\n element.setAttribute(\"draggable\", \"false\");\n element.style.backgroundImage = `url(${imgSrc})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Show last value in a tooltip.\n if (\n this.props.lastValue !== null &&\n this.props.showLastValueTooltip !== \"disabled\"\n ) {\n element.className = \"static-graph image forced_title\";\n element.setAttribute(\"data-use_title_for_force_title\", \"1\");\n element.setAttribute(\"data-title\", this.props.lastValue);\n }\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n const imgSrc = this.props.statusImageSrc || this.props.imageSrc;\n element.style.backgroundImage = `url(${imgSrc})`;\n }\n}\n","import { LinkedVisualConsoleProps, AnyObject } from \"../lib/types\";\nimport { linkedVCPropsDecoder } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type IconProps = {\n type: ItemType.ICON;\n image: string;\n imageSrc: string; // URL?\n} & ItemProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the icon props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function iconPropsDecoder(data: AnyObject): IconProps | never {\n if (typeof data.imageSrc !== \"string\" || data.imageSrc.length === 0) {\n throw new TypeError(\"invalid image src.\");\n }\n\n if (typeof data.image !== \"string\" || data.image.length === 0) {\n throw new TypeError(\"invalid image.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.ICON,\n image: data.image,\n imageSrc: data.imageSrc,\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class Icon extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"icon \" + this.props.image;\n element.style.backgroundImage = `url(${this.props.imageSrc})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n element.style.backgroundImage = `url(${this.props.imageSrc})`;\n }\n}\n","/*!\n * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */\nvar prefix = \"fas\";\nvar faAd = {\n prefix: 'fas',\n iconName: 'ad',\n icon: [512, 512, [], \"f641\", \"M157.52 272h36.96L176 218.78 157.52 272zM352 256c-13.23 0-24 10.77-24 24s10.77 24 24 24 24-10.77 24-24-10.77-24-24-24zM464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM250.58 352h-16.94c-6.81 0-12.88-4.32-15.12-10.75L211.15 320h-70.29l-7.38 21.25A16 16 0 0 1 118.36 352h-16.94c-11.01 0-18.73-10.85-15.12-21.25L140 176.12A23.995 23.995 0 0 1 162.67 160h26.66A23.99 23.99 0 0 1 212 176.13l53.69 154.62c3.61 10.4-4.11 21.25-15.11 21.25zM424 336c0 8.84-7.16 16-16 16h-16c-4.85 0-9.04-2.27-11.98-5.68-8.62 3.66-18.09 5.68-28.02 5.68-39.7 0-72-32.3-72-72s32.3-72 72-72c8.46 0 16.46 1.73 24 4.42V176c0-8.84 7.16-16 16-16h16c8.84 0 16 7.16 16 16v160z\"]\n};\nvar faAddressBook = {\n prefix: 'fas',\n iconName: 'address-book',\n icon: [448, 512, [], \"f2b9\", \"M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z\"]\n};\nvar faAddressCard = {\n prefix: 'fas',\n iconName: 'address-card',\n icon: [576, 512, [], \"f2bb\", \"M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faAdjust = {\n prefix: 'fas',\n iconName: 'adjust',\n icon: [512, 512, [], \"f042\", \"M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z\"]\n};\nvar faAirFreshener = {\n prefix: 'fas',\n iconName: 'air-freshener',\n icon: [512, 512, [], \"f5d0\", \"M224 160H96C43 160 0 203 0 256V480C0 497.625 14.375 512 32 512H288C305.625 512 320 497.625 320 480V256C320 203 277 160 224 160ZM160 416C115.875 416 80 380.125 80 336S115.875 256 160 256S240 291.875 240 336S204.125 416 160 416ZM224 32C224 14.375 209.625 0 192 0H128C110.375 0 96 14.375 96 32V128H224V32ZM381.781 51.578C383 50.969 384 49.359 384 48C384 46.625 383 45.031 381.781 44.422L352 32L339.562 2.219C338.969 1 337.375 0 336 0S333.031 1 332.406 2.219L320 32L290.219 44.422C289 45.031 288 46.625 288 48C288 49.359 289 50.969 290.219 51.578L320 64L332.406 93.781C333.031 95 334.625 96 336 96S338.969 95 339.562 93.781L352 64L381.781 51.578ZM448 64L460.406 93.781C461.031 95 462.625 96 464 96S466.969 95 467.562 93.781L480 64L509.781 51.578C511 50.969 512 49.359 512 48C512 46.625 511 45.031 509.781 44.422L480 32L467.562 2.219C466.969 1 465.375 0 464 0S461.031 1 460.406 2.219L448 32L418.219 44.422C417 45.031 416 46.625 416 48C416 49.359 417 50.969 418.219 51.578L448 64ZM480 224L467.562 194.219C466.969 193 465.375 192 464 192S461.031 193 460.406 194.219L448 224L418.219 236.422C417 237.031 416 238.625 416 240C416 241.359 417 242.969 418.219 243.578L448 256L460.406 285.781C461.031 287 462.625 288 464 288S466.969 287 467.562 285.781L480 256L509.781 243.578C511 242.969 512 241.359 512 240C512 238.625 511 237.031 509.781 236.422L480 224ZM445.781 147.578C447 146.969 448 145.359 448 144C448 142.625 447 141.031 445.781 140.422L416 128L403.562 98.219C402.969 97 401.375 96 400 96S397.031 97 396.406 98.219L384 128L354.219 140.422C353 141.031 352 142.625 352 144C352 145.359 353 146.969 354.219 147.578L384 160L396.406 189.781C397.031 191 398.625 192 400 192S402.969 191 403.562 189.781L416 160L445.781 147.578Z\"]\n};\nvar faAlignCenter = {\n prefix: 'fas',\n iconName: 'align-center',\n icon: [448, 512, [], \"f037\", \"M432 160H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 256H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM108.1 96h231.81A12.09 12.09 0 0 0 352 83.9V44.09A12.09 12.09 0 0 0 339.91 32H108.1A12.09 12.09 0 0 0 96 44.09V83.9A12.1 12.1 0 0 0 108.1 96zm231.81 256A12.09 12.09 0 0 0 352 339.9v-39.81A12.09 12.09 0 0 0 339.91 288H108.1A12.09 12.09 0 0 0 96 300.09v39.81a12.1 12.1 0 0 0 12.1 12.1z\"]\n};\nvar faAlignJustify = {\n prefix: 'fas',\n iconName: 'align-justify',\n icon: [448, 512, [], \"f039\", \"M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faAlignLeft = {\n prefix: 'fas',\n iconName: 'align-left',\n icon: [448, 512, [], \"f036\", \"M12.83 352h262.34A12.82 12.82 0 0 0 288 339.17v-38.34A12.82 12.82 0 0 0 275.17 288H12.83A12.82 12.82 0 0 0 0 300.83v38.34A12.82 12.82 0 0 0 12.83 352zm0-256h262.34A12.82 12.82 0 0 0 288 83.17V44.83A12.82 12.82 0 0 0 275.17 32H12.83A12.82 12.82 0 0 0 0 44.83v38.34A12.82 12.82 0 0 0 12.83 96zM432 160H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 256H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faAlignRight = {\n prefix: 'fas',\n iconName: 'align-right',\n icon: [448, 512, [], \"f038\", \"M16 224h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm416 192H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm3.17-384H172.83A12.82 12.82 0 0 0 160 44.83v38.34A12.82 12.82 0 0 0 172.83 96h262.34A12.82 12.82 0 0 0 448 83.17V44.83A12.82 12.82 0 0 0 435.17 32zm0 256H172.83A12.82 12.82 0 0 0 160 300.83v38.34A12.82 12.82 0 0 0 172.83 352h262.34A12.82 12.82 0 0 0 448 339.17v-38.34A12.82 12.82 0 0 0 435.17 288z\"]\n};\nvar faAllergies = {\n prefix: 'fas',\n iconName: 'allergies',\n icon: [448, 512, [], \"f461\", \"M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z\"]\n};\nvar faAmbulance = {\n prefix: 'fas',\n iconName: 'ambulance',\n icon: [640, 512, [], \"f0f9\", \"M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z\"]\n};\nvar faAmericanSignLanguageInterpreting = {\n prefix: 'fas',\n iconName: 'american-sign-language-interpreting',\n icon: [640, 512, [], \"f2a3\", \"M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z\"]\n};\nvar faAnchor = {\n prefix: 'fas',\n iconName: 'anchor',\n icon: [576, 512, [], \"f13d\", \"M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z\"]\n};\nvar faAngleDoubleDown = {\n prefix: 'fas',\n iconName: 'angle-double-down',\n icon: [320, 512, [], \"f103\", \"M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z\"]\n};\nvar faAngleDoubleLeft = {\n prefix: 'fas',\n iconName: 'angle-double-left',\n icon: [448, 512, [], \"f100\", \"M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z\"]\n};\nvar faAngleDoubleRight = {\n prefix: 'fas',\n iconName: 'angle-double-right',\n icon: [448, 512, [], \"f101\", \"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"]\n};\nvar faAngleDoubleUp = {\n prefix: 'fas',\n iconName: 'angle-double-up',\n icon: [320, 512, [], \"f102\", \"M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z\"]\n};\nvar faAngleDown = {\n prefix: 'fas',\n iconName: 'angle-down',\n icon: [320, 512, [], \"f107\", \"M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z\"]\n};\nvar faAngleLeft = {\n prefix: 'fas',\n iconName: 'angle-left',\n icon: [256, 512, [], \"f104\", \"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z\"]\n};\nvar faAngleRight = {\n prefix: 'fas',\n iconName: 'angle-right',\n icon: [256, 512, [], \"f105\", \"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z\"]\n};\nvar faAngleUp = {\n prefix: 'fas',\n iconName: 'angle-up',\n icon: [320, 512, [], \"f106\", \"M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z\"]\n};\nvar faAngry = {\n prefix: 'fas',\n iconName: 'angry',\n icon: [496, 512, [], \"f556\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z\"]\n};\nvar faAnkh = {\n prefix: 'fas',\n iconName: 'ankh',\n icon: [320, 512, [], \"f644\", \"M296 256h-44.62C272.46 222.01 288 181.65 288 144 288 55.63 230.69 0 160 0S32 55.63 32 144c0 37.65 15.54 78.01 36.62 112H24c-13.25 0-24 10.74-24 24v32c0 13.25 10.75 24 24 24h96v152c0 13.25 10.75 24 24 24h32c13.25 0 24-10.75 24-24V336h96c13.25 0 24-10.75 24-24v-32c0-13.26-10.75-24-24-24zM160 80c29.61 0 48 24.52 48 64 0 34.66-27.14 78.14-48 100.87-20.86-22.72-48-66.21-48-100.87 0-39.48 18.39-64 48-64z\"]\n};\nvar faAppleAlt = {\n prefix: 'fas',\n iconName: 'apple-alt',\n icon: [448, 512, [], \"f5d1\", \"M350.85 129c25.97 4.67 47.27 18.67 63.92 42 14.65 20.67 24.64 46.67 29.96 78 4.67 28.67 4.32 57.33-1 86-7.99 47.33-23.97 87-47.94 119-28.64 38.67-64.59 58-107.87 58-10.66 0-22.3-3.33-34.96-10-8.66-5.33-18.31-8-28.97-8s-20.3 2.67-28.97 8c-12.66 6.67-24.3 10-34.96 10-43.28 0-79.23-19.33-107.87-58-23.97-32-39.95-71.67-47.94-119-5.32-28.67-5.67-57.33-1-86 5.32-31.33 15.31-57.33 29.96-78 16.65-23.33 37.95-37.33 63.92-42 15.98-2.67 37.95-.33 65.92 7 23.97 6.67 44.28 14.67 60.93 24 16.65-9.33 36.96-17.33 60.93-24 27.98-7.33 49.96-9.67 65.94-7zm-54.94-41c-9.32 8.67-21.65 15-36.96 19-10.66 3.33-22.3 5-34.96 5l-14.98-1c-1.33-9.33-1.33-20 0-32 2.67-24 10.32-42.33 22.97-55 9.32-8.67 21.65-15 36.96-19 10.66-3.33 22.3-5 34.96-5l14.98 1 1 15c0 12.67-1.67 24.33-4.99 35-3.99 15.33-10.31 27.67-18.98 37z\"]\n};\nvar faArchive = {\n prefix: 'fas',\n iconName: 'archive',\n icon: [512, 512, [], \"f187\", \"M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z\"]\n};\nvar faArchway = {\n prefix: 'fas',\n iconName: 'archway',\n icon: [576, 512, [], \"f557\", \"M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z\"]\n};\nvar faArrowAltCircleDown = {\n prefix: 'fas',\n iconName: 'arrow-alt-circle-down',\n icon: [512, 512, [], \"f358\", \"M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z\"]\n};\nvar faArrowAltCircleLeft = {\n prefix: 'fas',\n iconName: 'arrow-alt-circle-left',\n icon: [512, 512, [], \"f359\", \"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z\"]\n};\nvar faArrowAltCircleRight = {\n prefix: 'fas',\n iconName: 'arrow-alt-circle-right',\n icon: [512, 512, [], \"f35a\", \"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\"]\n};\nvar faArrowAltCircleUp = {\n prefix: 'fas',\n iconName: 'arrow-alt-circle-up',\n icon: [512, 512, [], \"f35b\", \"M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z\"]\n};\nvar faArrowCircleDown = {\n prefix: 'fas',\n iconName: 'arrow-circle-down',\n icon: [512, 512, [], \"f0ab\", \"M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z\"]\n};\nvar faArrowCircleLeft = {\n prefix: 'fas',\n iconName: 'arrow-circle-left',\n icon: [512, 512, [], \"f0a8\", \"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z\"]\n};\nvar faArrowCircleRight = {\n prefix: 'fas',\n iconName: 'arrow-circle-right',\n icon: [512, 512, [], \"f0a9\", \"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z\"]\n};\nvar faArrowCircleUp = {\n prefix: 'fas',\n iconName: 'arrow-circle-up',\n icon: [512, 512, [], \"f0aa\", \"M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z\"]\n};\nvar faArrowDown = {\n prefix: 'fas',\n iconName: 'arrow-down',\n icon: [448, 512, [], \"f063\", \"M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z\"]\n};\nvar faArrowLeft = {\n prefix: 'fas',\n iconName: 'arrow-left',\n icon: [448, 512, [], \"f060\", \"M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z\"]\n};\nvar faArrowRight = {\n prefix: 'fas',\n iconName: 'arrow-right',\n icon: [448, 512, [], \"f061\", \"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"]\n};\nvar faArrowUp = {\n prefix: 'fas',\n iconName: 'arrow-up',\n icon: [448, 512, [], \"f062\", \"M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z\"]\n};\nvar faArrowsAlt = {\n prefix: 'fas',\n iconName: 'arrows-alt',\n icon: [512, 512, [], \"f0b2\", \"M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z\"]\n};\nvar faArrowsAltH = {\n prefix: 'fas',\n iconName: 'arrows-alt-h',\n icon: [512, 512, [], \"f337\", \"M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z\"]\n};\nvar faArrowsAltV = {\n prefix: 'fas',\n iconName: 'arrows-alt-v',\n icon: [256, 512, [], \"f338\", \"M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z\"]\n};\nvar faAssistiveListeningSystems = {\n prefix: 'fas',\n iconName: 'assistive-listening-systems',\n icon: [512, 512, [], \"f2a2\", \"M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z\"]\n};\nvar faAsterisk = {\n prefix: 'fas',\n iconName: 'asterisk',\n icon: [512, 512, [], \"f069\", \"M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z\"]\n};\nvar faAt = {\n prefix: 'fas',\n iconName: 'at',\n icon: [512, 512, [], \"f1fa\", \"M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z\"]\n};\nvar faAtlas = {\n prefix: 'fas',\n iconName: 'atlas',\n icon: [448, 512, [], \"f558\", \"M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z\"]\n};\nvar faAtom = {\n prefix: 'fas',\n iconName: 'atom',\n icon: [448, 512, [], \"f5d2\", \"M223.99908,224a32,32,0,1,0,32.00782,32A32.06431,32.06431,0,0,0,223.99908,224Zm214.172-96c-10.877-19.5-40.50979-50.75-116.27544-41.875C300.39168,34.875,267.63386,0,223.99908,0s-76.39066,34.875-97.89653,86.125C50.3369,77.375,20.706,108.5,9.82907,128-6.54984,157.375-5.17484,201.125,34.958,256-5.17484,310.875-6.54984,354.625,9.82907,384c29.13087,52.375,101.64652,43.625,116.27348,41.875C147.60842,477.125,180.36429,512,223.99908,512s76.3926-34.875,97.89652-86.125c14.62891,1.75,87.14456,10.5,116.27544-41.875C454.55,354.625,453.175,310.875,413.04017,256,453.175,201.125,454.55,157.375,438.171,128ZM63.33886,352c-4-7.25-.125-24.75,15.00391-48.25,6.87695,6.5,14.12891,12.875,21.88087,19.125,1.625,13.75,4,27.125,6.75,40.125C82.34472,363.875,67.09081,358.625,63.33886,352Zm36.88478-162.875c-7.752,6.25-15.00392,12.625-21.88087,19.125-15.12891-23.5-19.00392-41-15.00391-48.25,3.377-6.125,16.37891-11.5,37.88478-11.5,1.75,0,3.875.375,5.75.375C104.09864,162.25,101.84864,175.625,100.22364,189.125ZM223.99908,64c9.50195,0,22.25586,13.5,33.88282,37.25-11.252,3.75-22.50391,8-33.88282,12.875-11.377-4.875-22.62892-9.125-33.88283-12.875C201.74516,77.5,214.49712,64,223.99908,64Zm0,384c-9.502,0-22.25392-13.5-33.88283-37.25,11.25391-3.75,22.50587-8,33.88283-12.875C235.378,402.75,246.62994,407,257.8819,410.75,246.25494,434.5,233.501,448,223.99908,448Zm0-112a80,80,0,1,1,80-80A80.00023,80.00023,0,0,1,223.99908,336ZM384.6593,352c-3.625,6.625-19.00392,11.875-43.63479,11,2.752-13,5.127-26.375,6.752-40.125,7.75195-6.25,15.00391-12.625,21.87891-19.125C384.7843,327.25,388.6593,344.75,384.6593,352ZM369.65538,208.25c-6.875-6.5-14.127-12.875-21.87891-19.125-1.625-13.5-3.875-26.875-6.752-40.25,1.875,0,4.002-.375,5.752-.375,21.50391,0,34.50782,5.375,37.88283,11.5C388.6593,167.25,384.7843,184.75,369.65538,208.25Z\"]\n};\nvar faAudioDescription = {\n prefix: 'fas',\n iconName: 'audio-description',\n icon: [512, 512, [], \"f29e\", \"M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z\"]\n};\nvar faAward = {\n prefix: 'fas',\n iconName: 'award',\n icon: [384, 512, [], \"f559\", \"M97.12 362.63c-8.69-8.69-4.16-6.24-25.12-11.85-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32-21.07 5.64-16.45 3.18-25.12 11.85-13.79 13.78-32.12 21.37-51.62 21.37-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340c15.28-15.55 17.03-14.21 38.79-20.14 13.89-3.79 24.75-14.84 28.47-28.98 7.48-28.4 5.54-24.97 25.95-45.75 10.17-10.35 14.14-25.44 10.42-39.58-7.47-28.38-7.48-24.42 0-52.83 3.72-14.14-.25-29.23-10.42-39.58-20.41-20.78-18.47-17.36-25.95-45.75-3.72-14.14-14.58-25.19-28.47-28.98-27.88-7.61-24.52-5.62-44.95-26.41-10.17-10.35-25-14.4-38.89-10.61-27.87 7.6-23.98 7.61-51.9 0-13.89-3.79-28.72.25-38.89 10.61-20.41 20.78-17.05 18.8-44.94 26.41-13.89 3.79-24.75 14.84-28.47 28.98-7.47 28.39-5.54 24.97-25.95 45.75-10.17 10.35-14.15 25.44-10.42 39.58 7.47 28.36 7.48 24.4 0 52.82-3.72 14.14.25 29.23 10.42 39.59 20.41 20.78 18.47 17.35 25.95 45.75 3.72 14.14 14.58 25.19 28.47 28.98C104.6 325.96 106.27 325 121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z\"]\n};\nvar faBaby = {\n prefix: 'fas',\n iconName: 'baby',\n icon: [384, 512, [], \"f77c\", \"M192 160c44.2 0 80-35.8 80-80S236.2 0 192 0s-80 35.8-80 80 35.8 80 80 80zm-53.4 248.8l25.6-32-61.5-51.2L56.8 383c-11.4 14.2-11.7 34.4-.8 49l48 64c7.9 10.5 19.9 16 32 16 8.3 0 16.8-2.6 24-8 17.7-13.2 21.2-38.3 8-56l-29.4-39.2zm142.7-83.2l-61.5 51.2 25.6 32L216 448c-13.2 17.7-9.7 42.8 8 56 7.2 5.4 15.6 8 24 8 12.2 0 24.2-5.5 32-16l48-64c10.9-14.6 10.6-34.8-.8-49l-45.9-57.4zM376.7 145c-12.7-18.1-37.6-22.4-55.7-9.8l-40.6 28.5c-52.7 37-124.2 37-176.8 0L63 135.3C44.9 122.6 20 127 7.3 145-5.4 163.1-1 188 17 200.7l40.6 28.5c17 11.9 35.4 20.9 54.4 27.9V288h160v-30.8c19-7 37.4-16 54.4-27.9l40.6-28.5c18.1-12.8 22.4-37.7 9.7-55.8z\"]\n};\nvar faBabyCarriage = {\n prefix: 'fas',\n iconName: 'baby-carriage',\n icon: [512, 512, [], \"f77d\", \"M144.8 17c-11.3-17.8-37.2-22.8-54-9.4C35.3 51.9 0 118 0 192h256L144.8 17zM496 96h-48c-35.3 0-64 28.7-64 64v64H0c0 50.6 23 96.4 60.3 130.7C25.7 363.6 0 394.7 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-8.9-1.8-17.2-4.4-25.2 21.6 5.9 44.6 9.2 68.4 9.2s46.9-3.3 68.4-9.2c-2.7 8-4.4 16.3-4.4 25.2 0 44.2 35.8 80 80 80s80-35.8 80-80c0-37.3-25.7-68.4-60.3-77.3C425 320.4 448 274.6 448 224v-64h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM80 464c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm320-32c0 17.6-14.4 32-32 32s-32-14.4-32-32 14.4-32 32-32 32 14.4 32 32z\"]\n};\nvar faBackspace = {\n prefix: 'fas',\n iconName: 'backspace',\n icon: [640, 512, [], \"f55a\", \"M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z\"]\n};\nvar faBackward = {\n prefix: 'fas',\n iconName: 'backward',\n icon: [512, 512, [], \"f04a\", \"M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z\"]\n};\nvar faBacon = {\n prefix: 'fas',\n iconName: 'bacon',\n icon: [576, 512, [], \"f7e5\", \"M218.92 336.39c34.89-34.89 44.2-59.7 54.05-86 10.61-28.29 21.59-57.54 61.37-97.34s69.05-50.77 97.35-61.38c23.88-9 46.64-17.68 76.79-45.37L470.81 8.91a31 31 0 0 0-40.18-2.83c-13.64 10.1-25.15 14.39-41 20.3C247 79.52 209.26 191.29 200.65 214.1c-29.75 78.83-89.55 94.68-98.72 98.09-24.86 9.26-54.73 20.38-91.07 50.36C-3 374-3.63 395 9.07 407.61l35.76 35.51C80 410.52 107 400.15 133 390.39c26.27-9.84 51.06-19.12 85.92-54zm348-232l-35.75-35.51c-35.19 32.63-62.18 43-88.25 52.79-26.26 9.85-51.06 19.16-85.95 54s-44.19 59.69-54 86C292.33 290 281.34 319.22 241.55 359s-69 50.73-97.3 61.32c-23.86 9-46.61 17.66-76.72 45.33l37.68 37.43a31 31 0 0 0 40.18 2.82c13.6-10.06 25.09-14.34 40.94-20.24 142.2-53 180-164.1 188.94-187.69C405 219.18 464.8 203.3 474 199.86c24.87-9.27 54.74-20.4 91.11-50.41 13.89-11.4 14.52-32.45 1.82-45.05z\"]\n};\nvar faBacteria = {\n prefix: 'fas',\n iconName: 'bacteria',\n icon: [640, 512, [], \"e059\", \"M272.35,226.4A17.71,17.71,0,0,0,281.46,203l-4-9.08a121.29,121.29,0,0,1,12.36-3.08A83.34,83.34,0,0,0,323.57,177l10,9a17.76,17.76,0,1,0,23.92-26.27l-9.72-8.76a83.12,83.12,0,0,0,11.65-48.18l11.85-3.51a17.73,17.73,0,1,0-10.15-34l-11.34,3.36a84,84,0,0,0-36.38-35.57l2.84-10.85a17.8,17.8,0,0,0-34.47-8.93l-2.82,10.78a83.25,83.25,0,0,0-16.74,1.1C250.83,27,240,30.22,229.1,33.39l-3.38-9.46a17.8,17.8,0,0,0-33.56,11.89l3.49,9.8a286.74,286.74,0,0,0-43.94,23.57l-6.32-8.43a17.9,17.9,0,0,0-24.94-3.6A17.69,17.69,0,0,0,116.84,82l6.45,8.61a286.59,286.59,0,0,0-34.95,35.33l-8.82-6.42a17.84,17.84,0,0,0-24.89,3.86,17.66,17.66,0,0,0,3.88,24.77l8.88,6.47a286.6,286.6,0,0,0-23,43.91l-10.48-3.59a17.73,17.73,0,1,0-11.59,33.52L32.67,232c-2.79,10-5.79,19.84-7.52,30.22a83.16,83.16,0,0,0-.82,19l-11.58,3.43a17.73,17.73,0,1,0,10.13,34l11.27-3.33a83.51,83.51,0,0,0,36.39,35.43l-2.88,11.06a17.81,17.81,0,0,0,34.48,8.92l2.87-11c1,0,2.07.26,3.1.26a83.39,83.39,0,0,0,45.65-13.88l8.59,8.8a17.77,17.77,0,0,0,25.56-24.7l-9.14-9.37a83.41,83.41,0,0,0,12.08-31.05,119.08,119.08,0,0,1,3.87-15.53l9,4.22a17.74,17.74,0,1,0,15.15-32.09l-8.8-4.11c.67-1,1.2-2.08,1.9-3.05a119.89,119.89,0,0,1,7.87-9.41,121.73,121.73,0,0,1,11.65-11.4,119.49,119.49,0,0,1,9.94-7.82c1.12-.77,2.32-1.42,3.47-2.15l3.92,8.85a17.86,17.86,0,0,0,16.32,10.58A18.14,18.14,0,0,0,272.35,226.4ZM128,256a32,32,0,1,1,32-32A32,32,0,0,1,128,256Zm80-96a16,16,0,1,1,16-16A16,16,0,0,1,208,160Zm431.26,45.3a17.79,17.79,0,0,0-17.06-12.69,17.55,17.55,0,0,0-5.08.74l-11.27,3.33a83.61,83.61,0,0,0-36.39-35.43l2.88-11.06a17.81,17.81,0,0,0-34.48-8.91l-2.87,11c-1,0-2.07-.26-3.1-.26a83.32,83.32,0,0,0-45.65,13.89l-8.59-8.81a17.77,17.77,0,0,0-25.56,24.7l9.14,9.37a83.28,83.28,0,0,0-12.08,31.06,119.34,119.34,0,0,1-3.87,15.52l-9-4.22a17.74,17.74,0,1,0-15.15,32.09l8.8,4.11c-.67,1-1.2,2.08-1.89,3.05a117.71,117.71,0,0,1-7.94,9.47,119,119,0,0,1-11.57,11.33,121.59,121.59,0,0,1-10,7.83c-1.12.77-2.32,1.42-3.47,2.15l-3.92-8.85a17.86,17.86,0,0,0-16.32-10.58,18.14,18.14,0,0,0-7.18,1.5A17.71,17.71,0,0,0,358.54,309l4,9.08a118.71,118.71,0,0,1-12.36,3.08,83.34,83.34,0,0,0-33.77,13.9l-10-9a17.77,17.77,0,1,0-23.92,26.28l9.72,8.75a83.12,83.12,0,0,0-11.65,48.18l-11.86,3.51a17.73,17.73,0,1,0,10.16,34l11.34-3.36A84,84,0,0,0,326.61,479l-2.84,10.85a17.8,17.8,0,0,0,34.47,8.93L361.06,488a83.3,83.3,0,0,0,16.74-1.1c11.37-1.89,22.24-5.07,33.1-8.24l3.38,9.46a17.8,17.8,0,0,0,33.56-11.89l-3.49-9.79a287.66,287.66,0,0,0,43.94-23.58l6.32,8.43a17.88,17.88,0,0,0,24.93,3.6A17.67,17.67,0,0,0,523.16,430l-6.45-8.61a287.37,287.37,0,0,0,34.95-35.34l8.82,6.42a17.76,17.76,0,1,0,21-28.63l-8.88-6.46a287.17,287.17,0,0,0,23-43.92l10.48,3.59a17.73,17.73,0,1,0,11.59-33.52L607.33,280c2.79-10,5.79-19.84,7.52-30.21a83.27,83.27,0,0,0,.82-19.05l11.58-3.43A17.7,17.7,0,0,0,639.26,205.3ZM416,416a32,32,0,1,1,32-32A32,32,0,0,1,416,416Z\"]\n};\nvar faBacterium = {\n prefix: 'fas',\n iconName: 'bacterium',\n icon: [512, 512, [], \"e05a\", \"M511,102.93A23.76,23.76,0,0,0,481.47,87l-15.12,4.48a111.85,111.85,0,0,0-48.5-47.42l3.79-14.47a23.74,23.74,0,0,0-46-11.91l-3.76,14.37a111.94,111.94,0,0,0-22.33,1.47,386.74,386.74,0,0,0-44.33,10.41l-4.3-12a23.74,23.74,0,0,0-44.75,15.85l4.3,12.05a383.4,383.4,0,0,0-58.69,31.83l-8-10.63a23.85,23.85,0,0,0-33.24-4.8,23.57,23.57,0,0,0-4.83,33.09l8,10.63a386.14,386.14,0,0,0-46.7,47.44l-11-8a23.68,23.68,0,1,0-28,38.17l11.09,8.06a383.45,383.45,0,0,0-30.92,58.75l-12.93-4.43a23.65,23.65,0,1,0-15.47,44.69l13,4.48a385.81,385.81,0,0,0-9.3,40.53A111.58,111.58,0,0,0,32.44,375L17,379.56a23.64,23.64,0,0,0,13.51,45.31l15-4.44a111.49,111.49,0,0,0,48.53,47.24l-3.85,14.75a23.66,23.66,0,0,0,17,28.83,24.7,24.7,0,0,0,6,.75,23.73,23.73,0,0,0,23-17.7L140,479.67c1.37.05,2.77.35,4.13.35A111.22,111.22,0,0,0,205,461.5l11.45,11.74a23.7,23.7,0,0,0,34.08-32.93l-12.19-12.5a111,111,0,0,0,16.11-41.4,158.69,158.69,0,0,1,5.16-20.71l12,5.64a23.66,23.66,0,1,0,20.19-42.79l-11.72-5.49c.89-1.32,1.59-2.77,2.52-4.06a157.86,157.86,0,0,1,10.46-12.49,159.5,159.5,0,0,1,15.59-15.28,162.18,162.18,0,0,1,13.23-10.4c1.5-1,3.1-1.89,4.63-2.87l5.23,11.8a23.74,23.74,0,0,0,43.48-19.08l-5.36-12.11a158.87,158.87,0,0,1,16.49-4.1,111,111,0,0,0,45-18.54l13.33,12a23.69,23.69,0,1,0,31.88-35l-12.94-11.67A110.83,110.83,0,0,0,479.21,137L495,132.32A23.61,23.61,0,0,0,511,102.93ZM160,368a48,48,0,1,1,48-48A48,48,0,0,1,160,368Zm80-136a24,24,0,1,1,24-24A24,24,0,0,1,240,232Z\"]\n};\nvar faBahai = {\n prefix: 'fas',\n iconName: 'bahai',\n icon: [512, 512, [], \"f666\", \"M496.25 202.52l-110-15.44 41.82-104.34c6.67-16.64-11.6-32.18-26.59-22.63L307.44 120 273.35 12.82C270.64 4.27 263.32 0 256 0c-7.32 0-14.64 4.27-17.35 12.82l-34.09 107.19-94.04-59.89c-14.99-9.55-33.25 5.99-26.59 22.63l41.82 104.34-110 15.43c-17.54 2.46-21.68 26.27-6.03 34.67l98.16 52.66-74.48 83.54c-10.92 12.25-1.72 30.93 13.29 30.93 1.31 0 2.67-.14 4.07-.45l108.57-23.65-4.11 112.55c-.43 11.65 8.87 19.22 18.41 19.22 5.15 0 10.39-2.21 14.2-7.18l68.18-88.9 68.18 88.9c3.81 4.97 9.04 7.18 14.2 7.18 9.54 0 18.84-7.57 18.41-19.22l-4.11-112.55 108.57 23.65c17.36 3.76 29.21-17.2 17.35-30.49l-74.48-83.54 98.16-52.66c15.64-8.39 11.5-32.2-6.04-34.66zM338.51 311.68l-51.89-11.3 1.97 53.79L256 311.68l-32.59 42.49 1.96-53.79-51.89 11.3 35.6-39.93-46.92-25.17 52.57-7.38-19.99-49.87 44.95 28.62L256 166.72l16.29 51.23 44.95-28.62-19.99 49.87 52.57 7.38-46.92 25.17 35.61 39.93z\"]\n};\nvar faBalanceScale = {\n prefix: 'fas',\n iconName: 'balance-scale',\n icon: [640, 512, [], \"f24e\", \"M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faBalanceScaleLeft = {\n prefix: 'fas',\n iconName: 'balance-scale-left',\n icon: [640, 512, [], \"f515\", \"M528 448H352V153.25c20.42-8.94 36.1-26.22 43.38-47.47l132-44.26c8.38-2.81 12.89-11.88 10.08-20.26l-10.17-30.34C524.48 2.54 515.41-1.97 507.03.84L389.11 40.37C375.3 16.36 349.69 0 320 0c-44.18 0-80 35.82-80 80 0 3.43.59 6.71 1.01 10.03l-128.39 43.05c-8.38 2.81-12.89 11.88-10.08 20.26l10.17 30.34c2.81 8.38 11.88 12.89 20.26 10.08l142.05-47.63c4.07 2.77 8.43 5.12 12.99 7.12V496c0 8.84 7.16 16 16 16h224c8.84 0 16-7.16 16-16v-32c-.01-8.84-7.17-16-16.01-16zm111.98-144c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 288l72-144 72 144H440zm-269.07-37.51c-17.65-35.29-68.19-35.36-85.87 0C-2.06 424.75.02 416.33.02 432H0c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02c0-16.18 1.34-8.73-85.05-181.51zM56 416l72-144 72 144H56z\"]\n};\nvar faBalanceScaleRight = {\n prefix: 'fas',\n iconName: 'balance-scale-right',\n icon: [640, 512, [], \"f516\", \"M96 464v32c0 8.84 7.16 16 16 16h224c8.84 0 16-7.16 16-16V153.25c4.56-2 8.92-4.35 12.99-7.12l142.05 47.63c8.38 2.81 17.45-1.71 20.26-10.08l10.17-30.34c2.81-8.38-1.71-17.45-10.08-20.26l-128.4-43.05c.42-3.32 1.01-6.6 1.01-10.03 0-44.18-35.82-80-80-80-29.69 0-55.3 16.36-69.11 40.37L132.96.83c-8.38-2.81-17.45 1.71-20.26 10.08l-10.17 30.34c-2.81 8.38 1.71 17.45 10.08 20.26l132 44.26c7.28 21.25 22.96 38.54 43.38 47.47V448H112c-8.84 0-16 7.16-16 16zM0 304c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02c0-15.67 2.08-7.25-85.05-181.51-17.68-35.36-68.22-35.29-85.87 0C-1.32 295.27.02 287.82.02 304H0zm56-16l72-144 72 144H56zm328.02 144H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02c0-15.67 2.08-7.25-85.05-181.51-17.68-35.36-68.22-35.29-85.87 0-86.38 172.78-85.04 165.33-85.04 181.51zM440 416l72-144 72 144H440z\"]\n};\nvar faBan = {\n prefix: 'fas',\n iconName: 'ban',\n icon: [512, 512, [], \"f05e\", \"M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z\"]\n};\nvar faBandAid = {\n prefix: 'fas',\n iconName: 'band-aid',\n icon: [640, 512, [], \"f462\", \"M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z\"]\n};\nvar faBarcode = {\n prefix: 'fas',\n iconName: 'barcode',\n icon: [512, 512, [], \"f02a\", \"M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z\"]\n};\nvar faBars = {\n prefix: 'fas',\n iconName: 'bars',\n icon: [448, 512, [], \"f0c9\", \"M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z\"]\n};\nvar faBaseballBall = {\n prefix: 'fas',\n iconName: 'baseball-ball',\n icon: [496, 512, [], \"f433\", \"M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z\"]\n};\nvar faBasketballBall = {\n prefix: 'fas',\n iconName: 'basketball-ball',\n icon: [496, 512, [], \"f434\", \"M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z\"]\n};\nvar faBath = {\n prefix: 'fas',\n iconName: 'bath',\n icon: [512, 512, [], \"f2cd\", \"M32,384a95.4,95.4,0,0,0,32,71.09V496a16,16,0,0,0,16,16h32a16,16,0,0,0,16-16V480H384v16a16,16,0,0,0,16,16h32a16,16,0,0,0,16-16V455.09A95.4,95.4,0,0,0,480,384V336H32ZM496,256H80V69.25a21.26,21.26,0,0,1,36.28-15l19.27,19.26c-13.13,29.88-7.61,59.11,8.62,79.73l-.17.17A16,16,0,0,0,144,176l11.31,11.31a16,16,0,0,0,22.63,0L283.31,81.94a16,16,0,0,0,0-22.63L272,48a16,16,0,0,0-22.62,0l-.17.17c-20.62-16.23-49.83-21.75-79.73-8.62L150.22,20.28A69.25,69.25,0,0,0,32,69.25V256H16A16,16,0,0,0,0,272v16a16,16,0,0,0,16,16H496a16,16,0,0,0,16-16V272A16,16,0,0,0,496,256Z\"]\n};\nvar faBatteryEmpty = {\n prefix: 'fas',\n iconName: 'battery-empty',\n icon: [640, 512, [], \"f244\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z\"]\n};\nvar faBatteryFull = {\n prefix: 'fas',\n iconName: 'battery-full',\n icon: [640, 512, [], \"f240\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z\"]\n};\nvar faBatteryHalf = {\n prefix: 'fas',\n iconName: 'battery-half',\n icon: [640, 512, [], \"f242\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z\"]\n};\nvar faBatteryQuarter = {\n prefix: 'fas',\n iconName: 'battery-quarter',\n icon: [640, 512, [], \"f243\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z\"]\n};\nvar faBatteryThreeQuarters = {\n prefix: 'fas',\n iconName: 'battery-three-quarters',\n icon: [640, 512, [], \"f241\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z\"]\n};\nvar faBed = {\n prefix: 'fas',\n iconName: 'bed',\n icon: [640, 512, [], \"f236\", \"M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z\"]\n};\nvar faBeer = {\n prefix: 'fas',\n iconName: 'beer',\n icon: [448, 512, [], \"f0fc\", \"M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z\"]\n};\nvar faBell = {\n prefix: 'fas',\n iconName: 'bell',\n icon: [448, 512, [], \"f0f3\", \"M224 512c35.32 0 63.97-28.65 63.97-64H160.03c0 35.35 28.65 64 63.97 64zm215.39-149.71c-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84C118.56 68.1 64.08 130.3 64.08 208c0 102.3-36.15 133.53-55.47 154.29-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h383.8c19.12 0 32-15.6 32.1-32 .05-7.55-2.61-15.27-8.61-21.71z\"]\n};\nvar faBellSlash = {\n prefix: 'fas',\n iconName: 'bell-slash',\n icon: [640, 512, [], \"f1f6\", \"M633.82 458.1l-90.62-70.05c.19-1.38.8-2.66.8-4.06.05-7.55-2.61-15.27-8.61-21.71-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84c-40.33 8.38-74.66 31.07-97.59 62.57L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.35 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.42-6.97 4.17-17.02-2.81-22.45zM157.23 251.54c-8.61 67.96-36.41 93.33-52.62 110.75-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h241.92L157.23 251.54zM320 512c35.32 0 63.97-28.65 63.97-64H256.03c0 35.35 28.65 64 63.97 64z\"]\n};\nvar faBezierCurve = {\n prefix: 'fas',\n iconName: 'bezier-curve',\n icon: [640, 512, [], \"f55b\", \"M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z\"]\n};\nvar faBible = {\n prefix: 'fas',\n iconName: 'bible',\n icon: [448, 512, [], \"f647\", \"M448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM144 144c0-8.84 7.16-16 16-16h48V80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v48h48c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-48v112c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16V192h-48c-8.84 0-16-7.16-16-16v-32zm236.8 304H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8v64z\"]\n};\nvar faBicycle = {\n prefix: 'fas',\n iconName: 'bicycle',\n icon: [640, 512, [], \"f206\", \"M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z\"]\n};\nvar faBiking = {\n prefix: 'fas',\n iconName: 'biking',\n icon: [640, 512, [], \"f84a\", \"M400 96a48 48 0 1 0-48-48 48 48 0 0 0 48 48zm-4 121a31.9 31.9 0 0 0 20 7h64a32 32 0 0 0 0-64h-52.78L356 103a31.94 31.94 0 0 0-40.81.68l-112 96a32 32 0 0 0 3.08 50.92L288 305.12V416a32 32 0 0 0 64 0V288a32 32 0 0 0-14.25-26.62l-41.36-27.57 58.25-49.92zm116 39a128 128 0 1 0 128 128 128 128 0 0 0-128-128zm0 192a64 64 0 1 1 64-64 64 64 0 0 1-64 64zM128 256a128 128 0 1 0 128 128 128 128 0 0 0-128-128zm0 192a64 64 0 1 1 64-64 64 64 0 0 1-64 64z\"]\n};\nvar faBinoculars = {\n prefix: 'fas',\n iconName: 'binoculars',\n icon: [512, 512, [], \"f1e5\", \"M416 48c0-8.84-7.16-16-16-16h-64c-8.84 0-16 7.16-16 16v48h96V48zM63.91 159.99C61.4 253.84 3.46 274.22 0 404v44c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V288h32V128H95.84c-17.63 0-31.45 14.37-31.93 31.99zm384.18 0c-.48-17.62-14.3-31.99-31.93-31.99H320v160h32v160c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-44c-3.46-129.78-61.4-150.16-63.91-244.01zM176 32h-64c-8.84 0-16 7.16-16 16v48h96V48c0-8.84-7.16-16-16-16zm48 256h64V128h-64v160z\"]\n};\nvar faBiohazard = {\n prefix: 'fas',\n iconName: 'biohazard',\n icon: [576, 512, [], \"f780\", \"M287.9 112c18.6 0 36.2 3.8 52.8 9.6 13.3-10.3 23.6-24.3 29.5-40.7-25.2-10.9-53-17-82.2-17-29.1 0-56.9 6-82.1 16.9 5.9 16.4 16.2 30.4 29.5 40.7 16.5-5.7 34-9.5 52.5-9.5zM163.6 438.7c12-11.8 20.4-26.4 24.5-42.4-32.9-26.4-54.8-65.3-58.9-109.6-8.5-2.8-17.2-4.6-26.4-4.6-7.6 0-15.2 1-22.5 3.1 4.1 62.8 35.8 118 83.3 153.5zm224.2-42.6c4.1 16 12.5 30.7 24.5 42.5 47.4-35.5 79.1-90.7 83-153.5-7.2-2-14.7-3-22.2-3-9.2 0-18 1.9-26.6 4.7-4.1 44.2-26 82.9-58.7 109.3zm113.5-205c-17.6-10.4-36.3-16.6-55.3-19.9 6-17.7 10-36.4 10-56.2 0-41-14.5-80.8-41-112.2-2.5-3-6.6-3.7-10-1.8-3.3 1.9-4.8 6-3.6 9.7 4.5 13.8 6.6 26.3 6.6 38.5 0 67.8-53.8 122.9-120 122.9S168 117 168 49.2c0-12.1 2.2-24.7 6.6-38.5 1.2-3.7-.3-7.8-3.6-9.7-3.4-1.9-7.5-1.2-10 1.8C134.6 34.2 120 74 120 115c0 19.8 3.9 38.5 10 56.2-18.9 3.3-37.7 9.5-55.3 19.9-34.6 20.5-61 53.3-74.3 92.4-1.3 3.7.2 7.7 3.5 9.8 3.3 2 7.5 1.3 10-1.6 9.4-10.8 19-19.1 29.2-25.1 57.3-33.9 130.8-13.7 163.9 45 33.1 58.7 13.4 134-43.9 167.9-10.2 6.1-22 10.4-35.8 13.4-3.7.8-6.4 4.2-6.4 8.1.1 4 2.7 7.3 6.5 8 39.7 7.8 80.6.8 115.2-19.7 18-10.6 32.9-24.5 45.3-40.1 12.4 15.6 27.3 29.5 45.3 40.1 34.6 20.5 75.5 27.5 115.2 19.7 3.8-.7 6.4-4 6.5-8 0-3.9-2.6-7.3-6.4-8.1-13.9-2.9-25.6-7.3-35.8-13.4-57.3-33.9-77-109.2-43.9-167.9s106.6-78.9 163.9-45c10.2 6.1 19.8 14.3 29.2 25.1 2.5 2.9 6.7 3.6 10 1.6s4.8-6.1 3.5-9.8c-13.1-39.1-39.5-72-74.1-92.4zm-213.4 129c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z\"]\n};\nvar faBirthdayCake = {\n prefix: 'fas',\n iconName: 'birthday-cake',\n icon: [448, 512, [], \"f1fd\", \"M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z\"]\n};\nvar faBlender = {\n prefix: 'fas',\n iconName: 'blender',\n icon: [512, 512, [], \"f517\", \"M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z\"]\n};\nvar faBlenderPhone = {\n prefix: 'fas',\n iconName: 'blender-phone',\n icon: [576, 512, [], \"f6b6\", \"M392 64h166.54L576 0H192v352h288l17.46-64H392c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H392c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H392c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM158.8 335.01l-25.78-63.26c-2.78-6.81-9.8-10.99-17.24-10.26l-45.03 4.42c-17.28-46.94-17.65-99.78 0-147.72l45.03 4.42c7.43.73 14.46-3.46 17.24-10.26l25.78-63.26c3.02-7.39.2-15.85-6.68-20.07l-39.28-24.1C98.51-3.87 80.09-.5 68.95 11.97c-92.57 103.6-92 259.55 2.1 362.49 9.87 10.8 29.12 12.48 41.65 4.8l39.41-24.18c6.89-4.22 9.7-12.67 6.69-20.07zM480 384H192c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-144 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faBlind = {\n prefix: 'fas',\n iconName: 'blind',\n icon: [384, 512, [], \"f29d\", \"M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z\"]\n};\nvar faBlog = {\n prefix: 'fas',\n iconName: 'blog',\n icon: [512, 512, [], \"f781\", \"M172.2 226.8c-14.6-2.9-28.2 8.9-28.2 23.8V301c0 10.2 7.1 18.4 16.7 22 18.2 6.8 31.3 24.4 31.3 45 0 26.5-21.5 48-48 48s-48-21.5-48-48V120c0-13.3-10.7-24-24-24H24c-13.3 0-24 10.7-24 24v248c0 89.5 82.1 160.2 175 140.7 54.4-11.4 98.3-55.4 109.7-109.7 17.4-82.9-37-157.2-112.5-172.2zM209 0c-9.2-.5-17 6.8-17 16v31.6c0 8.5 6.6 15.5 15 15.9 129.4 7 233.4 112 240.9 241.5.5 8.4 7.5 15 15.9 15h32.1c9.2 0 16.5-7.8 16-17C503.4 139.8 372.2 8.6 209 0zm.3 96c-9.3-.7-17.3 6.7-17.3 16.1v32.1c0 8.4 6.5 15.3 14.8 15.9 76.8 6.3 138 68.2 144.9 145.2.8 8.3 7.6 14.7 15.9 14.7h32.2c9.3 0 16.8-8 16.1-17.3-8.4-110.1-96.5-198.2-206.6-206.7z\"]\n};\nvar faBold = {\n prefix: 'fas',\n iconName: 'bold',\n icon: [384, 512, [], \"f032\", \"M333.49 238a122 122 0 0 0 27-65.21C367.87 96.49 308 32 233.42 32H34a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h31.87v288H34a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h209.32c70.8 0 134.14-51.75 141-122.4 4.74-48.45-16.39-92.06-50.83-119.6zM145.66 112h87.76a48 48 0 0 1 0 96h-87.76zm87.76 288h-87.76V288h87.76a56 56 0 0 1 0 112z\"]\n};\nvar faBolt = {\n prefix: 'fas',\n iconName: 'bolt',\n icon: [320, 512, [], \"f0e7\", \"M296 160H180.6l42.6-129.8C227.2 15 215.7 0 200 0H56C44 0 33.8 8.9 32.2 20.8l-32 240C-1.7 275.2 9.5 288 24 288h118.7L96.6 482.5c-3.6 15.2 8 29.5 23.3 29.5 8.4 0 16.4-4.4 20.8-12l176-304c9.3-15.9-2.2-36-20.7-36z\"]\n};\nvar faBomb = {\n prefix: 'fas',\n iconName: 'bomb',\n icon: [512, 512, [], \"f1e2\", \"M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z\"]\n};\nvar faBone = {\n prefix: 'fas',\n iconName: 'bone',\n icon: [640, 512, [], \"f5d7\", \"M598.88 244.56c25.2-12.6 41.12-38.36 41.12-66.53v-7.64C640 129.3 606.7 96 565.61 96c-32.02 0-60.44 20.49-70.57 50.86-7.68 23.03-11.6 45.14-38.11 45.14H183.06c-27.38 0-31.58-25.54-38.11-45.14C134.83 116.49 106.4 96 74.39 96 33.3 96 0 129.3 0 170.39v7.64c0 28.17 15.92 53.93 41.12 66.53 9.43 4.71 9.43 18.17 0 22.88C15.92 280.04 0 305.8 0 333.97v7.64C0 382.7 33.3 416 74.38 416c32.02 0 60.44-20.49 70.57-50.86 7.68-23.03 11.6-45.14 38.11-45.14h273.87c27.38 0 31.58 25.54 38.11 45.14C505.17 395.51 533.6 416 565.61 416c41.08 0 74.38-33.3 74.38-74.39v-7.64c0-28.18-15.92-53.93-41.12-66.53-9.42-4.71-9.42-18.17.01-22.88z\"]\n};\nvar faBong = {\n prefix: 'fas',\n iconName: 'bong',\n icon: [448, 512, [], \"f55c\", \"M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z\"]\n};\nvar faBook = {\n prefix: 'fas',\n iconName: 'book',\n icon: [448, 512, [], \"f02d\", \"M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z\"]\n};\nvar faBookDead = {\n prefix: 'fas',\n iconName: 'book-dead',\n icon: [448, 512, [], \"f6b7\", \"M272 136c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm176 222.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM240 56c44.2 0 80 28.7 80 64 0 20.9-12.7 39.2-32 50.9V184c0 8.8-7.2 16-16 16h-64c-8.8 0-16-7.2-16-16v-13.1c-19.3-11.7-32-30-32-50.9 0-35.3 35.8-64 80-64zM124.8 223.3l6.3-14.7c1.7-4.1 6.4-5.9 10.5-4.2l98.3 42.1 98.4-42.1c4.1-1.7 8.8.1 10.5 4.2l6.3 14.7c1.7 4.1-.1 8.8-4.2 10.5L280.6 264l70.3 30.1c4.1 1.7 5.9 6.4 4.2 10.5l-6.3 14.7c-1.7 4.1-6.4 5.9-10.5 4.2L240 281.4l-98.3 42.2c-4.1 1.7-8.8-.1-10.5-4.2l-6.3-14.7c-1.7-4.1.1-8.8 4.2-10.5l70.4-30.1-70.5-30.3c-4.1-1.7-5.9-6.4-4.2-10.5zm256 224.7H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8zM208 136c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16z\"]\n};\nvar faBookMedical = {\n prefix: 'fas',\n iconName: 'book-medical',\n icon: [448, 512, [], \"f7e6\", \"M448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16q0-9.6-9.6-19.2c-3.2-16-3.2-60.8 0-73.6q9.6-4.8 9.6-19.2zM144 168a8 8 0 0 1 8-8h56v-56a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v56h56a8 8 0 0 1 8 8v48a8 8 0 0 1-8 8h-56v56a8 8 0 0 1-8 8h-48a8 8 0 0 1-8-8v-56h-56a8 8 0 0 1-8-8zm236.8 280H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8z\"]\n};\nvar faBookOpen = {\n prefix: 'fas',\n iconName: 'book-open',\n icon: [576, 512, [], \"f518\", \"M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z\"]\n};\nvar faBookReader = {\n prefix: 'fas',\n iconName: 'book-reader',\n icon: [512, 512, [], \"f5da\", \"M352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM233.59 241.1c-59.33-36.32-155.43-46.3-203.79-49.05C13.55 191.13 0 203.51 0 219.14v222.8c0 14.33 11.59 26.28 26.49 27.05 43.66 2.29 131.99 10.68 193.04 41.43 9.37 4.72 20.48-1.71 20.48-11.87V252.56c-.01-4.67-2.32-8.95-6.42-11.46zm248.61-49.05c-48.35 2.74-144.46 12.73-203.78 49.05-4.1 2.51-6.41 6.96-6.41 11.63v245.79c0 10.19 11.14 16.63 20.54 11.9 61.04-30.72 149.32-39.11 192.97-41.4 14.9-.78 26.49-12.73 26.49-27.06V219.14c-.01-15.63-13.56-28.01-29.81-27.09z\"]\n};\nvar faBookmark = {\n prefix: 'fas',\n iconName: 'bookmark',\n icon: [384, 512, [], \"f02e\", \"M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z\"]\n};\nvar faBorderAll = {\n prefix: 'fas',\n iconName: 'border-all',\n icon: [448, 512, [], \"f84c\", \"M416 32H32A32 32 0 0 0 0 64v384a32 32 0 0 0 32 32h384a32 32 0 0 0 32-32V64a32 32 0 0 0-32-32zm-32 64v128H256V96zm-192 0v128H64V96zM64 416V288h128v128zm192 0V288h128v128z\"]\n};\nvar faBorderNone = {\n prefix: 'fas',\n iconName: 'border-none',\n icon: [448, 512, [], \"f850\", \"M240 224h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-288 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM240 320h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-96 288h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96-384h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM48 224H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 192H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-192H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faBorderStyle = {\n prefix: 'fas',\n iconName: 'border-style',\n icon: [448, 512, [], \"f853\", \"M240 416h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm192 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96-192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 96h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 96h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-288h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96H32A32 32 0 0 0 0 64v400a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V96h368a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faBowlingBall = {\n prefix: 'fas',\n iconName: 'bowling-ball',\n icon: [496, 512, [], \"f436\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faBox = {\n prefix: 'fas',\n iconName: 'box',\n icon: [512, 512, [], \"f466\", \"M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z\"]\n};\nvar faBoxOpen = {\n prefix: 'fas',\n iconName: 'box-open',\n icon: [640, 512, [], \"f49e\", \"M425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9zm212.6-112.2L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9z\"]\n};\nvar faBoxTissue = {\n prefix: 'fas',\n iconName: 'box-tissue',\n icon: [512, 512, [], \"e05b\", \"M383.88,287.82l64-192H338.47a70.2,70.2,0,0,1-66.59-48,70.21,70.21,0,0,0-66.6-48H63.88l64,288Zm-384,192a32,32,0,0,0,32,32h448a32,32,0,0,0,32-32v-64H-.12Zm480-256H438.94l-21.33,64h14.27a16,16,0,0,1,0,32h-352a16,16,0,1,1,0-32H95.09l-14.22-64h-49a32,32,0,0,0-32,32v128h512v-128A32,32,0,0,0,479.88,223.82Z\"]\n};\nvar faBoxes = {\n prefix: 'fas',\n iconName: 'boxes',\n icon: [576, 512, [], \"f468\", \"M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z\"]\n};\nvar faBraille = {\n prefix: 'fas',\n iconName: 'braille',\n icon: [640, 512, [], \"f2a1\", \"M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z\"]\n};\nvar faBrain = {\n prefix: 'fas',\n iconName: 'brain',\n icon: [576, 512, [], \"f5dc\", \"M208 0c-29.9 0-54.7 20.5-61.8 48.2-.8 0-1.4-.2-2.2-.2-35.3 0-64 28.7-64 64 0 4.8.6 9.5 1.7 14C52.5 138 32 166.6 32 200c0 12.6 3.2 24.3 8.3 34.9C16.3 248.7 0 274.3 0 304c0 33.3 20.4 61.9 49.4 73.9-.9 4.6-1.4 9.3-1.4 14.1 0 39.8 32.2 72 72 72 4.1 0 8.1-.5 12-1.2 9.6 28.5 36.2 49.2 68 49.2 39.8 0 72-32.2 72-72V64c0-35.3-28.7-64-64-64zm368 304c0-29.7-16.3-55.3-40.3-69.1 5.2-10.6 8.3-22.3 8.3-34.9 0-33.4-20.5-62-49.7-74 1-4.5 1.7-9.2 1.7-14 0-35.3-28.7-64-64-64-.8 0-1.5.2-2.2.2C422.7 20.5 397.9 0 368 0c-35.3 0-64 28.6-64 64v376c0 39.8 32.2 72 72 72 31.8 0 58.4-20.7 68-49.2 3.9.7 7.9 1.2 12 1.2 39.8 0 72-32.2 72-72 0-4.8-.5-9.5-1.4-14.1 29-12 49.4-40.6 49.4-73.9z\"]\n};\nvar faBreadSlice = {\n prefix: 'fas',\n iconName: 'bread-slice',\n icon: [576, 512, [], \"f7ec\", \"M288 0C108 0 0 93.4 0 169.14 0 199.44 24.24 224 64 224v256c0 17.67 16.12 32 36 32h376c19.88 0 36-14.33 36-32V224c39.76 0 64-24.56 64-54.86C576 93.4 468 0 288 0z\"]\n};\nvar faBriefcase = {\n prefix: 'fas',\n iconName: 'briefcase',\n icon: [512, 512, [], \"f0b1\", \"M320 336c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-48H0v144c0 25.6 22.4 48 48 48h416c25.6 0 48-22.4 48-48V288H320v48zm144-208h-80V80c0-25.6-22.4-48-48-48H176c-25.6 0-48 22.4-48 48v48H48c-25.6 0-48 22.4-48 48v80h512v-80c0-25.6-22.4-48-48-48zm-144 0H192V96h128v32z\"]\n};\nvar faBriefcaseMedical = {\n prefix: 'fas',\n iconName: 'briefcase-medical',\n icon: [512, 512, [], \"f469\", \"M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z\"]\n};\nvar faBroadcastTower = {\n prefix: 'fas',\n iconName: 'broadcast-tower',\n icon: [640, 512, [], \"f519\", \"M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z\"]\n};\nvar faBroom = {\n prefix: 'fas',\n iconName: 'broom',\n icon: [640, 512, [], \"f51a\", \"M256.47 216.77l86.73 109.18s-16.6 102.36-76.57 150.12C206.66 523.85 0 510.19 0 510.19s3.8-23.14 11-55.43l94.62-112.17c3.97-4.7-.87-11.62-6.65-9.5l-60.4 22.09c14.44-41.66 32.72-80.04 54.6-97.47 59.97-47.76 163.3-40.94 163.3-40.94zM636.53 31.03l-19.86-25c-5.49-6.9-15.52-8.05-22.41-2.56l-232.48 177.8-34.14-42.97c-5.09-6.41-15.14-5.21-18.59 2.21l-25.33 54.55 86.73 109.18 58.8-12.45c8-1.69 11.42-11.2 6.34-17.6l-34.09-42.92 232.48-177.8c6.89-5.48 8.04-15.53 2.55-22.44z\"]\n};\nvar faBrush = {\n prefix: 'fas',\n iconName: 'brush',\n icon: [384, 512, [], \"f55d\", \"M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z\"]\n};\nvar faBug = {\n prefix: 'fas',\n iconName: 'bug',\n icon: [512, 512, [], \"f188\", \"M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z\"]\n};\nvar faBuilding = {\n prefix: 'fas',\n iconName: 'building',\n icon: [448, 512, [], \"f1ad\", \"M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z\"]\n};\nvar faBullhorn = {\n prefix: 'fas',\n iconName: 'bullhorn',\n icon: [576, 512, [], \"f0a1\", \"M576 240c0-23.63-12.95-44.04-32-55.12V32.01C544 23.26 537.02 0 512 0c-7.12 0-14.19 2.38-19.98 7.02l-85.03 68.03C364.28 109.19 310.66 128 256 128H64c-35.35 0-64 28.65-64 64v96c0 35.35 28.65 64 64 64h33.7c-1.39 10.48-2.18 21.14-2.18 32 0 39.77 9.26 77.35 25.56 110.94 5.19 10.69 16.52 17.06 28.4 17.06h74.28c26.05 0 41.69-29.84 25.9-50.56-16.4-21.52-26.15-48.36-26.15-77.44 0-11.11 1.62-21.79 4.41-32H256c54.66 0 108.28 18.81 150.98 52.95l85.03 68.03a32.023 32.023 0 0 0 19.98 7.02c24.92 0 32-22.78 32-32V295.13C563.05 284.04 576 263.63 576 240zm-96 141.42l-33.05-26.44C392.95 311.78 325.12 288 256 288v-96c69.12 0 136.95-23.78 190.95-66.98L480 98.58v282.84z\"]\n};\nvar faBullseye = {\n prefix: 'fas',\n iconName: 'bullseye',\n icon: [496, 512, [], \"f140\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 432c-101.69 0-184-82.29-184-184 0-101.69 82.29-184 184-184 101.69 0 184 82.29 184 184 0 101.69-82.29 184-184 184zm0-312c-70.69 0-128 57.31-128 128s57.31 128 128 128 128-57.31 128-128-57.31-128-128-128zm0 192c-35.29 0-64-28.71-64-64s28.71-64 64-64 64 28.71 64 64-28.71 64-64 64z\"]\n};\nvar faBurn = {\n prefix: 'fas',\n iconName: 'burn',\n icon: [384, 512, [], \"f46a\", \"M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z\"]\n};\nvar faBus = {\n prefix: 'fas',\n iconName: 'bus',\n icon: [512, 512, [], \"f207\", \"M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faBusAlt = {\n prefix: 'fas',\n iconName: 'bus-alt',\n icon: [512, 512, [], \"f55e\", \"M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faBusinessTime = {\n prefix: 'fas',\n iconName: 'business-time',\n icon: [640, 512, [], \"f64a\", \"M496 224c-79.59 0-144 64.41-144 144s64.41 144 144 144 144-64.41 144-144-64.41-144-144-144zm64 150.29c0 5.34-4.37 9.71-9.71 9.71h-60.57c-5.34 0-9.71-4.37-9.71-9.71v-76.57c0-5.34 4.37-9.71 9.71-9.71h12.57c5.34 0 9.71 4.37 9.71 9.71V352h38.29c5.34 0 9.71 4.37 9.71 9.71v12.58zM496 192c5.4 0 10.72.33 16 .81V144c0-25.6-22.4-48-48-48h-80V48c0-25.6-22.4-48-48-48H176c-25.6 0-48 22.4-48 48v48H48c-25.6 0-48 22.4-48 48v80h395.12c28.6-20.09 63.35-32 100.88-32zM320 96H192V64h128v32zm6.82 224H208c-8.84 0-16-7.16-16-16v-48H0v144c0 25.6 22.4 48 48 48h291.43C327.1 423.96 320 396.82 320 368c0-16.66 2.48-32.72 6.82-48z\"]\n};\nvar faCalculator = {\n prefix: 'fas',\n iconName: 'calculator',\n icon: [448, 512, [], \"f1ec\", \"M400 0H48C22.4 0 0 22.4 0 48v416c0 25.6 22.4 48 48 48h352c25.6 0 48-22.4 48-48V48c0-25.6-22.4-48-48-48zM128 435.2c0 6.4-6.4 12.8-12.8 12.8H76.8c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-128c0 6.4-6.4 12.8-12.8 12.8H76.8c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm128 128c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-128c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm128 128c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8V268.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v166.4zm0-256c0 6.4-6.4 12.8-12.8 12.8H76.8c-6.4 0-12.8-6.4-12.8-12.8V76.8C64 70.4 70.4 64 76.8 64h294.4c6.4 0 12.8 6.4 12.8 12.8v102.4z\"]\n};\nvar faCalendar = {\n prefix: 'fas',\n iconName: 'calendar',\n icon: [448, 512, [], \"f133\", \"M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z\"]\n};\nvar faCalendarAlt = {\n prefix: 'fas',\n iconName: 'calendar-alt',\n icon: [448, 512, [], \"f073\", \"M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm320-196c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM192 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM64 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z\"]\n};\nvar faCalendarCheck = {\n prefix: 'fas',\n iconName: 'calendar-check',\n icon: [448, 512, [], \"f274\", \"M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z\"]\n};\nvar faCalendarDay = {\n prefix: 'fas',\n iconName: 'calendar-day',\n icon: [448, 512, [], \"f783\", \"M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm64-192c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-96zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z\"]\n};\nvar faCalendarMinus = {\n prefix: 'fas',\n iconName: 'calendar-minus',\n icon: [448, 512, [], \"f272\", \"M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z\"]\n};\nvar faCalendarPlus = {\n prefix: 'fas',\n iconName: 'calendar-plus',\n icon: [448, 512, [], \"f271\", \"M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z\"]\n};\nvar faCalendarTimes = {\n prefix: 'fas',\n iconName: 'calendar-times',\n icon: [448, 512, [], \"f273\", \"M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z\"]\n};\nvar faCalendarWeek = {\n prefix: 'fas',\n iconName: 'calendar-week',\n icon: [448, 512, [], \"f784\", \"M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm64-192c0-8.8 7.2-16 16-16h288c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-64zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z\"]\n};\nvar faCamera = {\n prefix: 'fas',\n iconName: 'camera',\n icon: [512, 512, [], \"f030\", \"M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z\"]\n};\nvar faCameraRetro = {\n prefix: 'fas',\n iconName: 'camera-retro',\n icon: [512, 512, [], \"f083\", \"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z\"]\n};\nvar faCampground = {\n prefix: 'fas',\n iconName: 'campground',\n icon: [640, 512, [], \"f6bb\", \"M624 448h-24.68L359.54 117.75l53.41-73.55c5.19-7.15 3.61-17.16-3.54-22.35l-25.9-18.79c-7.15-5.19-17.15-3.61-22.35 3.55L320 63.3 278.83 6.6c-5.19-7.15-15.2-8.74-22.35-3.55l-25.88 18.8c-7.15 5.19-8.74 15.2-3.54 22.35l53.41 73.55L40.68 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM320 288l116.36 160H203.64L320 288z\"]\n};\nvar faCandyCane = {\n prefix: 'fas',\n iconName: 'candy-cane',\n icon: [512, 512, [], \"f786\", \"M497.5 92C469.6 33.1 411.8 0 352.4 0c-27.9 0-56.2 7.3-81.8 22.6L243.1 39c-15.2 9.1-20.1 28.7-11 43.9l32.8 54.9c6 10 16.6 15.6 27.5 15.6 5.6 0 11.2-1.5 16.4-4.5l27.5-16.4c5.1-3.1 10.8-4.5 16.4-4.5 10.9 0 21.5 5.6 27.5 15.6 9.1 15.1 4.1 34.8-11 43.9L15.6 397.6c-15.2 9.1-20.1 28.7-11 43.9l32.8 54.9c6 10 16.6 15.6 27.5 15.6 5.6 0 11.2-1.5 16.4-4.5L428.6 301c71.7-42.9 104.6-133.5 68.9-209zm-177.7 13l-2.5 1.5L296.8 45c9.7-4.7 19.8-8.1 30.3-10.2l20.6 61.8c-9.8.8-19.4 3.3-27.9 8.4zM145.9 431.8l-60.5-38.5 30.8-18.3 60.5 38.5-30.8 18.3zm107.5-63.9l-60.5-38.5 30.8-18.3 60.5 38.5-30.8 18.3zM364.3 302l-60.5-38.5 30.8-18.3 60.5 38.5-30.8 18.3zm20.4-197.3l46-46c8.4 6.5 16 14.1 22.6 22.6L407.6 127c-5.7-9.3-13.7-16.9-22.9-22.3zm82.1 107.8l-59.5-19.8c3.2-5.3 5.8-10.9 7.4-17.1 1.1-4.5 1.7-9.1 1.8-13.6l60.4 20.1c-2.1 10.4-5.5 20.6-10.1 30.4z\"]\n};\nvar faCannabis = {\n prefix: 'fas',\n iconName: 'cannabis',\n icon: [512, 512, [], \"f55f\", \"M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z\"]\n};\nvar faCapsules = {\n prefix: 'fas',\n iconName: 'capsules',\n icon: [576, 512, [], \"f46b\", \"M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z\"]\n};\nvar faCar = {\n prefix: 'fas',\n iconName: 'car',\n icon: [512, 512, [], \"f1b9\", \"M499.99 176h-59.87l-16.64-41.6C406.38 91.63 365.57 64 319.5 64h-127c-46.06 0-86.88 27.63-103.99 70.4L71.87 176H12.01C4.2 176-1.53 183.34.37 190.91l6 24C7.7 220.25 12.5 224 18.01 224h20.07C24.65 235.73 16 252.78 16 272v48c0 16.12 6.16 30.67 16 41.93V416c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-54.07c9.84-11.25 16-25.8 16-41.93v-48c0-19.22-8.65-36.27-22.07-48H494c5.51 0 10.31-3.75 11.64-9.09l6-24c1.89-7.57-3.84-14.91-11.65-14.91zm-352.06-17.83c7.29-18.22 24.94-30.17 44.57-30.17h127c19.63 0 37.28 11.95 44.57 30.17L384 208H128l19.93-49.83zM96 319.8c-19.2 0-32-12.76-32-31.9S76.8 256 96 256s48 28.71 48 47.85-28.8 15.95-48 15.95zm320 0c-19.2 0-48 3.19-48-15.95S396.8 256 416 256s32 12.76 32 31.9-12.8 31.9-32 31.9z\"]\n};\nvar faCarAlt = {\n prefix: 'fas',\n iconName: 'car-alt',\n icon: [480, 512, [], \"f5de\", \"M438.66 212.33l-11.24-28.1-19.93-49.83C390.38 91.63 349.57 64 303.5 64h-127c-46.06 0-86.88 27.63-103.99 70.4l-19.93 49.83-11.24 28.1C17.22 221.5 0 244.66 0 272v48c0 16.12 6.16 30.67 16 41.93V416c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-54.07c9.84-11.25 16-25.8 16-41.93v-48c0-27.34-17.22-50.5-41.34-59.67zm-306.73-54.16c7.29-18.22 24.94-30.17 44.57-30.17h127c19.63 0 37.28 11.95 44.57 30.17L368 208H112l19.93-49.83zM80 319.8c-19.2 0-32-12.76-32-31.9S60.8 256 80 256s48 28.71 48 47.85-28.8 15.95-48 15.95zm320 0c-19.2 0-48 3.19-48-15.95S380.8 256 400 256s32 12.76 32 31.9-12.8 31.9-32 31.9z\"]\n};\nvar faCarBattery = {\n prefix: 'fas',\n iconName: 'car-battery',\n icon: [512, 512, [], \"f5df\", \"M480 128h-32V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v48H192V80c0-8.84-7.16-16-16-16H80c-8.84 0-16 7.16-16 16v48H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32zM192 264c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm256 0c0 4.42-3.58 8-8 8h-40v40c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-40h-40c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h40v-40c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v40h40c4.42 0 8 3.58 8 8v16z\"]\n};\nvar faCarCrash = {\n prefix: 'fas',\n iconName: 'car-crash',\n icon: [640, 512, [], \"f5e1\", \"M143.25 220.81l-12.42 46.37c-3.01 11.25-3.63 22.89-2.41 34.39l-35.2 28.98c-6.57 5.41-16.31-.43-14.62-8.77l15.44-76.68c1.06-5.26-2.66-10.28-8-10.79l-77.86-7.55c-8.47-.82-11.23-11.83-4.14-16.54l65.15-43.3c4.46-2.97 5.38-9.15 1.98-13.29L21.46 93.22c-5.41-6.57.43-16.3 8.78-14.62l76.68 15.44c5.26 1.06 10.28-2.66 10.8-8l7.55-77.86c.82-8.48 11.83-11.23 16.55-4.14l43.3 65.14c2.97 4.46 9.15 5.38 13.29 1.98l60.4-49.71c6.57-5.41 16.3.43 14.62 8.77L262.1 86.38c-2.71 3.05-5.43 6.09-7.91 9.4l-32.15 42.97-10.71 14.32c-32.73 8.76-59.18 34.53-68.08 67.74zm494.57 132.51l-12.42 46.36c-3.13 11.68-9.38 21.61-17.55 29.36a66.876 66.876 0 0 1-8.76 7l-13.99 52.23c-1.14 4.27-3.1 8.1-5.65 11.38-7.67 9.84-20.74 14.68-33.54 11.25L515 502.62c-17.07-4.57-27.2-22.12-22.63-39.19l8.28-30.91-247.28-66.26-8.28 30.91c-4.57 17.07-22.12 27.2-39.19 22.63l-30.91-8.28c-12.8-3.43-21.7-14.16-23.42-26.51-.57-4.12-.35-8.42.79-12.68l13.99-52.23a66.62 66.62 0 0 1-4.09-10.45c-3.2-10.79-3.65-22.52-.52-34.2l12.42-46.37c5.31-19.8 19.36-34.83 36.89-42.21a64.336 64.336 0 0 1 18.49-4.72l18.13-24.23 32.15-42.97c3.45-4.61 7.19-8.9 11.2-12.84 8-7.89 17.03-14.44 26.74-19.51 4.86-2.54 9.89-4.71 15.05-6.49 10.33-3.58 21.19-5.63 32.24-6.04 11.05-.41 22.31.82 33.43 3.8l122.68 32.87c11.12 2.98 21.48 7.54 30.85 13.43a111.11 111.11 0 0 1 34.69 34.5c8.82 13.88 14.64 29.84 16.68 46.99l6.36 53.29 3.59 30.05a64.49 64.49 0 0 1 22.74 29.93c4.39 11.88 5.29 25.19 1.75 38.39zM255.58 234.34c-18.55-4.97-34.21 4.04-39.17 22.53-4.96 18.49 4.11 34.12 22.65 39.09 18.55 4.97 45.54 15.51 50.49-2.98 4.96-18.49-15.43-53.67-33.97-58.64zm290.61 28.17l-6.36-53.29c-.58-4.87-1.89-9.53-3.82-13.86-5.8-12.99-17.2-23.01-31.42-26.82l-122.68-32.87a48.008 48.008 0 0 0-50.86 17.61l-32.15 42.97 172 46.08 75.29 20.18zm18.49 54.65c-18.55-4.97-53.8 15.31-58.75 33.79-4.95 18.49 23.69 22.86 42.24 27.83 18.55 4.97 34.21-4.04 39.17-22.53 4.95-18.48-4.11-34.12-22.66-39.09z\"]\n};\nvar faCarSide = {\n prefix: 'fas',\n iconName: 'car-side',\n icon: [640, 512, [], \"f5e4\", \"M544 192h-16L419.22 56.02A64.025 64.025 0 0 0 369.24 32H155.33c-26.17 0-49.7 15.93-59.42 40.23L48 194.26C20.44 201.4 0 226.21 0 256v112c0 8.84 7.16 16 16 16h48c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h48c8.84 0 16-7.16 16-16v-80c0-53.02-42.98-96-96-96zM160 432c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48zm72-240H116.93l38.4-96H232v96zm48 0V96h89.24l76.8 96H280zm200 240c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48z\"]\n};\nvar faCaravan = {\n prefix: 'fas',\n iconName: 'caravan',\n icon: [640, 512, [], \"f8ff\", \"M416,208a16,16,0,1,0,16,16A16,16,0,0,0,416,208ZM624,320H576V160A160,160,0,0,0,416,0H64A64,64,0,0,0,0,64V320a64,64,0,0,0,64,64H96a96,96,0,0,0,192,0H624a16,16,0,0,0,16-16V336A16,16,0,0,0,624,320ZM192,432a48,48,0,1,1,48-48A48.05,48.05,0,0,1,192,432Zm64-240a32,32,0,0,1-32,32H96a32,32,0,0,1-32-32V128A32,32,0,0,1,96,96H224a32,32,0,0,1,32,32ZM448,320H320V128a32,32,0,0,1,32-32h64a32,32,0,0,1,32,32Z\"]\n};\nvar faCaretDown = {\n prefix: 'fas',\n iconName: 'caret-down',\n icon: [320, 512, [], \"f0d7\", \"M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\"]\n};\nvar faCaretLeft = {\n prefix: 'fas',\n iconName: 'caret-left',\n icon: [192, 512, [], \"f0d9\", \"M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z\"]\n};\nvar faCaretRight = {\n prefix: 'fas',\n iconName: 'caret-right',\n icon: [192, 512, [], \"f0da\", \"M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z\"]\n};\nvar faCaretSquareDown = {\n prefix: 'fas',\n iconName: 'caret-square-down',\n icon: [448, 512, [], \"f150\", \"M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z\"]\n};\nvar faCaretSquareLeft = {\n prefix: 'fas',\n iconName: 'caret-square-left',\n icon: [448, 512, [], \"f191\", \"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z\"]\n};\nvar faCaretSquareRight = {\n prefix: 'fas',\n iconName: 'caret-square-right',\n icon: [448, 512, [], \"f152\", \"M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z\"]\n};\nvar faCaretSquareUp = {\n prefix: 'fas',\n iconName: 'caret-square-up',\n icon: [448, 512, [], \"f151\", \"M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z\"]\n};\nvar faCaretUp = {\n prefix: 'fas',\n iconName: 'caret-up',\n icon: [320, 512, [], \"f0d8\", \"M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z\"]\n};\nvar faCarrot = {\n prefix: 'fas',\n iconName: 'carrot',\n icon: [512, 512, [], \"f787\", \"M298.2 156.6c-52.7-25.7-114.5-10.5-150.2 32.8l55.2 55.2c6.3 6.3 6.3 16.4 0 22.6-3.1 3.1-7.2 4.7-11.3 4.7s-8.2-1.6-11.3-4.7L130.4 217 2.3 479.7c-2.9 6-3.1 13.3 0 19.7 5.4 11.1 18.9 15.7 30 10.3l133.6-65.2-49.2-49.2c-6.3-6.2-6.3-16.4 0-22.6 6.3-6.2 16.4-6.2 22.6 0l57 57 102-49.8c24-11.7 44.5-31.3 57.1-57.1 30.1-61.7 4.5-136.1-57.2-166.2zm92.1-34.9C409.8 81 399.7 32.9 360 0c-50.3 41.7-52.5 107.5-7.9 151.9l8 8c44.4 44.6 110.3 42.4 151.9-7.9-32.9-39.7-81-49.8-121.7-30.3z\"]\n};\nvar faCartArrowDown = {\n prefix: 'fas',\n iconName: 'cart-arrow-down',\n icon: [576, 512, [], \"f218\", \"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"]\n};\nvar faCartPlus = {\n prefix: 'fas',\n iconName: 'cart-plus',\n icon: [576, 512, [], \"f217\", \"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z\"]\n};\nvar faCashRegister = {\n prefix: 'fas',\n iconName: 'cash-register',\n icon: [512, 512, [], \"f788\", \"M511.1 378.8l-26.7-160c-2.6-15.4-15.9-26.7-31.6-26.7H208v-64h96c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96v64H59.1c-15.6 0-29 11.3-31.6 26.7L.8 378.7c-.6 3.5-.9 7-.9 10.5V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-90.7c.1-3.5-.2-7-.8-10.5zM280 248c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16zm-32 64h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16zm-32-80c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16zM80 80V48h192v32H80zm40 200h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16zm16 64v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16zm216 112c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16zm24-112c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16zm48-80c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16z\"]\n};\nvar faCat = {\n prefix: 'fas',\n iconName: 'cat',\n icon: [512, 512, [], \"f6be\", \"M290.59 192c-20.18 0-106.82 1.98-162.59 85.95V192c0-52.94-43.06-96-96-96-17.67 0-32 14.33-32 32s14.33 32 32 32c17.64 0 32 14.36 32 32v256c0 35.3 28.7 64 64 64h176c8.84 0 16-7.16 16-16v-16c0-17.67-14.33-32-32-32h-32l128-96v144c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V289.86c-10.29 2.67-20.89 4.54-32 4.54-61.81 0-113.52-44.05-125.41-102.4zM448 96h-64l-64-64v134.4c0 53.02 42.98 96 96 96s96-42.98 96-96V32l-64 64zm-72 80c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm80 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z\"]\n};\nvar faCertificate = {\n prefix: 'fas',\n iconName: 'certificate',\n icon: [512, 512, [], \"f0a3\", \"M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z\"]\n};\nvar faChair = {\n prefix: 'fas',\n iconName: 'chair',\n icon: [448, 512, [], \"f6c0\", \"M112 128c0-29.5 16.2-55 40-68.9V256h48V48h48v208h48V59.1c23.8 13.9 40 39.4 40 68.9v128h48V128C384 57.3 326.7 0 256 0h-64C121.3 0 64 57.3 64 128v128h48zm334.3 213.9l-10.7-32c-4.4-13.1-16.6-21.9-30.4-21.9H42.7c-13.8 0-26 8.8-30.4 21.9l-10.7 32C-5.2 362.6 10.2 384 32 384v112c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V384h256v112c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V384c21.8 0 37.2-21.4 30.3-42.1z\"]\n};\nvar faChalkboard = {\n prefix: 'fas',\n iconName: 'chalkboard',\n icon: [640, 512, [], \"f51b\", \"M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faChalkboardTeacher = {\n prefix: 'fas',\n iconName: 'chalkboard-teacher',\n icon: [640, 512, [], \"f51c\", \"M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z\"]\n};\nvar faChargingStation = {\n prefix: 'fas',\n iconName: 'charging-station',\n icon: [576, 512, [], \"f5e7\", \"M336 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h320c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm208-320V80c0-8.84-7.16-16-16-16s-16 7.16-16 16v48h-32V80c0-8.84-7.16-16-16-16s-16 7.16-16 16v48h-16c-8.84 0-16 7.16-16 16v32c0 35.76 23.62 65.69 56 75.93v118.49c0 13.95-9.5 26.92-23.26 29.19C431.22 402.5 416 388.99 416 372v-28c0-48.6-39.4-88-88-88h-8V64c0-35.35-28.65-64-64-64H96C60.65 0 32 28.65 32 64v352h288V304h8c22.09 0 40 17.91 40 40v24.61c0 39.67 28.92 75.16 68.41 79.01C481.71 452.05 520 416.41 520 372V251.93c32.38-10.24 56-40.17 56-75.93v-32c0-8.84-7.16-16-16-16h-16zm-283.91 47.76l-93.7 139c-2.2 3.33-6.21 5.24-10.39 5.24-7.67 0-13.47-6.28-11.67-12.92L167.35 224H108c-7.25 0-12.85-5.59-11.89-11.89l16-107C112.9 99.9 117.98 96 124 96h68c7.88 0 13.62 6.54 11.6 13.21L192 160h57.7c9.24 0 15.01 8.78 10.39 15.76z\"]\n};\nvar faChartArea = {\n prefix: 'fas',\n iconName: 'chart-area',\n icon: [512, 512, [], \"f1fe\", \"M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z\"]\n};\nvar faChartBar = {\n prefix: 'fas',\n iconName: 'chart-bar',\n icon: [512, 512, [], \"f080\", \"M332.8 320h38.4c6.4 0 12.8-6.4 12.8-12.8V172.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h38.4c6.4 0 12.8-6.4 12.8-12.8V76.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-288 0h38.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h38.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zM496 384H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faChartLine = {\n prefix: 'fas',\n iconName: 'chart-line',\n icon: [512, 512, [], \"f201\", \"M496 384H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM464 96H345.94c-21.38 0-32.09 25.85-16.97 40.97l32.4 32.4L288 242.75l-73.37-73.37c-12.5-12.5-32.76-12.5-45.25 0l-68.69 68.69c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0L192 237.25l73.37 73.37c12.5 12.5 32.76 12.5 45.25 0l96-96 32.4 32.4c15.12 15.12 40.97 4.41 40.97-16.97V112c.01-8.84-7.15-16-15.99-16z\"]\n};\nvar faChartPie = {\n prefix: 'fas',\n iconName: 'chart-pie',\n icon: [544, 512, [], \"f200\", \"M527.79 288H290.5l158.03 158.03c6.04 6.04 15.98 6.53 22.19.68 38.7-36.46 65.32-85.61 73.13-140.86 1.34-9.46-6.51-17.85-16.06-17.85zm-15.83-64.8C503.72 103.74 408.26 8.28 288.8.04 279.68-.59 272 7.1 272 16.24V240h223.77c9.14 0 16.82-7.68 16.19-16.8zM224 288V50.71c0-9.55-8.39-17.4-17.84-16.06C86.99 51.49-4.1 155.6.14 280.37 4.5 408.51 114.83 513.59 243.03 511.98c50.4-.63 96.97-16.87 135.26-44.03 7.9-5.6 8.42-17.23 1.57-24.08L224 288z\"]\n};\nvar faCheck = {\n prefix: 'fas',\n iconName: 'check',\n icon: [512, 512, [], \"f00c\", \"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"]\n};\nvar faCheckCircle = {\n prefix: 'fas',\n iconName: 'check-circle',\n icon: [512, 512, [], \"f058\", \"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"]\n};\nvar faCheckDouble = {\n prefix: 'fas',\n iconName: 'check-double',\n icon: [512, 512, [], \"f560\", \"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"]\n};\nvar faCheckSquare = {\n prefix: 'fas',\n iconName: 'check-square',\n icon: [448, 512, [], \"f14a\", \"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\"]\n};\nvar faCheese = {\n prefix: 'fas',\n iconName: 'cheese',\n icon: [512, 512, [], \"f7ef\", \"M0 288v160a32 32 0 0 0 32 32h448a32 32 0 0 0 32-32V288zM299.83 32a32 32 0 0 0-21.13 7L0 256h512c0-119.89-94-217.8-212.17-224z\"]\n};\nvar faChess = {\n prefix: 'fas',\n iconName: 'chess',\n icon: [512, 512, [], \"f439\", \"M74 208H64a16 16 0 0 0-16 16v16a16 16 0 0 0 16 16h15.94A535.78 535.78 0 0 1 64 384h128a535.78 535.78 0 0 1-15.94-128H192a16 16 0 0 0 16-16v-16a16 16 0 0 0-16-16h-10l33.89-90.38a16 16 0 0 0-15-21.62H144V64h24a8 8 0 0 0 8-8V40a8 8 0 0 0-8-8h-24V8a8 8 0 0 0-8-8h-16a8 8 0 0 0-8 8v24H88a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8h24v32H55.09a16 16 0 0 0-15 21.62zm173.16 251.58L224 448v-16a16 16 0 0 0-16-16H48a16 16 0 0 0-16 16v16L8.85 459.58A16 16 0 0 0 0 473.89V496a16 16 0 0 0 16 16h224a16 16 0 0 0 16-16v-22.11a16 16 0 0 0-8.84-14.31zm92.77-157.78l-3.29 82.2h126.72l-3.29-82.21 24.6-20.79A32 32 0 0 0 496 256.54V198a6 6 0 0 0-6-6h-26.38a6 6 0 0 0-6 6v26h-24.71v-26a6 6 0 0 0-6-6H373.1a6 6 0 0 0-6 6v26h-24.71v-26a6 6 0 0 0-6-6H310a6 6 0 0 0-6 6v58.6a32 32 0 0 0 11.36 24.4zM384 304a16 16 0 0 1 32 0v32h-32zm119.16 155.58L480 448v-16a16 16 0 0 0-16-16H336a16 16 0 0 0-16 16v16l-23.15 11.58a16 16 0 0 0-8.85 14.31V496a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16v-22.11a16 16 0 0 0-8.84-14.31z\"]\n};\nvar faChessBishop = {\n prefix: 'fas',\n iconName: 'chess-bishop',\n icon: [320, 512, [], \"f43a\", \"M8 287.88c0 51.64 22.14 73.83 56 84.6V416h192v-43.52c33.86-10.77 56-33 56-84.6 0-30.61-10.73-67.1-26.69-102.56L185 285.65a8 8 0 0 1-11.31 0l-11.31-11.31a8 8 0 0 1 0-11.31L270.27 155.1c-20.8-37.91-46.47-72.1-70.87-92.59C213.4 59.09 224 47.05 224 32a32 32 0 0 0-32-32h-64a32 32 0 0 0-32 32c0 15 10.6 27.09 24.6 30.51C67.81 106.8 8 214.5 8 287.88zM304 448H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faChessBoard = {\n prefix: 'fas',\n iconName: 'chess-board',\n icon: [512, 512, [], \"f43c\", \"M255.9.2h-64v64h64zM0 64.17v64h64v-64zM128 .2H64v64h64zm64 255.9v64h64v-64zM0 192.12v64h64v-64zM383.85.2h-64v64h64zm128 0h-64v64h64zM128 256.1H64v64h64zM511.8 448v-64h-64v64zm0-128v-64h-64v64zM383.85 512h64v-64h-64zm128-319.88v-64h-64v64zM128 512h64v-64h-64zM0 512h64v-64H0zm255.9 0h64v-64h-64zM0 320.07v64h64v-64zm319.88-191.92v-64h-64v64zm-64 128h64v-64h-64zm-64 128v64h64v-64zm128-64h64v-64h-64zm0-127.95h64v-64h-64zm0 191.93v64h64v-64zM64 384.05v64h64v-64zm128-255.9v-64h-64v64zm191.92 255.9h64v-64h-64zm-128-191.93v-64h-64v64zm128-127.95v64h64v-64zm-128 255.9v64h64v-64zm-64-127.95H128v64h64zm191.92 64h64v-64h-64zM128 128.15H64v64h64zm0 191.92v64h64v-64z\"]\n};\nvar faChessKing = {\n prefix: 'fas',\n iconName: 'chess-king',\n icon: [448, 512, [], \"f43f\", \"M400 448H48a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm16-288H256v-48h40a8 8 0 0 0 8-8V56a8 8 0 0 0-8-8h-40V8a8 8 0 0 0-8-8h-48a8 8 0 0 0-8 8v40h-40a8 8 0 0 0-8 8v48a8 8 0 0 0 8 8h40v48H32a32 32 0 0 0-30.52 41.54L74.56 416h298.88l73.08-214.46A32 32 0 0 0 416 160z\"]\n};\nvar faChessKnight = {\n prefix: 'fas',\n iconName: 'chess-knight',\n icon: [384, 512, [], \"f441\", \"M19 272.47l40.63 18.06a32 32 0 0 0 24.88.47l12.78-5.12a32 32 0 0 0 18.76-20.5l9.22-30.65a24 24 0 0 1 12.55-15.65L159.94 208v50.33a48 48 0 0 1-26.53 42.94l-57.22 28.65A80 80 0 0 0 32 401.48V416h319.86V224c0-106-85.92-192-191.92-192H12A12 12 0 0 0 0 44a16.9 16.9 0 0 0 1.79 7.58L16 80l-9 9a24 24 0 0 0-7 17v137.21a32 32 0 0 0 19 29.26zM52 128a20 20 0 1 1-20 20 20 20 0 0 1 20-20zm316 320H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faChessPawn = {\n prefix: 'fas',\n iconName: 'chess-pawn',\n icon: [320, 512, [], \"f443\", \"M105.1 224H80a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h16v5.49c0 44-4.14 86.6-24 122.51h176c-19.89-35.91-24-78.51-24-122.51V288h16a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-25.1c29.39-18.38 49.1-50.78 49.1-88a104 104 0 0 0-208 0c0 37.22 19.71 69.62 49.1 88zM304 448H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faChessQueen = {\n prefix: 'fas',\n iconName: 'chess-queen',\n icon: [512, 512, [], \"f445\", \"M256 112a56 56 0 1 0-56-56 56 56 0 0 0 56 56zm176 336H80a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm72.87-263.84l-28.51-15.92c-7.44-5-16.91-2.46-22.29 4.68a47.59 47.59 0 0 1-47.23 18.23C383.7 186.86 368 164.93 368 141.4a13.4 13.4 0 0 0-13.4-13.4h-38.77c-6 0-11.61 4-12.86 9.91a48 48 0 0 1-93.94 0c-1.25-5.92-6.82-9.91-12.86-9.91H157.4a13.4 13.4 0 0 0-13.4 13.4c0 25.69-19 48.75-44.67 50.49a47.5 47.5 0 0 1-41.54-19.15c-5.28-7.09-14.73-9.45-22.09-4.54l-28.57 16a16 16 0 0 0-5.44 20.47L104.24 416h303.52l102.55-211.37a16 16 0 0 0-5.44-20.47z\"]\n};\nvar faChessRook = {\n prefix: 'fas',\n iconName: 'chess-rook',\n icon: [384, 512, [], \"f447\", \"M368 32h-56a16 16 0 0 0-16 16v48h-48V48a16 16 0 0 0-16-16h-80a16 16 0 0 0-16 16v48H88.1V48a16 16 0 0 0-16-16H16A16 16 0 0 0 0 48v176l64 32c0 48.33-1.54 95-13.21 160h282.42C321.54 351 320 303.72 320 256l64-32V48a16 16 0 0 0-16-16zM224 320h-64v-64a32 32 0 0 1 64 0zm144 128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faChevronCircleDown = {\n prefix: 'fas',\n iconName: 'chevron-circle-down',\n icon: [512, 512, [], \"f13a\", \"M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z\"]\n};\nvar faChevronCircleLeft = {\n prefix: 'fas',\n iconName: 'chevron-circle-left',\n icon: [512, 512, [], \"f137\", \"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z\"]\n};\nvar faChevronCircleRight = {\n prefix: 'fas',\n iconName: 'chevron-circle-right',\n icon: [512, 512, [], \"f138\", \"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"]\n};\nvar faChevronCircleUp = {\n prefix: 'fas',\n iconName: 'chevron-circle-up',\n icon: [512, 512, [], \"f139\", \"M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z\"]\n};\nvar faChevronDown = {\n prefix: 'fas',\n iconName: 'chevron-down',\n icon: [448, 512, [], \"f078\", \"M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z\"]\n};\nvar faChevronLeft = {\n prefix: 'fas',\n iconName: 'chevron-left',\n icon: [320, 512, [], \"f053\", \"M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z\"]\n};\nvar faChevronRight = {\n prefix: 'fas',\n iconName: 'chevron-right',\n icon: [320, 512, [], \"f054\", \"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"]\n};\nvar faChevronUp = {\n prefix: 'fas',\n iconName: 'chevron-up',\n icon: [448, 512, [], \"f077\", \"M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z\"]\n};\nvar faChild = {\n prefix: 'fas',\n iconName: 'child',\n icon: [384, 512, [], \"f1ae\", \"M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z\"]\n};\nvar faChurch = {\n prefix: 'fas',\n iconName: 'church',\n icon: [640, 512, [], \"f51d\", \"M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z\"]\n};\nvar faCircle = {\n prefix: 'fas',\n iconName: 'circle',\n icon: [512, 512, [], \"f111\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"]\n};\nvar faCircleNotch = {\n prefix: 'fas',\n iconName: 'circle-notch',\n icon: [512, 512, [], \"f1ce\", \"M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z\"]\n};\nvar faCity = {\n prefix: 'fas',\n iconName: 'city',\n icon: [640, 512, [], \"f64f\", \"M616 192H480V24c0-13.26-10.74-24-24-24H312c-13.26 0-24 10.74-24 24v72h-64V16c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v80h-64V16c0-8.84-7.16-16-16-16H80c-8.84 0-16 7.16-16 16v80H24c-13.26 0-24 10.74-24 24v360c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V216c0-13.26-10.75-24-24-24zM128 404c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm128 192c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm160 96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12V76c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm160 288c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40z\"]\n};\nvar faClinicMedical = {\n prefix: 'fas',\n iconName: 'clinic-medical',\n icon: [576, 512, [], \"f7f2\", \"M288 115L69.47 307.71c-1.62 1.46-3.69 2.14-5.47 3.35V496a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V311.1c-1.7-1.16-3.72-1.82-5.26-3.2zm96 261a8 8 0 0 1-8 8h-56v56a8 8 0 0 1-8 8h-48a8 8 0 0 1-8-8v-56h-56a8 8 0 0 1-8-8v-48a8 8 0 0 1 8-8h56v-56a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v56h56a8 8 0 0 1 8 8zm186.69-139.72l-255.94-226a39.85 39.85 0 0 0-53.45 0l-256 226a16 16 0 0 0-1.21 22.6L25.5 282.7a16 16 0 0 0 22.6 1.21L277.42 81.63a16 16 0 0 1 21.17 0L527.91 283.9a16 16 0 0 0 22.6-1.21l21.4-23.82a16 16 0 0 0-1.22-22.59z\"]\n};\nvar faClipboard = {\n prefix: 'fas',\n iconName: 'clipboard',\n icon: [384, 512, [], \"f328\", \"M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z\"]\n};\nvar faClipboardCheck = {\n prefix: 'fas',\n iconName: 'clipboard-check',\n icon: [384, 512, [], \"f46c\", \"M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z\"]\n};\nvar faClipboardList = {\n prefix: 'fas',\n iconName: 'clipboard-list',\n icon: [384, 512, [], \"f46d\", \"M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faClock = {\n prefix: 'fas',\n iconName: 'clock',\n icon: [512, 512, [], \"f017\", \"M256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8Zm92.49,313h0l-20,25a16,16,0,0,1-22.49,2.5h0l-67-49.72a40,40,0,0,1-15-31.23V112a16,16,0,0,1,16-16h32a16,16,0,0,1,16,16V256l58,42.5A16,16,0,0,1,348.49,321Z\"]\n};\nvar faClone = {\n prefix: 'fas',\n iconName: 'clone',\n icon: [512, 512, [], \"f24d\", \"M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z\"]\n};\nvar faClosedCaptioning = {\n prefix: 'fas',\n iconName: 'closed-captioning',\n icon: [512, 512, [], \"f20a\", \"M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z\"]\n};\nvar faCloud = {\n prefix: 'fas',\n iconName: 'cloud',\n icon: [640, 512, [], \"f0c2\", \"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z\"]\n};\nvar faCloudDownloadAlt = {\n prefix: 'fas',\n iconName: 'cloud-download-alt',\n icon: [640, 512, [], \"f381\", \"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z\"]\n};\nvar faCloudMeatball = {\n prefix: 'fas',\n iconName: 'cloud-meatball',\n icon: [512, 512, [], \"f73b\", \"M48 352c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm416 0c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm-119 11.1c4.6-14.5 1.6-30.8-9.8-42.3-11.5-11.5-27.8-14.4-42.3-9.9-7-13.5-20.7-23-36.9-23s-29.9 9.5-36.9 23c-14.5-4.6-30.8-1.6-42.3 9.9-11.5 11.5-14.4 27.8-9.9 42.3-13.5 7-23 20.7-23 36.9s9.5 29.9 23 36.9c-4.6 14.5-1.6 30.8 9.9 42.3 8.2 8.2 18.9 12.3 29.7 12.3 4.3 0 8.5-1.1 12.6-2.5 7 13.5 20.7 23 36.9 23s29.9-9.5 36.9-23c4.1 1.3 8.3 2.5 12.6 2.5 10.8 0 21.5-4.1 29.7-12.3 11.5-11.5 14.4-27.8 9.8-42.3 13.5-7 23-20.7 23-36.9s-9.5-29.9-23-36.9zM512 224c0-53-43-96-96-96-.6 0-1.1.2-1.6.2 1.1-5.2 1.6-10.6 1.6-16.2 0-44.2-35.8-80-80-80-24.6 0-46.3 11.3-61 28.8C256.4 24.8 219.3 0 176 0 114.1 0 64 50.1 64 112c0 7.3.8 14.3 2.1 21.2C27.8 145.8 0 181.5 0 224c0 53 43 96 96 96h43.4c3.6-8 8.4-15.4 14.8-21.8 13.5-13.5 31.5-21.1 50.8-21.3 13.5-13.2 31.7-20.9 51-20.9s37.5 7.7 51 20.9c19.3.2 37.3 7.8 50.8 21.3 6.4 6.4 11.3 13.8 14.8 21.8H416c53 0 96-43 96-96z\"]\n};\nvar faCloudMoon = {\n prefix: 'fas',\n iconName: 'cloud-moon',\n icon: [576, 512, [], \"f6c3\", \"M342.8 352.7c5.7-9.6 9.2-20.7 9.2-32.7 0-35.3-28.7-64-64-64-17.2 0-32.8 6.9-44.3 17.9-16.3-29.6-47.5-49.9-83.7-49.9-53 0-96 43-96 96 0 2 .5 3.8.6 5.7C27.1 338.8 0 374.1 0 416c0 53 43 96 96 96h240c44.2 0 80-35.8 80-80 0-41.9-32.3-75.8-73.2-79.3zm222.5-54.3c-93.1 17.7-178.5-53.7-178.5-147.7 0-54.2 29-104 76.1-130.8 7.3-4.1 5.4-15.1-2.8-16.7C448.4 1.1 436.7 0 425 0 319.1 0 233.1 85.9 233.1 192c0 8.5.7 16.8 1.8 25 5.9 4.3 11.6 8.9 16.7 14.2 11.4-4.7 23.7-7.2 36.4-7.2 52.9 0 96 43.1 96 96 0 3.6-.2 7.2-.6 10.7 23.6 10.8 42.4 29.5 53.5 52.6 54.4-3.4 103.7-29.3 137.1-70.4 5.3-6.5-.5-16.1-8.7-14.5z\"]\n};\nvar faCloudMoonRain = {\n prefix: 'fas',\n iconName: 'cloud-moon-rain',\n icon: [576, 512, [], \"f73c\", \"M350.5 225.5c-6.9-37.2-39.3-65.5-78.5-65.5-12.3 0-23.9 3-34.3 8-17.4-24.1-45.6-40-77.7-40-53 0-96 43-96 96 0 .5.2 1.1.2 1.6C27.6 232.9 0 265.2 0 304c0 44.2 35.8 80 80 80h256c44.2 0 80-35.8 80-80 0-39.2-28.2-71.7-65.5-78.5zm217.4-1.7c-70.4 13.3-135-40.3-135-110.8 0-40.6 21.9-78 57.5-98.1 5.5-3.1 4.1-11.4-2.1-12.5C479.6.8 470.7 0 461.8 0c-77.9 0-141.1 61.2-144.4 137.9 26.7 11.9 48.2 33.8 58.9 61.7 37.1 14.3 64 47.4 70.2 86.8 5.1.5 10 1.5 15.2 1.5 44.7 0 85.6-20.2 112.6-53.3 4.2-4.8-.2-12-6.4-10.8zM364.5 418.1c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8z\"]\n};\nvar faCloudRain = {\n prefix: 'fas',\n iconName: 'cloud-rain',\n icon: [512, 512, [], \"f73d\", \"M416 128c-.6 0-1.1.2-1.6.2 1.1-5.2 1.6-10.6 1.6-16.2 0-44.2-35.8-80-80-80-24.6 0-46.3 11.3-61 28.8C256.4 24.8 219.3 0 176 0 114.1 0 64 50.1 64 112c0 7.3.8 14.3 2.1 21.2C27.8 145.8 0 181.5 0 224c0 53 43 96 96 96h320c53 0 96-43 96-96s-43-96-96-96zM88 374.2c-12.8 44.4-40 56.4-40 87.7 0 27.7 21.5 50.1 48 50.1s48-22.4 48-50.1c0-31.4-27.2-43.1-40-87.7-2.2-8.1-13.5-8.5-16 0zm160 0c-12.8 44.4-40 56.4-40 87.7 0 27.7 21.5 50.1 48 50.1s48-22.4 48-50.1c0-31.4-27.2-43.1-40-87.7-2.2-8.1-13.5-8.5-16 0zm160 0c-12.8 44.4-40 56.4-40 87.7 0 27.7 21.5 50.1 48 50.1s48-22.4 48-50.1c0-31.4-27.2-43.1-40-87.7-2.2-8.1-13.5-8.5-16 0z\"]\n};\nvar faCloudShowersHeavy = {\n prefix: 'fas',\n iconName: 'cloud-showers-heavy',\n icon: [512, 512, [], \"f740\", \"M183.9 370.1c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm96 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm-192 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm384 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm-96 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zM416 128c-.6 0-1.1.2-1.6.2 1.1-5.2 1.6-10.6 1.6-16.2 0-44.2-35.8-80-80-80-24.6 0-46.3 11.3-61 28.8C256.4 24.8 219.3 0 176 0 114.2 0 64 50.1 64 112c0 7.3.8 14.3 2.1 21.2C27.8 145.8 0 181.5 0 224c0 53 43 96 96 96h320c53 0 96-43 96-96s-43-96-96-96z\"]\n};\nvar faCloudSun = {\n prefix: 'fas',\n iconName: 'cloud-sun',\n icon: [640, 512, [], \"f6c4\", \"M575.2 325.7c.2-1.9.8-3.7.8-5.6 0-35.3-28.7-64-64-64-12.6 0-24.2 3.8-34.1 10-17.6-38.8-56.5-66-101.9-66-61.8 0-112 50.1-112 112 0 3 .7 5.8.9 8.7-49.6 3.7-88.9 44.7-88.9 95.3 0 53 43 96 96 96h272c53 0 96-43 96-96 0-42.1-27.2-77.4-64.8-90.4zm-430.4-22.6c-43.7-43.7-43.7-114.7 0-158.3 43.7-43.7 114.7-43.7 158.4 0 9.7 9.7 16.9 20.9 22.3 32.7 9.8-3.7 20.1-6 30.7-7.5L386 81.1c4-11.9-7.3-23.1-19.2-19.2L279 91.2 237.5 8.4C232-2.8 216-2.8 210.4 8.4L169 91.2 81.1 61.9C69.3 58 58 69.3 61.9 81.1l29.3 87.8-82.8 41.5c-11.2 5.6-11.2 21.5 0 27.1l82.8 41.4-29.3 87.8c-4 11.9 7.3 23.1 19.2 19.2l76.1-25.3c6.1-12.4 14-23.7 23.6-33.5-13.1-5.4-25.4-13.4-36-24zm-4.8-79.2c0 40.8 29.3 74.8 67.9 82.3 8-4.7 16.3-8.8 25.2-11.7 5.4-44.3 31-82.5 67.4-105C287.3 160.4 258 140 224 140c-46.3 0-84 37.6-84 83.9z\"]\n};\nvar faCloudSunRain = {\n prefix: 'fas',\n iconName: 'cloud-sun-rain',\n icon: [576, 512, [], \"f743\", \"M510.5 225.5c-6.9-37.2-39.3-65.5-78.5-65.5-12.3 0-23.9 3-34.3 8-17.4-24.1-45.6-40-77.7-40-53 0-96 43-96 96 0 .5.2 1.1.2 1.6C187.6 233 160 265.2 160 304c0 44.2 35.8 80 80 80h256c44.2 0 80-35.8 80-80 0-39.2-28.2-71.7-65.5-78.5zm-386.4 34.4c-37.4-37.4-37.4-98.3 0-135.8 34.6-34.6 89.1-36.8 126.7-7.4 20-12.9 43.6-20.7 69.2-20.7.7 0 1.3.2 2 .2l8.9-26.7c3.4-10.2-6.3-19.8-16.5-16.4l-75.3 25.1-35.5-71c-4.8-9.6-18.5-9.6-23.3 0l-35.5 71-75.3-25.1c-10.2-3.4-19.8 6.3-16.4 16.5l25.1 75.3-71 35.5c-9.6 4.8-9.6 18.5 0 23.3l71 35.5-25.1 75.3c-3.4 10.2 6.3 19.8 16.5 16.5l59.2-19.7c-.2-2.4-.7-4.7-.7-7.2 0-12.5 2.3-24.5 6.2-35.9-3.6-2.7-7.1-5.2-10.2-8.3zm69.8-58c4.3-24.5 15.8-46.4 31.9-64-9.8-6.2-21.4-9.9-33.8-9.9-35.3 0-64 28.7-64 64 0 18.7 8.2 35.4 21.1 47.1 11.3-15.9 26.6-28.9 44.8-37.2zm330.6 216.2c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8z\"]\n};\nvar faCloudUploadAlt = {\n prefix: 'fas',\n iconName: 'cloud-upload-alt',\n icon: [640, 512, [], \"f382\", \"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z\"]\n};\nvar faCocktail = {\n prefix: 'fas',\n iconName: 'cocktail',\n icon: [576, 512, [], \"f561\", \"M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z\"]\n};\nvar faCode = {\n prefix: 'fas',\n iconName: 'code',\n icon: [640, 512, [], \"f121\", \"M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z\"]\n};\nvar faCodeBranch = {\n prefix: 'fas',\n iconName: 'code-branch',\n icon: [384, 512, [], \"f126\", \"M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z\"]\n};\nvar faCoffee = {\n prefix: 'fas',\n iconName: 'coffee',\n icon: [640, 512, [], \"f0f4\", \"M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z\"]\n};\nvar faCog = {\n prefix: 'fas',\n iconName: 'cog',\n icon: [512, 512, [], \"f013\", \"M487.4 315.7l-42.6-24.6c4.3-23.2 4.3-47 0-70.2l42.6-24.6c4.9-2.8 7.1-8.6 5.5-14-11.1-35.6-30-67.8-54.7-94.6-3.8-4.1-10-5.1-14.8-2.3L380.8 110c-17.9-15.4-38.5-27.3-60.8-35.1V25.8c0-5.6-3.9-10.5-9.4-11.7-36.7-8.2-74.3-7.8-109.2 0-5.5 1.2-9.4 6.1-9.4 11.7V75c-22.2 7.9-42.8 19.8-60.8 35.1L88.7 85.5c-4.9-2.8-11-1.9-14.8 2.3-24.7 26.7-43.6 58.9-54.7 94.6-1.7 5.4.6 11.2 5.5 14L67.3 221c-4.3 23.2-4.3 47 0 70.2l-42.6 24.6c-4.9 2.8-7.1 8.6-5.5 14 11.1 35.6 30 67.8 54.7 94.6 3.8 4.1 10 5.1 14.8 2.3l42.6-24.6c17.9 15.4 38.5 27.3 60.8 35.1v49.2c0 5.6 3.9 10.5 9.4 11.7 36.7 8.2 74.3 7.8 109.2 0 5.5-1.2 9.4-6.1 9.4-11.7v-49.2c22.2-7.9 42.8-19.8 60.8-35.1l42.6 24.6c4.9 2.8 11 1.9 14.8-2.3 24.7-26.7 43.6-58.9 54.7-94.6 1.5-5.5-.7-11.3-5.6-14.1zM256 336c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faCogs = {\n prefix: 'fas',\n iconName: 'cogs',\n icon: [640, 512, [], \"f085\", \"M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z\"]\n};\nvar faCoins = {\n prefix: 'fas',\n iconName: 'coins',\n icon: [512, 512, [], \"f51e\", \"M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z\"]\n};\nvar faColumns = {\n prefix: 'fas',\n iconName: 'columns',\n icon: [512, 512, [], \"f0db\", \"M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z\"]\n};\nvar faComment = {\n prefix: 'fas',\n iconName: 'comment',\n icon: [512, 512, [], \"f075\", \"M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z\"]\n};\nvar faCommentAlt = {\n prefix: 'fas',\n iconName: 'comment-alt',\n icon: [512, 512, [], \"f27a\", \"M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z\"]\n};\nvar faCommentDollar = {\n prefix: 'fas',\n iconName: 'comment-dollar',\n icon: [512, 512, [], \"f651\", \"M256 32C114.62 32 0 125.12 0 240c0 49.56 21.41 95.01 57.02 130.74C44.46 421.05 2.7 465.97 2.2 466.5A7.995 7.995 0 0 0 8 480c66.26 0 115.99-31.75 140.6-51.38C181.29 440.93 217.59 448 256 448c141.38 0 256-93.12 256-208S397.38 32 256 32zm24 302.44V352c0 8.84-7.16 16-16 16h-16c-8.84 0-16-7.16-16-16v-17.73c-11.42-1.35-22.28-5.19-31.78-11.46-6.22-4.11-6.82-13.11-1.55-18.38l17.52-17.52c3.74-3.74 9.31-4.24 14.11-2.03 3.18 1.46 6.66 2.22 10.26 2.22h32.78c4.66 0 8.44-3.78 8.44-8.42 0-3.75-2.52-7.08-6.12-8.11l-50.07-14.3c-22.25-6.35-40.01-24.71-42.91-47.67-4.05-32.07 19.03-59.43 49.32-63.05V128c0-8.84 7.16-16 16-16h16c8.84 0 16 7.16 16 16v17.73c11.42 1.35 22.28 5.19 31.78 11.46 6.22 4.11 6.82 13.11 1.55 18.38l-17.52 17.52c-3.74 3.74-9.31 4.24-14.11 2.03a24.516 24.516 0 0 0-10.26-2.22h-32.78c-4.66 0-8.44 3.78-8.44 8.42 0 3.75 2.52 7.08 6.12 8.11l50.07 14.3c22.25 6.36 40.01 24.71 42.91 47.67 4.05 32.06-19.03 59.42-49.32 63.04z\"]\n};\nvar faCommentDots = {\n prefix: 'fas',\n iconName: 'comment-dots',\n icon: [512, 512, [], \"f4ad\", \"M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faCommentMedical = {\n prefix: 'fas',\n iconName: 'comment-medical',\n icon: [512, 512, [], \"f7f5\", \"M256 32C114.62 32 0 125.12 0 240c0 49.56 21.41 95 57 130.74C44.46 421.05 2.7 466 2.2 466.5A8 8 0 0 0 8 480c66.26 0 116-31.75 140.6-51.38A304.66 304.66 0 0 0 256 448c141.39 0 256-93.12 256-208S397.39 32 256 32zm96 232a8 8 0 0 1-8 8h-56v56a8 8 0 0 1-8 8h-48a8 8 0 0 1-8-8v-56h-56a8 8 0 0 1-8-8v-48a8 8 0 0 1 8-8h56v-56a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v56h56a8 8 0 0 1 8 8z\"]\n};\nvar faCommentSlash = {\n prefix: 'fas',\n iconName: 'comment-slash',\n icon: [640, 512, [], \"f4b3\", \"M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z\"]\n};\nvar faComments = {\n prefix: 'fas',\n iconName: 'comments',\n icon: [576, 512, [], \"f086\", \"M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z\"]\n};\nvar faCommentsDollar = {\n prefix: 'fas',\n iconName: 'comments-dollar',\n icon: [576, 512, [], \"f653\", \"M416 192c0-88.37-93.12-160-208-160S0 103.63 0 192c0 34.27 14.13 65.95 37.97 91.98C24.61 314.22 2.52 338.16 2.2 338.5A7.995 7.995 0 0 0 8 352c36.58 0 66.93-12.25 88.73-24.98C128.93 342.76 167.02 352 208 352c114.88 0 208-71.63 208-160zm-224 96v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V96c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07V288c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm346.01 123.99C561.87 385.96 576 354.27 576 320c0-66.94-53.49-124.2-129.33-148.07.86 6.6 1.33 13.29 1.33 20.07 0 105.87-107.66 192-240 192-10.78 0-21.32-.77-31.73-1.88C207.8 439.63 281.77 480 368 480c40.98 0 79.07-9.24 111.27-24.98C501.07 467.75 531.42 480 568 480c3.2 0 6.09-1.91 7.34-4.84 1.27-2.94.66-6.34-1.55-8.67-.31-.33-22.42-24.24-35.78-54.5z\"]\n};\nvar faCompactDisc = {\n prefix: 'fas',\n iconName: 'compact-disc',\n icon: [496, 512, [], \"f51f\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z\"]\n};\nvar faCompass = {\n prefix: 'fas',\n iconName: 'compass',\n icon: [496, 512, [], \"f14e\", \"M225.38 233.37c-12.5 12.5-12.5 32.76 0 45.25 12.49 12.5 32.76 12.5 45.25 0 12.5-12.5 12.5-32.76 0-45.25-12.5-12.49-32.76-12.49-45.25 0zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm126.14 148.05L308.17 300.4a31.938 31.938 0 0 1-15.77 15.77l-144.34 65.97c-16.65 7.61-33.81-9.55-26.2-26.2l65.98-144.35a31.938 31.938 0 0 1 15.77-15.77l144.34-65.97c16.65-7.6 33.8 9.55 26.19 26.2z\"]\n};\nvar faCompress = {\n prefix: 'fas',\n iconName: 'compress',\n icon: [448, 512, [], \"f066\", \"M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z\"]\n};\nvar faCompressAlt = {\n prefix: 'fas',\n iconName: 'compress-alt',\n icon: [448, 512, [], \"f422\", \"M4.686 427.314L104 328l-32.922-31.029C55.958 281.851 66.666 256 88.048 256h112C213.303 256 224 266.745 224 280v112c0 21.382-25.803 32.09-40.922 16.971L152 376l-99.314 99.314c-6.248 6.248-16.379 6.248-22.627 0L4.686 449.941c-6.248-6.248-6.248-16.379 0-22.627zM443.314 84.686L344 184l32.922 31.029c15.12 15.12 4.412 40.971-16.97 40.971h-112C234.697 256 224 245.255 224 232V120c0-21.382 25.803-32.09 40.922-16.971L296 136l99.314-99.314c6.248-6.248 16.379-6.248 22.627 0l25.373 25.373c6.248 6.248 6.248 16.379 0 22.627z\"]\n};\nvar faCompressArrowsAlt = {\n prefix: 'fas',\n iconName: 'compress-arrows-alt',\n icon: [512, 512, [], \"f78c\", \"M200 288H88c-21.4 0-32.1 25.8-17 41l32.9 31-99.2 99.3c-6.2 6.2-6.2 16.4 0 22.6l25.4 25.4c6.2 6.2 16.4 6.2 22.6 0L152 408l31.1 33c15.1 15.1 40.9 4.4 40.9-17V312c0-13.3-10.7-24-24-24zm112-64h112c21.4 0 32.1-25.9 17-41l-33-31 99.3-99.3c6.2-6.2 6.2-16.4 0-22.6L481.9 4.7c-6.2-6.2-16.4-6.2-22.6 0L360 104l-31.1-33C313.8 55.9 288 66.6 288 88v112c0 13.3 10.7 24 24 24zm96 136l33-31.1c15.1-15.1 4.4-40.9-17-40.9H312c-13.3 0-24 10.7-24 24v112c0 21.4 25.9 32.1 41 17l31-32.9 99.3 99.3c6.2 6.2 16.4 6.2 22.6 0l25.4-25.4c6.2-6.2 6.2-16.4 0-22.6L408 360zM183 71.1L152 104 52.7 4.7c-6.2-6.2-16.4-6.2-22.6 0L4.7 30.1c-6.2 6.2-6.2 16.4 0 22.6L104 152l-33 31.1C55.9 198.2 66.6 224 88 224h112c13.3 0 24-10.7 24-24V88c0-21.3-25.9-32-41-16.9z\"]\n};\nvar faConciergeBell = {\n prefix: 'fas',\n iconName: 'concierge-bell',\n icon: [512, 512, [], \"f562\", \"M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faCookie = {\n prefix: 'fas',\n iconName: 'cookie',\n icon: [512, 512, [], \"f563\", \"M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faCookieBite = {\n prefix: 'fas',\n iconName: 'cookie-bite',\n icon: [512, 512, [], \"f564\", \"M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faCopy = {\n prefix: 'fas',\n iconName: 'copy',\n icon: [448, 512, [], \"f0c5\", \"M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z\"]\n};\nvar faCopyright = {\n prefix: 'fas',\n iconName: 'copyright',\n icon: [512, 512, [], \"f1f9\", \"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z\"]\n};\nvar faCouch = {\n prefix: 'fas',\n iconName: 'couch',\n icon: [640, 512, [], \"f4b8\", \"M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z\"]\n};\nvar faCreditCard = {\n prefix: 'fas',\n iconName: 'credit-card',\n icon: [576, 512, [], \"f09d\", \"M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z\"]\n};\nvar faCrop = {\n prefix: 'fas',\n iconName: 'crop',\n icon: [512, 512, [], \"f125\", \"M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z\"]\n};\nvar faCropAlt = {\n prefix: 'fas',\n iconName: 'crop-alt',\n icon: [512, 512, [], \"f565\", \"M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z\"]\n};\nvar faCross = {\n prefix: 'fas',\n iconName: 'cross',\n icon: [384, 512, [], \"f654\", \"M352 128h-96V32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h96v224c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V256h96c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z\"]\n};\nvar faCrosshairs = {\n prefix: 'fas',\n iconName: 'crosshairs',\n icon: [512, 512, [], \"f05b\", \"M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z\"]\n};\nvar faCrow = {\n prefix: 'fas',\n iconName: 'crow',\n icon: [640, 512, [], \"f520\", \"M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faCrown = {\n prefix: 'fas',\n iconName: 'crown',\n icon: [640, 512, [], \"f521\", \"M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z\"]\n};\nvar faCrutch = {\n prefix: 'fas',\n iconName: 'crutch',\n icon: [512, 512, [], \"f7f7\", \"M507.31 185.71l-181-181a16 16 0 0 0-22.62 0L281 27.31a16 16 0 0 0 0 22.63l181 181a16 16 0 0 0 22.63 0l22.62-22.63a16 16 0 0 0 .06-22.6zm-179.54 66.41l-67.89-67.89 55.1-55.1-45.25-45.25-109.67 109.67a96.08 96.08 0 0 0-25.67 46.29L106.65 360.1l-102 102a16 16 0 0 0 0 22.63l22.62 22.62a16 16 0 0 0 22.63 0l102-102 120.25-27.75a95.88 95.88 0 0 0 46.29-25.65l109.68-109.68L382.87 197zm-54.57 54.57a32 32 0 0 1-15.45 8.54l-79.3 18.32 18.3-79.3a32.22 32.22 0 0 1 8.56-15.45l9.31-9.31 67.89 67.89z\"]\n};\nvar faCube = {\n prefix: 'fas',\n iconName: 'cube',\n icon: [512, 512, [], \"f1b2\", \"M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z\"]\n};\nvar faCubes = {\n prefix: 'fas',\n iconName: 'cubes',\n icon: [512, 512, [], \"f1b3\", \"M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z\"]\n};\nvar faCut = {\n prefix: 'fas',\n iconName: 'cut',\n icon: [448, 512, [], \"f0c4\", \"M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z\"]\n};\nvar faDatabase = {\n prefix: 'fas',\n iconName: 'database',\n icon: [448, 512, [], \"f1c0\", \"M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z\"]\n};\nvar faDeaf = {\n prefix: 'fas',\n iconName: 'deaf',\n icon: [512, 512, [], \"f2a4\", \"M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z\"]\n};\nvar faDemocrat = {\n prefix: 'fas',\n iconName: 'democrat',\n icon: [640, 512, [], \"f747\", \"M637.3 256.9l-19.6-29.4c-28.2-42.3-75.3-67.5-126.1-67.5H256l-81.2-81.2c20.1-20.1 22.6-51.1 7.5-73.9-3.4-5.2-10.8-5.9-15.2-1.5l-41.8 41.8L82.4 2.4c-3.6-3.6-9.6-3-12.4 1.2-12.3 18.6-10.3 44 6.1 60.4 3.3 3.3 7.3 5.3 11.3 7.5-2.2 1.7-4.7 3.1-6.4 5.4L6.4 176.2c-7.3 9.7-8.4 22.7-3 33.5l14.3 28.6c5.4 10.8 16.5 17.7 28.6 17.7h31c8.5 0 16.6-3.4 22.6-9.4L138 212l54 108h352v-77.8c16.2 12.2 18.3 17.6 40.1 50.3 4.9 7.4 14.8 9.3 22.2 4.4l26.6-17.7c7.3-5 9.3-14.9 4.4-22.3zm-341.1-13.6l-16.5 16.1 3.9 22.7c.7 4.1-3.6 7.2-7.2 5.3L256 276.7l-20.4 10.7c-3.6 1.9-7.9-1.2-7.2-5.3l3.9-22.7-16.5-16.1c-3-2.9-1.3-7.9 2.8-8.5l22.8-3.3 10.2-20.7c1.8-3.7 7.1-3.7 9 0l10.2 20.7 22.8 3.3c4 .6 5.6 5.6 2.6 8.5zm112 0l-16.5 16.1 3.9 22.7c.7 4.1-3.6 7.2-7.2 5.3L368 276.7l-20.4 10.7c-3.6 1.9-7.9-1.2-7.2-5.3l3.9-22.7-16.5-16.1c-3-2.9-1.3-7.9 2.8-8.5l22.8-3.3 10.2-20.7c1.8-3.7 7.1-3.7 9 0l10.2 20.7 22.8 3.3c4 .6 5.6 5.6 2.6 8.5zm112 0l-16.5 16.1 3.9 22.7c.7 4.1-3.6 7.2-7.2 5.3L480 276.7l-20.4 10.7c-3.6 1.9-7.9-1.2-7.2-5.3l3.9-22.7-16.5-16.1c-3-2.9-1.3-7.9 2.8-8.5l22.8-3.3 10.2-20.7c1.8-3.7 7.1-3.7 9 0l10.2 20.7 22.8 3.3c4 .6 5.6 5.6 2.6 8.5zM192 496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80h160v80c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V352H192v144z\"]\n};\nvar faDesktop = {\n prefix: 'fas',\n iconName: 'desktop',\n icon: [576, 512, [], \"f108\", \"M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z\"]\n};\nvar faDharmachakra = {\n prefix: 'fas',\n iconName: 'dharmachakra',\n icon: [512, 512, [], \"f655\", \"M495 225.06l-17.22 1.08c-5.27-39.49-20.79-75.64-43.86-105.84l12.95-11.43c6.92-6.11 7.25-16.79.73-23.31L426.44 64.4c-6.53-6.53-17.21-6.19-23.31.73L391.7 78.07c-30.2-23.06-66.35-38.58-105.83-43.86L286.94 17c.58-9.21-6.74-17-15.97-17h-29.94c-9.23 0-16.54 7.79-15.97 17l1.08 17.22c-39.49 5.27-75.64 20.79-105.83 43.86l-11.43-12.95c-6.11-6.92-16.79-7.25-23.31-.73L64.4 85.56c-6.53 6.53-6.19 17.21.73 23.31l12.95 11.43c-23.06 30.2-38.58 66.35-43.86 105.84L17 225.06c-9.21-.58-17 6.74-17 15.97v29.94c0 9.23 7.79 16.54 17 15.97l17.22-1.08c5.27 39.49 20.79 75.64 43.86 105.83l-12.95 11.43c-6.92 6.11-7.25 16.79-.73 23.31l21.17 21.17c6.53 6.53 17.21 6.19 23.31-.73l11.43-12.95c30.2 23.06 66.35 38.58 105.84 43.86L225.06 495c-.58 9.21 6.74 17 15.97 17h29.94c9.23 0 16.54-7.79 15.97-17l-1.08-17.22c39.49-5.27 75.64-20.79 105.84-43.86l11.43 12.95c6.11 6.92 16.79 7.25 23.31.73l21.17-21.17c6.53-6.53 6.19-17.21-.73-23.31l-12.95-11.43c23.06-30.2 38.58-66.35 43.86-105.83l17.22 1.08c9.21.58 17-6.74 17-15.97v-29.94c-.01-9.23-7.8-16.54-17.01-15.97zM281.84 98.61c24.81 4.07 47.63 13.66 67.23 27.78l-42.62 48.29c-8.73-5.44-18.32-9.54-28.62-11.95l4.01-64.12zm-51.68 0l4.01 64.12c-10.29 2.41-19.89 6.52-28.62 11.95l-42.62-48.29c19.6-14.12 42.42-23.71 67.23-27.78zm-103.77 64.33l48.3 42.61c-5.44 8.73-9.54 18.33-11.96 28.62l-64.12-4.01c4.07-24.81 13.66-47.62 27.78-67.22zm-27.78 118.9l64.12-4.01c2.41 10.29 6.52 19.89 11.95 28.62l-48.29 42.62c-14.12-19.6-23.71-42.42-27.78-67.23zm131.55 131.55c-24.81-4.07-47.63-13.66-67.23-27.78l42.61-48.3c8.73 5.44 18.33 9.54 28.62 11.96l-4 64.12zM256 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm25.84 125.39l-4.01-64.12c10.29-2.41 19.89-6.52 28.62-11.96l42.61 48.3c-19.6 14.12-42.41 23.71-67.22 27.78zm103.77-64.33l-48.29-42.62c5.44-8.73 9.54-18.32 11.95-28.62l64.12 4.01c-4.07 24.82-13.66 47.64-27.78 67.23zm-36.34-114.89c-2.41-10.29-6.52-19.89-11.96-28.62l48.3-42.61c14.12 19.6 23.71 42.42 27.78 67.23l-64.12 4z\"]\n};\nvar faDiagnoses = {\n prefix: 'fas',\n iconName: 'diagnoses',\n icon: [640, 512, [], \"f470\", \"M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z\"]\n};\nvar faDice = {\n prefix: 'fas',\n iconName: 'dice',\n icon: [640, 512, [], \"f522\", \"M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faDiceD20 = {\n prefix: 'fas',\n iconName: 'dice-d20',\n icon: [480, 512, [], \"f6cf\", \"M106.75 215.06L1.2 370.95c-3.08 5 .1 11.5 5.93 12.14l208.26 22.07-108.64-190.1zM7.41 315.43L82.7 193.08 6.06 147.1c-2.67-1.6-6.06.32-6.06 3.43v162.81c0 4.03 5.29 5.53 7.41 2.09zM18.25 423.6l194.4 87.66c5.3 2.45 11.35-1.43 11.35-7.26v-65.67l-203.55-22.3c-4.45-.5-6.23 5.59-2.2 7.57zm81.22-257.78L179.4 22.88c4.34-7.06-3.59-15.25-10.78-11.14L17.81 110.35c-2.47 1.62-2.39 5.26.13 6.78l81.53 48.69zM240 176h109.21L253.63 7.62C250.5 2.54 245.25 0 240 0s-10.5 2.54-13.63 7.62L130.79 176H240zm233.94-28.9l-76.64 45.99 75.29 122.35c2.11 3.44 7.41 1.94 7.41-2.1V150.53c0-3.11-3.39-5.03-6.06-3.43zm-93.41 18.72l81.53-48.7c2.53-1.52 2.6-5.16.13-6.78l-150.81-98.6c-7.19-4.11-15.12 4.08-10.78 11.14l79.93 142.94zm79.02 250.21L256 438.32v65.67c0 5.84 6.05 9.71 11.35 7.26l194.4-87.66c4.03-1.97 2.25-8.06-2.2-7.56zm-86.3-200.97l-108.63 190.1 208.26-22.07c5.83-.65 9.01-7.14 5.93-12.14L373.25 215.06zM240 208H139.57L240 383.75 340.43 208H240z\"]\n};\nvar faDiceD6 = {\n prefix: 'fas',\n iconName: 'dice-d6',\n icon: [448, 512, [], \"f6d1\", \"M422.19 109.95L256.21 9.07c-19.91-12.1-44.52-12.1-64.43 0L25.81 109.95c-5.32 3.23-5.29 11.27.06 14.46L224 242.55l198.14-118.14c5.35-3.19 5.38-11.22.05-14.46zm13.84 44.63L240 271.46v223.82c0 12.88 13.39 20.91 24.05 14.43l152.16-92.48c19.68-11.96 31.79-33.94 31.79-57.7v-197.7c0-6.41-6.64-10.43-11.97-7.25zM0 161.83v197.7c0 23.77 12.11 45.74 31.79 57.7l152.16 92.47c10.67 6.48 24.05-1.54 24.05-14.43V271.46L11.97 154.58C6.64 151.4 0 155.42 0 161.83z\"]\n};\nvar faDiceFive = {\n prefix: 'fas',\n iconName: 'dice-five',\n icon: [448, 512, [], \"f523\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceFour = {\n prefix: 'fas',\n iconName: 'dice-four',\n icon: [448, 512, [], \"f524\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceOne = {\n prefix: 'fas',\n iconName: 'dice-one',\n icon: [448, 512, [], \"f525\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceSix = {\n prefix: 'fas',\n iconName: 'dice-six',\n icon: [448, 512, [], \"f526\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceThree = {\n prefix: 'fas',\n iconName: 'dice-three',\n icon: [448, 512, [], \"f527\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceTwo = {\n prefix: 'fas',\n iconName: 'dice-two',\n icon: [448, 512, [], \"f528\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDigitalTachograph = {\n prefix: 'fas',\n iconName: 'digital-tachograph',\n icon: [640, 512, [], \"f566\", \"M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z\"]\n};\nvar faDirections = {\n prefix: 'fas',\n iconName: 'directions',\n icon: [512, 512, [], \"f5eb\", \"M502.61 233.32L278.68 9.39c-12.52-12.52-32.83-12.52-45.36 0L9.39 233.32c-12.52 12.53-12.52 32.83 0 45.36l223.93 223.93c12.52 12.53 32.83 12.53 45.36 0l223.93-223.93c12.52-12.53 12.52-32.83 0-45.36zm-100.98 12.56l-84.21 77.73c-5.12 4.73-13.43 1.1-13.43-5.88V264h-96v64c0 4.42-3.58 8-8 8h-32c-4.42 0-8-3.58-8-8v-80c0-17.67 14.33-32 32-32h112v-53.73c0-6.97 8.3-10.61 13.43-5.88l84.21 77.73c3.43 3.17 3.43 8.59 0 11.76z\"]\n};\nvar faDisease = {\n prefix: 'fas',\n iconName: 'disease',\n icon: [512, 512, [], \"f7fa\", \"M472.29 195.9l-67.06-23c-19.28-6.6-33.54-20.92-38.14-38.31l-16-60.45c-11.58-43.77-76.57-57.13-110-22.62L195 99.24c-13.26 13.71-33.54 20.93-54.2 19.31l-71.9-5.62c-52-4.07-86.93 44.89-59 82.84l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24l-28.43 57C4 396.67 47.46 440.29 98.11 429.23l70-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101 7.57 104.45-37.22l4.7-61.86c1.35-17.8 12.8-33.87 30.63-43l62-31.74c44.84-22.96 39.55-80.17-8.99-96.79zM160 256a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm128 96a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm16-128a16 16 0 1 1 16-16 16 16 0 0 1-16 16z\"]\n};\nvar faDivide = {\n prefix: 'fas',\n iconName: 'divide',\n icon: [448, 512, [], \"f529\", \"M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"]\n};\nvar faDizzy = {\n prefix: 'fas',\n iconName: 'dizzy',\n icon: [496, 512, [], \"f567\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z\"]\n};\nvar faDna = {\n prefix: 'fas',\n iconName: 'dna',\n icon: [448, 512, [], \"f471\", \"M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z\"]\n};\nvar faDog = {\n prefix: 'fas',\n iconName: 'dog',\n icon: [576, 512, [], \"f6d3\", \"M298.06,224,448,277.55V496a16,16,0,0,1-16,16H368a16,16,0,0,1-16-16V384H192V496a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V282.09C58.84,268.84,32,233.66,32,192a32,32,0,0,1,64,0,32.06,32.06,0,0,0,32,32ZM544,112v32a64,64,0,0,1-64,64H448v35.58L320,197.87V48c0-14.25,17.22-21.39,27.31-11.31L374.59,64h53.63c10.91,0,23.75,7.92,28.62,17.69L464,96h64A16,16,0,0,1,544,112Zm-112,0a16,16,0,1,0-16,16A16,16,0,0,0,432,112Z\"]\n};\nvar faDollarSign = {\n prefix: 'fas',\n iconName: 'dollar-sign',\n icon: [288, 512, [], \"f155\", \"M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z\"]\n};\nvar faDolly = {\n prefix: 'fas',\n iconName: 'dolly',\n icon: [576, 512, [], \"f472\", \"M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z\"]\n};\nvar faDollyFlatbed = {\n prefix: 'fas',\n iconName: 'dolly-flatbed',\n icon: [640, 512, [], \"f474\", \"M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z\"]\n};\nvar faDonate = {\n prefix: 'fas',\n iconName: 'donate',\n icon: [512, 512, [], \"f4b9\", \"M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z\"]\n};\nvar faDoorClosed = {\n prefix: 'fas',\n iconName: 'door-closed',\n icon: [640, 512, [], \"f52a\", \"M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z\"]\n};\nvar faDoorOpen = {\n prefix: 'fas',\n iconName: 'door-open',\n icon: [640, 512, [], \"f52b\", \"M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z\"]\n};\nvar faDotCircle = {\n prefix: 'fas',\n iconName: 'dot-circle',\n icon: [512, 512, [], \"f192\", \"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z\"]\n};\nvar faDove = {\n prefix: 'fas',\n iconName: 'dove',\n icon: [512, 512, [], \"f4ba\", \"M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z\"]\n};\nvar faDownload = {\n prefix: 'fas',\n iconName: 'download',\n icon: [512, 512, [], \"f019\", \"M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z\"]\n};\nvar faDraftingCompass = {\n prefix: 'fas',\n iconName: 'drafting-compass',\n icon: [512, 512, [], \"f568\", \"M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z\"]\n};\nvar faDragon = {\n prefix: 'fas',\n iconName: 'dragon',\n icon: [640, 512, [], \"f6d5\", \"M18.32 255.78L192 223.96l-91.28 68.69c-10.08 10.08-2.94 27.31 11.31 27.31h222.7c-9.44-26.4-14.73-54.47-14.73-83.38v-42.27l-119.73-87.6c-23.82-15.88-55.29-14.01-77.06 4.59L5.81 227.64c-12.38 10.33-3.45 30.42 12.51 28.14zm556.87 34.1l-100.66-50.31A47.992 47.992 0 0 1 448 196.65v-36.69h64l28.09 22.63c6 6 14.14 9.37 22.63 9.37h30.97a32 32 0 0 0 28.62-17.69l14.31-28.62a32.005 32.005 0 0 0-3.02-33.51l-74.53-99.38C553.02 4.7 543.54 0 533.47 0H296.02c-7.13 0-10.7 8.57-5.66 13.61L352 63.96 292.42 88.8c-5.9 2.95-5.9 11.36 0 14.31L352 127.96v108.62c0 72.08 36.03 139.39 96 179.38-195.59 6.81-344.56 41.01-434.1 60.91C5.78 478.67 0 485.88 0 494.2 0 504 7.95 512 17.76 512h499.08c63.29.01 119.61-47.56 122.99-110.76 2.52-47.28-22.73-90.4-64.64-111.36zM489.18 66.25l45.65 11.41c-2.75 10.91-12.47 18.89-24.13 18.26-12.96-.71-25.85-12.53-21.52-29.67z\"]\n};\nvar faDrawPolygon = {\n prefix: 'fas',\n iconName: 'draw-polygon',\n icon: [448, 512, [], \"f5ee\", \"M384 352c-.35 0-.67.1-1.02.1l-39.2-65.32c5.07-9.17 8.22-19.56 8.22-30.78s-3.14-21.61-8.22-30.78l39.2-65.32c.35.01.67.1 1.02.1 35.35 0 64-28.65 64-64s-28.65-64-64-64c-23.63 0-44.04 12.95-55.12 32H119.12C108.04 44.95 87.63 32 64 32 28.65 32 0 60.65 0 96c0 23.63 12.95 44.04 32 55.12v209.75C12.95 371.96 0 392.37 0 416c0 35.35 28.65 64 64 64 23.63 0 44.04-12.95 55.12-32h209.75c11.09 19.05 31.49 32 55.12 32 35.35 0 64-28.65 64-64 .01-35.35-28.64-64-63.99-64zm-288 8.88V151.12A63.825 63.825 0 0 0 119.12 128h208.36l-38.46 64.1c-.35-.01-.67-.1-1.02-.1-35.35 0-64 28.65-64 64s28.65 64 64 64c.35 0 .67-.1 1.02-.1l38.46 64.1H119.12A63.748 63.748 0 0 0 96 360.88zM272 256c0-8.82 7.18-16 16-16s16 7.18 16 16-7.18 16-16 16-16-7.18-16-16zM400 96c0 8.82-7.18 16-16 16s-16-7.18-16-16 7.18-16 16-16 16 7.18 16 16zM64 80c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16zM48 416c0-8.82 7.18-16 16-16s16 7.18 16 16-7.18 16-16 16-16-7.18-16-16zm336 16c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16z\"]\n};\nvar faDrum = {\n prefix: 'fas',\n iconName: 'drum',\n icon: [512, 512, [], \"f569\", \"M431.34 122.05l73.53-47.42a16 16 0 0 0 4.44-22.19l-8.87-13.31a16 16 0 0 0-22.19-4.44l-110.06 71C318.43 96.91 271.22 96 256 96 219.55 96 0 100.55 0 208.15v160.23c0 30.27 27.5 57.68 72 77.86v-101.9a24 24 0 1 1 48 0v118.93c33.05 9.11 71.07 15.06 112 16.73V376.39a24 24 0 1 1 48 0V480c40.93-1.67 78.95-7.62 112-16.73V344.34a24 24 0 1 1 48 0v101.9c44.5-20.18 72-47.59 72-77.86V208.15c0-43.32-35.76-69.76-80.66-86.1zM256 272.24c-114.88 0-208-28.69-208-64.09s93.12-64.08 208-64.08c17.15 0 33.73.71 49.68 1.91l-72.81 47a16 16 0 0 0-4.43 22.19l8.87 13.31a16 16 0 0 0 22.19 4.44l118.64-76.52C430.09 168 464 186.84 464 208.15c0 35.4-93.13 64.09-208 64.09z\"]\n};\nvar faDrumSteelpan = {\n prefix: 'fas',\n iconName: 'drum-steelpan',\n icon: [576, 512, [], \"f56a\", \"M288 32C128.94 32 0 89.31 0 160v192c0 70.69 128.94 128 288 128s288-57.31 288-128V160c0-70.69-128.94-128-288-128zm-82.99 158.36c-4.45 16.61-14.54 30.57-28.31 40.48C100.23 217.46 48 190.78 48 160c0-30.16 50.11-56.39 124.04-70.03l25.6 44.34c9.86 17.09 12.48 36.99 7.37 56.05zM288 240c-21.08 0-41.41-1-60.89-2.7 8.06-26.13 32.15-45.3 60.89-45.3s52.83 19.17 60.89 45.3C329.41 239 309.08 240 288 240zm64-144c0 35.29-28.71 64-64 64s-64-28.71-64-64V82.96c20.4-1.88 41.8-2.96 64-2.96s43.6 1.08 64 2.96V96zm46.93 134.9c-13.81-9.91-23.94-23.9-28.4-40.54-5.11-19.06-2.49-38.96 7.38-56.04l25.65-44.42C477.72 103.5 528 129.79 528 160c0 30.83-52.4 57.54-129.07 70.9z\"]\n};\nvar faDrumstickBite = {\n prefix: 'fas',\n iconName: 'drumstick-bite',\n icon: [512, 512, [], \"f6d7\", \"M462.8 49.57a169.44 169.44 0 0 0-239.5 0C187.82 85 160.13 128 160.13 192v85.83l-40.62 40.59c-9.7 9.69-24 11.07-36.78 6a60.33 60.33 0 0 0-65 98.72C33 438.39 54.24 442.7 73.85 438.21c-4.5 19.6-.18 40.83 15.1 56.1a60.35 60.35 0 0 0 98.8-65c-5.09-12.73-3.72-27 6-36.75L234.36 352h85.89a187.87 187.87 0 0 0 61.89-10c-39.64-43.89-39.83-110.23 1.05-151.07 34.38-34.36 86.76-39.46 128.74-16.8 1.3-44.96-14.81-90.28-49.13-124.56z\"]\n};\nvar faDumbbell = {\n prefix: 'fas',\n iconName: 'dumbbell',\n icon: [640, 512, [], \"f44b\", \"M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z\"]\n};\nvar faDumpster = {\n prefix: 'fas',\n iconName: 'dumpster',\n icon: [576, 512, [], \"f793\", \"M560 160c10.4 0 18-9.8 15.5-19.9l-24-96C549.7 37 543.3 32 536 32h-98.9l25.6 128H560zM272 32H171.5l-25.6 128H272V32zm132.5 0H304v128h126.1L404.5 32zM16 160h97.3l25.6-128H40c-7.3 0-13.7 5-15.5 12.1l-24 96C-2 150.2 5.6 160 16 160zm544 64h-20l4-32H32l4 32H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h28l20 160v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h320v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16l20-160h28c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z\"]\n};\nvar faDumpsterFire = {\n prefix: 'fas',\n iconName: 'dumpster-fire',\n icon: [640, 512, [], \"f794\", \"M418.7 104.1l.2-.2-14.4-72H304v128h60.8c16.2-19.3 34.2-38.2 53.9-55.8zM272 32H171.5l-25.6 128H272V32zm189.3 72.1c18.2 16.3 35.5 33.7 51.1 51.5 5.7-5.6 11.4-11.1 17.3-16.3l21.3-19 21.3 19c1.1.9 2.1 2.1 3.1 3.1-.1-.8.2-1.5 0-2.3l-24-96C549.7 37 543.3 32 536 32h-98.9l12.3 61.5 11.9 10.6zM16 160h97.3l25.6-128H40c-7.3 0-13.7 5-15.5 12.1l-24 96C-2 150.2 5.6 160 16 160zm324.6 32H32l4 32H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h28l20 160v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208.8c-30.2-33.7-48.8-77.9-48.8-126.4 0-35.9 19.9-82.9 52.6-129.6zm210.5-28.8c-14.9 13.3-28.3 27.2-40.2 41.2-19.5-25.8-43.6-52-71-76.4-70.2 62.7-120 144.3-120 193.6 0 87.5 71.6 158.4 160 158.4s160-70.9 160-158.4c.1-36.6-37-112.2-88.8-158.4zm-18.6 229.4c-14.7 10.7-32.9 17-52.5 17-49 0-88.9-33.5-88.9-88 0-27.1 16.5-51 49.4-91.9 4.7 5.6 67.1 88.1 67.1 88.1l39.8-47c2.8 4.8 5.4 9.5 7.7 14 18.6 36.7 10.8 83.6-22.6 107.8z\"]\n};\nvar faDungeon = {\n prefix: 'fas',\n iconName: 'dungeon',\n icon: [512, 512, [], \"f6d9\", \"M128.73 195.32l-82.81-51.76c-8.04-5.02-18.99-2.17-22.93 6.45A254.19 254.19 0 0 0 .54 239.28C-.05 248.37 7.59 256 16.69 256h97.13c7.96 0 14.08-6.25 15.01-14.16 1.09-9.33 3.24-18.33 6.24-26.94 2.56-7.34.25-15.46-6.34-19.58zM319.03 8C298.86 2.82 277.77 0 256 0s-42.86 2.82-63.03 8c-9.17 2.35-13.91 12.6-10.39 21.39l37.47 104.03A16.003 16.003 0 0 0 235.1 144h41.8c6.75 0 12.77-4.23 15.05-10.58l37.47-104.03c3.52-8.79-1.22-19.03-10.39-21.39zM112 288H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm0 128H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm77.31-283.67l-36.32-90.8c-3.53-8.83-14.13-12.99-22.42-8.31a257.308 257.308 0 0 0-71.61 59.89c-6.06 7.32-3.85 18.48 4.22 23.52l82.93 51.83c6.51 4.07 14.66 2.62 20.11-2.79 5.18-5.15 10.79-9.85 16.79-14.05 6.28-4.41 9.15-12.17 6.3-19.29zM398.18 256h97.13c9.1 0 16.74-7.63 16.15-16.72a254.135 254.135 0 0 0-22.45-89.27c-3.94-8.62-14.89-11.47-22.93-6.45l-82.81 51.76c-6.59 4.12-8.9 12.24-6.34 19.58 3.01 8.61 5.15 17.62 6.24 26.94.93 7.91 7.05 14.16 15.01 14.16zm54.85-162.89a257.308 257.308 0 0 0-71.61-59.89c-8.28-4.68-18.88-.52-22.42 8.31l-36.32 90.8c-2.85 7.12.02 14.88 6.3 19.28 6 4.2 11.61 8.9 16.79 14.05 5.44 5.41 13.6 6.86 20.11 2.79l82.93-51.83c8.07-5.03 10.29-16.19 4.22-23.51zM496 288h-96c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm0 128h-96c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zM240 177.62V472c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8V177.62c-5.23-.89-10.52-1.62-16-1.62s-10.77.73-16 1.62zm-64 41.51V472c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8V189.36c-12.78 7.45-23.84 17.47-32 29.77zm128-29.77V472c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8V219.13c-8.16-12.3-19.22-22.32-32-29.77z\"]\n};\nvar faEdit = {\n prefix: 'fas',\n iconName: 'edit',\n icon: [576, 512, [], \"f044\", \"M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z\"]\n};\nvar faEgg = {\n prefix: 'fas',\n iconName: 'egg',\n icon: [384, 512, [], \"f7fb\", \"M192 0C86 0 0 214 0 320s86 192 192 192 192-86 192-192S298 0 192 0z\"]\n};\nvar faEject = {\n prefix: 'fas',\n iconName: 'eject',\n icon: [448, 512, [], \"f052\", \"M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z\"]\n};\nvar faEllipsisH = {\n prefix: 'fas',\n iconName: 'ellipsis-h',\n icon: [512, 512, [], \"f141\", \"M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z\"]\n};\nvar faEllipsisV = {\n prefix: 'fas',\n iconName: 'ellipsis-v',\n icon: [192, 512, [], \"f142\", \"M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z\"]\n};\nvar faEnvelope = {\n prefix: 'fas',\n iconName: 'envelope',\n icon: [512, 512, [], \"f0e0\", \"M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z\"]\n};\nvar faEnvelopeOpen = {\n prefix: 'fas',\n iconName: 'envelope-open',\n icon: [512, 512, [], \"f2b6\", \"M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z\"]\n};\nvar faEnvelopeOpenText = {\n prefix: 'fas',\n iconName: 'envelope-open-text',\n icon: [512, 512, [], \"f658\", \"M176 216h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16H176c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16zm-16 80c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16H176c-8.84 0-16 7.16-16 16v16zm96 121.13c-16.42 0-32.84-5.06-46.86-15.19L0 250.86V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V250.86L302.86 401.94c-14.02 10.12-30.44 15.19-46.86 15.19zm237.61-254.18c-8.85-6.94-17.24-13.47-29.61-22.81V96c0-26.51-21.49-48-48-48h-77.55c-3.04-2.2-5.87-4.26-9.04-6.56C312.6 29.17 279.2-.35 256 0c-23.2-.35-56.59 29.17-73.41 41.44-3.17 2.3-6 4.36-9.04 6.56H96c-26.51 0-48 21.49-48 48v44.14c-12.37 9.33-20.76 15.87-29.61 22.81A47.995 47.995 0 0 0 0 200.72v10.65l96 69.35V96h320v184.72l96-69.35v-10.65c0-14.74-6.78-28.67-18.39-37.77z\"]\n};\nvar faEnvelopeSquare = {\n prefix: 'fas',\n iconName: 'envelope-square',\n icon: [448, 512, [], \"f199\", \"M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z\"]\n};\nvar faEquals = {\n prefix: 'fas',\n iconName: 'equals',\n icon: [448, 512, [], \"f52c\", \"M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"]\n};\nvar faEraser = {\n prefix: 'fas',\n iconName: 'eraser',\n icon: [512, 512, [], \"f12d\", \"M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z\"]\n};\nvar faEthernet = {\n prefix: 'fas',\n iconName: 'ethernet',\n icon: [512, 512, [], \"f796\", \"M496 192h-48v-48c0-8.8-7.2-16-16-16h-48V80c0-8.8-7.2-16-16-16H144c-8.8 0-16 7.2-16 16v48H80c-8.8 0-16 7.2-16 16v48H16c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16h80V320h32v128h64V320h32v128h64V320h32v128h64V320h32v128h80c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16z\"]\n};\nvar faEuroSign = {\n prefix: 'fas',\n iconName: 'euro-sign',\n icon: [320, 512, [], \"f153\", \"M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z\"]\n};\nvar faExchangeAlt = {\n prefix: 'fas',\n iconName: 'exchange-alt',\n icon: [512, 512, [], \"f362\", \"M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z\"]\n};\nvar faExclamation = {\n prefix: 'fas',\n iconName: 'exclamation',\n icon: [192, 512, [], \"f12a\", \"M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z\"]\n};\nvar faExclamationCircle = {\n prefix: 'fas',\n iconName: 'exclamation-circle',\n icon: [512, 512, [], \"f06a\", \"M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z\"]\n};\nvar faExclamationTriangle = {\n prefix: 'fas',\n iconName: 'exclamation-triangle',\n icon: [576, 512, [], \"f071\", \"M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z\"]\n};\nvar faExpand = {\n prefix: 'fas',\n iconName: 'expand',\n icon: [448, 512, [], \"f065\", \"M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z\"]\n};\nvar faExpandAlt = {\n prefix: 'fas',\n iconName: 'expand-alt',\n icon: [448, 512, [], \"f424\", \"M212.686 315.314L120 408l32.922 31.029c15.12 15.12 4.412 40.971-16.97 40.971h-112C10.697 480 0 469.255 0 456V344c0-21.382 25.803-32.09 40.922-16.971L72 360l92.686-92.686c6.248-6.248 16.379-6.248 22.627 0l25.373 25.373c6.249 6.248 6.249 16.378 0 22.627zm22.628-118.628L328 104l-32.922-31.029C279.958 57.851 290.666 32 312.048 32h112C437.303 32 448 42.745 448 56v112c0 21.382-25.803 32.09-40.922 16.971L376 152l-92.686 92.686c-6.248 6.248-16.379 6.248-22.627 0l-25.373-25.373c-6.249-6.248-6.249-16.378 0-22.627z\"]\n};\nvar faExpandArrowsAlt = {\n prefix: 'fas',\n iconName: 'expand-arrows-alt',\n icon: [448, 512, [], \"f31e\", \"M448 344v112a23.94 23.94 0 0 1-24 24H312c-21.39 0-32.09-25.9-17-41l36.2-36.2L224 295.6 116.77 402.9 153 439c15.09 15.1 4.39 41-17 41H24a23.94 23.94 0 0 1-24-24V344c0-21.4 25.89-32.1 41-17l36.19 36.2L184.46 256 77.18 148.7 41 185c-15.1 15.1-41 4.4-41-17V56a23.94 23.94 0 0 1 24-24h112c21.39 0 32.09 25.9 17 41l-36.2 36.2L224 216.4l107.23-107.3L295 73c-15.09-15.1-4.39-41 17-41h112a23.94 23.94 0 0 1 24 24v112c0 21.4-25.89 32.1-41 17l-36.19-36.2L263.54 256l107.28 107.3L407 327.1c15.1-15.2 41-4.5 41 16.9z\"]\n};\nvar faExternalLinkAlt = {\n prefix: 'fas',\n iconName: 'external-link-alt',\n icon: [512, 512, [], \"f35d\", \"M432,320H400a16,16,0,0,0-16,16V448H64V128H208a16,16,0,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V336A16,16,0,0,0,432,320ZM488,0h-128c-21.37,0-32.05,25.91-17,41l35.73,35.73L135,320.37a24,24,0,0,0,0,34L157.67,377a24,24,0,0,0,34,0L435.28,133.32,471,169c15,15,41,4.5,41-17V24A24,24,0,0,0,488,0Z\"]\n};\nvar faExternalLinkSquareAlt = {\n prefix: 'fas',\n iconName: 'external-link-square-alt',\n icon: [448, 512, [], \"f360\", \"M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z\"]\n};\nvar faEye = {\n prefix: 'fas',\n iconName: 'eye',\n icon: [576, 512, [], \"f06e\", \"M572.52 241.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400a144 144 0 1 1 144-144 143.93 143.93 0 0 1-144 144zm0-240a95.31 95.31 0 0 0-25.31 3.79 47.85 47.85 0 0 1-66.9 66.9A95.78 95.78 0 1 0 288 160z\"]\n};\nvar faEyeDropper = {\n prefix: 'fas',\n iconName: 'eye-dropper',\n icon: [512, 512, [], \"f1fb\", \"M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z\"]\n};\nvar faEyeSlash = {\n prefix: 'fas',\n iconName: 'eye-slash',\n icon: [640, 512, [], \"f070\", \"M320 400c-75.85 0-137.25-58.71-142.9-133.11L72.2 185.82c-13.79 17.3-26.48 35.59-36.72 55.59a32.35 32.35 0 0 0 0 29.19C89.71 376.41 197.07 448 320 448c26.91 0 52.87-4 77.89-10.46L346 397.39a144.13 144.13 0 0 1-26 2.61zm313.82 58.1l-110.55-85.44a331.25 331.25 0 0 0 81.25-102.07 32.35 32.35 0 0 0 0-29.19C550.29 135.59 442.93 64 320 64a308.15 308.15 0 0 0-147.32 37.7L45.46 3.37A16 16 0 0 0 23 6.18L3.37 31.45A16 16 0 0 0 6.18 53.9l588.36 454.73a16 16 0 0 0 22.46-2.81l19.64-25.27a16 16 0 0 0-2.82-22.45zm-183.72-142l-39.3-30.38A94.75 94.75 0 0 0 416 256a94.76 94.76 0 0 0-121.31-92.21A47.65 47.65 0 0 1 304 192a46.64 46.64 0 0 1-1.54 10l-73.61-56.89A142.31 142.31 0 0 1 320 112a143.92 143.92 0 0 1 144 144c0 21.63-5.29 41.79-13.9 60.11z\"]\n};\nvar faFan = {\n prefix: 'fas',\n iconName: 'fan',\n icon: [512, 512, [], \"f863\", \"M352.57 128c-28.09 0-54.09 4.52-77.06 12.86l12.41-123.11C289 7.31 279.81-1.18 269.33.13 189.63 10.13 128 77.64 128 159.43c0 28.09 4.52 54.09 12.86 77.06L17.75 224.08C7.31 223-1.18 232.19.13 242.67c10 79.7 77.51 141.33 159.3 141.33 28.09 0 54.09-4.52 77.06-12.86l-12.41 123.11c-1.05 10.43 8.11 18.93 18.59 17.62 79.7-10 141.33-77.51 141.33-159.3 0-28.09-4.52-54.09-12.86-77.06l123.11 12.41c10.44 1.05 18.93-8.11 17.62-18.59-10-79.7-77.51-141.33-159.3-141.33zM256 288a32 32 0 1 1 32-32 32 32 0 0 1-32 32z\"]\n};\nvar faFastBackward = {\n prefix: 'fas',\n iconName: 'fast-backward',\n icon: [512, 512, [], \"f049\", \"M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z\"]\n};\nvar faFastForward = {\n prefix: 'fas',\n iconName: 'fast-forward',\n icon: [512, 512, [], \"f050\", \"M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z\"]\n};\nvar faFaucet = {\n prefix: 'fas',\n iconName: 'faucet',\n icon: [512, 512, [], \"e005\", \"M352,256H313.39c-15.71-13.44-35.46-23.07-57.39-28V180.44l-32-3.38-32,3.38V228c-21.93,5-41.68,14.6-57.39,28H16A16,16,0,0,0,0,272v96a16,16,0,0,0,16,16h92.79C129.38,421.73,173,448,224,448s94.62-26.27,115.21-64H352a32,32,0,0,1,32,32,32,32,0,0,0,32,32h64a32,32,0,0,0,32-32A160,160,0,0,0,352,256ZM81.59,159.91l142.41-15,142.41,15c9.42,1,17.59-6.81,17.59-16.8V112.89c0-10-8.17-17.8-17.59-16.81L256,107.74V80a16,16,0,0,0-16-16H208a16,16,0,0,0-16,16v27.74L81.59,96.08C72.17,95.09,64,102.9,64,112.89v30.22C64,153.1,72.17,160.91,81.59,159.91Z\"]\n};\nvar faFax = {\n prefix: 'fas',\n iconName: 'fax',\n icon: [512, 512, [], \"f1ac\", \"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"]\n};\nvar faFeather = {\n prefix: 'fas',\n iconName: 'feather',\n icon: [512, 512, [], \"f52d\", \"M467.14 44.84c-62.55-62.48-161.67-64.78-252.28 25.73-78.61 78.52-60.98 60.92-85.75 85.66-60.46 60.39-70.39 150.83-63.64 211.17l178.44-178.25c6.26-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.6 9.37 33.98 0l66.1-66.03C159.42 454.65 279 457.11 353.95 384h-98.19l147.57-49.14c49.99-49.93 36.38-36.18 46.31-46.86h-97.78l131.54-43.8c45.44-74.46 34.31-148.84-16.26-199.36z\"]\n};\nvar faFeatherAlt = {\n prefix: 'fas',\n iconName: 'feather-alt',\n icon: [512, 512, [], \"f56b\", \"M512 0C460.22 3.56 96.44 38.2 71.01 287.61c-3.09 26.66-4.84 53.44-5.99 80.24l178.87-178.69c6.25-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.59 9.37 33.98 0l57.13-57.07c42.09-.14 84.15-2.53 125.96-7.36 53.48-5.44 97.02-26.47 132.58-56.54H255.74l146.79-48.88c11.25-14.89 21.37-30.71 30.45-47.12h-81.14l106.54-53.21C500.29 132.86 510.19 26.26 512 0z\"]\n};\nvar faFemale = {\n prefix: 'fas',\n iconName: 'female',\n icon: [256, 512, [], \"f182\", \"M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z\"]\n};\nvar faFighterJet = {\n prefix: 'fas',\n iconName: 'fighter-jet',\n icon: [640, 512, [], \"f0fb\", \"M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z\"]\n};\nvar faFile = {\n prefix: 'fas',\n iconName: 'file',\n icon: [384, 512, [], \"f15b\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileAlt = {\n prefix: 'fas',\n iconName: 'file-alt',\n icon: [384, 512, [], \"f15c\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileArchive = {\n prefix: 'fas',\n iconName: 'file-archive',\n icon: [384, 512, [], \"f1c6\", \"M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zM128.4 336c-17.9 0-32.4 12.1-32.4 27 0 15 14.6 27 32.5 27s32.4-12.1 32.4-27-14.6-27-32.5-27zM224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6z\"]\n};\nvar faFileAudio = {\n prefix: 'fas',\n iconName: 'file-audio',\n icon: [384, 512, [], \"f1c7\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileCode = {\n prefix: 'fas',\n iconName: 'file-code',\n icon: [384, 512, [], \"f1c9\", \"M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z\"]\n};\nvar faFileContract = {\n prefix: 'fas',\n iconName: 'file-contract',\n icon: [384, 512, [], \"f56c\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm192.81 248H304c8.84 0 16 7.16 16 16s-7.16 16-16 16h-47.19c-16.45 0-31.27-9.14-38.64-23.86-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34a15.986 15.986 0 0 1-14.31 8.84c-.38 0-.75-.02-1.14-.05-6.45-.45-12-4.75-14.03-10.89L144 354.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.77-16.19 54.05-9.7 66 14.16 2.02 4.06 5.96 6.5 10.16 6.5zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFileCsv = {\n prefix: 'fas',\n iconName: 'file-csv',\n icon: [384, 512, [], \"f6dd\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-96 144c0 4.42-3.58 8-8 8h-8c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h8c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-8c-26.51 0-48-21.49-48-48v-32c0-26.51 21.49-48 48-48h8c4.42 0 8 3.58 8 8v16zm44.27 104H160c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h12.27c5.95 0 10.41-3.5 10.41-6.62 0-1.3-.75-2.66-2.12-3.84l-21.89-18.77c-8.47-7.22-13.33-17.48-13.33-28.14 0-21.3 19.02-38.62 42.41-38.62H200c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-12.27c-5.95 0-10.41 3.5-10.41 6.62 0 1.3.75 2.66 2.12 3.84l21.89 18.77c8.47 7.22 13.33 17.48 13.33 28.14.01 21.29-19 38.62-42.39 38.62zM256 264v20.8c0 20.27 5.7 40.17 16 56.88 10.3-16.7 16-36.61 16-56.88V264c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v20.8c0 35.48-12.88 68.89-36.28 94.09-3.02 3.25-7.27 5.11-11.72 5.11s-8.7-1.86-11.72-5.11c-23.4-25.2-36.28-58.61-36.28-94.09V264c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8zm121-159L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFileDownload = {\n prefix: 'fas',\n iconName: 'file-download',\n icon: [384, 512, [], \"f56d\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm76.45 211.36l-96.42 95.7c-6.65 6.61-17.39 6.61-24.04 0l-96.42-95.7C73.42 337.29 80.54 320 94.82 320H160v-80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v80h65.18c14.28 0 21.4 17.29 11.27 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFileExcel = {\n prefix: 'fas',\n iconName: 'file-excel',\n icon: [384, 512, [], \"f1c3\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileExport = {\n prefix: 'fas',\n iconName: 'file-export',\n icon: [576, 512, [], \"f56e\", \"M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128zM571 308l-95.7-96.4c-10.1-10.1-27.4-3-27.4 11.3V288h-64v64h64v65.2c0 14.3 17.3 21.4 27.4 11.3L571 332c6.6-6.6 6.6-17.4 0-24zm-379 28v-32c0-8.8 7.2-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.8 0-16-7.2-16-16z\"]\n};\nvar faFileImage = {\n prefix: 'fas',\n iconName: 'file-image',\n icon: [384, 512, [], \"f1c5\", \"M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z\"]\n};\nvar faFileImport = {\n prefix: 'fas',\n iconName: 'file-import',\n icon: [512, 512, [], \"f56f\", \"M16 288c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h112v-64zm489-183L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H152c-13.3 0-24 10.7-24 24v264h128v-65.2c0-14.3 17.3-21.4 27.4-11.3L379 308c6.6 6.7 6.6 17.4 0 24l-95.7 96.4c-10.1 10.1-27.4 3-27.4-11.3V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24z\"]\n};\nvar faFileInvoice = {\n prefix: 'fas',\n iconName: 'file-invoice',\n icon: [384, 512, [], \"f570\", \"M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z\"]\n};\nvar faFileInvoiceDollar = {\n prefix: 'fas',\n iconName: 'file-invoice-dollar',\n icon: [384, 512, [], \"f571\", \"M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 80v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8zm144 263.88V440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-24.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V232c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v24.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07z\"]\n};\nvar faFileMedical = {\n prefix: 'fas',\n iconName: 'file-medical',\n icon: [384, 512, [], \"f477\", \"M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z\"]\n};\nvar faFileMedicalAlt = {\n prefix: 'fas',\n iconName: 'file-medical-alt',\n icon: [448, 512, [], \"f478\", \"M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFilePdf = {\n prefix: 'fas',\n iconName: 'file-pdf',\n icon: [384, 512, [], \"f1c1\", \"M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z\"]\n};\nvar faFilePowerpoint = {\n prefix: 'fas',\n iconName: 'file-powerpoint',\n icon: [384, 512, [], \"f1c4\", \"M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z\"]\n};\nvar faFilePrescription = {\n prefix: 'fas',\n iconName: 'file-prescription',\n icon: [384, 512, [], \"f572\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm68.53 179.48l11.31 11.31c6.25 6.25 6.25 16.38 0 22.63l-29.9 29.9L304 409.38c6.25 6.25 6.25 16.38 0 22.63l-11.31 11.31c-6.25 6.25-16.38 6.25-22.63 0L240 413.25l-30.06 30.06c-6.25 6.25-16.38 6.25-22.63 0L176 432c-6.25-6.25-6.25-16.38 0-22.63l30.06-30.06L146.74 320H128v48c0 8.84-7.16 16-16 16H96c-8.84 0-16-7.16-16-16V208c0-8.84 7.16-16 16-16h80c35.35 0 64 28.65 64 64 0 24.22-13.62 45.05-33.46 55.92L240 345.38l29.9-29.9c6.25-6.25 16.38-6.25 22.63 0zM176 272h-48v-32h48c8.82 0 16 7.18 16 16s-7.18 16-16 16zm208-150.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileSignature = {\n prefix: 'fas',\n iconName: 'file-signature',\n icon: [576, 512, [], \"f573\", \"M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z\"]\n};\nvar faFileUpload = {\n prefix: 'fas',\n iconName: 'file-upload',\n icon: [384, 512, [], \"f574\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFileVideo = {\n prefix: 'fas',\n iconName: 'file-video',\n icon: [384, 512, [], \"f1c8\", \"M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z\"]\n};\nvar faFileWord = {\n prefix: 'fas',\n iconName: 'file-word',\n icon: [384, 512, [], \"f1c2\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFill = {\n prefix: 'fas',\n iconName: 'fill',\n icon: [512, 512, [], \"f575\", \"M502.63 217.06L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.77c-6.24-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.63l86.19 86.18-94.76 94.76c-37.49 37.49-37.49 98.26 0 135.75l117.19 117.19c18.75 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.88-28.12l221.57-221.57c12.49-12.5 12.49-32.76 0-45.26zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.61 58.6c12.49 12.49 32.75 12.49 45.24 0 12.49-12.49 12.49-32.75 0-45.24l-58.61-58.6 58.95-58.95 162.45 162.44-48.35 48.34z\"]\n};\nvar faFillDrip = {\n prefix: 'fas',\n iconName: 'fill-drip',\n icon: [576, 512, [], \"f576\", \"M512 320s-64 92.65-64 128c0 35.35 28.66 64 64 64s64-28.65 64-64-64-128-64-128zm-9.37-102.94L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.76c-6.25-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.62l86.19 86.18-94.76 94.76c-37.49 37.48-37.49 98.26 0 135.75l117.19 117.19c18.74 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.87-28.12l221.57-221.57c12.5-12.5 12.5-32.75.01-45.25zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.6 58.6c12.49 12.49 32.75 12.49 45.24 0s12.49-32.75 0-45.24l-58.6-58.6 58.95-58.95 162.44 162.44-48.34 48.34z\"]\n};\nvar faFilm = {\n prefix: 'fas',\n iconName: 'film',\n icon: [512, 512, [], \"f008\", \"M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z\"]\n};\nvar faFilter = {\n prefix: 'fas',\n iconName: 'filter',\n icon: [512, 512, [], \"f0b0\", \"M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z\"]\n};\nvar faFingerprint = {\n prefix: 'fas',\n iconName: 'fingerprint',\n icon: [512, 512, [], \"f577\", \"M256.12 245.96c-13.25 0-24 10.74-24 24 1.14 72.25-8.14 141.9-27.7 211.55-2.73 9.72 2.15 30.49 23.12 30.49 10.48 0 20.11-6.92 23.09-17.52 13.53-47.91 31.04-125.41 29.48-224.52.01-13.25-10.73-24-23.99-24zm-.86-81.73C194 164.16 151.25 211.3 152.1 265.32c.75 47.94-3.75 95.91-13.37 142.55-2.69 12.98 5.67 25.69 18.64 28.36 13.05 2.67 25.67-5.66 28.36-18.64 10.34-50.09 15.17-101.58 14.37-153.02-.41-25.95 19.92-52.49 54.45-52.34 31.31.47 57.15 25.34 57.62 55.47.77 48.05-2.81 96.33-10.61 143.55-2.17 13.06 6.69 25.42 19.76 27.58 19.97 3.33 26.81-15.1 27.58-19.77 8.28-50.03 12.06-101.21 11.27-152.11-.88-55.8-47.94-101.88-104.91-102.72zm-110.69-19.78c-10.3-8.34-25.37-6.8-33.76 3.48-25.62 31.5-39.39 71.28-38.75 112 .59 37.58-2.47 75.27-9.11 112.05-2.34 13.05 6.31 25.53 19.36 27.89 20.11 3.5 27.07-14.81 27.89-19.36 7.19-39.84 10.5-80.66 9.86-121.33-.47-29.88 9.2-57.88 28-80.97 8.35-10.28 6.79-25.39-3.49-33.76zm109.47-62.33c-15.41-.41-30.87 1.44-45.78 4.97-12.89 3.06-20.87 15.98-17.83 28.89 3.06 12.89 16 20.83 28.89 17.83 11.05-2.61 22.47-3.77 34-3.69 75.43 1.13 137.73 61.5 138.88 134.58.59 37.88-1.28 76.11-5.58 113.63-1.5 13.17 7.95 25.08 21.11 26.58 16.72 1.95 25.51-11.88 26.58-21.11a929.06 929.06 0 0 0 5.89-119.85c-1.56-98.75-85.07-180.33-186.16-181.83zm252.07 121.45c-2.86-12.92-15.51-21.2-28.61-18.27-12.94 2.86-21.12 15.66-18.26 28.61 4.71 21.41 4.91 37.41 4.7 61.6-.11 13.27 10.55 24.09 23.8 24.2h.2c13.17 0 23.89-10.61 24-23.8.18-22.18.4-44.11-5.83-72.34zm-40.12-90.72C417.29 43.46 337.6 1.29 252.81.02 183.02-.82 118.47 24.91 70.46 72.94 24.09 119.37-.9 181.04.14 246.65l-.12 21.47c-.39 13.25 10.03 24.31 23.28 24.69.23.02.48.02.72.02 12.92 0 23.59-10.3 23.97-23.3l.16-23.64c-.83-52.5 19.16-101.86 56.28-139 38.76-38.8 91.34-59.67 147.68-58.86 69.45 1.03 134.73 35.56 174.62 92.39 7.61 10.86 22.56 13.45 33.42 5.86 10.84-7.62 13.46-22.59 5.84-33.43z\"]\n};\nvar faFire = {\n prefix: 'fas',\n iconName: 'fire',\n icon: [384, 512, [], \"f06d\", \"M216 23.86c0-23.8-30.65-32.77-44.15-13.04C48 191.85 224 200 224 288c0 35.63-29.11 64.46-64.85 63.99-35.17-.45-63.15-29.77-63.15-64.94v-85.51c0-21.7-26.47-32.23-41.43-16.5C27.8 213.16 0 261.33 0 320c0 105.87 86.13 192 192 192s192-86.13 192-192c0-170.29-168-193-168-296.14z\"]\n};\nvar faFireAlt = {\n prefix: 'fas',\n iconName: 'fire-alt',\n icon: [448, 512, [], \"f7e4\", \"M323.56 51.2c-20.8 19.3-39.58 39.59-56.22 59.97C240.08 73.62 206.28 35.53 168 0 69.74 91.17 0 209.96 0 281.6 0 408.85 100.29 512 224 512s224-103.15 224-230.4c0-53.27-51.98-163.14-124.44-230.4zm-19.47 340.65C282.43 407.01 255.72 416 226.86 416 154.71 416 96 368.26 96 290.75c0-38.61 24.31-72.63 72.79-130.75 6.93 7.98 98.83 125.34 98.83 125.34l58.63-66.88c4.14 6.85 7.91 13.55 11.27 19.97 27.35 52.19 15.81 118.97-33.43 153.42z\"]\n};\nvar faFireExtinguisher = {\n prefix: 'fas',\n iconName: 'fire-extinguisher',\n icon: [448, 512, [], \"f134\", \"M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z\"]\n};\nvar faFirstAid = {\n prefix: 'fas',\n iconName: 'first-aid',\n icon: [576, 512, [], \"f479\", \"M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z\"]\n};\nvar faFish = {\n prefix: 'fas',\n iconName: 'fish',\n icon: [576, 512, [], \"f578\", \"M327.1 96c-89.97 0-168.54 54.77-212.27 101.63L27.5 131.58c-12.13-9.18-30.24.6-27.14 14.66L24.54 256 .35 365.77c-3.1 14.06 15.01 23.83 27.14 14.66l87.33-66.05C158.55 361.23 237.13 416 327.1 416 464.56 416 576 288 576 256S464.56 96 327.1 96zm87.43 184c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24 13.26 0 24 10.74 24 24 0 13.25-10.75 24-24 24z\"]\n};\nvar faFistRaised = {\n prefix: 'fas',\n iconName: 'fist-raised',\n icon: [384, 512, [], \"f6de\", \"M255.98 160V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v146.93c5.02-1.78 10.34-2.93 15.97-2.93h48.03zm128 95.99c-.01-35.34-28.66-63.99-63.99-63.99H207.85c-8.78 0-15.9 7.07-15.9 15.85v.56c0 26.27 21.3 47.59 47.57 47.59h35.26c9.68 0 13.2 3.58 13.2 8v16.2c0 4.29-3.59 7.78-7.88 8-44.52 2.28-64.16 24.71-96.05 72.55l-6.31 9.47a7.994 7.994 0 0 1-11.09 2.22l-13.31-8.88a7.994 7.994 0 0 1-2.22-11.09l6.31-9.47c15.73-23.6 30.2-43.26 47.31-58.08-17.27-5.51-31.4-18.12-38.87-34.45-6.59 3.41-13.96 5.52-21.87 5.52h-32c-12.34 0-23.49-4.81-32-12.48C71.48 251.19 60.33 256 48 256H16c-5.64 0-10.97-1.15-16-2.95v77.93c0 33.95 13.48 66.5 37.49 90.51L63.99 448v64h255.98v-63.96l35.91-35.92A96.035 96.035 0 0 0 384 344.21l-.02-88.22zm-32.01-90.09V48c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v112h32c11.28 0 21.94 2.31 32 5.9zM16 224h32c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v128c0 8.84 7.16 16 16 16zm95.99 0h32c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v160c0 8.84 7.16 16 16 16z\"]\n};\nvar faFlag = {\n prefix: 'fas',\n iconName: 'flag',\n icon: [512, 512, [], \"f024\", \"M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z\"]\n};\nvar faFlagCheckered = {\n prefix: 'fas',\n iconName: 'flag-checkered',\n icon: [512, 512, [], \"f11e\", \"M243.2 189.9V258c26.1 5.9 49.3 15.6 73.6 22.3v-68.2c-26-5.8-49.4-15.5-73.6-22.2zm223.3-123c-34.3 15.9-76.5 31.9-117 31.9C296 98.8 251.7 64 184.3 64c-25 0-47.3 4.4-68 12 2.8-7.3 4.1-15.2 3.6-23.6C118.1 24 94.8 1.2 66.3 0 34.3-1.3 8 24.3 8 56c0 19 9.5 35.8 24 45.9V488c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24v-94.4c28.3-12.1 63.6-22.1 114.4-22.1 53.6 0 97.8 34.8 165.2 34.8 48.2 0 86.7-16.3 122.5-40.9 8.7-6 13.8-15.8 13.8-26.4V95.9c.1-23.3-24.2-38.8-45.4-29zM169.6 325.5c-25.8 2.7-50 8.2-73.6 16.6v-70.5c26.2-9.3 47.5-15 73.6-17.4zM464 191c-23.6 9.8-46.3 19.5-73.6 23.9V286c24.8-3.4 51.4-11.8 73.6-26v70.5c-25.1 16.1-48.5 24.7-73.6 27.1V286c-27 3.7-47.9 1.5-73.6-5.6v67.4c-23.9-7.4-47.3-16.7-73.6-21.3V258c-19.7-4.4-40.8-6.8-73.6-3.8v-70c-22.4 3.1-44.6 10.2-73.6 20.9v-70.5c33.2-12.2 50.1-19.8 73.6-22v71.6c27-3.7 48.4-1.3 73.6 5.7v-67.4c23.7 7.4 47.2 16.7 73.6 21.3v68.4c23.7 5.3 47.6 6.9 73.6 2.7V143c27-4.8 52.3-13.6 73.6-22.5z\"]\n};\nvar faFlagUsa = {\n prefix: 'fas',\n iconName: 'flag-usa',\n icon: [512, 512, [], \"f74d\", \"M32 0C14.3 0 0 14.3 0 32v464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V32C64 14.3 49.7 0 32 0zm267.9 303.6c-57.2-15.1-111.7-28.8-203.9 11.1V384c185.7-92.2 221.7 53.3 397.5-23.1 11.4-5 18.5-16.5 18.5-28.8v-36c-43.6 17.3-80.2 24.1-112.1 24.1-37.4-.1-68.9-8.4-100-16.6zm0-96c-57.2-15.1-111.7-28.8-203.9 11.1v61.5c94.8-37.6 154.6-22.7 212.1-7.6 57.2 15.1 111.7 28.8 203.9-11.1V200c-43.6 17.3-80.2 24.1-112.1 24.1-37.4 0-68.9-8.3-100-16.5zm9.5-125.9c51.8 15.6 97.4 29 202.6-20.1V30.8c0-25.1-26.8-38.1-49.4-26.6C291.3 91.5 305.4-62.2 96 32.4v151.9c94.8-37.5 154.6-22.7 212.1-7.6 57.2 15 111.7 28.7 203.9-11.1V96.7c-53.6 23.5-93.3 31.4-126.1 31.4s-59-7.8-85.7-15.9c-4-1.2-8.1-2.4-12.1-3.5V75.5c7.2 2 14.3 4.1 21.3 6.2zM160 128.1c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16-7.2 16-16 16zm0-55.8c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16c0 8.8-7.2 16-16 16zm64 47.9c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16c0 8.8-7.2 16-16 16zm0-55.9c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16c0 8.8-7.2 16-16 16z\"]\n};\nvar faFlask = {\n prefix: 'fas',\n iconName: 'flask',\n icon: [448, 512, [], \"f0c3\", \"M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z\"]\n};\nvar faFlushed = {\n prefix: 'fas',\n iconName: 'flushed',\n icon: [496, 512, [], \"f579\", \"M344 200c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-192 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM80 224c0-39.8 32.2-72 72-72s72 32.2 72 72-32.2 72-72 72-72-32.2-72-72zm232 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-104c-39.8 0-72-32.2-72-72s32.2-72 72-72 72 32.2 72 72-32.2 72-72 72z\"]\n};\nvar faFolder = {\n prefix: 'fas',\n iconName: 'folder',\n icon: [512, 512, [], \"f07b\", \"M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z\"]\n};\nvar faFolderMinus = {\n prefix: 'fas',\n iconName: 'folder-minus',\n icon: [512, 512, [], \"f65d\", \"M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-96 168c0 8.84-7.16 16-16 16H160c-8.84 0-16-7.16-16-16v-16c0-8.84 7.16-16 16-16h192c8.84 0 16 7.16 16 16v16z\"]\n};\nvar faFolderOpen = {\n prefix: 'fas',\n iconName: 'folder-open',\n icon: [576, 512, [], \"f07c\", \"M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z\"]\n};\nvar faFolderPlus = {\n prefix: 'fas',\n iconName: 'folder-plus',\n icon: [512, 512, [], \"f65e\", \"M464,128H272L208,64H48A48,48,0,0,0,0,112V400a48,48,0,0,0,48,48H464a48,48,0,0,0,48-48V176A48,48,0,0,0,464,128ZM359.5,296a16,16,0,0,1-16,16h-64v64a16,16,0,0,1-16,16h-16a16,16,0,0,1-16-16V312h-64a16,16,0,0,1-16-16V280a16,16,0,0,1,16-16h64V200a16,16,0,0,1,16-16h16a16,16,0,0,1,16,16v64h64a16,16,0,0,1,16,16Z\"]\n};\nvar faFont = {\n prefix: 'fas',\n iconName: 'font',\n icon: [448, 512, [], \"f031\", \"M432 416h-23.41L277.88 53.69A32 32 0 0 0 247.58 32h-47.16a32 32 0 0 0-30.3 21.69L39.41 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-19.58l23.3-64h152.56l23.3 64H304a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM176.85 272L224 142.51 271.15 272z\"]\n};\nvar faFontAwesomeLogoFull = {\n prefix: 'fas',\n iconName: 'font-awesome-logo-full',\n icon: [3992, 512, [\"Font Awesome\"], \"f4e6\", \"M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z\"]\n};\nvar faFootballBall = {\n prefix: 'fas',\n iconName: 'football-ball',\n icon: [496, 512, [], \"f44e\", \"M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z\"]\n};\nvar faForward = {\n prefix: 'fas',\n iconName: 'forward',\n icon: [512, 512, [], \"f04e\", \"M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z\"]\n};\nvar faFrog = {\n prefix: 'fas',\n iconName: 'frog',\n icon: [576, 512, [], \"f52e\", \"M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z\"]\n};\nvar faFrown = {\n prefix: 'fas',\n iconName: 'frown',\n icon: [496, 512, [], \"f119\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm170.2 218.2C315.8 367.4 282.9 352 248 352s-67.8 15.4-90.2 42.2c-13.5 16.3-38.1-4.2-24.6-20.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c13.6 16.2-11 36.7-24.5 20.4z\"]\n};\nvar faFrownOpen = {\n prefix: 'fas',\n iconName: 'frown-open',\n icon: [496, 512, [], \"f57a\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm187.3 183.3c-31.2-9.6-59.4-15.3-75.3-15.3s-44.1 5.7-75.3 15.3c-11.5 3.5-22.5-6.3-20.5-18.1 7-40 60.1-61.2 95.8-61.2s88.8 21.3 95.8 61.2c2 11.9-9.1 21.6-20.5 18.1zM328 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faFunnelDollar = {\n prefix: 'fas',\n iconName: 'funnel-dollar',\n icon: [640, 512, [], \"f662\", \"M433.46 165.94l101.2-111.87C554.61 34.12 540.48 0 512.26 0H31.74C3.52 0-10.61 34.12 9.34 54.07L192 256v155.92c0 12.59 5.93 24.44 16 32l79.99 60c20.86 15.64 48.47 6.97 59.22-13.57C310.8 455.38 288 406.35 288 352c0-89.79 62.05-165.17 145.46-186.06zM480 192c-88.37 0-160 71.63-160 160s71.63 160 160 160 160-71.63 160-160-71.63-160-160-160zm16 239.88V448c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V256c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.04 44.44-42.67 45.07z\"]\n};\nvar faFutbol = {\n prefix: 'fas',\n iconName: 'futbol',\n icon: [512, 512, [], \"f1e3\", \"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z\"]\n};\nvar faGamepad = {\n prefix: 'fas',\n iconName: 'gamepad',\n icon: [640, 512, [], \"f11b\", \"M480.07 96H160a160 160 0 1 0 114.24 272h91.52A160 160 0 1 0 480.07 96zM248 268a12 12 0 0 1-12 12h-52v52a12 12 0 0 1-12 12h-24a12 12 0 0 1-12-12v-52H84a12 12 0 0 1-12-12v-24a12 12 0 0 1 12-12h52v-52a12 12 0 0 1 12-12h24a12 12 0 0 1 12 12v52h52a12 12 0 0 1 12 12zm216 76a40 40 0 1 1 40-40 40 40 0 0 1-40 40zm64-96a40 40 0 1 1 40-40 40 40 0 0 1-40 40z\"]\n};\nvar faGasPump = {\n prefix: 'fas',\n iconName: 'gas-pump',\n icon: [512, 512, [], \"f52f\", \"M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z\"]\n};\nvar faGavel = {\n prefix: 'fas',\n iconName: 'gavel',\n icon: [512, 512, [], \"f0e3\", \"M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z\"]\n};\nvar faGem = {\n prefix: 'fas',\n iconName: 'gem',\n icon: [576, 512, [], \"f3a5\", \"M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z\"]\n};\nvar faGenderless = {\n prefix: 'fas',\n iconName: 'genderless',\n icon: [288, 512, [], \"f22d\", \"M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z\"]\n};\nvar faGhost = {\n prefix: 'fas',\n iconName: 'ghost',\n icon: [384, 512, [], \"f6e2\", \"M186.1.09C81.01 3.24 0 94.92 0 200.05v263.92c0 14.26 17.23 21.39 27.31 11.31l24.92-18.53c6.66-4.95 16-3.99 21.51 2.21l42.95 48.35c6.25 6.25 16.38 6.25 22.63 0l40.72-45.85c6.37-7.17 17.56-7.17 23.92 0l40.72 45.85c6.25 6.25 16.38 6.25 22.63 0l42.95-48.35c5.51-6.2 14.85-7.17 21.51-2.21l24.92 18.53c10.08 10.08 27.31 2.94 27.31-11.31V192C384 84 294.83-3.17 186.1.09zM128 224c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128 0c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faGift = {\n prefix: 'fas',\n iconName: 'gift',\n icon: [512, 512, [], \"f06b\", \"M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm256 32h160c17.7 0 32-14.3 32-32V320H288v160zm192-320h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40z\"]\n};\nvar faGifts = {\n prefix: 'fas',\n iconName: 'gifts',\n icon: [640, 512, [], \"f79c\", \"M240.6 194.1c1.9-30.8 17.3-61.2 44-79.8C279.4 103.5 268.7 96 256 96h-29.4l30.7-22c7.2-5.1 8.9-15.1 3.7-22.3l-9.3-13c-5.1-7.2-15.1-8.9-22.3-3.7l-32 22.9 11.5-30.6c3.1-8.3-1.1-17.5-9.4-20.6l-15-5.6c-8.3-3.1-17.5 1.1-20.6 9.4l-19.9 53-19.9-53.1C121 2.1 111.8-2.1 103.5 1l-15 5.6C80.2 9.7 76 19 79.2 27.2l11.5 30.6L58.6 35c-7.2-5.1-17.2-3.5-22.3 3.7l-9.3 13c-5.1 7.2-3.5 17.2 3.7 22.3l30.7 22H32c-17.7 0-32 14.3-32 32v352c0 17.7 14.3 32 32 32h168.9c-5.5-9.5-8.9-20.3-8.9-32V256c0-29.9 20.8-55 48.6-61.9zM224 480c0 17.7 14.3 32 32 32h160V384H224v96zm224 32h160c17.7 0 32-14.3 32-32v-96H448v128zm160-288h-20.4c2.6-7.6 4.4-15.5 4.4-23.8 0-35.5-27-72.2-72.1-72.2-48.1 0-75.9 47.7-87.9 75.3-12.1-27.6-39.9-75.3-87.9-75.3-45.1 0-72.1 36.7-72.1 72.2 0 8.3 1.7 16.2 4.4 23.8H256c-17.7 0-32 14.3-32 32v96h192V224h15.3l.7-.2.7.2H448v128h192v-96c0-17.7-14.3-32-32-32zm-272 0c-2.7-1.4-5.1-3-7.2-4.8-7.3-6.4-8.8-13.8-8.8-19 0-9.7 6.4-24.2 24.1-24.2 18.7 0 35.6 27.4 44.5 48H336zm199.2-4.8c-2.1 1.8-4.5 3.4-7.2 4.8h-52.6c8.8-20.3 25.8-48 44.5-48 17.7 0 24.1 14.5 24.1 24.2 0 5.2-1.5 12.6-8.8 19z\"]\n};\nvar faGlassCheers = {\n prefix: 'fas',\n iconName: 'glass-cheers',\n icon: [640, 512, [], \"f79f\", \"M639.4 433.6c-8.4-20.4-31.8-30.1-52.2-21.6l-22.1 9.2-38.7-101.9c47.9-35 64.8-100.3 34.5-152.8L474.3 16c-8-13.9-25.1-19.7-40-13.6L320 49.8 205.7 2.4c-14.9-6.2-32-.3-40 13.6L79.1 166.5C48.9 219 65.7 284.3 113.6 319.2L74.9 421.1l-22.1-9.2c-20.4-8.5-43.7 1.2-52.2 21.6-1.7 4.1.2 8.8 4.3 10.5l162.3 67.4c4.1 1.7 8.7-.2 10.4-4.3 8.4-20.4-1.2-43.8-21.6-52.3l-22.1-9.2L173.3 342c4.4.5 8.8 1.3 13.1 1.3 51.7 0 99.4-33.1 113.4-85.3l20.2-75.4 20.2 75.4c14 52.2 61.7 85.3 113.4 85.3 4.3 0 8.7-.8 13.1-1.3L506 445.6l-22.1 9.2c-20.4 8.5-30.1 31.9-21.6 52.3 1.7 4.1 6.4 6 10.4 4.3L635.1 444c4-1.7 6-6.3 4.3-10.4zM275.9 162.1l-112.1-46.5 36.5-63.4 94.5 39.2-18.9 70.7zm88.2 0l-18.9-70.7 94.5-39.2 36.5 63.4-112.1 46.5z\"]\n};\nvar faGlassMartini = {\n prefix: 'fas',\n iconName: 'glass-martini',\n icon: [512, 512, [], \"f000\", \"M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6z\"]\n};\nvar faGlassMartiniAlt = {\n prefix: 'fas',\n iconName: 'glass-martini-alt',\n icon: [512, 512, [], \"f57b\", \"M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6zM443.77 48l-48 48H116.24l-48-48h375.53z\"]\n};\nvar faGlassWhiskey = {\n prefix: 'fas',\n iconName: 'glass-whiskey',\n icon: [512, 512, [], \"f7a0\", \"M480 32H32C12.5 32-2.4 49.2.3 68.5l56 356.5c4.5 31.5 31.5 54.9 63.4 54.9h273c31.8 0 58.9-23.4 63.4-54.9l55.6-356.5C514.4 49.2 499.5 32 480 32zm-37.4 64l-30 192h-313L69.4 96h373.2z\"]\n};\nvar faGlasses = {\n prefix: 'fas',\n iconName: 'glasses',\n icon: [576, 512, [], \"f530\", \"M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z\"]\n};\nvar faGlobe = {\n prefix: 'fas',\n iconName: 'globe',\n icon: [496, 512, [], \"f0ac\", \"M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z\"]\n};\nvar faGlobeAfrica = {\n prefix: 'fas',\n iconName: 'globe-africa',\n icon: [496, 512, [], \"f57c\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm160 215.5v6.93c0 5.87-3.32 11.24-8.57 13.86l-15.39 7.7a15.485 15.485 0 0 1-15.53-.97l-18.21-12.14a15.52 15.52 0 0 0-13.5-1.81l-2.65.88c-9.7 3.23-13.66 14.79-7.99 23.3l13.24 19.86c2.87 4.31 7.71 6.9 12.89 6.9h8.21c8.56 0 15.5 6.94 15.5 15.5v11.34c0 3.35-1.09 6.62-3.1 9.3l-18.74 24.98c-1.42 1.9-2.39 4.1-2.83 6.43l-4.3 22.83c-.62 3.29-2.29 6.29-4.76 8.56a159.608 159.608 0 0 0-25 29.16l-13.03 19.55a27.756 27.756 0 0 1-23.09 12.36c-10.51 0-20.12-5.94-24.82-15.34a78.902 78.902 0 0 1-8.33-35.29V367.5c0-8.56-6.94-15.5-15.5-15.5h-25.88c-14.49 0-28.38-5.76-38.63-16a54.659 54.659 0 0 1-16-38.63v-14.06c0-17.19 8.1-33.38 21.85-43.7l27.58-20.69a54.663 54.663 0 0 1 32.78-10.93h.89c8.48 0 16.85 1.97 24.43 5.77l14.72 7.36c3.68 1.84 7.93 2.14 11.83.84l47.31-15.77c6.33-2.11 10.6-8.03 10.6-14.7 0-8.56-6.94-15.5-15.5-15.5h-10.09c-4.11 0-8.05-1.63-10.96-4.54l-6.92-6.92a15.493 15.493 0 0 0-10.96-4.54H199.5c-8.56 0-15.5-6.94-15.5-15.5v-4.4c0-7.11 4.84-13.31 11.74-15.04l14.45-3.61c3.74-.94 7-3.23 9.14-6.44l8.08-12.11c2.87-4.31 7.71-6.9 12.89-6.9h24.21c8.56 0 15.5-6.94 15.5-15.5v-21.7C359.23 71.63 422.86 131.02 441.93 208H423.5c-8.56 0-15.5 6.94-15.5 15.5z\"]\n};\nvar faGlobeAmericas = {\n prefix: 'fas',\n iconName: 'globe-americas',\n icon: [496, 512, [], \"f57d\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z\"]\n};\nvar faGlobeAsia = {\n prefix: 'fas',\n iconName: 'globe-asia',\n icon: [496, 512, [], \"f57e\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm-11.34 240.23c-2.89 4.82-8.1 7.77-13.72 7.77h-.31c-4.24 0-8.31 1.69-11.31 4.69l-5.66 5.66c-3.12 3.12-3.12 8.19 0 11.31l5.66 5.66c3 3 4.69 7.07 4.69 11.31V304c0 8.84-7.16 16-16 16h-6.11c-6.06 0-11.6-3.42-14.31-8.85l-22.62-45.23c-2.44-4.88-8.95-5.94-12.81-2.08l-19.47 19.46c-3 3-7.07 4.69-11.31 4.69H50.81C49.12 277.55 48 266.92 48 256c0-110.28 89.72-200 200-200 21.51 0 42.2 3.51 61.63 9.82l-50.16 38.53c-5.11 3.41-4.63 11.06.86 13.81l10.83 5.41c5.42 2.71 8.84 8.25 8.84 14.31V216c0 4.42-3.58 8-8 8h-3.06c-3.03 0-5.8-1.71-7.15-4.42-1.56-3.12-5.96-3.29-7.76-.3l-17.37 28.95zM408 358.43c0 4.24-1.69 8.31-4.69 11.31l-9.57 9.57c-3 3-7.07 4.69-11.31 4.69h-15.16c-4.24 0-8.31-1.69-11.31-4.69l-13.01-13.01a26.767 26.767 0 0 0-25.42-7.04l-21.27 5.32c-1.27.32-2.57.48-3.88.48h-10.34c-4.24 0-8.31-1.69-11.31-4.69l-11.91-11.91a8.008 8.008 0 0 1-2.34-5.66v-10.2c0-3.27 1.99-6.21 5.03-7.43l39.34-15.74c1.98-.79 3.86-1.82 5.59-3.05l23.71-16.89a7.978 7.978 0 0 1 4.64-1.48h12.09c3.23 0 6.15 1.94 7.39 4.93l5.35 12.85a4 4 0 0 0 3.69 2.46h3.8c1.78 0 3.35-1.18 3.84-2.88l4.2-14.47c.5-1.71 2.06-2.88 3.84-2.88h6.06c2.21 0 4 1.79 4 4v12.93c0 2.12.84 4.16 2.34 5.66l11.91 11.91c3 3 4.69 7.07 4.69 11.31v24.6z\"]\n};\nvar faGlobeEurope = {\n prefix: 'fas',\n iconName: 'globe-europe',\n icon: [496, 512, [], \"f7a2\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm200 248c0 22.5-3.9 44.2-10.8 64.4h-20.3c-4.3 0-8.4-1.7-11.4-4.8l-32-32.6c-4.5-4.6-4.5-12.1.1-16.7l12.5-12.5v-8.7c0-3-1.2-5.9-3.3-8l-9.4-9.4c-2.1-2.1-5-3.3-8-3.3h-16c-6.2 0-11.3-5.1-11.3-11.3 0-3 1.2-5.9 3.3-8l9.4-9.4c2.1-2.1 5-3.3 8-3.3h32c6.2 0 11.3-5.1 11.3-11.3v-9.4c0-6.2-5.1-11.3-11.3-11.3h-36.7c-8.8 0-16 7.2-16 16v4.5c0 6.9-4.4 13-10.9 15.2l-31.6 10.5c-3.3 1.1-5.5 4.1-5.5 7.6v2.2c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8s-3.6-8-8-8H247c-3 0-5.8 1.7-7.2 4.4l-9.4 18.7c-2.7 5.4-8.2 8.8-14.3 8.8H194c-8.8 0-16-7.2-16-16V199c0-4.2 1.7-8.3 4.7-11.3l20.1-20.1c4.6-4.6 7.2-10.9 7.2-17.5 0-3.4 2.2-6.5 5.5-7.6l40-13.3c1.7-.6 3.2-1.5 4.4-2.7l26.8-26.8c2.1-2.1 3.3-5 3.3-8 0-6.2-5.1-11.3-11.3-11.3H258l-16 16v8c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8v-20c0-2.5 1.2-4.9 3.2-6.4l28.9-21.7c1.9-.1 3.8-.3 5.7-.3C358.3 56 448 145.7 448 256zM130.1 149.1c0-3 1.2-5.9 3.3-8l25.4-25.4c2.1-2.1 5-3.3 8-3.3 6.2 0 11.3 5.1 11.3 11.3v16c0 3-1.2 5.9-3.3 8l-9.4 9.4c-2.1 2.1-5 3.3-8 3.3h-16c-6.2 0-11.3-5.1-11.3-11.3zm128 306.4v-7.1c0-8.8-7.2-16-16-16h-20.2c-10.8 0-26.7-5.3-35.4-11.8l-22.2-16.7c-11.5-8.6-18.2-22.1-18.2-36.4v-23.9c0-16 8.4-30.8 22.1-39l42.9-25.7c7.1-4.2 15.2-6.5 23.4-6.5h31.2c10.9 0 21.4 3.9 29.6 10.9l43.2 37.1h18.3c8.5 0 16.6 3.4 22.6 9.4l17.3 17.3c3.4 3.4 8.1 5.3 12.9 5.3H423c-32.4 58.9-93.8 99.5-164.9 103.1z\"]\n};\nvar faGolfBall = {\n prefix: 'fas',\n iconName: 'golf-ball',\n icon: [416, 512, [], \"f450\", \"M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z\"]\n};\nvar faGopuram = {\n prefix: 'fas',\n iconName: 'gopuram',\n icon: [512, 512, [], \"f664\", \"M496 352h-16V240c0-8.8-7.2-16-16-16h-16v-80c0-8.8-7.2-16-16-16h-16V16c0-8.8-7.2-16-16-16s-16 7.2-16 16v16h-64V16c0-8.8-7.2-16-16-16s-16 7.2-16 16v16h-64V16c0-8.8-7.2-16-16-16s-16 7.2-16 16v16h-64V16c0-8.8-7.2-16-16-16S96 7.2 96 16v112H80c-8.8 0-16 7.2-16 16v80H48c-8.8 0-16 7.2-16 16v112H16c-8.8 0-16 7.2-16 16v128c0 8.8 7.2 16 16 16h80V352h32V224h32v-96h32v96h-32v128h-32v160h80v-80c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16v80h80V352h-32V224h-32v-96h32v96h32v128h32v160h80c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zM232 176c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v48h-48zm56 176h-64v-64c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16z\"]\n};\nvar faGraduationCap = {\n prefix: 'fas',\n iconName: 'graduation-cap',\n icon: [640, 512, [], \"f19d\", \"M622.34 153.2L343.4 67.5c-15.2-4.67-31.6-4.67-46.79 0L17.66 153.2c-23.54 7.23-23.54 38.36 0 45.59l48.63 14.94c-10.67 13.19-17.23 29.28-17.88 46.9C38.78 266.15 32 276.11 32 288c0 10.78 5.68 19.85 13.86 25.65L20.33 428.53C18.11 438.52 25.71 448 35.94 448h56.11c10.24 0 17.84-9.48 15.62-19.47L82.14 313.65C90.32 307.85 96 298.78 96 288c0-11.57-6.47-21.25-15.66-26.87.76-15.02 8.44-28.3 20.69-36.72L296.6 284.5c9.06 2.78 26.44 6.25 46.79 0l278.95-85.7c23.55-7.24 23.55-38.36 0-45.6zM352.79 315.09c-28.53 8.76-52.84 3.92-65.59 0l-145.02-44.55L128 384c0 35.35 85.96 64 192 64s192-28.65 192-64l-14.18-113.47-145.03 44.56z\"]\n};\nvar faGreaterThan = {\n prefix: 'fas',\n iconName: 'greater-than',\n icon: [384, 512, [], \"f531\", \"M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z\"]\n};\nvar faGreaterThanEqual = {\n prefix: 'fas',\n iconName: 'greater-than-equal',\n icon: [448, 512, [], \"f532\", \"M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z\"]\n};\nvar faGrimace = {\n prefix: 'fas',\n iconName: 'grimace',\n icon: [496, 512, [], \"f57f\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM144 400h-8c-17.7 0-32-14.3-32-32v-8h40v40zm0-56h-40v-8c0-17.7 14.3-32 32-32h8v40zm-8-136c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm72 192h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm-8-104c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64 128c0 17.7-14.3 32-32 32h-8v-40h40v8zm0-24h-40v-40h8c17.7 0 32 14.3 32 32v8z\"]\n};\nvar faGrin = {\n prefix: 'fas',\n iconName: 'grin',\n icon: [496, 512, [], \"f580\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm80 256c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinAlt = {\n prefix: 'fas',\n iconName: 'grin-alt',\n icon: [496, 512, [], \"f581\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm63.7 128.7c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zm-160 0c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinBeam = {\n prefix: 'fas',\n iconName: 'grin-beam',\n icon: [496, 512, [], \"f582\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 144c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinBeamSweat = {\n prefix: 'fas',\n iconName: 'grin-beam-sweat',\n icon: [504, 512, [], \"f583\", \"M456 128c26.5 0 48-21 48-47 0-20-28.5-60.4-41.6-77.8-3.2-4.3-9.6-4.3-12.8 0C436.5 20.6 408 61 408 81c0 26 21.5 47 48 47zm0 32c-44.1 0-80-35.4-80-79 0-4.4.3-14.2 8.1-32.2C345 23.1 298.3 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-35.1-7.4-68.4-20.5-98.6-6.3 1.5-12.7 2.6-19.5 2.6zm-128-8c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinHearts = {\n prefix: 'fas',\n iconName: 'grin-hearts',\n icon: [496, 512, [], \"f584\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM90.4 183.6c6.7-17.6 26.7-26.7 44.9-21.9l7.1 1.9 2-7.1c5-18.1 22.8-30.9 41.5-27.9 21.4 3.4 34.4 24.2 28.8 44.5L195.3 243c-1.2 4.5-5.9 7.2-10.5 6l-70.2-18.2c-20.4-5.4-31.9-27-24.2-47.2zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm133.4-201.3l-70.2 18.2c-4.5 1.2-9.2-1.5-10.5-6L281.3 173c-5.6-20.3 7.4-41.1 28.8-44.5 18.6-3 36.4 9.8 41.5 27.9l2 7.1 7.1-1.9c18.2-4.7 38.2 4.3 44.9 21.9 7.7 20.3-3.8 41.9-24.2 47.2z\"]\n};\nvar faGrinSquint = {\n prefix: 'fas',\n iconName: 'grin-squint',\n icon: [496, 512, [], \"f585\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinSquintTears = {\n prefix: 'fas',\n iconName: 'grin-squint-tears',\n icon: [512, 512, [], \"f586\", \"M409.6 111.9c22.6-3.2 73.5-12 88.3-26.8 19.2-19.2 18.9-50.6-.7-70.2S446-5 426.9 14.2c-14.8 14.8-23.5 65.7-26.8 88.3-.8 5.5 3.9 10.2 9.5 9.4zM102.4 400.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm311.7-256.5c-33 3.9-48.6-25.1-45.7-45.7 3.4-24 7.4-42.1 11.5-56.5C285.1-13.4 161.8-.5 80.6 80.6-.5 161.7-13.4 285 41.4 379.9c14.4-4.1 32.4-8 56.5-11.5 33.2-3.9 48.6 25.2 45.7 45.7-3.4 24-7.4 42.1-11.5 56.5 94.8 54.8 218.1 41.9 299.3-39.2s94-204.4 39.2-299.3c-14.4 4.1-32.5 8-56.5 11.5zM255.7 106c3.3-13.2 22.4-11.5 23.6 1.8l4.8 52.3 52.3 4.8c13.4 1.2 14.9 20.3 1.8 23.6l-90.5 22.6c-8.9 2.2-16.7-5.9-14.5-14.5l22.5-90.6zm-90.9 230.3L160 284l-52.3-4.8c-13.4-1.2-14.9-20.3-1.8-23.6l90.5-22.6c8.8-2.2 16.7 5.8 14.5 14.5L188.3 338c-3.1 13.2-22.2 11.7-23.5-1.7zm215.7 44.2c-29.3 29.3-75.7 50.4-116.7 50.4-18.9 0-36.6-4.5-51-14.7-9.8-6.9-8.7-21.8 2-27.2 28.3-14.6 63.9-42.4 97.8-76.3s61.7-69.6 76.3-97.8c5.4-10.5 20.2-11.9 27.3-2 32.3 45.3 7.1 124.7-35.7 167.6z\"]\n};\nvar faGrinStars = {\n prefix: 'fas',\n iconName: 'grin-stars',\n icon: [496, 512, [], \"f587\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z\"]\n};\nvar faGrinTears = {\n prefix: 'fas',\n iconName: 'grin-tears',\n icon: [640, 512, [], \"f588\", \"M102.4 256.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm523.4 26.8c-14.8-14.8-65.7-23.5-88.3-26.8-5.5-.8-10.3 3.9-9.5 9.5 3.2 22.6 12 73.5 26.8 88.3 19.2 19.2 50.6 18.9 70.2-.7s20-51.2.8-70.3zm-129.4-12.8c-3.8-26.6 19.1-49.5 45.7-45.7 8.9 1.3 16.8 2.7 24.3 4.1C552.7 104.5 447.7 8 320 8S87.3 104.5 73.6 228.5c7.5-1.4 15.4-2.8 24.3-4.1 33.2-3.9 48.6 25.3 45.7 45.7-11.8 82.3-29.9 100.4-35.8 106.4-.9.9-2 1.6-3 2.5 42.7 74.6 123 125 215.2 125s172.5-50.4 215.2-125.1c-1-.9-2.1-1.5-3-2.5-5.9-5.9-24-24-35.8-106.3zM400 152c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.7 9.2-21.6 20.7-17.9C227.1 330.5 272 336 320 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinTongue = {\n prefix: 'fas',\n iconName: 'grin-tongue',\n icon: [496, 512, [], \"f589\", \"M248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-34.9 134.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z\"]\n};\nvar faGrinTongueSquint = {\n prefix: 'fas',\n iconName: 'grin-tongue-squint',\n icon: [496, 512, [], \"f58a\", \"M293.1 374.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-33.8 210.3l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.7 4.7 7.7 15.9 0 20.6zm163 30c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.8-4.7-7.8-15.9 0-20.6l80-48c11.7-6.9 23.9 7.7 15.4 18L343.6 208l33.6 40.3z\"]\n};\nvar faGrinTongueWink = {\n prefix: 'fas',\n iconName: 'grin-tongue-wink',\n icon: [496, 512, [], \"f58b\", \"M344 184c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-56 225l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L112 233c-8.5 7.4-21.6.3-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c1.6 11.1-11.6 18.2-20 10.8zm152 39c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm-50.9 102.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z\"]\n};\nvar faGrinWink = {\n prefix: 'fas',\n iconName: 'grin-wink',\n icon: [496, 512, [], \"f58c\", \"M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm168 25l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.6 11-11.5 18.2-20 10.8zm-243.1 87.8C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6 20.7 17.9-9.2 55-83.2 93.3-143.8 93.3s-134.5-38.3-143.8-93.3c-2-11.9 9.3-21.6 20.7-17.9z\"]\n};\nvar faGripHorizontal = {\n prefix: 'fas',\n iconName: 'grip-horizontal',\n icon: [448, 512, [], \"f58d\", \"M96 288H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM96 96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z\"]\n};\nvar faGripLines = {\n prefix: 'fas',\n iconName: 'grip-lines',\n icon: [512, 512, [], \"f7a4\", \"M496 288H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-128H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z\"]\n};\nvar faGripLinesVertical = {\n prefix: 'fas',\n iconName: 'grip-lines-vertical',\n icon: [256, 512, [], \"f7a5\", \"M96 496V16c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16v480c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zm128 0V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v480c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16z\"]\n};\nvar faGripVertical = {\n prefix: 'fas',\n iconName: 'grip-vertical',\n icon: [320, 512, [], \"f58e\", \"M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z\"]\n};\nvar faGuitar = {\n prefix: 'fas',\n iconName: 'guitar',\n icon: [512, 512, [], \"f7a6\", \"M502.63 39L473 9.37a32 32 0 0 0-45.26 0L381.46 55.7a35.14 35.14 0 0 0-8.53 13.79L360.77 106l-76.26 76.26c-12.16-8.76-25.5-15.74-40.1-19.14-33.45-7.78-67-.88-89.88 22a82.45 82.45 0 0 0-20.24 33.47c-6 18.56-23.21 32.69-42.15 34.46-23.7 2.27-45.73 11.45-62.61 28.44C-16.11 327-7.9 409 47.58 464.45S185 528 230.56 482.52c17-16.88 26.16-38.9 28.45-62.71 1.76-18.85 15.89-36.13 34.43-42.14a82.6 82.6 0 0 0 33.48-20.25c22.87-22.88 29.74-56.36 22-89.75-3.39-14.64-10.37-28-19.16-40.2L406 151.23l36.48-12.16a35.14 35.14 0 0 0 13.79-8.53l46.33-46.32a32 32 0 0 0 .03-45.22zM208 352a48 48 0 1 1 48-48 48 48 0 0 1-48 48z\"]\n};\nvar faHSquare = {\n prefix: 'fas',\n iconName: 'h-square',\n icon: [448, 512, [], \"f0fd\", \"M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z\"]\n};\nvar faHamburger = {\n prefix: 'fas',\n iconName: 'hamburger',\n icon: [512, 512, [], \"f805\", \"M464 256H48a48 48 0 0 0 0 96h416a48 48 0 0 0 0-96zm16 128H32a16 16 0 0 0-16 16v16a64 64 0 0 0 64 64h352a64 64 0 0 0 64-64v-16a16 16 0 0 0-16-16zM58.64 224h394.72c34.57 0 54.62-43.9 34.82-75.88C448 83.2 359.55 32.1 256 32c-103.54.1-192 51.2-232.18 116.11C4 180.09 24.07 224 58.64 224zM384 112a16 16 0 1 1-16 16 16 16 0 0 1 16-16zM256 80a16 16 0 1 1-16 16 16 16 0 0 1 16-16zm-128 32a16 16 0 1 1-16 16 16 16 0 0 1 16-16z\"]\n};\nvar faHammer = {\n prefix: 'fas',\n iconName: 'hammer',\n icon: [576, 512, [], \"f6e3\", \"M571.31 193.94l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31-28.9-28.9c5.63-21.31.36-44.9-16.35-61.61l-45.25-45.25c-62.48-62.48-163.79-62.48-226.28 0l90.51 45.25v18.75c0 16.97 6.74 33.25 18.75 45.25l49.14 49.14c16.71 16.71 40.3 21.98 61.61 16.35l28.9 28.9-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l90.51-90.51c6.23-6.24 6.23-16.37-.02-22.62zm-286.72-15.2c-3.7-3.7-6.84-7.79-9.85-11.95L19.64 404.96c-25.57 23.88-26.26 64.19-1.53 88.93s65.05 24.05 88.93-1.53l238.13-255.07c-3.96-2.91-7.9-5.87-11.44-9.41l-49.14-49.14z\"]\n};\nvar faHamsa = {\n prefix: 'fas',\n iconName: 'hamsa',\n icon: [512, 512, [], \"f665\", \"M509.34 307.25C504.28 295.56 492.75 288 480 288h-64V80c0-22-18-40-40-40s-40 18-40 40v134c0 5.52-4.48 10-10 10h-20c-5.52 0-10-4.48-10-10V40c0-22-18-40-40-40s-40 18-40 40v174c0 5.52-4.48 10-10 10h-20c-5.52 0-10-4.48-10-10V80c0-22-18-40-40-40S96 58 96 80v208H32c-12.75 0-24.28 7.56-29.34 19.25a31.966 31.966 0 0 0 5.94 34.58l102.69 110.03C146.97 490.08 199.69 512 256 512s109.03-21.92 144.72-60.14L503.4 341.83a31.966 31.966 0 0 0 5.94-34.58zM256 416c-53.02 0-96-64-96-64s42.98-64 96-64 96 64 96 64-42.98 64-96 64zm0-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z\"]\n};\nvar faHandHolding = {\n prefix: 'fas',\n iconName: 'hand-holding',\n icon: [576, 512, [], \"f4bd\", \"M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z\"]\n};\nvar faHandHoldingHeart = {\n prefix: 'fas',\n iconName: 'hand-holding-heart',\n icon: [576, 512, [], \"f4be\", \"M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z\"]\n};\nvar faHandHoldingMedical = {\n prefix: 'fas',\n iconName: 'hand-holding-medical',\n icon: [576, 512, [], \"e05c\", \"M159.88,175.82h64v64a16,16,0,0,0,16,16h64a16,16,0,0,0,16-16v-64h64a16,16,0,0,0,16-16v-64a16,16,0,0,0-16-16h-64v-64a16,16,0,0,0-16-16h-64a16,16,0,0,0-16,16v64h-64a16,16,0,0,0-16,16v64A16,16,0,0,0,159.88,175.82ZM568.07,336.13a39.91,39.91,0,0,0-55.93-8.47L392.47,415.84H271.86a16,16,0,0,1,0-32H350.1c16,0,30.75-10.87,33.37-26.61a32.06,32.06,0,0,0-31.62-37.38h-160a117.7,117.7,0,0,0-74.12,26.25l-46.5,37.74H15.87a16.11,16.11,0,0,0-16,16v96a16.11,16.11,0,0,0,16,16h347a104.8,104.8,0,0,0,61.7-20.27L559.6,392A40,40,0,0,0,568.07,336.13Z\"]\n};\nvar faHandHoldingUsd = {\n prefix: 'fas',\n iconName: 'hand-holding-usd',\n icon: [576, 512, [], \"f4c0\", \"M271.06,144.3l54.27,14.3a8.59,8.59,0,0,1,6.63,8.1c0,4.6-4.09,8.4-9.12,8.4h-35.6a30,30,0,0,1-11.19-2.2c-5.24-2.2-11.28-1.7-15.3,2l-19,17.5a11.68,11.68,0,0,0-2.25,2.66,11.42,11.42,0,0,0,3.88,15.74,83.77,83.77,0,0,0,34.51,11.5V240c0,8.8,7.83,16,17.37,16h17.37c9.55,0,17.38-7.2,17.38-16V222.4c32.93-3.6,57.84-31,53.5-63-3.15-23-22.46-41.3-46.56-47.7L282.68,97.4a8.59,8.59,0,0,1-6.63-8.1c0-4.6,4.09-8.4,9.12-8.4h35.6A30,30,0,0,1,332,83.1c5.23,2.2,11.28,1.7,15.3-2l19-17.5A11.31,11.31,0,0,0,368.47,61a11.43,11.43,0,0,0-3.84-15.78,83.82,83.82,0,0,0-34.52-11.5V16c0-8.8-7.82-16-17.37-16H295.37C285.82,0,278,7.2,278,16V33.6c-32.89,3.6-57.85,31-53.51,63C227.63,119.6,247,137.9,271.06,144.3ZM565.27,328.1c-11.8-10.7-30.2-10-42.6,0L430.27,402a63.64,63.64,0,0,1-40,14H272a16,16,0,0,1,0-32h78.29c15.9,0,30.71-10.9,33.25-26.6a31.2,31.2,0,0,0,.46-5.46A32,32,0,0,0,352,320H192a117.66,117.66,0,0,0-74.1,26.29L71.4,384H16A16,16,0,0,0,0,400v96a16,16,0,0,0,16,16H372.77a64,64,0,0,0,40-14L564,377a32,32,0,0,0,1.28-48.9Z\"]\n};\nvar faHandHoldingWater = {\n prefix: 'fas',\n iconName: 'hand-holding-water',\n icon: [576, 512, [], \"f4c1\", \"M288 256c53 0 96-42.1 96-94 0-40-57.1-120.7-83.2-155.6-6.4-8.5-19.2-8.5-25.6 0C249.1 41.3 192 122 192 162c0 51.9 43 94 96 94zm277.3 72.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z\"]\n};\nvar faHandLizard = {\n prefix: 'fas',\n iconName: 'hand-lizard',\n icon: [576, 512, [], \"f258\", \"M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z\"]\n};\nvar faHandMiddleFinger = {\n prefix: 'fas',\n iconName: 'hand-middle-finger',\n icon: [512, 512, [], \"f806\", \"M479.93 317.12a37.33 37.33 0 0 0-28.28-36.19L416 272v-49.59c0-11.44-9.69-21.29-23.15-23.54l-38.4-6.4C336.63 189.5 320 200.86 320 216v32a8 8 0 0 1-16 0V50c0-26.28-20.25-49.2-46.52-50A48 48 0 0 0 208 48v200a8 8 0 0 1-16 0v-32c0-15.15-16.63-26.51-34.45-23.54l-30.68 5.12c-18 3-30.87 16.12-30.87 31.38V376a8 8 0 0 1-16 0v-76l-27.36 15A37.34 37.34 0 0 0 32 348.4v73.47a37.31 37.31 0 0 0 10.93 26.39l30.93 30.93A112 112 0 0 0 153.05 512h215A112 112 0 0 0 480 400z\"]\n};\nvar faHandPaper = {\n prefix: 'fas',\n iconName: 'hand-paper',\n icon: [448, 512, [], \"f256\", \"M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z\"]\n};\nvar faHandPeace = {\n prefix: 'fas',\n iconName: 'hand-peace',\n icon: [448, 512, [], \"f25b\", \"M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z\"]\n};\nvar faHandPointDown = {\n prefix: 'fas',\n iconName: 'hand-point-down',\n icon: [384, 512, [], \"f0a7\", \"M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"]\n};\nvar faHandPointLeft = {\n prefix: 'fas',\n iconName: 'hand-point-left',\n icon: [512, 512, [], \"f0a5\", \"M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z\"]\n};\nvar faHandPointRight = {\n prefix: 'fas',\n iconName: 'hand-point-right',\n icon: [512, 512, [], \"f0a4\", \"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"]\n};\nvar faHandPointUp = {\n prefix: 'fas',\n iconName: 'hand-point-up',\n icon: [384, 512, [], \"f0a6\", \"M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z\"]\n};\nvar faHandPointer = {\n prefix: 'fas',\n iconName: 'hand-pointer',\n icon: [448, 512, [], \"f25a\", \"M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z\"]\n};\nvar faHandRock = {\n prefix: 'fas',\n iconName: 'hand-rock',\n icon: [512, 512, [], \"f255\", \"M464.8 80c-26.9-.4-48.8 21.2-48.8 48h-8V96.8c0-26.3-20.9-48.3-47.2-48.8-26.9-.4-48.8 21.2-48.8 48v32h-8V80.8c0-26.3-20.9-48.3-47.2-48.8-26.9-.4-48.8 21.2-48.8 48v48h-8V96.8c0-26.3-20.9-48.3-47.2-48.8-26.9-.4-48.8 21.2-48.8 48v136l-8-7.1v-48.1c0-26.3-20.9-48.3-47.2-48.8C21.9 127.6 0 149.2 0 176v66.4c0 27.4 11.7 53.5 32.2 71.8l111.7 99.3c10.2 9.1 16.1 22.2 16.1 35.9v6.7c0 13.3 10.7 24 24 24h240c13.3 0 24-10.7 24-24v-2.9c0-12.8 2.6-25.5 7.5-37.3l49-116.3c5-11.8 7.5-24.5 7.5-37.3V128.8c0-26.3-20.9-48.4-47.2-48.8z\"]\n};\nvar faHandScissors = {\n prefix: 'fas',\n iconName: 'hand-scissors',\n icon: [512, 512, [], \"f257\", \"M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z\"]\n};\nvar faHandSparkles = {\n prefix: 'fas',\n iconName: 'hand-sparkles',\n icon: [640, 512, [], \"e05d\", \"M106.66,170.64l.09,0,49.55-20.65a7.32,7.32,0,0,0,3.68-6h0a7.29,7.29,0,0,0-3.68-6l-49.57-20.67-.07,0L86,67.68a6.66,6.66,0,0,0-11.92,0l-20.7,49.63-.05,0L3.7,138A7.29,7.29,0,0,0,0,144H0a7.32,7.32,0,0,0,3.68,6L53.27,170.6l.07,0L74,220.26a6.65,6.65,0,0,0,11.92,0l20.69-49.62ZM471.38,467.41l-1-.42-1-.5a38.67,38.67,0,0,1,0-69.14l1-.49,1-.43,37.49-15.63,15.63-37.48.41-1,.47-.95c3.85-7.74,10.58-13.63,18.35-17.34,0-1.33.25-2.69.27-4V144a32,32,0,0,0-64,0v72a8,8,0,0,1-8,8H456a8,8,0,0,1-8-8V64a32,32,0,0,0-64,0V216a8,8,0,0,1-8,8H360a8,8,0,0,1-8-8V32a32,32,0,0,0-64,0V216a8,8,0,0,1-8,8H264a8,8,0,0,1-8-8V64a32,32,0,0,0-64,0v241l-23.59-32.49a40,40,0,0,0-64.71,47.09L229.3,492.21A48.07,48.07,0,0,0,268.09,512H465.7c19.24,0,35.65-11.73,43.24-28.79l-.07-.17ZM349.79,339.52,320,351.93l-12.42,29.78a4,4,0,0,1-7.15,0L288,351.93l-29.79-12.41a4,4,0,0,1,0-7.16L288,319.94l12.42-29.78a4,4,0,0,1,7.15,0L320,319.94l29.79,12.42a4,4,0,0,1,0,7.16ZM640,431.91a7.28,7.28,0,0,0-3.68-6l-49.57-20.67-.07,0L566,355.63a6.66,6.66,0,0,0-11.92,0l-20.7,49.63-.05,0L483.7,426a7.28,7.28,0,0,0-3.68,6h0a7.29,7.29,0,0,0,3.68,5.95l49.57,20.67.07,0L554,508.21a6.65,6.65,0,0,0,11.92,0l20.69-49.62h0l.09,0,49.55-20.66a7.29,7.29,0,0,0,3.68-5.95h0Z\"]\n};\nvar faHandSpock = {\n prefix: 'fas',\n iconName: 'hand-spock',\n icon: [512, 512, [], \"f259\", \"M510.9005,145.27027,442.604,432.09391A103.99507,103.99507,0,0,1,341.43745,512H214.074a135.96968,135.96968,0,0,1-93.18489-36.95291L12.59072,373.12723a39.992,39.992,0,0,1,54.8122-58.24988l60.59342,57.02528v0a283.24849,283.24849,0,0,0-11.6703-80.46734L73.63726,147.36011a40.00575,40.00575,0,1,1,76.71833-22.7187l37.15458,125.39477a8.33113,8.33113,0,0,0,16.05656-4.4414L153.26183,49.95406A39.99638,39.99638,0,1,1,230.73015,30.0166l56.09491,218.15825a10.42047,10.42047,0,0,0,20.30018-.501L344.80766,63.96966a40.052,40.052,0,0,1,51.30245-30.0893c19.86073,6.2998,30.86262,27.67378,26.67564,48.08487l-33.83869,164.966a7.55172,7.55172,0,0,0,14.74406,3.2666l29.3973-123.45874a39.99414,39.99414,0,1,1,77.81208,18.53121Z\"]\n};\nvar faHands = {\n prefix: 'fas',\n iconName: 'hands',\n icon: [640, 512, [], \"f4c2\", \"M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z\"]\n};\nvar faHandsHelping = {\n prefix: 'fas',\n iconName: 'hands-helping',\n icon: [640, 512, [], \"f4c4\", \"M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z\"]\n};\nvar faHandsWash = {\n prefix: 'fas',\n iconName: 'hands-wash',\n icon: [576, 512, [], \"e05e\", \"M496,224a48,48,0,1,0-48-48A48,48,0,0,0,496,224ZM311.47,178.45A56.77,56.77,0,0,1,328,176a56,56,0,0,1,19,3.49l15.35-48.61A24,24,0,0,0,342,99.74c-11.53-1.35-22.21,6.44-25.71,17.51l-20.9,66.17ZM93.65,386.33c.8-.19,1.54-.54,2.35-.71V359.93a156,156,0,0,1,107.06-148l73.7-22.76L310.92,81.05a24,24,0,0,0-20.33-31.11c-11.53-1.34-22.22,6.45-25.72,17.52L231.42,173.88a8,8,0,0,1-15.26-4.83L259.53,31.26A24,24,0,0,0,239.2.15C227.67-1.19,217,6.6,213.49,17.66L165.56,169.37a8,8,0,1,1-15.26-4.82l38.56-122a24,24,0,0,0-20.33-31.11C157,10,146.32,17.83,142.82,28.9l-60,189.85L80.76,168.7A24,24,0,0,0,56.9,144.55c-13.23-.05-24.72,10.54-24.9,23.86V281.14A123.69,123.69,0,0,0,93.65,386.33ZM519.1,336H360a8,8,0,0,1,0-16H488a24,24,0,0,0,23.54-28.76C509.35,279.84,498.71,272,487.1,272H288l47.09-17.06a24,24,0,0,0-14.18-45.88L213.19,242.31A123.88,123.88,0,0,0,128,360v25.65a79.78,79.78,0,0,1,58,108.63A118.9,118.9,0,0,0,248,512H456a24,24,0,0,0,23.54-28.76C477.35,471.84,466.71,464,455.1,464H360a8,8,0,0,1,0-16H488a24,24,0,0,0,23.54-28.76C509.35,407.84,498.71,400,487.1,400H360a8,8,0,0,1,0-16H520a24,24,0,0,0,23.54-28.76C541.35,343.84,530.71,336,519.1,336ZM416,64a32,32,0,1,0-32-32A32,32,0,0,0,416,64ZM112,416a48,48,0,1,0,48,48A48,48,0,0,0,112,416Z\"]\n};\nvar faHandshake = {\n prefix: 'fas',\n iconName: 'handshake',\n icon: [640, 512, [], \"f2b5\", \"M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z\"]\n};\nvar faHandshakeAltSlash = {\n prefix: 'fas',\n iconName: 'handshake-alt-slash',\n icon: [640, 512, [], \"e05f\", \"M358.59,195.6,504.2,313.8a63.4,63.4,0,0,1,22.21,37.91H624a16.05,16.05,0,0,0,16-16V143.91A16,16,0,0,0,624,128H512L457.41,73.41A32,32,0,0,0,434.8,64H348.91a32,32,0,0,0-21.61,8.41l-88.12,80.68-25.69-19.85L289.09,64H205.3a32,32,0,0,0-22.6,9.41l-20.34,20.3L45.47,3.38A16,16,0,0,0,23,6.19L3.38,31.46A16,16,0,0,0,6.19,53.91L594.54,508.63A16,16,0,0,0,617,505.82l19.64-25.27a16,16,0,0,0-2.81-22.45L303.4,202.72l32.69-29.92,27-24.7a16,16,0,0,1,21.61,23.61ZM16,128A16.05,16.05,0,0,0,0,144V335.91a16,16,0,0,0,16,16H146.3l90.5,81.89a64,64,0,0,0,90-9.3l.2-.2,17.91,15.5a37.16,37.16,0,0,0,52.29-5.39l8.8-10.82L23.56,128Z\"]\n};\nvar faHandshakeSlash = {\n prefix: 'fas',\n iconName: 'handshake-slash',\n icon: [640, 512, [], \"e060\", \"M0,128.21V384H64a32,32,0,0,0,32-32V184L23.83,128.21ZM48,320.1a16,16,0,1,1-16,16A16,16,0,0,1,48,320.1Zm80,31.81h18.3l90.5,81.89a64,64,0,0,0,90-9.3l.2-.2,17.91,15.5a37.16,37.16,0,0,0,52.29-5.39l8.8-10.82L128,208.72Zm416-223.7V352.1a32,32,0,0,0,32,32h64V128.21ZM592,352.1a16,16,0,1,1,16-16A16,16,0,0,1,592,352.1ZM303.33,202.67l59.58-54.57a16,16,0,0,1,21.59,23.61L358.41,195.6,504,313.8a73.08,73.08,0,0,1,7.91,7.7V128L457.3,73.41A31.76,31.76,0,0,0,434.7,64H348.8a31.93,31.93,0,0,0-21.6,8.41l-88.07,80.64-25.64-19.81L289.09,64H205.3a32,32,0,0,0-22.6,9.41L162.36,93.72,45.47,3.38A16,16,0,0,0,23,6.19L3.38,31.46A16,16,0,0,0,6.19,53.91L594.53,508.63A16,16,0,0,0,617,505.82l19.65-25.27a16,16,0,0,0-2.82-22.45Z\"]\n};\nvar faHanukiah = {\n prefix: 'fas',\n iconName: 'hanukiah',\n icon: [640, 512, [], \"f6e6\", \"M232 160c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm-64 0c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm224 0c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm64 0c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm88 8c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v120h32V168zm-440-8c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm520 0h-32c-8.84 0-16 7.16-16 16v112c0 17.67-14.33 32-32 32H352V128c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v192H96c-17.67 0-32-14.33-32-32V176c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v112c0 53.02 42.98 96 96 96h192v64H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16H352v-64h192c53.02 0 96-42.98 96-96V176c0-8.84-7.16-16-16-16zm-16-32c13.25 0 24-11.94 24-26.67S608 48 608 48s-24 38.61-24 53.33S594.75 128 608 128zm-576 0c13.25 0 24-11.94 24-26.67S32 48 32 48 8 86.61 8 101.33 18.75 128 32 128zm288-48c13.25 0 24-11.94 24-26.67S320 0 320 0s-24 38.61-24 53.33S306.75 80 320 80zm-208 48c13.25 0 24-11.94 24-26.67S112 48 112 48s-24 38.61-24 53.33S98.75 128 112 128zm64 0c13.25 0 24-11.94 24-26.67S176 48 176 48s-24 38.61-24 53.33S162.75 128 176 128zm64 0c13.25 0 24-11.94 24-26.67S240 48 240 48s-24 38.61-24 53.33S226.75 128 240 128zm160 0c13.25 0 24-11.94 24-26.67S400 48 400 48s-24 38.61-24 53.33S386.75 128 400 128zm64 0c13.25 0 24-11.94 24-26.67S464 48 464 48s-24 38.61-24 53.33S450.75 128 464 128zm64 0c13.25 0 24-11.94 24-26.67S528 48 528 48s-24 38.61-24 53.33S514.75 128 528 128z\"]\n};\nvar faHardHat = {\n prefix: 'fas',\n iconName: 'hard-hat',\n icon: [512, 512, [], \"f807\", \"M480 288c0-80.25-49.28-148.92-119.19-177.62L320 192V80a16 16 0 0 0-16-16h-96a16 16 0 0 0-16 16v112l-40.81-81.62C81.28 139.08 32 207.75 32 288v64h448zm16 96H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h480a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faHashtag = {\n prefix: 'fas',\n iconName: 'hashtag',\n icon: [448, 512, [], \"f292\", \"M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z\"]\n};\nvar faHatCowboy = {\n prefix: 'fas',\n iconName: 'hat-cowboy',\n icon: [640, 512, [], \"f8c0\", \"M490 296.9C480.51 239.51 450.51 64 392.3 64c-14 0-26.49 5.93-37 14a58.21 58.21 0 0 1-70.58 0c-10.51-8-23-14-37-14-58.2 0-88.2 175.47-97.71 232.88C188.81 309.47 243.73 320 320 320s131.23-10.51 170-23.1zm142.9-37.18a16 16 0 0 0-19.75 1.5c-1 .9-101.27 90.78-293.16 90.78-190.82 0-292.22-89.94-293.24-90.84A16 16 0 0 0 1 278.53C1.73 280.55 78.32 480 320 480s318.27-199.45 319-201.47a16 16 0 0 0-6.09-18.81z\"]\n};\nvar faHatCowboySide = {\n prefix: 'fas',\n iconName: 'hat-cowboy-side',\n icon: [640, 512, [], \"f8c1\", \"M260.8 291.06c-28.63-22.94-62-35.06-96.4-35.06C87 256 21.47 318.72 1.43 412.06c-3.55 16.6-.43 33.83 8.57 47.3C18.75 472.47 31.83 480 45.88 480H592c-103.21 0-155-37.07-233.19-104.46zm234.65-18.29L468.4 116.2A64 64 0 0 0 392 64.41L200.85 105a64 64 0 0 0-50.35 55.79L143.61 226c6.9-.83 13.7-2 20.79-2 41.79 0 82 14.55 117.29 42.82l98 84.48C450.76 412.54 494.9 448 592 448a48 48 0 0 0 48-48c0-25.39-29.6-119.33-144.55-127.23z\"]\n};\nvar faHatWizard = {\n prefix: 'fas',\n iconName: 'hat-wizard',\n icon: [512, 512, [], \"f6e8\", \"M496 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-304-64l-64-32 64-32 32-64 32 64 64 32-64 32-16 32h208l-86.41-201.63a63.955 63.955 0 0 1-1.89-45.45L416 0 228.42 107.19a127.989 127.989 0 0 0-53.46 59.15L64 416h144l-16-32zm64-224l16-32 16 32 32 16-32 16-16 32-16-32-32-16 32-16z\"]\n};\nvar faHdd = {\n prefix: 'fas',\n iconName: 'hdd',\n icon: [576, 512, [], \"f0a0\", \"M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z\"]\n};\nvar faHeadSideCough = {\n prefix: 'fas',\n iconName: 'head-side-cough',\n icon: [640, 512, [], \"e061\", \"M616,304a24,24,0,1,0-24-24A24,24,0,0,0,616,304ZM552,416a24,24,0,1,0,24,24A24,24,0,0,0,552,416Zm-64-56a24,24,0,1,0,24,24A24,24,0,0,0,488,360ZM616,464a24,24,0,1,0,24,24A24,24,0,0,0,616,464Zm0-104a24,24,0,1,0,24,24A24,24,0,0,0,616,360Zm-64-40a24,24,0,1,0,24,24A24,24,0,0,0,552,320Zm-74.78-45c-21-47.12-48.5-151.75-73.12-186.75A208.13,208.13,0,0,0,234.1,0H192C86,0,0,86,0,192c0,56.75,24.75,107.62,64,142.88V512H288V480h64a64,64,0,0,0,64-64H320a32,32,0,0,1,0-64h96V320h32A32,32,0,0,0,477.22,275ZM288,224a32,32,0,1,1,32-32A32.07,32.07,0,0,1,288,224Z\"]\n};\nvar faHeadSideCoughSlash = {\n prefix: 'fas',\n iconName: 'head-side-cough-slash',\n icon: [640, 512, [], \"e062\", \"M454.11,319.21c19.56-3.81,31.62-25,23.11-44.21-21-47.12-48.5-151.75-73.12-186.75A208.13,208.13,0,0,0,234.1,0H192A190.64,190.64,0,0,0,84.18,33.3L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.46A16,16,0,0,0,6.18,53.91L594.53,508.63A16,16,0,0,0,617,505.82l19.64-25.27a16,16,0,0,0-2.81-22.45ZM313.39,210.45,263.61,172c5.88-7.14,14.43-12,24.36-12a32.06,32.06,0,0,1,32,32C320,199,317.24,205.17,313.39,210.45ZM616,304a24,24,0,1,0-24-24A24,24,0,0,0,616,304Zm-64,64a24,24,0,1,0-24-24A24,24,0,0,0,552,368ZM288,384a32,32,0,0,1,32-32h19.54L20.73,105.59A190.86,190.86,0,0,0,0,192c0,56.75,24.75,107.62,64,142.88V512H288V480h64a64,64,0,0,0,64-64H320A32,32,0,0,1,288,384Zm328-24a24,24,0,1,0,24,24A24,24,0,0,0,616,360Z\"]\n};\nvar faHeadSideMask = {\n prefix: 'fas',\n iconName: 'head-side-mask',\n icon: [512, 512, [], \"e063\", \"M.15,184.42C-2.17,244.21,23,298.06,64,334.88V512H224V316.51L3.67,156.25A182.28,182.28,0,0,0,.15,184.42ZM509.22,275c-21-47.12-48.5-151.75-73.12-186.75A208.11,208.11,0,0,0,266.11,0H200C117,0,42.48,50.57,13.25,123.65L239.21,288H511.76A31.35,31.35,0,0,0,509.22,275ZM320,224a32,32,0,1,1,32-32A32.07,32.07,0,0,1,320,224Zm16,144H496l16-48H256V512H401.88a64,64,0,0,0,60.71-43.76L464,464H336a16,16,0,0,1,0-32H474.67l10.67-32H336a16,16,0,0,1,0-32Z\"]\n};\nvar faHeadSideVirus = {\n prefix: 'fas',\n iconName: 'head-side-virus',\n icon: [512, 512, [], \"e064\", \"M272,240a16,16,0,1,0,16,16A16,16,0,0,0,272,240Zm-64-64a16,16,0,1,0,16,16A16,16,0,0,0,208,176Zm301.2,99c-20.93-47.12-48.43-151.73-73.07-186.75A207.9,207.9,0,0,0,266.09,0H192C86,0,0,86,0,192A191.23,191.23,0,0,0,64,334.81V512H320V448h64a64,64,0,0,0,64-64V320H480A32,32,0,0,0,509.2,275ZM368,240H355.88c-28.51,0-42.79,34.47-22.63,54.63l8.58,8.57a16,16,0,1,1-22.63,22.63l-8.57-8.58C290.47,297.09,256,311.37,256,339.88V352a16,16,0,0,1-32,0V339.88c0-28.51-34.47-42.79-54.63-22.63l-8.57,8.58a16,16,0,0,1-22.63-22.63l8.58-8.57c20.16-20.16,5.88-54.63-22.63-54.63H112a16,16,0,0,1,0-32h12.12c28.51,0,42.79-34.47,22.63-54.63l-8.58-8.57a16,16,0,0,1,22.63-22.63l8.57,8.58c20.16,20.16,54.63,5.88,54.63-22.63V96a16,16,0,0,1,32,0v12.12c0,28.51,34.47,42.79,54.63,22.63l8.57-8.58a16,16,0,0,1,22.63,22.63l-8.58,8.57C313.09,173.53,327.37,208,355.88,208H368a16,16,0,0,1,0,32Z\"]\n};\nvar faHeading = {\n prefix: 'fas',\n iconName: 'heading',\n icon: [512, 512, [], \"f1dc\", \"M448 96v320h32a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H320a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32V288H160v128h32a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32V96H32a16 16 0 0 1-16-16V48a16 16 0 0 1 16-16h160a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16h-32v128h192V96h-32a16 16 0 0 1-16-16V48a16 16 0 0 1 16-16h160a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16z\"]\n};\nvar faHeadphones = {\n prefix: 'fas',\n iconName: 'headphones',\n icon: [512, 512, [], \"f025\", \"M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z\"]\n};\nvar faHeadphonesAlt = {\n prefix: 'fas',\n iconName: 'headphones-alt',\n icon: [512, 512, [], \"f58f\", \"M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z\"]\n};\nvar faHeadset = {\n prefix: 'fas',\n iconName: 'headset',\n icon: [512, 512, [], \"f590\", \"M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z\"]\n};\nvar faHeart = {\n prefix: 'fas',\n iconName: 'heart',\n icon: [512, 512, [], \"f004\", \"M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z\"]\n};\nvar faHeartBroken = {\n prefix: 'fas',\n iconName: 'heart-broken',\n icon: [512, 512, [], \"f7a9\", \"M473.7 73.8l-2.4-2.5c-46-47-118-51.7-169.6-14.8L336 159.9l-96 64 48 128-144-144 96-64-28.6-86.5C159.7 19.6 87 24 40.7 71.4l-2.4 2.4C-10.4 123.6-12.5 202.9 31 256l212.1 218.6c7.1 7.3 18.6 7.3 25.7 0L481 255.9c43.5-53 41.4-132.3-7.3-182.1z\"]\n};\nvar faHeartbeat = {\n prefix: 'fas',\n iconName: 'heartbeat',\n icon: [512, 512, [], \"f21e\", \"M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z\"]\n};\nvar faHelicopter = {\n prefix: 'fas',\n iconName: 'helicopter',\n icon: [640, 512, [], \"f533\", \"M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z\"]\n};\nvar faHighlighter = {\n prefix: 'fas',\n iconName: 'highlighter',\n icon: [544, 512, [], \"f591\", \"M0 479.98L99.92 512l35.45-35.45-67.04-67.04L0 479.98zm124.61-240.01a36.592 36.592 0 0 0-10.79 38.1l13.05 42.83-50.93 50.94 96.23 96.23 50.86-50.86 42.74 13.08c13.73 4.2 28.65-.01 38.15-10.78l35.55-41.64-173.34-173.34-41.52 35.44zm403.31-160.7l-63.2-63.2c-20.49-20.49-53.38-21.52-75.12-2.35L190.55 183.68l169.77 169.78L530.27 154.4c19.18-21.74 18.15-54.63-2.35-75.13z\"]\n};\nvar faHiking = {\n prefix: 'fas',\n iconName: 'hiking',\n icon: [384, 512, [], \"f6ec\", \"M80.95 472.23c-4.28 17.16 6.14 34.53 23.28 38.81 2.61.66 5.22.95 7.8.95 14.33 0 27.37-9.7 31.02-24.23l25.24-100.97-52.78-52.78-34.56 138.22zm14.89-196.12L137 117c2.19-8.42-3.14-16.95-11.92-19.06-43.88-10.52-88.35 15.07-99.32 57.17L.49 253.24c-2.19 8.42 3.14 16.95 11.92 19.06l63.56 15.25c8.79 2.1 17.68-3.02 19.87-11.44zM368 160h-16c-8.84 0-16 7.16-16 16v16h-34.75l-46.78-46.78C243.38 134.11 228.61 128 212.91 128c-27.02 0-50.47 18.3-57.03 44.52l-26.92 107.72a32.012 32.012 0 0 0 8.42 30.39L224 397.25V480c0 17.67 14.33 32 32 32s32-14.33 32-32v-82.75c0-17.09-6.66-33.16-18.75-45.25l-46.82-46.82c.15-.5.49-.89.62-1.41l19.89-79.57 22.43 22.43c6 6 14.14 9.38 22.62 9.38h48v240c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V176c.01-8.84-7.15-16-15.99-16zM240 96c26.51 0 48-21.49 48-48S266.51 0 240 0s-48 21.49-48 48 21.49 48 48 48z\"]\n};\nvar faHippo = {\n prefix: 'fas',\n iconName: 'hippo',\n icon: [640, 512, [], \"f6ed\", \"M581.12 96.2c-27.67-.15-52.5 17.58-76.6 26.62C489.98 88.27 455.83 64 416 64c-11.28 0-21.95 2.3-32 5.88V56c0-13.26-10.75-24-24-24h-16c-13.25 0-24 10.74-24 24v48.98C286.01 79.58 241.24 64 192 64 85.96 64 0 135.64 0 224v240c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16v-70.79C128.35 407.57 166.72 416 208 416s79.65-8.43 112-22.79V464c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V288h128v32c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-32c17.67 0 32-14.33 32-32v-92.02c0-34.09-24.79-67.59-58.88-67.78zM448 176c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z\"]\n};\nvar faHistory = {\n prefix: 'fas',\n iconName: 'history',\n icon: [512, 512, [], \"f1da\", \"M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z\"]\n};\nvar faHockeyPuck = {\n prefix: 'fas',\n iconName: 'hockey-puck',\n icon: [512, 512, [], \"f453\", \"M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z\"]\n};\nvar faHollyBerry = {\n prefix: 'fas',\n iconName: 'holly-berry',\n icon: [448, 512, [], \"f7aa\", \"M144 192c26.5 0 48-21.5 48-48s-21.5-48-48-48-48 21.5-48 48 21.5 48 48 48zm112-48c0 26.5 21.5 48 48 48s48-21.5 48-48-21.5-48-48-48-48 21.5-48 48zm-32-48c26.5 0 48-21.5 48-48S250.5 0 224 0s-48 21.5-48 48 21.5 48 48 48zm-16.2 139.1c.1-12.4-13.1-20.1-23.8-13.7-34.3 20.3-71.4 32.7-108.7 36.2-9.7.9-15.6 11.3-11.6 20.2 6.2 13.9 11.1 28.6 14.7 43.8 3.6 15.2-5.3 30.6-20.2 35.1-14.9 4.5-30.1 7.6-45.3 9.1-9.7 1-15.7 11.3-11.7 20.2 15 32.8 22.9 69.5 23 107.7.1 14.4 15.2 23.1 27.6 16 33.2-19 68.9-30.5 104.8-33.9 9.7-.9 15.6-11.3 11.6-20.2-6.2-13.9-11.1-28.6-14.7-43.8-3.6-15.2 5.3-30.6 20.2-35.1 14.9-4.5 30.1-7.6 45.3-9.1 9.7-1 15.7-11.3 11.7-20.2-15.5-34.2-23.3-72.5-22.9-112.3zM435 365.6c-15.2-1.6-30.3-4.7-45.3-9.1-14.9-4.5-23.8-19.9-20.2-35.1 3.6-15.2 8.5-29.8 14.7-43.8 4-8.9-1.9-19.3-11.6-20.2-37.3-3.5-74.4-15.9-108.7-36.2-10.7-6.3-23.9 1.4-23.8 13.7 0 1.6-.2 3.2-.2 4.9.2 33.3 7 65.7 19.9 94 5.7 12.4 5.2 26.6-.6 38.9 4.9 1.2 9.9 2.2 14.8 3.7 14.9 4.5 23.8 19.9 20.2 35.1-3.6 15.2-8.5 29.8-14.7 43.8-4 8.9 1.9 19.3 11.6 20.2 35.9 3.4 71.6 14.9 104.8 33.9 12.5 7.1 27.6-1.6 27.6-16 .2-38.2 8-75 23-107.7 4.3-8.7-1.8-19.1-11.5-20.1z\"]\n};\nvar faHome = {\n prefix: 'fas',\n iconName: 'home',\n icon: [576, 512, [], \"f015\", \"M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0zM571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93z\"]\n};\nvar faHorse = {\n prefix: 'fas',\n iconName: 'horse',\n icon: [576, 512, [], \"f6f0\", \"M575.92 76.6c-.01-8.13-3.02-15.87-8.58-21.8-3.78-4.03-8.58-9.12-13.69-14.5 11.06-6.84 19.5-17.49 22.18-30.66C576.85 4.68 572.96 0 567.9 0H447.92c-70.69 0-128 57.31-128 128H160c-28.84 0-54.4 12.98-72 33.11V160c-48.53 0-88 39.47-88 88v56c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-56c0-13.22 6.87-24.39 16.78-31.68-.21 2.58-.78 5.05-.78 7.68 0 27.64 11.84 52.36 30.54 69.88l-25.72 68.6a63.945 63.945 0 0 0-2.16 37.99l24.85 99.41A15.982 15.982 0 0 0 107.02 512h65.96c10.41 0 18.05-9.78 15.52-19.88l-26.31-105.26 23.84-63.59L320 345.6V496c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V318.22c19.74-20.19 32-47.75 32-78.22 0-.22-.07-.42-.08-.64V136.89l16 7.11 18.9 37.7c7.45 14.87 25.05 21.55 40.49 15.37l32.55-13.02a31.997 31.997 0 0 0 20.12-29.74l-.06-77.71zm-64 19.4c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z\"]\n};\nvar faHorseHead = {\n prefix: 'fas',\n iconName: 'horse-head',\n icon: [512, 512, [], \"f7ab\", \"M509.8 332.5l-69.9-164.3c-14.9-41.2-50.4-71-93-79.2 18-10.6 46.3-35.9 34.2-82.3-1.3-5-7.1-7.9-12-6.1L166.9 76.3C35.9 123.4 0 238.9 0 398.8V480c0 17.7 14.3 32 32 32h236.2c23.8 0 39.3-25 28.6-46.3L256 384v-.7c-45.6-3.5-84.6-30.7-104.3-69.6-1.6-3.1-.9-6.9 1.6-9.3l12.1-12.1c3.9-3.9 10.6-2.7 12.9 2.4 14.8 33.7 48.2 57.4 87.4 57.4 17.2 0 33-5.1 46.8-13.2l46 63.9c6 8.4 15.7 13.3 26 13.3h50.3c8.5 0 16.6-3.4 22.6-9.4l45.3-39.8c8.9-9.1 11.7-22.6 7.1-34.4zM328 224c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24z\"]\n};\nvar faHospital = {\n prefix: 'fas',\n iconName: 'hospital',\n icon: [448, 512, [], \"f0f8\", \"M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z\"]\n};\nvar faHospitalAlt = {\n prefix: 'fas',\n iconName: 'hospital-alt',\n icon: [576, 512, [], \"f47d\", \"M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z\"]\n};\nvar faHospitalSymbol = {\n prefix: 'fas',\n iconName: 'hospital-symbol',\n icon: [512, 512, [], \"f47e\", \"M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z\"]\n};\nvar faHospitalUser = {\n prefix: 'fas',\n iconName: 'hospital-user',\n icon: [640, 512, [], \"f80d\", \"M480 320a96 96 0 1 0-96-96 96 96 0 0 0 96 96zm48 32a22.88 22.88 0 0 0-7.06 1.09 124.76 124.76 0 0 1-81.89 0A22.82 22.82 0 0 0 432 352a112 112 0 0 0-112 112.62c.14 26.26 21.73 47.38 48 47.38h224c26.27 0 47.86-21.12 48-47.38A112 112 0 0 0 528 352zm-198.09 10.45A145.19 145.19 0 0 1 352 344.62V128a32 32 0 0 0-32-32h-32V32a32 32 0 0 0-32-32H96a32 32 0 0 0-32 32v64H32a32 32 0 0 0-32 32v368a16 16 0 0 0 16 16h288.31A78.62 78.62 0 0 1 288 464.79a143.06 143.06 0 0 1 41.91-102.34zM144 404a12 12 0 0 1-12 12H92a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12zm0-128a12 12 0 0 1-12 12H92a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12zm48-122a6 6 0 0 1-6 6h-20a6 6 0 0 1-6-6v-26h-26a6 6 0 0 1-6-6v-20a6 6 0 0 1 6-6h26V70a6 6 0 0 1 6-6h20a6 6 0 0 1 6 6v26h26a6 6 0 0 1 6 6v20a6 6 0 0 1-6 6h-26zm80 250a12 12 0 0 1-12 12h-40a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12zm0-128a12 12 0 0 1-12 12h-40a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12z\"]\n};\nvar faHotTub = {\n prefix: 'fas',\n iconName: 'hot-tub',\n icon: [512, 512, [], \"f593\", \"M414.21 177.65c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C378.96 6.14 372.22 0 364.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zm-108 0c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C270.96 6.14 264.22 0 256.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zM480 256H256l-110.93-83.2a63.99 63.99 0 0 0-38.4-12.8H64c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V288c0-17.67-14.33-32-32-32zM128 440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zM64 128c35.35 0 64-28.65 64-64S99.35 0 64 0 0 28.65 0 64s28.65 64 64 64z\"]\n};\nvar faHotdog = {\n prefix: 'fas',\n iconName: 'hotdog',\n icon: [512, 512, [], \"f80f\", \"M488.56 23.44a80 80 0 0 0-113.12 0l-352 352a80 80 0 1 0 113.12 113.12l352-352a80 80 0 0 0 0-113.12zm-49.93 95.19c-19.6 19.59-37.52 22.67-51.93 25.14C373.76 146 364.4 147.6 352 160s-14 21.76-16.23 34.71c-2.48 14.4-5.55 32.33-25.15 51.92s-37.52 22.67-51.92 25.15C245.75 274 236.4 275.6 224 288s-14 21.75-16.23 34.7c-2.47 14.4-5.54 32.33-25.14 51.92s-37.53 22.68-51.93 25.15C117.76 402 108.4 403.6 96 416a16 16 0 0 1-22.63-22.63c19.6-19.59 37.52-22.67 51.92-25.14 13-2.22 22.3-3.82 34.71-16.23s14-21.75 16.22-34.7c2.48-14.4 5.55-32.33 25.15-51.92s37.52-22.67 51.92-25.14c13-2.22 22.3-3.83 34.7-16.23s14-21.76 16.24-34.71c2.47-14.4 5.54-32.33 25.14-51.92s37.52-22.68 51.92-25.15C394.24 110 403.59 108.41 416 96a16 16 0 0 1 22.63 22.63zM31.44 322.18L322.18 31.44l-11.54-11.55c-25-25-63.85-26.66-86.79-3.72L16.17 223.85c-22.94 22.94-21.27 61.79 3.72 86.78zm449.12-132.36L189.82 480.56l11.54 11.55c25 25 63.85 26.66 86.79 3.72l207.68-207.68c22.94-22.94 21.27-61.79-3.72-86.79z\"]\n};\nvar faHotel = {\n prefix: 'fas',\n iconName: 'hotel',\n icon: [576, 512, [], \"f594\", \"M560 64c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h15.98v384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h240v-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v80h240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-16V64h16zm-304 44.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm0 96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm-128-96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zM179.2 256h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8zM192 384c0-53.02 42.98-96 96-96s96 42.98 96 96H192zm256-140.8c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-96c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4z\"]\n};\nvar faHourglass = {\n prefix: 'fas',\n iconName: 'hourglass',\n icon: [384, 512, [], \"f254\", \"M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z\"]\n};\nvar faHourglassEnd = {\n prefix: 'fas',\n iconName: 'hourglass-end',\n icon: [384, 512, [], \"f253\", \"M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z\"]\n};\nvar faHourglassHalf = {\n prefix: 'fas',\n iconName: 'hourglass-half',\n icon: [384, 512, [], \"f252\", \"M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z\"]\n};\nvar faHourglassStart = {\n prefix: 'fas',\n iconName: 'hourglass-start',\n icon: [384, 512, [], \"f251\", \"M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z\"]\n};\nvar faHouseDamage = {\n prefix: 'fas',\n iconName: 'house-damage',\n icon: [576, 512, [], \"f6f1\", \"M288 114.96L69.47 307.71c-1.62 1.46-3.69 2.14-5.47 3.35V496c0 8.84 7.16 16 16 16h149.23L192 439.19l104.11-64-60.16-119.22L384 392.75l-104.11 64L319.81 512H496c8.84 0 16-7.16 16-16V311.1c-1.7-1.16-3.72-1.82-5.26-3.2L288 114.96zm282.69 121.32L512 184.45V48c0-8.84-7.16-16-16-16h-64c-8.84 0-16 7.16-16 16v51.69L314.75 10.31C307.12 3.45 297.56.01 288 0s-19.1 3.41-26.7 10.27L5.31 236.28c-6.57 5.91-7.12 16.02-1.21 22.6l21.4 23.82c5.9 6.57 16.02 7.12 22.6 1.21L277.42 81.63c6.05-5.33 15.12-5.33 21.17 0L527.91 283.9c6.57 5.9 16.69 5.36 22.6-1.21l21.4-23.82c5.9-6.57 5.36-16.69-1.22-22.59z\"]\n};\nvar faHouseUser = {\n prefix: 'fas',\n iconName: 'house-user',\n icon: [576, 512, [], \"e065\", \"M570.69,236.27,512,184.44V48a16,16,0,0,0-16-16H432a16,16,0,0,0-16,16V99.67L314.78,10.3C308.5,4.61,296.53,0,288,0s-20.46,4.61-26.74,10.3l-256,226A18.27,18.27,0,0,0,0,248.2a18.64,18.64,0,0,0,4.09,10.71L25.5,282.7a21.14,21.14,0,0,0,12,5.3,21.67,21.67,0,0,0,10.69-4.11l15.9-14V480a32,32,0,0,0,32,32H480a32,32,0,0,0,32-32V269.88l15.91,14A21.94,21.94,0,0,0,538.63,288a20.89,20.89,0,0,0,11.87-5.31l21.41-23.81A21.64,21.64,0,0,0,576,248.19,21,21,0,0,0,570.69,236.27ZM288,176a64,64,0,1,1-64,64A64,64,0,0,1,288,176ZM400,448H176a16,16,0,0,1-16-16,96,96,0,0,1,96-96h64a96,96,0,0,1,96,96A16,16,0,0,1,400,448Z\"]\n};\nvar faHryvnia = {\n prefix: 'fas',\n iconName: 'hryvnia',\n icon: [384, 512, [], \"f6f2\", \"M368 240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-41.86c13.41-28.63 13.74-63.33-4.13-94.05C303.34 49.84 267.1 32 229.96 32h-78.82c-24.32 0-47.86 8.53-66.54 24.09L72.83 65.9c-10.18 8.49-11.56 23.62-3.07 33.8l20.49 24.59c8.49 10.19 23.62 11.56 33.81 3.07l11.73-9.78c4.32-3.6 9.77-5.57 15.39-5.57h83.62c11.69 0 21.2 9.52 21.2 21.2 0 5.91-2.48 11.58-6.81 15.58L219.7 176H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h134.37l-34.67 32H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h41.86c-13.41 28.63-13.74 63.33 4.13 94.05C80.66 462.15 116.9 480 154.04 480h78.82c24.32 0 47.86-8.53 66.54-24.09l11.77-9.81c10.18-8.49 11.56-23.62 3.07-33.8l-20.49-24.59c-8.49-10.19-23.62-11.56-33.81-3.07l-11.75 9.8a23.992 23.992 0 0 1-15.36 5.56H149.2c-11.69 0-21.2-9.52-21.2-21.2 0-5.91 2.48-11.58 6.81-15.58L164.3 336H368c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16H233.63l34.67-32H368z\"]\n};\nvar faICursor = {\n prefix: 'fas',\n iconName: 'i-cursor',\n icon: [256, 512, [], \"f246\", \"M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z\"]\n};\nvar faIceCream = {\n prefix: 'fas',\n iconName: 'ice-cream',\n icon: [448, 512, [], \"f810\", \"M368 160h-.94a144 144 0 1 0-286.12 0H80a48 48 0 0 0 0 96h288a48 48 0 0 0 0-96zM195.38 493.69a31.52 31.52 0 0 0 57.24 0L352 288H96z\"]\n};\nvar faIcicles = {\n prefix: 'fas',\n iconName: 'icicles',\n icon: [512, 512, [], \"f7ad\", \"M511.4 37.9C515.1 18.2 500 0 480 0H32C10.6 0-4.8 20.7 1.4 41.2l87.1 273.4c2.5 7.2 12.7 7.2 15.1 0L140 190.5l44.2 187.3c1.9 8.3 13.7 8.3 15.6 0l46.5-196.9 34.1 133.4c2.3 7.6 13 7.6 15.3 0l45.8-172.5 66.7 363.8c1.7 8.6 14 8.6 15.7 0l87.5-467.7z\"]\n};\nvar faIcons = {\n prefix: 'fas',\n iconName: 'icons',\n icon: [512, 512, [], \"f86d\", \"M116.65 219.35a15.68 15.68 0 0 0 22.65 0l96.75-99.83c28.15-29 26.5-77.1-4.91-103.88C203.75-7.7 163-3.5 137.86 22.44L128 32.58l-9.85-10.14C93.05-3.5 52.25-7.7 24.86 15.64c-31.41 26.78-33 74.85-5 103.88zm143.92 100.49h-48l-7.08-14.24a27.39 27.39 0 0 0-25.66-17.78h-71.71a27.39 27.39 0 0 0-25.66 17.78l-7 14.24h-48A27.45 27.45 0 0 0 0 347.3v137.25A27.44 27.44 0 0 0 27.43 512h233.14A27.45 27.45 0 0 0 288 484.55V347.3a27.45 27.45 0 0 0-27.43-27.46zM144 468a52 52 0 1 1 52-52 52 52 0 0 1-52 52zm355.4-115.9h-60.58l22.36-50.75c2.1-6.65-3.93-13.21-12.18-13.21h-75.59c-6.3 0-11.66 3.9-12.5 9.1l-16.8 106.93c-1 6.3 4.88 11.89 12.5 11.89h62.31l-24.2 83c-1.89 6.65 4.2 12.9 12.23 12.9a13.26 13.26 0 0 0 10.92-5.25l92.4-138.91c4.88-6.91-1.16-15.7-10.87-15.7zM478.08.33L329.51 23.17C314.87 25.42 304 38.92 304 54.83V161.6a83.25 83.25 0 0 0-16-1.7c-35.35 0-64 21.48-64 48s28.65 48 64 48c35.2 0 63.73-21.32 64-47.66V99.66l112-17.22v47.18a83.25 83.25 0 0 0-16-1.7c-35.35 0-64 21.48-64 48s28.65 48 64 48c35.2 0 63.73-21.32 64-47.66V32c0-19.48-16-34.42-33.92-31.67z\"]\n};\nvar faIdBadge = {\n prefix: 'fas',\n iconName: 'id-badge',\n icon: [384, 512, [], \"f2c1\", \"M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z\"]\n};\nvar faIdCard = {\n prefix: 'fas',\n iconName: 'id-card',\n icon: [576, 512, [], \"f2c2\", \"M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z\"]\n};\nvar faIdCardAlt = {\n prefix: 'fas',\n iconName: 'id-card-alt',\n icon: [576, 512, [], \"f47f\", \"M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z\"]\n};\nvar faIgloo = {\n prefix: 'fas',\n iconName: 'igloo',\n icon: [576, 512, [], \"f7ae\", \"M320 33.9c-10.5-1.2-21.2-1.9-32-1.9-99.8 0-187.8 50.8-239.4 128H320V33.9zM96 192H30.3C11.1 230.6 0 274 0 320h96V192zM352 39.4V160h175.4C487.2 99.9 424.8 55.9 352 39.4zM480 320h96c0-46-11.1-89.4-30.3-128H480v128zm-64 64v96h128c17.7 0 32-14.3 32-32v-96H411.5c2.6 10.3 4.5 20.9 4.5 32zm32-192H128v128h49.8c22.2-38.1 63-64 110.2-64s88 25.9 110.2 64H448V192zM0 448c0 17.7 14.3 32 32 32h128v-96c0-11.1 1.9-21.7 4.5-32H0v96zm288-160c-53 0-96 43-96 96v96h192v-96c0-53-43-96-96-96z\"]\n};\nvar faImage = {\n prefix: 'fas',\n iconName: 'image',\n icon: [512, 512, [], \"f03e\", \"M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z\"]\n};\nvar faImages = {\n prefix: 'fas',\n iconName: 'images',\n icon: [576, 512, [], \"f302\", \"M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z\"]\n};\nvar faInbox = {\n prefix: 'fas',\n iconName: 'inbox',\n icon: [576, 512, [], \"f01c\", \"M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z\"]\n};\nvar faIndent = {\n prefix: 'fas',\n iconName: 'indent',\n icon: [448, 512, [], \"f03c\", \"M27.31 363.3l96-96a16 16 0 0 0 0-22.62l-96-96C17.27 138.66 0 145.78 0 160v192c0 14.31 17.33 21.3 27.31 11.3zM432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm3.17-128H204.83A12.82 12.82 0 0 0 192 300.83v38.34A12.82 12.82 0 0 0 204.83 352h230.34A12.82 12.82 0 0 0 448 339.17v-38.34A12.82 12.82 0 0 0 435.17 288zm0-128H204.83A12.82 12.82 0 0 0 192 172.83v38.34A12.82 12.82 0 0 0 204.83 224h230.34A12.82 12.82 0 0 0 448 211.17v-38.34A12.82 12.82 0 0 0 435.17 160zM432 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faIndustry = {\n prefix: 'fas',\n iconName: 'industry',\n icon: [512, 512, [], \"f275\", \"M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z\"]\n};\nvar faInfinity = {\n prefix: 'fas',\n iconName: 'infinity',\n icon: [640, 512, [], \"f534\", \"M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z\"]\n};\nvar faInfo = {\n prefix: 'fas',\n iconName: 'info',\n icon: [192, 512, [], \"f129\", \"M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z\"]\n};\nvar faInfoCircle = {\n prefix: 'fas',\n iconName: 'info-circle',\n icon: [512, 512, [], \"f05a\", \"M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z\"]\n};\nvar faItalic = {\n prefix: 'fas',\n iconName: 'italic',\n icon: [320, 512, [], \"f033\", \"M320 48v32a16 16 0 0 1-16 16h-62.76l-80 320H208a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H16a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h62.76l80-320H112a16 16 0 0 1-16-16V48a16 16 0 0 1 16-16h192a16 16 0 0 1 16 16z\"]\n};\nvar faJedi = {\n prefix: 'fas',\n iconName: 'jedi',\n icon: [576, 512, [], \"f669\", \"M535.95308,352c-42.64069,94.17188-137.64086,160-247.9848,160q-6.39844,0-12.84377-.29688C171.15558,506.9375,81.26481,442.23438,40.01474,352H79.93668L21.3272,293.40625a264.82522,264.82522,0,0,1-5.10938-39.42187,273.6653,273.6653,0,0,1,.5-29.98438H63.93665L22.546,182.625A269.79782,269.79782,0,0,1,130.51489,20.54688a16.06393,16.06393,0,0,1,9.28127-3,16.36332,16.36332,0,0,1,13.5,7.25,16.02739,16.02739,0,0,1,1.625,15.09374,138.387,138.387,0,0,0-9.84376,51.26563c0,45.10937,21.04691,86.57813,57.71884,113.73437a16.29989,16.29989,0,0,1,1.20313,25.39063c-26.54692,23.98437-41.17194,56.5-41.17194,91.57813,0,60.03124,42.95319,110.28124,99.89079,121.92187l2.5-65.26563L238.062,397a8.33911,8.33911,0,0,1-10-.75,8.025,8.025,0,0,1-1.39063-9.9375l20.125-33.76562-42.06257-8.73438a7.9898,7.9898,0,0,1,0-15.65625l42.06257-8.71875-20.10941-33.73438a7.99122,7.99122,0,0,1,11.35939-10.71874L268.437,295.64062,279.95265,7.67188a7.97138,7.97138,0,0,1,8-7.67188h.04687a8.02064,8.02064,0,0,1,7.95314,7.70312L307.48394,295.625l30.39068-20.67188a8.08327,8.08327,0,0,1,10,.8125,7.99866,7.99866,0,0,1,1.39062,9.90626L329.12461,319.4375l42.07819,8.73438a7.99373,7.99373,0,0,1,0,15.65624l-42.07819,8.71876,20.1094,33.73437a7.97791,7.97791,0,0,1-1.32812,9.92187A8.25739,8.25739,0,0,1,337.87462,397L310.7027,378.53125l2.5,65.34375c48.48446-9.40625,87.57828-48.15625,97.31267-96.5A123.52652,123.52652,0,0,0,371.9528,230.29688a16.30634,16.30634,0,0,1,1.20313-25.42188c36.65631-27.17188,57.6876-68.60938,57.6876-113.73438a138.01689,138.01689,0,0,0-9.85939-51.3125,15.98132,15.98132,0,0,1,1.60937-15.09374,16.36914,16.36914,0,0,1,13.5-7.23438,16.02453,16.02453,0,0,1,9.25,2.98438A271.26947,271.26947,0,0,1,553.25,182.76562L511.99992,224h46.9532C559.3125,229.76562,560,235.45312,560,241.26562a270.092,270.092,0,0,1-5.125,51.85938L495.98427,352Z\"]\n};\nvar faJoint = {\n prefix: 'fas',\n iconName: 'joint',\n icon: [640, 512, [], \"f595\", \"M444.34 181.1c22.38 15.68 35.66 41.16 35.66 68.59V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-43.24-21.01-83.41-56.34-108.06C463.85 125.02 448 99.34 448 70.31V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v66.4c0 43.69 24.56 81.63 60.34 106.7zM194.97 358.98C126.03 370.07 59.69 394.69 0 432c83.65 52.28 180.3 80 278.94 80h88.57L254.79 380.49c-14.74-17.2-37.45-25.11-59.82-21.51zM553.28 87.09c-5.67-3.8-9.28-9.96-9.28-16.78V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v62.31c0 22.02 10.17 43.41 28.64 55.39C550.79 153.04 576 199.54 576 249.69V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-65.44-32.41-126.19-86.72-162.6zM360.89 352.05c-34.4.06-86.81.15-88.21.17l117.8 137.43A63.987 63.987 0 0 0 439.07 512h88.45L409.57 374.4a63.955 63.955 0 0 0-48.68-22.35zM616 352H432l117.99 137.65A63.987 63.987 0 0 0 598.58 512H616c13.25 0 24-10.75 24-24V376c0-13.26-10.75-24-24-24z\"]\n};\nvar faJournalWhills = {\n prefix: 'fas',\n iconName: 'journal-whills',\n icon: [448, 512, [], \"f66a\", \"M438.40625,377.59375c-3.20313,12.8125-3.20313,57.60937,0,73.60937Q447.9922,460.78907,448,470.40625v16c0,16-12.79688,25.59375-25.59375,25.59375H96c-54.40625,0-96-41.59375-96-96V96C0,41.59375,41.59375,0,96,0H422.40625C438.40625,0,448,9.59375,448,25.59375v332.8125Q448,372.79688,438.40625,377.59375ZM380.79688,384H96c-16,0-32,12.79688-32,32s12.79688,32,32,32H380.79688ZM128.01562,176.01562c0,.51563.14063.98438.14063,1.5l37.10937,32.46876A7.99954,7.99954,0,0,1,160,224h-.01562a9.17678,9.17678,0,0,1-5.25-1.98438L131.14062,201.375C142.6875,250.95312,186.90625,288,240,288s97.3125-37.04688,108.875-86.625l-23.59375,20.64062a8.02516,8.02516,0,0,1-5.26563,1.96876H320a9.14641,9.14641,0,0,1-6.01562-2.71876A9.26508,9.26508,0,0,1,312,216a9.097,9.097,0,0,1,2.73438-6.01562l37.10937-32.46876c.01563-.53124.15625-1,.15625-1.51562,0-11.04688-2.09375-21.51562-5.06251-31.59375l-21.26562,21.25a8.00467,8.00467,0,0,1-11.32812-11.3125l26.42187-26.40625a111.81517,111.81517,0,0,0-46.35937-49.26562,63.02336,63.02336,0,0,1-14.0625,82.64062A55.83846,55.83846,0,0,1,251.625,254.73438l-1.42188-34.28126,12.67188,8.625a3.967,3.967,0,0,0,2.25.6875,3.98059,3.98059,0,0,0,3.43749-6.03124l-8.53124-14.3125,17.90625-3.71876a4.00647,4.00647,0,0,0,0-7.84374l-17.90625-3.71876,8.53124-14.3125a3.98059,3.98059,0,0,0-3.43749-6.03124,4.726,4.726,0,0,0-2.25.67187L248.6875,184.125,244,71.82812a4.00386,4.00386,0,0,0-8,0l-4.625,110.8125-12-8.15624a4.003,4.003,0,0,0-5.68751,5.35937l8.53126,14.3125L204.3125,197.875a3.99686,3.99686,0,0,0,0,7.82812l17.90625,3.73438-8.53126,14.29688a4.72469,4.72469,0,0,0-.56249,2.04687,4.59547,4.59547,0,0,0,1.25,2.90625,4.01059,4.01059,0,0,0,2.75,1.09375,4.09016,4.09016,0,0,0,2.25-.6875l10.35937-7.04687L228.375,254.76562a55.86414,55.86414,0,0,1-28.71875-93.45312,63.01119,63.01119,0,0,1-14.04688-82.65625,111.93158,111.93158,0,0,0-46.375,49.26563l26.42187,26.42187a7.99917,7.99917,0,0,1-11.3125,11.3125l-21.26563-21.26563C130.09375,154.48438,128,164.95312,128.01562,176.01562Z\"]\n};\nvar faKaaba = {\n prefix: 'fas',\n iconName: 'kaaba',\n icon: [576, 512, [], \"f66b\", \"M554.12 83.51L318.36 4.93a95.962 95.962 0 0 0-60.71 0L21.88 83.51A32.006 32.006 0 0 0 0 113.87v49.01l265.02-79.51c15.03-4.5 30.92-4.5 45.98 0l265 79.51v-49.01c0-13.77-8.81-26-21.88-30.36zm-279.9 30.52L0 196.3v228.38c0 15 10.42 27.98 25.06 31.24l242.12 53.8a95.937 95.937 0 0 0 41.65 0l242.12-53.8c14.64-3.25 25.06-16.24 25.06-31.24V196.29l-274.2-82.26c-9.04-2.72-18.59-2.72-27.59 0zM128 230.11c0 3.61-2.41 6.77-5.89 7.72l-80 21.82C37.02 261.03 32 257.2 32 251.93v-16.58c0-3.61 2.41-6.77 5.89-7.72l80-21.82c5.09-1.39 10.11 2.44 10.11 7.72v16.58zm144-39.28c0 3.61-2.41 6.77-5.89 7.72l-96 26.18c-5.09 1.39-10.11-2.44-10.11-7.72v-16.58c0-3.61 2.41-6.77 5.89-7.72l96-26.18c5.09-1.39 10.11 2.44 10.11 7.72v16.58zm176 22.7c0-5.28 5.02-9.11 10.11-7.72l80 21.82c3.48.95 5.89 4.11 5.89 7.72v16.58c0 5.28-5.02 9.11-10.11 7.72l-80-21.82a7.997 7.997 0 0 1-5.89-7.72v-16.58zm-144-39.27c0-5.28 5.02-9.11 10.11-7.72l96 26.18c3.48.95 5.89 4.11 5.89 7.72v16.58c0 5.28-5.02 9.11-10.11 7.72l-96-26.18a7.997 7.997 0 0 1-5.89-7.72v-16.58z\"]\n};\nvar faKey = {\n prefix: 'fas',\n iconName: 'key',\n icon: [512, 512, [], \"f084\", \"M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z\"]\n};\nvar faKeyboard = {\n prefix: 'fas',\n iconName: 'keyboard',\n icon: [576, 512, [], \"f11c\", \"M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z\"]\n};\nvar faKhanda = {\n prefix: 'fas',\n iconName: 'khanda',\n icon: [512, 512, [], \"f66d\", \"M415.81 66c-6.37-3.5-14.37-2.33-19.36 3.02a15.974 15.974 0 0 0-1.91 19.52c16.49 26.16 25.2 56.39 25.2 87.41-.19 53.25-26.77 102.69-71.27 132.41l-76.63 53.35v-20.1l44.05-36.09c3.92-4.2 5-10.09 2.81-15.28L310.85 273c33.84-19.26 56.94-55.25 56.94-96.99 0-40.79-22.02-76.13-54.59-95.71l5.22-11.44c2.34-5.53.93-11.83-3.57-16.04L255.86 0l-58.99 52.81c-4.5 4.21-5.9 10.51-3.57 16.04l5.22 11.44c-32.57 19.58-54.59 54.93-54.59 95.72 0 41.75 23.09 77.73 56.94 96.99l-7.85 17.24c-2.19 5.18-1.1 11.07 2.81 15.28l44.05 36.09v19.9l-76.59-53.33C119.02 278.62 92.44 229.19 92.26 176c0-31.08 8.71-61.31 25.2-87.47 3.87-6.16 2.4-13.77-2.59-19.08-5-5.34-13.68-6.2-20.02-2.7C16.32 109.6-22.3 205.3 13.36 295.99c7.07 17.99 17.89 34.38 30.46 49.06l55.97 65.36c4.87 5.69 13.04 7.24 19.65 3.72l79.35-42.23L228 392.23l-47.08 32.78c-1.67-.37-3.23-1.01-5.01-1.01-13.25 0-23.99 10.74-23.99 24 0 13.25 10.74 24 23.99 24 12.1 0 21.69-9.11 23.33-20.76l40.63-28.28v29.95c-9.39 5.57-15.99 15.38-15.99 27.1 0 17.67 14.32 32 31.98 32s31.98-14.33 31.98-32c0-11.71-6.61-21.52-15.99-27.1v-30.15l40.91 28.48C314.41 462.89 324 472 336.09 472c13.25 0 23.99-10.75 23.99-24 0-13.26-10.74-24-23.99-24-1.78 0-3.34.64-5.01 1.01L284 392.23l29.21-20.34 79.35 42.23c6.61 3.52 14.78 1.97 19.65-3.71l52.51-61.31c18.87-22.02 34-47.5 41.25-75.59 21.62-83.66-16.45-167.27-90.16-207.51zm-95.99 110c0 22.3-11.49 41.92-28.83 53.38l-5.65-12.41c-8.75-24.52-8.75-51.04 0-75.56l7.83-17.18c16.07 11.65 26.65 30.45 26.65 51.77zm-127.93 0c0-21.32 10.58-40.12 26.66-51.76l7.83 17.18c8.75 24.52 8.75 51.03 0 75.56l-5.65 12.41c-17.34-11.46-28.84-31.09-28.84-53.39z\"]\n};\nvar faKiss = {\n prefix: 'fas',\n iconName: 'kiss',\n icon: [496, 512, [], \"f596\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm136 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm24-156c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faKissBeam = {\n prefix: 'fas',\n iconName: 'kiss-beam',\n icon: [496, 512, [], \"f597\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-39 219.9l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5zM304 396c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm65-168.1l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5z\"]\n};\nvar faKissWinkHeart = {\n prefix: 'fas',\n iconName: 'kiss-wink-heart',\n icon: [504, 512, [], \"f598\", \"M501.1 402.5c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zm-177.6-4c-5.6-20.3-2.3-42 9-59.7 29.7-46.3 98.7-45.5 127.8 4.3 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-.3-.7-23.9-84.6-23.9-84.6zM168 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm120 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-5.7-12.3 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.8-3.7-4.6-16.6 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C274.6 368.7 288 383 288 396zm16-179c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S400 181 404 206.2c1.7 11.1-11.3 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 217z\"]\n};\nvar faKiwiBird = {\n prefix: 'fas',\n iconName: 'kiwi-bird',\n icon: [576, 512, [], \"f535\", \"M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z\"]\n};\nvar faLandmark = {\n prefix: 'fas',\n iconName: 'landmark',\n icon: [512, 512, [], \"f66f\", \"M501.62 92.11L267.24 2.04a31.958 31.958 0 0 0-22.47 0L10.38 92.11A16.001 16.001 0 0 0 0 107.09V144c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-36.91c0-6.67-4.14-12.64-10.38-14.98zM64 192v160H48c-8.84 0-16 7.16-16 16v48h448v-48c0-8.84-7.16-16-16-16h-16V192h-64v160h-96V192h-64v160h-96V192H64zm432 256H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faLanguage = {\n prefix: 'fas',\n iconName: 'language',\n icon: [640, 512, [], \"f1ab\", \"M152.1 236.2c-3.5-12.1-7.8-33.2-7.8-33.2h-.5s-4.3 21.1-7.8 33.2l-11.1 37.5H163zM616 96H336v320h280c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm-24 120c0 6.6-5.4 12-12 12h-11.4c-6.9 23.6-21.7 47.4-42.7 69.9 8.4 6.4 17.1 12.5 26.1 18 5.5 3.4 7.3 10.5 4.1 16.2l-7.9 13.9c-3.4 5.9-10.9 7.8-16.7 4.3-12.6-7.8-24.5-16.1-35.4-24.9-10.9 8.7-22.7 17.1-35.4 24.9-5.8 3.5-13.3 1.6-16.7-4.3l-7.9-13.9c-3.2-5.6-1.4-12.8 4.2-16.2 9.3-5.7 18-11.7 26.1-18-7.9-8.4-14.9-17-21-25.7-4-5.7-2.2-13.6 3.7-17.1l6.5-3.9 7.3-4.3c5.4-3.2 12.4-1.7 16 3.4 5 7 10.8 14 17.4 20.9 13.5-14.2 23.8-28.9 30-43.2H412c-6.6 0-12-5.4-12-12v-16c0-6.6 5.4-12 12-12h64v-16c0-6.6 5.4-12 12-12h16c6.6 0 12 5.4 12 12v16h64c6.6 0 12 5.4 12 12zM0 120v272c0 13.3 10.7 24 24 24h280V96H24c-13.3 0-24 10.7-24 24zm58.9 216.1L116.4 167c1.7-4.9 6.2-8.1 11.4-8.1h32.5c5.1 0 9.7 3.3 11.4 8.1l57.5 169.1c2.6 7.8-3.1 15.9-11.4 15.9h-22.9a12 12 0 0 1-11.5-8.6l-9.4-31.9h-60.2l-9.1 31.8c-1.5 5.1-6.2 8.7-11.5 8.7H70.3c-8.2 0-14-8.1-11.4-15.9z\"]\n};\nvar faLaptop = {\n prefix: 'fas',\n iconName: 'laptop',\n icon: [640, 512, [], \"f109\", \"M624 416H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33.02-17.47-32.77-32H16c-8.8 0-16 7.2-16 16v16c0 35.2 28.8 64 64 64h512c35.2 0 64-28.8 64-64v-16c0-8.8-7.2-16-16-16zM576 48c0-26.4-21.6-48-48-48H112C85.6 0 64 21.6 64 48v336h512V48zm-64 272H128V64h384v256z\"]\n};\nvar faLaptopCode = {\n prefix: 'fas',\n iconName: 'laptop-code',\n icon: [640, 512, [], \"f5fc\", \"M255.03 261.65c6.25 6.25 16.38 6.25 22.63 0l11.31-11.31c6.25-6.25 6.25-16.38 0-22.63L253.25 192l35.71-35.72c6.25-6.25 6.25-16.38 0-22.63l-11.31-11.31c-6.25-6.25-16.38-6.25-22.63 0l-58.34 58.34c-6.25 6.25-6.25 16.38 0 22.63l58.35 58.34zm96.01-11.3l11.31 11.31c6.25 6.25 16.38 6.25 22.63 0l58.34-58.34c6.25-6.25 6.25-16.38 0-22.63l-58.34-58.34c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63L386.75 192l-35.71 35.72c-6.25 6.25-6.25 16.38 0 22.63zM624 416H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33.02-17.47-32.77-32H16c-8.8 0-16 7.2-16 16v16c0 35.2 28.8 64 64 64h512c35.2 0 64-28.8 64-64v-16c0-8.8-7.2-16-16-16zM576 48c0-26.4-21.6-48-48-48H112C85.6 0 64 21.6 64 48v336h512V48zm-64 272H128V64h384v256z\"]\n};\nvar faLaptopHouse = {\n prefix: 'fas',\n iconName: 'laptop-house',\n icon: [640, 512, [], \"e066\", \"M272,288H208a16,16,0,0,1-16-16V208a16,16,0,0,1,16-16h64a16,16,0,0,1,16,16v37.12C299.11,232.24,315,224,332.8,224H469.74l6.65-7.53A16.51,16.51,0,0,0,480,207a16.31,16.31,0,0,0-4.75-10.61L416,144V48a16,16,0,0,0-16-16H368a16,16,0,0,0-16,16V87.3L263.5,8.92C258,4,247.45,0,240.05,0s-17.93,4-23.47,8.92L4.78,196.42A16.15,16.15,0,0,0,0,207a16.4,16.4,0,0,0,3.55,9.39L22.34,237.7A16.22,16.22,0,0,0,33,242.48,16.51,16.51,0,0,0,42.34,239L64,219.88V384a32,32,0,0,0,32,32H272ZM629.33,448H592V288c0-17.67-12.89-32-28.8-32H332.8c-15.91,0-28.8,14.33-28.8,32V448H266.67A10.67,10.67,0,0,0,256,458.67v10.66A42.82,42.82,0,0,0,298.6,512H597.4A42.82,42.82,0,0,0,640,469.33V458.67A10.67,10.67,0,0,0,629.33,448ZM544,448H352V304H544Z\"]\n};\nvar faLaptopMedical = {\n prefix: 'fas',\n iconName: 'laptop-medical',\n icon: [640, 512, [], \"f812\", \"M232 224h56v56a8 8 0 0 0 8 8h48a8 8 0 0 0 8-8v-56h56a8 8 0 0 0 8-8v-48a8 8 0 0 0-8-8h-56v-56a8 8 0 0 0-8-8h-48a8 8 0 0 0-8 8v56h-56a8 8 0 0 0-8 8v48a8 8 0 0 0 8 8zM576 48a48.14 48.14 0 0 0-48-48H112a48.14 48.14 0 0 0-48 48v336h512zm-64 272H128V64h384zm112 96H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33-17.47-32.77-32H16a16 16 0 0 0-16 16v16a64.19 64.19 0 0 0 64 64h512a64.19 64.19 0 0 0 64-64v-16a16 16 0 0 0-16-16z\"]\n};\nvar faLaugh = {\n prefix: 'fas',\n iconName: 'laugh',\n icon: [496, 512, [], \"f599\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 152c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm88 272h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18-8.9 71-69.5 126-142.9 126z\"]\n};\nvar faLaughBeam = {\n prefix: 'fas',\n iconName: 'laugh-beam',\n icon: [496, 512, [], \"f59a\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm24 199.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.8 4.1-15.1-4.5zm-160 0c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z\"]\n};\nvar faLaughSquint = {\n prefix: 'fas',\n iconName: 'laugh-squint',\n icon: [496, 512, [], \"f59b\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 161.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 180l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z\"]\n};\nvar faLaughWink = {\n prefix: 'fas',\n iconName: 'laugh-wink',\n icon: [496, 512, [], \"f59c\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z\"]\n};\nvar faLayerGroup = {\n prefix: 'fas',\n iconName: 'layer-group',\n icon: [512, 512, [], \"f5fd\", \"M12.41 148.02l232.94 105.67c6.8 3.09 14.49 3.09 21.29 0l232.94-105.67c16.55-7.51 16.55-32.52 0-40.03L266.65 2.31a25.607 25.607 0 0 0-21.29 0L12.41 107.98c-16.55 7.51-16.55 32.53 0 40.04zm487.18 88.28l-58.09-26.33-161.64 73.27c-7.56 3.43-15.59 5.17-23.86 5.17s-16.29-1.74-23.86-5.17L70.51 209.97l-58.1 26.33c-16.55 7.5-16.55 32.5 0 40l232.94 105.59c6.8 3.08 14.49 3.08 21.29 0L499.59 276.3c16.55-7.5 16.55-32.5 0-40zm0 127.8l-57.87-26.23-161.86 73.37c-7.56 3.43-15.59 5.17-23.86 5.17s-16.29-1.74-23.86-5.17L70.29 337.87 12.41 364.1c-16.55 7.5-16.55 32.5 0 40l232.94 105.59c6.8 3.08 14.49 3.08 21.29 0L499.59 404.1c16.55-7.5 16.55-32.5 0-40z\"]\n};\nvar faLeaf = {\n prefix: 'fas',\n iconName: 'leaf',\n icon: [576, 512, [], \"f06c\", \"M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z\"]\n};\nvar faLemon = {\n prefix: 'fas',\n iconName: 'lemon',\n icon: [512, 512, [], \"f094\", \"M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z\"]\n};\nvar faLessThan = {\n prefix: 'fas',\n iconName: 'less-than',\n icon: [384, 512, [], \"f536\", \"M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z\"]\n};\nvar faLessThanEqual = {\n prefix: 'fas',\n iconName: 'less-than-equal',\n icon: [448, 512, [], \"f537\", \"M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z\"]\n};\nvar faLevelDownAlt = {\n prefix: 'fas',\n iconName: 'level-down-alt',\n icon: [320, 512, [], \"f3be\", \"M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z\"]\n};\nvar faLevelUpAlt = {\n prefix: 'fas',\n iconName: 'level-up-alt',\n icon: [320, 512, [], \"f3bf\", \"M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z\"]\n};\nvar faLifeRing = {\n prefix: 'fas',\n iconName: 'life-ring',\n icon: [512, 512, [], \"f1cd\", \"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z\"]\n};\nvar faLightbulb = {\n prefix: 'fas',\n iconName: 'lightbulb',\n icon: [352, 512, [], \"f0eb\", \"M96.06 454.35c.01 6.29 1.87 12.45 5.36 17.69l17.09 25.69a31.99 31.99 0 0 0 26.64 14.28h61.71a31.99 31.99 0 0 0 26.64-14.28l17.09-25.69a31.989 31.989 0 0 0 5.36-17.69l.04-38.35H96.01l.05 38.35zM0 176c0 44.37 16.45 84.85 43.56 115.78 16.52 18.85 42.36 58.23 52.21 91.45.04.26.07.52.11.78h160.24c.04-.26.07-.51.11-.78 9.85-33.22 35.69-72.6 52.21-91.45C335.55 260.85 352 220.37 352 176 352 78.61 272.91-.3 175.45 0 73.44.31 0 82.97 0 176zm176-80c-44.11 0-80 35.89-80 80 0 8.84-7.16 16-16 16s-16-7.16-16-16c0-61.76 50.24-112 112-112 8.84 0 16 7.16 16 16s-7.16 16-16 16z\"]\n};\nvar faLink = {\n prefix: 'fas',\n iconName: 'link',\n icon: [512, 512, [], \"f0c1\", \"M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z\"]\n};\nvar faLiraSign = {\n prefix: 'fas',\n iconName: 'lira-sign',\n icon: [384, 512, [], \"f195\", \"M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z\"]\n};\nvar faList = {\n prefix: 'fas',\n iconName: 'list',\n icon: [512, 512, [], \"f03a\", \"M80 368H16a16 16 0 0 0-16 16v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-64a16 16 0 0 0-16-16zm0-320H16A16 16 0 0 0 0 64v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16V64a16 16 0 0 0-16-16zm0 160H16a16 16 0 0 0-16 16v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-64a16 16 0 0 0-16-16zm416 176H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faListAlt = {\n prefix: 'fas',\n iconName: 'list-alt',\n icon: [512, 512, [], \"f022\", \"M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z\"]\n};\nvar faListOl = {\n prefix: 'fas',\n iconName: 'list-ol',\n icon: [512, 512, [], \"f0cb\", \"M61.77 401l17.5-20.15a19.92 19.92 0 0 0 5.07-14.19v-3.31C84.34 356 80.5 352 73 352H16a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8h22.83a157.41 157.41 0 0 0-11 12.31l-5.61 7c-4 5.07-5.25 10.13-2.8 14.88l1.05 1.93c3 5.76 6.29 7.88 12.25 7.88h4.73c10.33 0 15.94 2.44 15.94 9.09 0 4.72-4.2 8.22-14.36 8.22a41.54 41.54 0 0 1-15.47-3.12c-6.49-3.88-11.74-3.5-15.6 3.12l-5.59 9.31c-3.72 6.13-3.19 11.72 2.63 15.94 7.71 4.69 20.38 9.44 37 9.44 34.16 0 48.5-22.75 48.5-44.12-.03-14.38-9.12-29.76-28.73-34.88zM496 224H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM16 160h64a8 8 0 0 0 8-8v-16a8 8 0 0 0-8-8H64V40a8 8 0 0 0-8-8H32a8 8 0 0 0-7.14 4.42l-8 16A8 8 0 0 0 24 64h8v64H16a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8zm-3.91 160H80a8 8 0 0 0 8-8v-16a8 8 0 0 0-8-8H41.32c3.29-10.29 48.34-18.68 48.34-56.44 0-29.06-25-39.56-44.47-39.56-21.36 0-33.8 10-40.46 18.75-4.37 5.59-3 10.84 2.8 15.37l8.58 6.88c5.61 4.56 11 2.47 16.12-2.44a13.44 13.44 0 0 1 9.46-3.84c3.33 0 9.28 1.56 9.28 8.75C51 248.19 0 257.31 0 304.59v4C0 316 5.08 320 12.09 320z\"]\n};\nvar faListUl = {\n prefix: 'fas',\n iconName: 'list-ul',\n icon: [512, 512, [], \"f0ca\", \"M48 48a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm0 160a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm0 160a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm448 16H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faLocationArrow = {\n prefix: 'fas',\n iconName: 'location-arrow',\n icon: [512, 512, [], \"f124\", \"M444.52 3.52L28.74 195.42c-47.97 22.39-31.98 92.75 19.19 92.75h175.91v175.91c0 51.17 70.36 67.17 92.75 19.19l191.9-415.78c15.99-38.39-25.59-79.97-63.97-63.97z\"]\n};\nvar faLock = {\n prefix: 'fas',\n iconName: 'lock',\n icon: [448, 512, [], \"f023\", \"M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z\"]\n};\nvar faLockOpen = {\n prefix: 'fas',\n iconName: 'lock-open',\n icon: [576, 512, [], \"f3c1\", \"M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z\"]\n};\nvar faLongArrowAltDown = {\n prefix: 'fas',\n iconName: 'long-arrow-alt-down',\n icon: [256, 512, [], \"f309\", \"M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z\"]\n};\nvar faLongArrowAltLeft = {\n prefix: 'fas',\n iconName: 'long-arrow-alt-left',\n icon: [448, 512, [], \"f30a\", \"M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z\"]\n};\nvar faLongArrowAltRight = {\n prefix: 'fas',\n iconName: 'long-arrow-alt-right',\n icon: [448, 512, [], \"f30b\", \"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"]\n};\nvar faLongArrowAltUp = {\n prefix: 'fas',\n iconName: 'long-arrow-alt-up',\n icon: [256, 512, [], \"f30c\", \"M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z\"]\n};\nvar faLowVision = {\n prefix: 'fas',\n iconName: 'low-vision',\n icon: [576, 512, [], \"f2a8\", \"M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z\"]\n};\nvar faLuggageCart = {\n prefix: 'fas',\n iconName: 'luggage-cart',\n icon: [640, 512, [], \"f59d\", \"M224 320h32V96h-32c-17.67 0-32 14.33-32 32v160c0 17.67 14.33 32 32 32zm352-32V128c0-17.67-14.33-32-32-32h-32v224h32c17.67 0 32-14.33 32-32zm48 96H128V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h48v368c0 8.84 7.16 16 16 16h82.94c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16h197.88c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM480 96V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v272h192V96zm-48 0h-96V48h96v48z\"]\n};\nvar faLungs = {\n prefix: 'fas',\n iconName: 'lungs',\n icon: [640, 512, [], \"f604\", \"M636.11 390.15C614.44 308.85 580.07 231 534.1 159.13 511.98 124.56 498.03 96 454.05 96 415.36 96 384 125.42 384 161.71v60.11l-32.88-21.92a15.996 15.996 0 0 1-7.12-13.31V16c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v170.59c0 5.35-2.67 10.34-7.12 13.31L256 221.82v-60.11C256 125.42 224.64 96 185.95 96c-43.98 0-57.93 28.56-80.05 63.13C59.93 231 25.56 308.85 3.89 390.15 1.3 399.84 0 409.79 0 419.78c0 61.23 62.48 105.44 125.24 88.62l59.5-15.95c42.18-11.3 71.26-47.47 71.26-88.62v-87.49l-85.84 57.23a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09L320 235.23l167.59 111.72a7.994 7.994 0 0 1 2.22 11.09l-8.88 13.31a7.994 7.994 0 0 1-11.09 2.22L384 316.34v87.49c0 41.15 29.08 77.31 71.26 88.62l59.5 15.95C577.52 525.22 640 481.01 640 419.78c0-9.99-1.3-19.94-3.89-29.63z\"]\n};\nvar faLungsVirus = {\n prefix: 'fas',\n iconName: 'lungs-virus',\n icon: [640, 512, [], \"e067\", \"M344,150.68V16A16,16,0,0,0,328,0H312a16,16,0,0,0-16,16V150.68a46.45,46.45,0,0,1,48,0ZM195.54,444.46a48.06,48.06,0,0,1,0-67.88l8.58-8.58H192a48,48,0,0,1,0-96h12.12l-8.58-8.57a48,48,0,0,1,60.46-74V161.75C256,125.38,224.62,96,186,96c-44,0-58,28.5-80.12,63.13a819.52,819.52,0,0,0-102,231A113.16,113.16,0,0,0,0,419.75C0,481,62.5,525.26,125.25,508.38l59.5-15.87a98.51,98.51,0,0,0,52.5-34.75,46.49,46.49,0,0,1-41.71-13.3Zm226.29-22.63a16,16,0,0,0,0-22.62l-8.58-8.58C393.09,370.47,407.37,336,435.88,336H448a16,16,0,0,0,0-32H435.88c-28.51,0-42.79-34.47-22.63-54.62l8.58-8.58a16,16,0,0,0-22.63-22.63l-8.57,8.58C370.47,246.91,336,232.63,336,204.12V192a16,16,0,0,0-32,0v12.12c0,28.51-34.47,42.79-54.63,22.63l-8.57-8.58a16,16,0,0,0-22.63,22.63l8.58,8.58c20.16,20.15,5.88,54.62-22.63,54.62H192a16,16,0,0,0,0,32h12.12c28.51,0,42.79,34.47,22.63,54.63l-8.58,8.58a16,16,0,1,0,22.63,22.62l8.57-8.57C269.53,393.1,304,407.38,304,435.88V448a16,16,0,0,0,32,0V435.88c0-28.5,34.47-42.78,54.63-22.62l8.57,8.57a16,16,0,0,0,22.63,0ZM288,304a16,16,0,1,1,16-16A16,16,0,0,1,288,304Zm64,64a16,16,0,1,1,16-16A16,16,0,0,1,352,368Zm284.12,22.13a819.52,819.52,0,0,0-102-231C512,124.5,498,96,454,96c-38.62,0-70,29.38-70,65.75v27.72a48,48,0,0,1,60.46,74L435.88,272H448a48,48,0,0,1,0,96H435.88l8.58,8.58a47.7,47.7,0,0,1-41.71,81.18,98.51,98.51,0,0,0,52.5,34.75l59.5,15.87C577.5,525.26,640,481,640,419.75A113.16,113.16,0,0,0,636.12,390.13Z\"]\n};\nvar faMagic = {\n prefix: 'fas',\n iconName: 'magic',\n icon: [512, 512, [], \"f0d0\", \"M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z\"]\n};\nvar faMagnet = {\n prefix: 'fas',\n iconName: 'magnet',\n icon: [512, 512, [], \"f076\", \"M164.07 148.1H12a12 12 0 0 1-12-12v-80a36 36 0 0 1 36-36h104a36 36 0 0 1 36 36v80a11.89 11.89 0 0 1-11.93 12zm347.93-12V56a36 36 0 0 0-36-36H372a36 36 0 0 0-36 36v80a12 12 0 0 0 12 12h152a11.89 11.89 0 0 0 12-11.9zm-164 44a12 12 0 0 0-12 12v52c0 128.1-160 127.9-160 0v-52a12 12 0 0 0-12-12H12.1a12 12 0 0 0-12 12.1c.1 21.4.6 40.3 0 53.3 0 150.6 136.17 246.6 256.75 246.6s255-96 255-246.7c-.6-12.8-.2-33 0-53.2a12 12 0 0 0-12-12.1z\"]\n};\nvar faMailBulk = {\n prefix: 'fas',\n iconName: 'mail-bulk',\n icon: [576, 512, [], \"f674\", \"M160 448c-25.6 0-51.2-22.4-64-32-64-44.8-83.2-60.8-96-70.4V480c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V345.6c-12.8 9.6-32 25.6-96 70.4-12.8 9.6-38.4 32-64 32zm128-192H32c-17.67 0-32 14.33-32 32v16c25.6 19.2 22.4 19.2 115.2 86.4 9.6 6.4 28.8 25.6 44.8 25.6s35.2-19.2 44.8-22.4c92.8-67.2 89.6-67.2 115.2-86.4V288c0-17.67-14.33-32-32-32zm256-96H224c-17.67 0-32 14.33-32 32v32h96c33.21 0 60.59 25.42 63.71 57.82l.29-.22V416h192c17.67 0 32-14.33 32-32V192c0-17.67-14.33-32-32-32zm-32 128h-64v-64h64v64zm-352-96c0-35.29 28.71-64 64-64h224V32c0-17.67-14.33-32-32-32H96C78.33 0 64 14.33 64 32v192h96v-32z\"]\n};\nvar faMale = {\n prefix: 'fas',\n iconName: 'male',\n icon: [192, 512, [], \"f183\", \"M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z\"]\n};\nvar faMap = {\n prefix: 'fas',\n iconName: 'map',\n icon: [576, 512, [], \"f279\", \"M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z\"]\n};\nvar faMapMarked = {\n prefix: 'fas',\n iconName: 'map-marked',\n icon: [576, 512, [], \"f59f\", \"M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z\"]\n};\nvar faMapMarkedAlt = {\n prefix: 'fas',\n iconName: 'map-marked-alt',\n icon: [576, 512, [], \"f5a0\", \"M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z\"]\n};\nvar faMapMarker = {\n prefix: 'fas',\n iconName: 'map-marker',\n icon: [384, 512, [], \"f041\", \"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z\"]\n};\nvar faMapMarkerAlt = {\n prefix: 'fas',\n iconName: 'map-marker-alt',\n icon: [384, 512, [], \"f3c5\", \"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"]\n};\nvar faMapPin = {\n prefix: 'fas',\n iconName: 'map-pin',\n icon: [288, 512, [], \"f276\", \"M112 316.94v156.69l22.02 33.02c4.75 7.12 15.22 7.12 19.97 0L176 473.63V316.94c-10.39 1.92-21.06 3.06-32 3.06s-21.61-1.14-32-3.06zM144 0C64.47 0 0 64.47 0 144s64.47 144 144 144 144-64.47 144-144S223.53 0 144 0zm0 76c-37.5 0-68 30.5-68 68 0 6.62-5.38 12-12 12s-12-5.38-12-12c0-50.73 41.28-92 92-92 6.62 0 12 5.38 12 12s-5.38 12-12 12z\"]\n};\nvar faMapSigns = {\n prefix: 'fas',\n iconName: 'map-signs',\n icon: [512, 512, [], \"f277\", \"M507.31 84.69L464 41.37c-6-6-14.14-9.37-22.63-9.37H288V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v16H56c-13.25 0-24 10.75-24 24v80c0 13.25 10.75 24 24 24h385.37c8.49 0 16.62-3.37 22.63-9.37l43.31-43.31c6.25-6.26 6.25-16.38 0-22.63zM224 496c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V384h-64v112zm232-272H288v-32h-64v32H70.63c-8.49 0-16.62 3.37-22.63 9.37L4.69 276.69c-6.25 6.25-6.25 16.38 0 22.63L48 342.63c6 6 14.14 9.37 22.63 9.37H456c13.25 0 24-10.75 24-24v-80c0-13.25-10.75-24-24-24z\"]\n};\nvar faMarker = {\n prefix: 'fas',\n iconName: 'marker',\n icon: [512, 512, [], \"f5a1\", \"M93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l75.4-75.4-128.02-128.02-75.4 75.4zM485.49 26.51c-35.35-35.35-92.67-35.35-128.02 0l-21.76 21.76-36.56-36.55c-15.62-15.62-40.95-15.62-56.56 0L138.47 115.84c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0l87.15-87.15 19.59 19.59L191.98 192 320 320.02l165.49-165.49c35.35-35.35 35.35-92.66 0-128.02z\"]\n};\nvar faMars = {\n prefix: 'fas',\n iconName: 'mars',\n icon: [384, 512, [], \"f222\", \"M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faMarsDouble = {\n prefix: 'fas',\n iconName: 'mars-double',\n icon: [512, 512, [], \"f227\", \"M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z\"]\n};\nvar faMarsStroke = {\n prefix: 'fas',\n iconName: 'mars-stroke',\n icon: [384, 512, [], \"f229\", \"M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faMarsStrokeH = {\n prefix: 'fas',\n iconName: 'mars-stroke-h',\n icon: [480, 512, [], \"f22b\", \"M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z\"]\n};\nvar faMarsStrokeV = {\n prefix: 'fas',\n iconName: 'mars-stroke-v',\n icon: [288, 512, [], \"f22a\", \"M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z\"]\n};\nvar faMask = {\n prefix: 'fas',\n iconName: 'mask',\n icon: [640, 512, [], \"f6fa\", \"M320.67 64c-442.6 0-357.57 384-158.46 384 39.9 0 77.47-20.69 101.42-55.86l25.73-37.79c15.66-22.99 46.97-22.99 62.63 0l25.73 37.79C401.66 427.31 439.23 448 479.13 448c189.86 0 290.63-384-158.46-384zM184 308.36c-41.06 0-67.76-25.66-80.08-41.05-5.23-6.53-5.23-16.09 0-22.63 12.32-15.4 39.01-41.05 80.08-41.05s67.76 25.66 80.08 41.05c5.23 6.53 5.23 16.09 0 22.63-12.32 15.4-39.02 41.05-80.08 41.05zm272 0c-41.06 0-67.76-25.66-80.08-41.05-5.23-6.53-5.23-16.09 0-22.63 12.32-15.4 39.01-41.05 80.08-41.05s67.76 25.66 80.08 41.05c5.23 6.53 5.23 16.09 0 22.63-12.32 15.4-39.02 41.05-80.08 41.05z\"]\n};\nvar faMedal = {\n prefix: 'fas',\n iconName: 'medal',\n icon: [512, 512, [], \"f5a2\", \"M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z\"]\n};\nvar faMedkit = {\n prefix: 'fas',\n iconName: 'medkit',\n icon: [512, 512, [], \"f0fa\", \"M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z\"]\n};\nvar faMeh = {\n prefix: 'fas',\n iconName: 'meh',\n icon: [496, 512, [], \"f11a\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-21.2 0-21.2-32 0-32h192c21.2 0 21.2 32 0 32zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faMehBlank = {\n prefix: 'fas',\n iconName: 'meh-blank',\n icon: [496, 512, [], \"f5a4\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faMehRollingEyes = {\n prefix: 'fas',\n iconName: 'meh-rolling-eyes',\n icon: [496, 512, [], \"f5a5\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 224c0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64s-64-28.7-64-64zm224 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112c-35.3 0-64-28.7-64-64 0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64z\"]\n};\nvar faMemory = {\n prefix: 'fas',\n iconName: 'memory',\n icon: [640, 512, [], \"f538\", \"M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z\"]\n};\nvar faMenorah = {\n prefix: 'fas',\n iconName: 'menorah',\n icon: [640, 512, [], \"f676\", \"M144 128h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm96 0h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm192 0h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm96 0h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm80-32c17.67 0 32-14.33 32-32S608 0 608 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S512 0 512 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S416 0 416 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S320 0 320 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S224 0 224 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S128 0 128 0 96 46.33 96 64s14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S32 0 32 0 0 46.33 0 64s14.33 32 32 32zm544 192c0 17.67-14.33 32-32 32H352V144c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v176H96c-17.67 0-32-14.33-32-32V144c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v144c0 53.02 42.98 96 96 96h192v64H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16H352v-64h192c53.02 0 96-42.98 96-96V144c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v144z\"]\n};\nvar faMercury = {\n prefix: 'fas',\n iconName: 'mercury',\n icon: [288, 512, [], \"f223\", \"M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z\"]\n};\nvar faMeteor = {\n prefix: 'fas',\n iconName: 'meteor',\n icon: [512, 512, [], \"f753\", \"M511.328,20.8027c-11.60759,38.70264-34.30724,111.70173-61.30311,187.70077,6.99893,2.09372,13.4042,4,18.60653,5.59368a16.06158,16.06158,0,0,1,9.49854,22.906c-22.106,42.29635-82.69047,152.795-142.47819,214.40356-.99984,1.09373-1.99969,2.5-2.99954,3.49995A194.83046,194.83046,0,1,1,57.085,179.41009c.99985-1,2.40588-2,3.49947-3,61.59994-59.90549,171.97367-120.40473,214.37343-142.4982a16.058,16.058,0,0,1,22.90274,9.49988c1.59351,5.09368,3.49947,11.5936,5.5929,18.59351C379.34818,35.00565,452.43074,12.30281,491.12794.70921A16.18325,16.18325,0,0,1,511.328,20.8027ZM319.951,320.00207A127.98041,127.98041,0,1,0,191.97061,448.00046,127.97573,127.97573,0,0,0,319.951,320.00207Zm-127.98041-31.9996a31.9951,31.9951,0,1,1-31.9951-31.9996A31.959,31.959,0,0,1,191.97061,288.00247Zm31.9951,79.999a15.99755,15.99755,0,1,1-15.99755-15.9998A16.04975,16.04975,0,0,1,223.96571,368.00147Z\"]\n};\nvar faMicrochip = {\n prefix: 'fas',\n iconName: 'microchip',\n icon: [512, 512, [], \"f2db\", \"M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z\"]\n};\nvar faMicrophone = {\n prefix: 'fas',\n iconName: 'microphone',\n icon: [352, 512, [], \"f130\", \"M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z\"]\n};\nvar faMicrophoneAlt = {\n prefix: 'fas',\n iconName: 'microphone-alt',\n icon: [352, 512, [], \"f3c9\", \"M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z\"]\n};\nvar faMicrophoneAltSlash = {\n prefix: 'fas',\n iconName: 'microphone-alt-slash',\n icon: [640, 512, [], \"f539\", \"M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z\"]\n};\nvar faMicrophoneSlash = {\n prefix: 'fas',\n iconName: 'microphone-slash',\n icon: [640, 512, [], \"f131\", \"M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z\"]\n};\nvar faMicroscope = {\n prefix: 'fas',\n iconName: 'microscope',\n icon: [512, 512, [], \"f610\", \"M160 320h12v16c0 8.84 7.16 16 16 16h40c8.84 0 16-7.16 16-16v-16h12c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32V16c0-8.84-7.16-16-16-16h-64c-8.84 0-16 7.16-16 16v16c-17.67 0-32 14.33-32 32v224c0 17.67 14.33 32 32 32zm304 128h-1.29C493.24 413.99 512 369.2 512 320c0-105.88-86.12-192-192-192v64c70.58 0 128 57.42 128 128s-57.42 128-128 128H48c-26.51 0-48 21.49-48 48 0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48zm-360-32h208c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8H104c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8z\"]\n};\nvar faMinus = {\n prefix: 'fas',\n iconName: 'minus',\n icon: [448, 512, [], \"f068\", \"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"]\n};\nvar faMinusCircle = {\n prefix: 'fas',\n iconName: 'minus-circle',\n icon: [512, 512, [], \"f056\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z\"]\n};\nvar faMinusSquare = {\n prefix: 'fas',\n iconName: 'minus-square',\n icon: [448, 512, [], \"f146\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z\"]\n};\nvar faMitten = {\n prefix: 'fas',\n iconName: 'mitten',\n icon: [448, 512, [], \"f7b5\", \"M368 416H48c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16zm57-209.1c-27.2-22.6-67.5-19-90.1 8.2l-20.9 25-29.6-128.4c-18-77.5-95.4-125.9-172.8-108C34.2 21.6-14.2 98.9 3.7 176.4L51.6 384h309l72.5-87c22.7-27.2 19-67.5-8.1-90.1z\"]\n};\nvar faMobile = {\n prefix: 'fas',\n iconName: 'mobile',\n icon: [320, 512, [], \"f10b\", \"M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faMobileAlt = {\n prefix: 'fas',\n iconName: 'mobile-alt',\n icon: [320, 512, [], \"f3cd\", \"M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z\"]\n};\nvar faMoneyBill = {\n prefix: 'fas',\n iconName: 'money-bill',\n icon: [640, 512, [], \"f0d6\", \"M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z\"]\n};\nvar faMoneyBillAlt = {\n prefix: 'fas',\n iconName: 'money-bill-alt',\n icon: [640, 512, [], \"f3d1\", \"M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z\"]\n};\nvar faMoneyBillWave = {\n prefix: 'fas',\n iconName: 'money-bill-wave',\n icon: [640, 512, [], \"f53a\", \"M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z\"]\n};\nvar faMoneyBillWaveAlt = {\n prefix: 'fas',\n iconName: 'money-bill-wave-alt',\n icon: [640, 512, [], \"f53b\", \"M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z\"]\n};\nvar faMoneyCheck = {\n prefix: 'fas',\n iconName: 'money-check',\n icon: [640, 512, [], \"f53c\", \"M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z\"]\n};\nvar faMoneyCheckAlt = {\n prefix: 'fas',\n iconName: 'money-check-alt',\n icon: [640, 512, [], \"f53d\", \"M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z\"]\n};\nvar faMonument = {\n prefix: 'fas',\n iconName: 'monument',\n icon: [384, 512, [], \"f5a6\", \"M368 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-78.86-347.26a31.97 31.97 0 0 0-9.21-19.44L203.31 4.69c-6.25-6.25-16.38-6.25-22.63 0l-76.6 76.61a31.97 31.97 0 0 0-9.21 19.44L64 416h256l-30.86-315.26zM240 307.2c0 6.4-6.4 12.8-12.8 12.8h-70.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h70.4c6.4 0 12.8 6.4 12.8 12.8v38.4z\"]\n};\nvar faMoon = {\n prefix: 'fas',\n iconName: 'moon',\n icon: [512, 512, [], \"f186\", \"M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z\"]\n};\nvar faMortarPestle = {\n prefix: 'fas',\n iconName: 'mortar-pestle',\n icon: [512, 512, [], \"f5a7\", \"M501.54 60.91c17.22-17.22 12.51-46.25-9.27-57.14a35.696 35.696 0 0 0-37.37 3.37L251.09 160h151.37l99.08-99.09zM496 192H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c0 80.98 50.2 150.11 121.13 178.32-12.76 16.87-21.72 36.8-24.95 58.69-1.46 9.92 6.04 18.98 16.07 18.98h223.5c10.03 0 17.53-9.06 16.07-18.98-3.22-21.89-12.18-41.82-24.95-58.69C429.8 406.11 480 336.98 480 256h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faMosque = {\n prefix: 'fas',\n iconName: 'mosque',\n icon: [640, 512, [], \"f678\", \"M0 480c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V160H0v320zm579.16-192c17.86-17.39 28.84-37.34 28.84-58.91 0-52.86-41.79-93.79-87.92-122.9-41.94-26.47-80.63-57.77-111.96-96.22L400 0l-8.12 9.97c-31.33 38.45-70.01 69.76-111.96 96.22C233.79 135.3 192 176.23 192 229.09c0 21.57 10.98 41.52 28.84 58.91h358.32zM608 320H192c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h32v-64c0-17.67 14.33-32 32-32s32 14.33 32 32v64h64v-72c0-48 48-72 48-72s48 24 48 72v72h64v-64c0-17.67 14.33-32 32-32s32 14.33 32 32v64h32c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM64 0S0 32 0 96v32h128V96c0-64-64-96-64-96z\"]\n};\nvar faMotorcycle = {\n prefix: 'fas',\n iconName: 'motorcycle',\n icon: [640, 512, [], \"f21c\", \"M512.9 192c-14.9-.1-29.1 2.3-42.4 6.9L437.6 144H520c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24h-45.3c-6.8 0-13.3 2.9-17.8 7.9l-37.5 41.7-22.8-38C392.2 68.4 384.4 64 376 64h-80c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h66.4l19.2 32H227.9c-17.7-23.1-44.9-40-99.9-40H72.5C59 104 47.7 115 48 128.5c.2 13 10.9 23.5 24 23.5h56c24.5 0 38.7 10.9 47.8 24.8l-11.3 20.5c-13-3.9-26.9-5.7-41.3-5.2C55.9 194.5 1.6 249.6 0 317c-1.6 72.1 56.3 131 128 131 59.6 0 109.7-40.8 124-96h84.2c13.7 0 24.6-11.4 24-25.1-2.1-47.1 17.5-93.7 56.2-125l12.5 20.8c-27.6 23.7-45.1 58.9-44.8 98.2.5 69.6 57.2 126.5 126.8 127.1 71.6.7 129.8-57.5 129.2-129.1-.7-69.6-57.6-126.4-127.2-126.9zM128 400c-44.1 0-80-35.9-80-80s35.9-80 80-80c4.2 0 8.4.3 12.5 1L99 316.4c-8.8 16 2.8 35.6 21 35.6h81.3c-12.4 28.2-40.6 48-73.3 48zm463.9-75.6c-2.2 40.6-35 73.4-75.5 75.5-46.1 2.5-84.4-34.3-84.4-79.9 0-21.4 8.4-40.8 22.1-55.1l49.4 82.4c4.5 7.6 14.4 10 22 5.5l13.7-8.2c7.6-4.5 10-14.4 5.5-22l-48.6-80.9c5.2-1.1 10.5-1.6 15.9-1.6 45.6-.1 82.3 38.2 79.9 84.3z\"]\n};\nvar faMountain = {\n prefix: 'fas',\n iconName: 'mountain',\n icon: [640, 512, [], \"f6fc\", \"M634.92 462.7l-288-448C341.03 5.54 330.89 0 320 0s-21.03 5.54-26.92 14.7l-288 448a32.001 32.001 0 0 0-1.17 32.64A32.004 32.004 0 0 0 32 512h576c11.71 0 22.48-6.39 28.09-16.67a31.983 31.983 0 0 0-1.17-32.63zM320 91.18L405.39 224H320l-64 64-38.06-38.06L320 91.18z\"]\n};\nvar faMouse = {\n prefix: 'fas',\n iconName: 'mouse',\n icon: [384, 512, [], \"f8cc\", \"M0 352a160 160 0 0 0 160 160h64a160 160 0 0 0 160-160V224H0zM176 0h-16A160 160 0 0 0 0 160v32h176zm48 0h-16v192h176v-32A160 160 0 0 0 224 0z\"]\n};\nvar faMousePointer = {\n prefix: 'fas',\n iconName: 'mouse-pointer',\n icon: [320, 512, [], \"f245\", \"M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z\"]\n};\nvar faMugHot = {\n prefix: 'fas',\n iconName: 'mug-hot',\n icon: [512, 512, [], \"f7b6\", \"M127.1 146.5c1.3 7.7 8 13.5 16 13.5h16.5c9.8 0 17.6-8.5 16.3-18-3.8-28.2-16.4-54.2-36.6-74.7-14.4-14.7-23.6-33.3-26.4-53.5C111.8 5.9 105 0 96.8 0H80.4C70.6 0 63 8.5 64.1 18c3.9 31.9 18 61.3 40.6 84.4 12 12.2 19.7 27.5 22.4 44.1zm112 0c1.3 7.7 8 13.5 16 13.5h16.5c9.8 0 17.6-8.5 16.3-18-3.8-28.2-16.4-54.2-36.6-74.7-14.4-14.7-23.6-33.3-26.4-53.5C223.8 5.9 217 0 208.8 0h-16.4c-9.8 0-17.5 8.5-16.3 18 3.9 31.9 18 61.3 40.6 84.4 12 12.2 19.7 27.5 22.4 44.1zM400 192H32c-17.7 0-32 14.3-32 32v192c0 53 43 96 96 96h192c53 0 96-43 96-96h16c61.8 0 112-50.2 112-112s-50.2-112-112-112zm0 160h-16v-96h16c26.5 0 48 21.5 48 48s-21.5 48-48 48z\"]\n};\nvar faMusic = {\n prefix: 'fas',\n iconName: 'music',\n icon: [512, 512, [], \"f001\", \"M470.38 1.51L150.41 96A32 32 0 0 0 128 126.51v261.41A139 139 0 0 0 96 384c-53 0-96 28.66-96 64s43 64 96 64 96-28.66 96-64V214.32l256-75v184.61a138.4 138.4 0 0 0-32-3.93c-53 0-96 28.66-96 64s43 64 96 64 96-28.65 96-64V32a32 32 0 0 0-41.62-30.49z\"]\n};\nvar faNetworkWired = {\n prefix: 'fas',\n iconName: 'network-wired',\n icon: [640, 512, [], \"f6ff\", \"M640 264v-16c0-8.84-7.16-16-16-16H344v-40h72c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H224c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h72v40H16c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h104v40H64c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h160c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32h-56v-40h304v40h-56c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h160c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32h-56v-40h104c8.84 0 16-7.16 16-16zM256 128V64h128v64H256zm-64 320H96v-64h96v64zm352 0h-96v-64h96v64z\"]\n};\nvar faNeuter = {\n prefix: 'fas',\n iconName: 'neuter',\n icon: [288, 512, [], \"f22c\", \"M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faNewspaper = {\n prefix: 'fas',\n iconName: 'newspaper',\n icon: [576, 512, [], \"f1ea\", \"M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z\"]\n};\nvar faNotEqual = {\n prefix: 'fas',\n iconName: 'not-equal',\n icon: [448, 512, [], \"f53e\", \"M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z\"]\n};\nvar faNotesMedical = {\n prefix: 'fas',\n iconName: 'notes-medical',\n icon: [384, 512, [], \"f481\", \"M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faObjectGroup = {\n prefix: 'fas',\n iconName: 'object-group',\n icon: [512, 512, [], \"f247\", \"M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z\"]\n};\nvar faObjectUngroup = {\n prefix: 'fas',\n iconName: 'object-ungroup',\n icon: [576, 512, [], \"f248\", \"M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z\"]\n};\nvar faOilCan = {\n prefix: 'fas',\n iconName: 'oil-can',\n icon: [640, 512, [], \"f613\", \"M629.8 160.31L416 224l-50.49-25.24a64.07 64.07 0 0 0-28.62-6.76H280v-48h56c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16H176c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h56v48h-56L37.72 166.86a31.9 31.9 0 0 0-5.79-.53C14.67 166.33 0 180.36 0 198.34v94.95c0 15.46 11.06 28.72 26.28 31.48L96 337.46V384c0 17.67 14.33 32 32 32h274.63c8.55 0 16.75-3.42 22.76-9.51l212.26-214.75c1.5-1.5 2.34-3.54 2.34-5.66V168c.01-5.31-5.08-9.15-10.19-7.69zM96 288.67l-48-8.73v-62.43l48 8.73v62.43zm453.33 84.66c0 23.56 19.1 42.67 42.67 42.67s42.67-19.1 42.67-42.67S592 288 592 288s-42.67 61.77-42.67 85.33z\"]\n};\nvar faOm = {\n prefix: 'fas',\n iconName: 'om',\n icon: [512, 512, [], \"f679\", \"M360.6 60.94a10.43 10.43 0 0 0 14.76 0l21.57-21.56a10.43 10.43 0 0 0 0-14.76L375.35 3.06c-4.08-4.07-10.68-4.07-14.76 0l-21.57 21.56a10.43 10.43 0 0 0 0 14.76l21.58 21.56zM412.11 192c-26.69 0-51.77 10.39-70.64 29.25l-24.25 24.25c-6.78 6.77-15.78 10.5-25.38 10.5H245c10.54-22.1 14.17-48.11 7.73-75.23-10.1-42.55-46.36-76.11-89.52-83.19-36.15-5.93-70.9 5.04-96.01 28.78-7.36 6.96-6.97 18.85 1.12 24.93l26.15 19.63c5.72 4.3 13.66 4.32 19.2-.21 8.45-6.9 19.02-10.71 30.27-10.71 26.47 0 48.01 21.53 48.01 48s-21.54 48-48.01 48h-31.9c-11.96 0-19.74 12.58-14.39 23.28l16.09 32.17c2.53 5.06 7.6 8.1 13.17 8.55h33.03c35.3 0 64.01 28.7 64.01 64s-28.71 64-64.01 64c-96.02 0-122.35-54.02-145.15-92.03-4.53-7.55-14.77-3.58-14.79 5.22C-.09 416 41.13 512 159.94 512c70.59 0 128.02-57.42 128.02-128 0-23.42-6.78-45.1-17.81-64h21.69c26.69 0 51.77-10.39 70.64-29.25l24.25-24.25c6.78-6.77 15.78-10.5 25.38-10.5 19.78 0 35.88 16.09 35.88 35.88V392c0 13.23-18.77 24-32.01 24-39.4 0-66.67-24.24-81.82-42.89-4.77-5.87-14.2-2.54-14.2 5.02V416s0 64 96.02 64c48.54 0 96.02-39.47 96.02-88V291.88c0-55.08-44.8-99.88-99.89-99.88zm42.18-124.73c-85.55 65.12-169.05 2.75-172.58.05-6.02-4.62-14.44-4.38-20.14.55-5.74 4.92-7.27 13.17-3.66 19.8 1.61 2.95 40.37 72.34 118.8 72.34 79.92 0 98.78-31.36 101.75-37.66 1.02-2.12 1.53-4.47 1.53-6.83V80c0-13.22-15.14-20.69-25.7-12.73z\"]\n};\nvar faOtter = {\n prefix: 'fas',\n iconName: 'otter',\n icon: [640, 512, [], \"f700\", \"M608 32h-32l-13.25-13.25A63.97 63.97 0 0 0 517.49 0H497c-11.14 0-22.08 2.91-31.75 8.43L312 96h-56C149.96 96 64 181.96 64 288v1.61c0 32.75-16 62.14-39.56 84.89-18.19 17.58-28.1 43.68-23.19 71.8 6.76 38.8 42.9 65.7 82.28 65.7H192c17.67 0 32-14.33 32-32s-14.33-32-32-32H80c-8.83 0-16-7.17-16-16s7.17-16 16-16h224c8.84 0 16-7.16 16-16v-16c0-17.67-14.33-32-32-32h-64l149.49-80.5L448 416h80c8.84 0 16-7.16 16-16v-16c0-17.67-14.33-32-32-32h-28.22l-55.11-110.21L521.14 192H544c53.02 0 96-42.98 96-96V64c0-17.67-14.33-32-32-32zm-96 16c8.84 0 16 7.16 16 16s-7.16 16-16 16-16-7.16-16-16 7.16-16 16-16zm32 96h-34.96L407.2 198.84l-13.77-27.55L512 112h77.05c-6.62 18.58-24.22 32-45.05 32z\"]\n};\nvar faOutdent = {\n prefix: 'fas',\n iconName: 'outdent',\n icon: [448, 512, [], \"f03b\", \"M100.69 363.29c10 10 27.31 2.93 27.31-11.31V160c0-14.32-17.33-21.31-27.31-11.31l-96 96a16 16 0 0 0 0 22.62zM432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm3.17-128H204.83A12.82 12.82 0 0 0 192 300.83v38.34A12.82 12.82 0 0 0 204.83 352h230.34A12.82 12.82 0 0 0 448 339.17v-38.34A12.82 12.82 0 0 0 435.17 288zm0-128H204.83A12.82 12.82 0 0 0 192 172.83v38.34A12.82 12.82 0 0 0 204.83 224h230.34A12.82 12.82 0 0 0 448 211.17v-38.34A12.82 12.82 0 0 0 435.17 160zM432 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faPager = {\n prefix: 'fas',\n iconName: 'pager',\n icon: [512, 512, [], \"f815\", \"M448 64H64a64 64 0 0 0-64 64v256a64 64 0 0 0 64 64h384a64 64 0 0 0 64-64V128a64 64 0 0 0-64-64zM160 368H80a16 16 0 0 1-16-16v-16a16 16 0 0 1 16-16h80zm128-16a16 16 0 0 1-16 16h-80v-48h80a16 16 0 0 1 16 16zm160-128a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32v-64a32 32 0 0 1 32-32h320a32 32 0 0 1 32 32z\"]\n};\nvar faPaintBrush = {\n prefix: 'fas',\n iconName: 'paint-brush',\n icon: [512, 512, [], \"f1fc\", \"M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z\"]\n};\nvar faPaintRoller = {\n prefix: 'fas',\n iconName: 'paint-roller',\n icon: [512, 512, [], \"f5aa\", \"M416 128V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32zm32-64v128c0 17.67-14.33 32-32 32H256c-35.35 0-64 28.65-64 64v32c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32v-32h160c53.02 0 96-42.98 96-96v-64c0-35.35-28.65-64-64-64z\"]\n};\nvar faPalette = {\n prefix: 'fas',\n iconName: 'palette',\n icon: [512, 512, [], \"f53f\", \"M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faPallet = {\n prefix: 'fas',\n iconName: 'pallet',\n icon: [640, 512, [], \"f482\", \"M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z\"]\n};\nvar faPaperPlane = {\n prefix: 'fas',\n iconName: 'paper-plane',\n icon: [512, 512, [], \"f1d8\", \"M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z\"]\n};\nvar faPaperclip = {\n prefix: 'fas',\n iconName: 'paperclip',\n icon: [448, 512, [], \"f0c6\", \"M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z\"]\n};\nvar faParachuteBox = {\n prefix: 'fas',\n iconName: 'parachute-box',\n icon: [512, 512, [], \"f4cd\", \"M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z\"]\n};\nvar faParagraph = {\n prefix: 'fas',\n iconName: 'paragraph',\n icon: [448, 512, [], \"f1dd\", \"M448 48v32a16 16 0 0 1-16 16h-48v368a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V96h-32v368a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V352h-32a160 160 0 0 1 0-320h240a16 16 0 0 1 16 16z\"]\n};\nvar faParking = {\n prefix: 'fas',\n iconName: 'parking',\n icon: [448, 512, [], \"f540\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z\"]\n};\nvar faPassport = {\n prefix: 'fas',\n iconName: 'passport',\n icon: [448, 512, [], \"f5ab\", \"M129.62 176h39.09c1.49-27.03 6.54-51.35 14.21-70.41-27.71 13.24-48.02 39.19-53.3 70.41zm0 32c5.29 31.22 25.59 57.17 53.3 70.41-7.68-19.06-12.72-43.38-14.21-70.41h-39.09zM224 286.69c7.69-7.45 20.77-34.42 23.43-78.69h-46.87c2.67 44.26 15.75 71.24 23.44 78.69zM200.57 176h46.87c-2.66-44.26-15.74-71.24-23.43-78.69-7.7 7.45-20.78 34.43-23.44 78.69zm64.51 102.41c27.71-13.24 48.02-39.19 53.3-70.41h-39.09c-1.49 27.03-6.53 51.35-14.21 70.41zM416 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h352c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32zm-80 416H112c-8.8 0-16-7.2-16-16s7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-112-96c-70.69 0-128-57.31-128-128S153.31 64 224 64s128 57.31 128 128-57.31 128-128 128zm41.08-214.41c7.68 19.06 12.72 43.38 14.21 70.41h39.09c-5.28-31.22-25.59-57.17-53.3-70.41z\"]\n};\nvar faPastafarianism = {\n prefix: 'fas',\n iconName: 'pastafarianism',\n icon: [640, 512, [], \"f67b\", \"M624.54 347.67c-32.7-12.52-57.36 4.25-75.37 16.45-17.06 11.53-23.25 14.42-31.41 11.36-8.12-3.09-10.83-9.38-15.89-29.38-3.33-13.15-7.44-29.32-17.95-42.65 2.24-2.91 4.43-5.79 6.38-8.57C500.47 304.45 513.71 312 532 312c33.95 0 50.87-25.78 62.06-42.83 10.59-16.14 15-21.17 21.94-21.17 13.25 0 24-10.75 24-24s-10.75-24-24-24c-33.95 0-50.87 25.78-62.06 42.83-10.6 16.14-15 21.17-21.94 21.17-17.31 0-37.48-61.43-97.26-101.91l17.25-34.5C485.43 125.5 512 97.98 512 64c0-35.35-28.65-64-64-64s-64 28.65-64 64c0 13.02 3.94 25.1 10.62 35.21l-18.15 36.3c-16.98-4.6-35.6-7.51-56.46-7.51s-39.49 2.91-56.46 7.51l-18.15-36.3C252.06 89.1 256 77.02 256 64c0-35.35-28.65-64-64-64s-64 28.65-64 64c0 33.98 26.56 61.5 60.02 63.6l17.25 34.5C145.68 202.44 125.15 264 108 264c-6.94 0-11.34-5.03-21.94-21.17C74.88 225.78 57.96 200 24 200c-13.25 0-24 10.75-24 24s10.75 24 24 24c6.94 0 11.34 5.03 21.94 21.17C57.13 286.22 74.05 312 108 312c18.29 0 31.53-7.55 41.7-17.11 1.95 2.79 4.14 5.66 6.38 8.57-10.51 13.33-14.62 29.5-17.95 42.65-5.06 20-7.77 26.28-15.89 29.38-8.11 3.06-14.33.17-31.41-11.36-18.03-12.2-42.72-28.92-75.37-16.45-12.39 4.72-18.59 18.58-13.87 30.97 4.72 12.41 18.61 18.61 30.97 13.88 8.16-3.09 14.34-.19 31.39 11.36 13.55 9.16 30.83 20.86 52.42 20.84 7.17 0 14.83-1.28 22.97-4.39 32.66-12.44 39.98-41.33 45.33-62.44 2.21-8.72 3.99-14.49 5.95-18.87 16.62 13.61 36.95 25.88 61.64 34.17-9.96 37-32.18 90.8-60.26 90.8-13.25 0-24 10.75-24 24s10.75 24 24 24c66.74 0 97.05-88.63 107.42-129.14 6.69.6 13.42 1.14 20.58 1.14s13.89-.54 20.58-1.14C350.95 423.37 381.26 512 448 512c13.25 0 24-10.75 24-24s-10.75-24-24-24c-27.94 0-50.21-53.81-60.22-90.81 24.69-8.29 45-20.56 61.62-34.16 1.96 4.38 3.74 10.15 5.95 18.87 5.34 21.11 12.67 50 45.33 62.44 8.14 3.11 15.8 4.39 22.97 4.39 21.59 0 38.87-11.69 52.42-20.84 17.05-11.55 23.28-14.45 31.39-11.36 12.39 4.75 26.27-1.47 30.97-13.88 4.71-12.4-1.49-26.26-13.89-30.98zM448 48c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16zm-256 0c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16z\"]\n};\nvar faPaste = {\n prefix: 'fas',\n iconName: 'paste',\n icon: [448, 512, [], \"f0ea\", \"M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z\"]\n};\nvar faPause = {\n prefix: 'fas',\n iconName: 'pause',\n icon: [448, 512, [], \"f04c\", \"M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z\"]\n};\nvar faPauseCircle = {\n prefix: 'fas',\n iconName: 'pause-circle',\n icon: [512, 512, [], \"f28b\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z\"]\n};\nvar faPaw = {\n prefix: 'fas',\n iconName: 'paw',\n icon: [512, 512, [], \"f1b0\", \"M256 224c-79.41 0-192 122.76-192 200.25 0 34.9 26.81 55.75 71.74 55.75 48.84 0 81.09-25.08 120.26-25.08 39.51 0 71.85 25.08 120.26 25.08 44.93 0 71.74-20.85 71.74-55.75C448 346.76 335.41 224 256 224zm-147.28-12.61c-10.4-34.65-42.44-57.09-71.56-50.13-29.12 6.96-44.29 40.69-33.89 75.34 10.4 34.65 42.44 57.09 71.56 50.13 29.12-6.96 44.29-40.69 33.89-75.34zm84.72-20.78c30.94-8.14 46.42-49.94 34.58-93.36s-46.52-72.01-77.46-63.87-46.42 49.94-34.58 93.36c11.84 43.42 46.53 72.02 77.46 63.87zm281.39-29.34c-29.12-6.96-61.15 15.48-71.56 50.13-10.4 34.65 4.77 68.38 33.89 75.34 29.12 6.96 61.15-15.48 71.56-50.13 10.4-34.65-4.77-68.38-33.89-75.34zm-156.27 29.34c30.94 8.14 65.62-20.45 77.46-63.87 11.84-43.42-3.64-85.21-34.58-93.36s-65.62 20.45-77.46 63.87c-11.84 43.42 3.64 85.22 34.58 93.36z\"]\n};\nvar faPeace = {\n prefix: 'fas',\n iconName: 'peace',\n icon: [496, 512, [], \"f67c\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm184 248c0 31.93-8.2 61.97-22.57 88.17L280 240.63V74.97c86.23 15.21 152 90.5 152 181.03zM216 437.03c-33.86-5.97-64.49-21.2-89.29-43.02L216 322.57v114.46zm64-114.46L369.29 394c-24.8 21.82-55.43 37.05-89.29 43.02V322.57zm-64-247.6v165.66L86.57 344.17C72.2 317.97 64 287.93 64 256c0-90.53 65.77-165.82 152-181.03z\"]\n};\nvar faPen = {\n prefix: 'fas',\n iconName: 'pen',\n icon: [512, 512, [], \"f304\", \"M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z\"]\n};\nvar faPenAlt = {\n prefix: 'fas',\n iconName: 'pen-alt',\n icon: [512, 512, [], \"f305\", \"M497.94 74.17l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91zm-246.8-20.53c-15.62-15.62-40.94-15.62-56.56 0L75.8 172.43c-6.25 6.25-6.25 16.38 0 22.62l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l101.82-101.82 22.63 22.62L93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l196.79-196.79-82.77-82.77-84.85-84.85z\"]\n};\nvar faPenFancy = {\n prefix: 'fas',\n iconName: 'pen-fancy',\n icon: [512, 512, [], \"f5ac\", \"M79.18 282.94a32.005 32.005 0 0 0-20.24 20.24L0 480l4.69 4.69 92.89-92.89c-.66-2.56-1.57-5.03-1.57-7.8 0-17.67 14.33-32 32-32s32 14.33 32 32-14.33 32-32 32c-2.77 0-5.24-.91-7.8-1.57l-92.89 92.89L32 512l176.82-58.94a31.983 31.983 0 0 0 20.24-20.24l33.07-84.07-98.88-98.88-84.07 33.07zM369.25 28.32L186.14 227.81l97.85 97.85 199.49-183.11C568.4 67.48 443.73-55.94 369.25 28.32z\"]\n};\nvar faPenNib = {\n prefix: 'fas',\n iconName: 'pen-nib',\n icon: [512, 512, [], \"f5ad\", \"M136.6 138.79a64.003 64.003 0 0 0-43.31 41.35L0 460l14.69 14.69L164.8 324.58c-2.99-6.26-4.8-13.18-4.8-20.58 0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48c-7.4 0-14.32-1.81-20.58-4.8L37.31 497.31 52 512l279.86-93.29a64.003 64.003 0 0 0 41.35-43.31L416 224 288 96l-151.4 42.79zm361.34-64.62l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91z\"]\n};\nvar faPenSquare = {\n prefix: 'fas',\n iconName: 'pen-square',\n icon: [448, 512, [], \"f14b\", \"M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z\"]\n};\nvar faPencilAlt = {\n prefix: 'fas',\n iconName: 'pencil-alt',\n icon: [512, 512, [], \"f303\", \"M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z\"]\n};\nvar faPencilRuler = {\n prefix: 'fas',\n iconName: 'pencil-ruler',\n icon: [512, 512, [], \"f5ae\", \"M109.46 244.04l134.58-134.56-44.12-44.12-61.68 61.68a7.919 7.919 0 0 1-11.21 0l-11.21-11.21c-3.1-3.1-3.1-8.12 0-11.21l61.68-61.68-33.64-33.65C131.47-3.1 111.39-3.1 99 9.29L9.29 99c-12.38 12.39-12.39 32.47 0 44.86l100.17 100.18zm388.47-116.8c18.76-18.76 18.75-49.17 0-67.93l-45.25-45.25c-18.76-18.76-49.18-18.76-67.95 0l-46.02 46.01 113.2 113.2 46.02-46.03zM316.08 82.71l-297 296.96L.32 487.11c-2.53 14.49 10.09 27.11 24.59 24.56l107.45-18.84L429.28 195.9 316.08 82.71zm186.63 285.43l-33.64-33.64-61.68 61.68c-3.1 3.1-8.12 3.1-11.21 0l-11.21-11.21c-3.09-3.1-3.09-8.12 0-11.21l61.68-61.68-44.14-44.14L267.93 402.5l100.21 100.2c12.39 12.39 32.47 12.39 44.86 0l89.71-89.7c12.39-12.39 12.39-32.47 0-44.86z\"]\n};\nvar faPeopleArrows = {\n prefix: 'fas',\n iconName: 'people-arrows',\n icon: [576, 512, [], \"e068\", \"M96,128A64,64,0,1,0,32,64,64,64,0,0,0,96,128Zm0,176.08a44.11,44.11,0,0,1,13.64-32L181.77,204c1.65-1.55,3.77-2.31,5.61-3.57A63.91,63.91,0,0,0,128,160H64A64,64,0,0,0,0,224v96a32,32,0,0,0,32,32V480a32,32,0,0,0,32,32h64a32,32,0,0,0,32-32V383.61l-50.36-47.53A44.08,44.08,0,0,1,96,304.08ZM480,128a64,64,0,1,0-64-64A64,64,0,0,0,480,128Zm32,32H448a63.91,63.91,0,0,0-59.38,40.42c1.84,1.27,4,2,5.62,3.59l72.12,68.06a44.37,44.37,0,0,1,0,64L416,383.62V480a32,32,0,0,0,32,32h64a32,32,0,0,0,32-32V352a32,32,0,0,0,32-32V224A64,64,0,0,0,512,160ZM444.4,295.34l-72.12-68.06A12,12,0,0,0,352,236v36H224V236a12,12,0,0,0-20.28-8.73L131.6,295.34a12.4,12.4,0,0,0,0,17.47l72.12,68.07A12,12,0,0,0,224,372.14V336H352v36.14a12,12,0,0,0,20.28,8.74l72.12-68.07A12.4,12.4,0,0,0,444.4,295.34Z\"]\n};\nvar faPeopleCarry = {\n prefix: 'fas',\n iconName: 'people-carry',\n icon: [640, 512, [], \"f4ce\", \"M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z\"]\n};\nvar faPepperHot = {\n prefix: 'fas',\n iconName: 'pepper-hot',\n icon: [512, 512, [], \"f816\", \"M330.67 263.12V173.4l-52.75-24.22C219.44 218.76 197.58 400 56 400a56 56 0 0 0 0 112c212.64 0 370.65-122.87 419.18-210.34l-37.05-38.54zm131.09-128.37C493.92 74.91 477.18 26.48 458.62 3a8 8 0 0 0-11.93-.59l-22.9 23a8.06 8.06 0 0 0-.89 10.23c6.86 10.36 17.05 35.1-1.4 72.32A142.85 142.85 0 0 0 364.34 96c-28 0-54 8.54-76.34 22.59l74.67 34.29v78.24h89.09L506.44 288c3.26-12.62 5.56-25.63 5.56-39.31a154 154 0 0 0-50.24-113.94z\"]\n};\nvar faPercent = {\n prefix: 'fas',\n iconName: 'percent',\n icon: [448, 512, [], \"f295\", \"M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z\"]\n};\nvar faPercentage = {\n prefix: 'fas',\n iconName: 'percentage',\n icon: [384, 512, [], \"f541\", \"M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z\"]\n};\nvar faPersonBooth = {\n prefix: 'fas',\n iconName: 'person-booth',\n icon: [576, 512, [], \"f756\", \"M192 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320h-64v176zm32-272h-50.9l-45.2-45.3C115.8 166.6 99.7 160 82.7 160H64c-17.1 0-33.2 6.7-45.3 18.8C6.7 190.9 0 207 0 224.1L.2 320 0 480c0 17.7 14.3 32 31.9 32 17.6 0 32-14.3 32-32l.1-100.7c.9.5 1.6 1.3 2.5 1.7l29.1 43v56c0 17.7 14.3 32 32 32s32-14.3 32-32v-56.5c0-9.9-2.3-19.8-6.7-28.6l-41.2-61.3V253l20.9 20.9c9.1 9.1 21.1 14.1 33.9 14.1H224c17.7 0 32-14.3 32-32s-14.3-32-32-32zM64 128c26.5 0 48-21.5 48-48S90.5 32 64 32 16 53.5 16 80s21.5 48 48 48zm224-96l31.5 223.1-30.9 154.6c-4.3 21.6 13 38.3 31.4 38.3 15.2 0 28-9.1 32.3-30.4.9 16.9 14.6 30.4 31.7 30.4 17.7 0 32-14.3 32-32 0 17.7 14.3 32 32 32s32-14.3 32-32V0H288v32zm-96 0v160h64V0h-32c-17.7 0-32 14.3-32 32zM544 0h-32v496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V32c0-17.7-14.3-32-32-32z\"]\n};\nvar faPhone = {\n prefix: 'fas',\n iconName: 'phone',\n icon: [512, 512, [], \"f095\", \"M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z\"]\n};\nvar faPhoneAlt = {\n prefix: 'fas',\n iconName: 'phone-alt',\n icon: [512, 512, [], \"f879\", \"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"]\n};\nvar faPhoneSlash = {\n prefix: 'fas',\n iconName: 'phone-slash',\n icon: [640, 512, [], \"f3dd\", \"M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z\"]\n};\nvar faPhoneSquare = {\n prefix: 'fas',\n iconName: 'phone-square',\n icon: [448, 512, [], \"f098\", \"M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z\"]\n};\nvar faPhoneSquareAlt = {\n prefix: 'fas',\n iconName: 'phone-square-alt',\n icon: [448, 512, [], \"f87b\", \"M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h352a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48zm-16.39 307.37l-15 65A15 15 0 0 1 354 416C194 416 64 286.29 64 126a15.7 15.7 0 0 1 11.63-14.61l65-15A18.23 18.23 0 0 1 144 96a16.27 16.27 0 0 1 13.79 9.09l30 70A17.9 17.9 0 0 1 189 181a17 17 0 0 1-5.5 11.61l-37.89 31a231.91 231.91 0 0 0 110.78 110.78l31-37.89A17 17 0 0 1 299 291a17.85 17.85 0 0 1 5.91 1.21l70 30A16.25 16.25 0 0 1 384 336a17.41 17.41 0 0 1-.39 3.37z\"]\n};\nvar faPhoneVolume = {\n prefix: 'fas',\n iconName: 'phone-volume',\n icon: [384, 512, [], \"f2a0\", \"M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z\"]\n};\nvar faPhotoVideo = {\n prefix: 'fas',\n iconName: 'photo-video',\n icon: [640, 512, [], \"f87c\", \"M608 0H160a32 32 0 0 0-32 32v96h160V64h192v320h128a32 32 0 0 0 32-32V32a32 32 0 0 0-32-32zM232 103a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9V73a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm352 208a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9v-30a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm0-104a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9v-30a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm0-104a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9V73a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm-168 57H32a32 32 0 0 0-32 32v288a32 32 0 0 0 32 32h384a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM96 224a32 32 0 1 1-32 32 32 32 0 0 1 32-32zm288 224H64v-32l64-64 32 32 128-128 96 96z\"]\n};\nvar faPiggyBank = {\n prefix: 'fas',\n iconName: 'piggy-bank',\n icon: [576, 512, [], \"f4d3\", \"M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z\"]\n};\nvar faPills = {\n prefix: 'fas',\n iconName: 'pills',\n icon: [576, 512, [], \"f484\", \"M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z\"]\n};\nvar faPizzaSlice = {\n prefix: 'fas',\n iconName: 'pizza-slice',\n icon: [512, 512, [], \"f818\", \"M158.87.15c-16.16-1.52-31.2 8.42-35.33 24.12l-14.81 56.27c187.62 5.49 314.54 130.61 322.48 317l56.94-15.78c15.72-4.36 25.49-19.68 23.62-35.9C490.89 165.08 340.78 17.32 158.87.15zm-58.47 112L.55 491.64a16.21 16.21 0 0 0 20 19.75l379-105.1c-4.27-174.89-123.08-292.14-299.15-294.1zM128 416a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm48-152a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm104 104a32 32 0 1 1 32-32 32 32 0 0 1-32 32z\"]\n};\nvar faPlaceOfWorship = {\n prefix: 'fas',\n iconName: 'place-of-worship',\n icon: [640, 512, [], \"f67f\", \"M620.61 366.55L512 320v192h112c8.84 0 16-7.16 16-16V395.96a32 32 0 0 0-19.39-29.41zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.55A32 32 0 0 0 0 395.96zm464.46-149.28L416 217.6V102.63c0-8.49-3.37-16.62-9.38-22.63L331.31 4.69c-6.25-6.25-16.38-6.25-22.62 0L233.38 80c-6 6-9.38 14.14-9.38 22.63V217.6l-48.46 29.08A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.66-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44z\"]\n};\nvar faPlane = {\n prefix: 'fas',\n iconName: 'plane',\n icon: [576, 512, [], \"f072\", \"M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z\"]\n};\nvar faPlaneArrival = {\n prefix: 'fas',\n iconName: 'plane-arrival',\n icon: [640, 512, [], \"f5af\", \"M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM44.81 205.66l88.74 80a62.607 62.607 0 0 0 25.47 13.93l287.6 78.35c26.48 7.21 54.56 8.72 81 1.36 29.67-8.27 43.44-21.21 47.25-35.71 3.83-14.5-1.73-32.71-23.37-54.96-19.28-19.82-44.35-32.79-70.83-40l-97.51-26.56L282.8 30.22c-1.51-5.81-5.95-10.35-11.66-11.91L206.05.58c-10.56-2.88-20.9 5.32-20.71 16.44l47.92 164.21-102.2-27.84-27.59-67.88c-1.93-4.89-6.01-8.57-11.02-9.93L52.72 64.75c-10.34-2.82-20.53 5-20.72 15.88l.23 101.78c.19 8.91 6.03 17.34 12.58 23.25z\"]\n};\nvar faPlaneDeparture = {\n prefix: 'fas',\n iconName: 'plane-departure',\n icon: [640, 512, [], \"f5b0\", \"M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM80.55 341.27c6.28 6.84 15.1 10.72 24.33 10.71l130.54-.18a65.62 65.62 0 0 0 29.64-7.12l290.96-147.65c26.74-13.57 50.71-32.94 67.02-58.31 18.31-28.48 20.3-49.09 13.07-63.65-7.21-14.57-24.74-25.27-58.25-27.45-29.85-1.94-59.54 5.92-86.28 19.48l-98.51 49.99-218.7-82.06a17.799 17.799 0 0 0-18-1.11L90.62 67.29c-10.67 5.41-13.25 19.65-5.17 28.53l156.22 98.1-103.21 52.38-72.35-36.47a17.804 17.804 0 0 0-16.07.02L9.91 230.22c-10.44 5.3-13.19 19.12-5.57 28.08l76.21 82.97z\"]\n};\nvar faPlaneSlash = {\n prefix: 'fas',\n iconName: 'plane-slash',\n icon: [640, 512, [], \"e069\", \"M32.48,147.88,64,256,32.48,364.13A16,16,0,0,0,48,384H88a16,16,0,0,0,12.8-6.41L144,320H246.85l-49,171.59A16,16,0,0,0,213.2,512h65.5a16,16,0,0,0,13.89-8.06l66.6-116.54L34.35,136.34A15.47,15.47,0,0,0,32.48,147.88ZM633.82,458.09,455.14,320H512c35.34,0,96-28.66,96-64s-60.66-64-96-64H397.7L292.61,8.06C290.06,3.61,283.84,0,278.71,0H213.2a16,16,0,0,0-15.38,20.39l36.94,129.29L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.45A16,16,0,0,0,6.18,53.91L594.54,508.63A16,16,0,0,0,617,505.81l19.64-25.26A16,16,0,0,0,633.82,458.09Z\"]\n};\nvar faPlay = {\n prefix: 'fas',\n iconName: 'play',\n icon: [448, 512, [], \"f04b\", \"M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z\"]\n};\nvar faPlayCircle = {\n prefix: 'fas',\n iconName: 'play-circle',\n icon: [512, 512, [], \"f144\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z\"]\n};\nvar faPlug = {\n prefix: 'fas',\n iconName: 'plug',\n icon: [384, 512, [], \"f1e6\", \"M320,32a32,32,0,0,0-64,0v96h64Zm48,128H16A16,16,0,0,0,0,176v32a16,16,0,0,0,16,16H32v32A160.07,160.07,0,0,0,160,412.8V512h64V412.8A160.07,160.07,0,0,0,352,256V224h16a16,16,0,0,0,16-16V176A16,16,0,0,0,368,160ZM128,32a32,32,0,0,0-64,0v96h64Z\"]\n};\nvar faPlus = {\n prefix: 'fas',\n iconName: 'plus',\n icon: [448, 512, [], \"f067\", \"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"]\n};\nvar faPlusCircle = {\n prefix: 'fas',\n iconName: 'plus-circle',\n icon: [512, 512, [], \"f055\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z\"]\n};\nvar faPlusSquare = {\n prefix: 'fas',\n iconName: 'plus-square',\n icon: [448, 512, [], \"f0fe\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z\"]\n};\nvar faPodcast = {\n prefix: 'fas',\n iconName: 'podcast',\n icon: [448, 512, [], \"f2ce\", \"M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z\"]\n};\nvar faPoll = {\n prefix: 'fas',\n iconName: 'poll',\n icon: [448, 512, [], \"f681\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM160 368c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16V240c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v128zm96 0c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16V144c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v224zm96 0c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-64c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v64z\"]\n};\nvar faPollH = {\n prefix: 'fas',\n iconName: 'poll-h',\n icon: [448, 512, [], \"f682\", \"M448 432V80c0-26.5-21.5-48-48-48H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48zM112 192c-8.84 0-16-7.16-16-16v-32c0-8.84 7.16-16 16-16h128c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16H112zm0 96c-8.84 0-16-7.16-16-16v-32c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16H112zm0 96c-8.84 0-16-7.16-16-16v-32c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-64z\"]\n};\nvar faPoo = {\n prefix: 'fas',\n iconName: 'poo',\n icon: [512, 512, [], \"f2fe\", \"M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faPooStorm = {\n prefix: 'fas',\n iconName: 'poo-storm',\n icon: [448, 512, [], \"f75a\", \"M308 336h-57.7l17.3-64.9c2-7.6-3.7-15.1-11.6-15.1h-68c-6 0-11.1 4.5-11.9 10.4l-16 120c-1 7.2 4.6 13.6 11.9 13.6h59.3l-23 97.2c-1.8 7.6 4 14.8 11.7 14.8 4.2 0 8.2-2.2 10.4-6l88-152c4.6-8-1.2-18-10.4-18zm66.4-111.3c5.9-9.6 9.6-20.6 9.6-32.7 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C218.3 14.6 224 30.6 224 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 12.1 3.7 23.1 9.6 32.7C32.6 228 0 262.2 0 304c0 44 36 80 80 80h48.3c.1-.6 0-1.2 0-1.8l16-120c3-21.8 21.7-38.2 43.7-38.2h68c13.8 0 26.5 6.3 34.9 17.2s11.2 24.8 7.6 38.1l-6.6 24.7h16c15.7 0 30.3 8.4 38.1 22 7.8 13.6 7.8 30.5 0 44l-8.1 14h30c44 0 80-36 80-80 .1-41.8-32.5-76-73.5-79.3z\"]\n};\nvar faPoop = {\n prefix: 'fas',\n iconName: 'poop',\n icon: [512, 512, [], \"f619\", \"M451.36 369.14C468.66 355.99 480 335.41 480 312c0-39.77-32.24-72-72-72h-14.07c13.42-11.73 22.07-28.78 22.07-48 0-35.35-28.65-64-64-64h-5.88c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96-5.17 0-10.15.74-15.11 1.52C250.31 14.64 256 30.62 256 48c0 44.18-35.82 80-80 80h-16c-35.35 0-64 28.65-64 64 0 19.22 8.65 36.27 22.07 48H104c-39.76 0-72 32.23-72 72 0 23.41 11.34 43.99 28.64 57.14C26.31 374.62 0 404.12 0 440c0 39.76 32.24 72 72 72h368c39.76 0 72-32.24 72-72 0-35.88-26.31-65.38-60.64-70.86z\"]\n};\nvar faPortrait = {\n prefix: 'fas',\n iconName: 'portrait',\n icon: [384, 512, [], \"f3e0\", \"M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z\"]\n};\nvar faPoundSign = {\n prefix: 'fas',\n iconName: 'pound-sign',\n icon: [320, 512, [], \"f154\", \"M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z\"]\n};\nvar faPowerOff = {\n prefix: 'fas',\n iconName: 'power-off',\n icon: [512, 512, [], \"f011\", \"M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z\"]\n};\nvar faPray = {\n prefix: 'fas',\n iconName: 'pray',\n icon: [384, 512, [], \"f683\", \"M256 128c35.35 0 64-28.65 64-64S291.35 0 256 0s-64 28.65-64 64 28.65 64 64 64zm-30.63 169.75c14.06 16.72 39 19.09 55.97 5.22l88-72.02c17.09-13.98 19.59-39.19 5.62-56.28-13.97-17.11-39.19-19.59-56.31-5.62l-57.44 47-38.91-46.31c-15.44-18.39-39.22-27.92-64-25.33-24.19 2.48-45.25 16.27-56.37 36.92l-49.37 92.03c-23.4 43.64-8.69 96.37 34.19 123.75L131.56 432H40c-22.09 0-40 17.91-40 40s17.91 40 40 40h208c34.08 0 53.77-42.79 28.28-68.28L166.42 333.86l34.8-64.87 24.15 28.76z\"]\n};\nvar faPrayingHands = {\n prefix: 'fas',\n iconName: 'praying-hands',\n icon: [640, 512, [], \"f684\", \"M272 191.91c-17.6 0-32 14.4-32 32v80c0 8.84-7.16 16-16 16s-16-7.16-16-16v-76.55c0-17.39 4.72-34.47 13.69-49.39l77.75-129.59c9.09-15.16 4.19-34.81-10.97-43.91-14.45-8.67-32.72-4.3-42.3 9.21-.2.23-.62.21-.79.48l-117.26 175.9C117.56 205.9 112 224.31 112 243.29v80.23l-90.12 30.04A31.974 31.974 0 0 0 0 383.91v96c0 10.82 8.52 32 32 32 2.69 0 5.41-.34 8.06-1.03l179.19-46.62C269.16 449.99 304 403.8 304 351.91v-128c0-17.6-14.4-32-32-32zm346.12 161.73L528 323.6v-80.23c0-18.98-5.56-37.39-16.12-53.23L394.62 14.25c-.18-.27-.59-.24-.79-.48-9.58-13.51-27.85-17.88-42.3-9.21-15.16 9.09-20.06 28.75-10.97 43.91l77.75 129.59c8.97 14.92 13.69 32 13.69 49.39V304c0 8.84-7.16 16-16 16s-16-7.16-16-16v-80c0-17.6-14.4-32-32-32s-32 14.4-32 32v128c0 51.89 34.84 98.08 84.75 112.34l179.19 46.62c2.66.69 5.38 1.03 8.06 1.03 23.48 0 32-21.18 32-32v-96c0-13.77-8.81-25.99-21.88-30.35z\"]\n};\nvar faPrescription = {\n prefix: 'fas',\n iconName: 'prescription',\n icon: [384, 512, [], \"f5b1\", \"M301.26 352l78.06-78.06c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0L256 306.74l-83.96-83.96C219.31 216.8 256 176.89 256 128c0-53.02-42.98-96-96-96H16C7.16 32 0 39.16 0 48v256c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-80h18.75l128 128-78.06 78.06c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0L256 397.25l78.06 78.06c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63L301.26 352zM64 96h96c17.64 0 32 14.36 32 32s-14.36 32-32 32H64V96z\"]\n};\nvar faPrescriptionBottle = {\n prefix: 'fas',\n iconName: 'prescription-bottle',\n icon: [384, 512, [], \"f485\", \"M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z\"]\n};\nvar faPrescriptionBottleAlt = {\n prefix: 'fas',\n iconName: 'prescription-bottle-alt',\n icon: [384, 512, [], \"f486\", \"M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z\"]\n};\nvar faPrint = {\n prefix: 'fas',\n iconName: 'print',\n icon: [512, 512, [], \"f02f\", \"M448 192V77.25c0-8.49-3.37-16.62-9.37-22.63L393.37 9.37c-6-6-14.14-9.37-22.63-9.37H96C78.33 0 64 14.33 64 32v160c-35.35 0-64 28.65-64 64v112c0 8.84 7.16 16 16 16h48v96c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-96h48c8.84 0 16-7.16 16-16V256c0-35.35-28.65-64-64-64zm-64 256H128v-96h256v96zm0-224H128V64h192v48c0 8.84 7.16 16 16 16h48v96zm48 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faProcedures = {\n prefix: 'fas',\n iconName: 'procedures',\n icon: [640, 512, [], \"f487\", \"M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z\"]\n};\nvar faProjectDiagram = {\n prefix: 'fas',\n iconName: 'project-diagram',\n icon: [640, 512, [], \"f542\", \"M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z\"]\n};\nvar faPumpMedical = {\n prefix: 'fas',\n iconName: 'pump-medical',\n icon: [384, 512, [], \"e06a\", \"M235.51,159.82H84.24A64,64,0,0,0,20.51,218L.14,442a64,64,0,0,0,63.74,69.8h192A64,64,0,0,0,319.61,442L299.24,218A64,64,0,0,0,235.51,159.82Zm4.37,173.33a13.35,13.35,0,0,1-13.34,13.34h-40v40a13.33,13.33,0,0,1-13.33,13.33H146.54a13.33,13.33,0,0,1-13.33-13.33v-40h-40a13.34,13.34,0,0,1-13.33-13.34V306.49a13.33,13.33,0,0,1,13.33-13.34h40v-40a13.33,13.33,0,0,1,13.33-13.33h26.67a13.33,13.33,0,0,1,13.33,13.33v40h40a13.34,13.34,0,0,1,13.34,13.34ZM379.19,93.88,335.87,50.56a64,64,0,0,0-45.24-18.74H223.88a32,32,0,0,0-32-32h-64a32,32,0,0,0-32,32v96h128v-32h66.75l43.31,43.31a16,16,0,0,0,22.63,0l22.62-22.62A16,16,0,0,0,379.19,93.88Z\"]\n};\nvar faPumpSoap = {\n prefix: 'fas',\n iconName: 'pump-soap',\n icon: [384, 512, [], \"e06b\", \"M235.63,160H84.37a64,64,0,0,0-63.74,58.21L.27,442.21A64,64,0,0,0,64,512H256a64,64,0,0,0,63.74-69.79l-20.36-224A64,64,0,0,0,235.63,160ZM160,416c-33.12,0-60-26.33-60-58.75,0-25,35.7-75.47,52-97.27A10,10,0,0,1,168,260c16.33,21.8,52,72.27,52,97.27C220,389.67,193.12,416,160,416ZM379.31,94.06,336,50.74A64,64,0,0,0,290.75,32H224A32,32,0,0,0,192,0H128A32,32,0,0,0,96,32v96H224V96h66.75l43.31,43.31a16,16,0,0,0,22.63,0l22.62-22.62A16,16,0,0,0,379.31,94.06Z\"]\n};\nvar faPuzzlePiece = {\n prefix: 'fas',\n iconName: 'puzzle-piece',\n icon: [576, 512, [], \"f12e\", \"M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z\"]\n};\nvar faQrcode = {\n prefix: 'fas',\n iconName: 'qrcode',\n icon: [448, 512, [], \"f029\", \"M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z\"]\n};\nvar faQuestion = {\n prefix: 'fas',\n iconName: 'question',\n icon: [384, 512, [], \"f128\", \"M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z\"]\n};\nvar faQuestionCircle = {\n prefix: 'fas',\n iconName: 'question-circle',\n icon: [512, 512, [], \"f059\", \"M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z\"]\n};\nvar faQuidditch = {\n prefix: 'fas',\n iconName: 'quidditch',\n icon: [640, 512, [], \"f458\", \"M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z\"]\n};\nvar faQuoteLeft = {\n prefix: 'fas',\n iconName: 'quote-left',\n icon: [512, 512, [], \"f10d\", \"M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z\"]\n};\nvar faQuoteRight = {\n prefix: 'fas',\n iconName: 'quote-right',\n icon: [512, 512, [], \"f10e\", \"M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z\"]\n};\nvar faQuran = {\n prefix: 'fas',\n iconName: 'quran',\n icon: [448, 512, [], \"f687\", \"M448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM301.08 145.82c.6-1.21 1.76-1.82 2.92-1.82s2.32.61 2.92 1.82l11.18 22.65 25 3.63c2.67.39 3.74 3.67 1.81 5.56l-18.09 17.63 4.27 24.89c.36 2.11-1.31 3.82-3.21 3.82-.5 0-1.02-.12-1.52-.38L304 211.87l-22.36 11.75c-.5.26-1.02.38-1.52.38-1.9 0-3.57-1.71-3.21-3.82l4.27-24.89-18.09-17.63c-1.94-1.89-.87-5.17 1.81-5.56l24.99-3.63 11.19-22.65zm-57.89-69.01c13.67 0 27.26 2.49 40.38 7.41a6.775 6.775 0 1 1-2.38 13.12c-.67 0-3.09-.21-4.13-.21-52.31 0-94.86 42.55-94.86 94.86 0 52.3 42.55 94.86 94.86 94.86 1.03 0 3.48-.21 4.13-.21 3.93 0 6.8 3.14 6.8 6.78 0 2.98-1.94 5.51-4.62 6.42-13.07 4.87-26.59 7.34-40.19 7.34C179.67 307.19 128 255.51 128 192c0-63.52 51.67-115.19 115.19-115.19zM380.8 448H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8v64z\"]\n};\nvar faRadiation = {\n prefix: 'fas',\n iconName: 'radiation',\n icon: [496, 512, [], \"f7b9\", \"M328.2 255.8h151.6c9.1 0 16.8-7.7 16.2-16.8-5.1-75.8-44.4-142.2-102.5-184.2-7.4-5.3-17.9-2.9-22.7 4.8L290.4 188c22.6 14.3 37.8 39.2 37.8 67.8zm-37.8 67.7c-12.3 7.7-26.8 12.4-42.4 12.4-15.6 0-30-4.7-42.4-12.4L125.2 452c-4.8 7.7-2.4 18.1 5.6 22.4C165.7 493.2 205.6 504 248 504s82.3-10.8 117.2-29.6c8-4.3 10.4-14.8 5.6-22.4l-80.4-128.5zM248 303.8c26.5 0 48-21.5 48-48s-21.5-48-48-48-48 21.5-48 48 21.5 48 48 48zm-231.8-48h151.6c0-28.6 15.2-53.5 37.8-67.7L125.2 59.7c-4.8-7.7-15.3-10.2-22.7-4.8C44.4 96.9 5.1 163.3 0 239.1c-.6 9 7.1 16.7 16.2 16.7z\"]\n};\nvar faRadiationAlt = {\n prefix: 'fas',\n iconName: 'radiation-alt',\n icon: [496, 512, [], \"f7ba\", \"M312 256h79.1c9.2 0 16.9-7.7 16-16.8-4.6-43.6-27-81.8-59.5-107.8-7.6-6.1-18.8-4.5-24 3.8L281.9 202c18 11.2 30.1 31.2 30.1 54zm-97.8 54.1L172.4 377c-4.9 7.8-2.4 18.4 5.8 22.5 21.1 10.4 44.7 16.5 69.8 16.5s48.7-6.1 69.9-16.5c8.2-4.1 10.6-14.7 5.8-22.5l-41.8-66.9c-9.8 6.2-21.4 9.9-33.8 9.9s-24.1-3.7-33.9-9.9zM104.9 256H184c0-22.8 12.1-42.8 30.2-54.1l-41.7-66.8c-5.2-8.3-16.4-9.9-24-3.8-32.6 26-54.9 64.2-59.5 107.8-1.1 9.2 6.7 16.9 15.9 16.9zM248 504c137 0 248-111 248-248S385 8 248 8 0 119 0 256s111 248 248 248zm0-432c101.5 0 184 82.5 184 184s-82.5 184-184 184S64 357.5 64 256 146.5 72 248 72zm0 216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z\"]\n};\nvar faRainbow = {\n prefix: 'fas',\n iconName: 'rainbow',\n icon: [576, 512, [], \"f75b\", \"M268.3 32.7C115.4 42.9 0 176.9 0 330.2V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C64 186.8 180.9 80.3 317.5 97.9 430.4 112.4 512 214 512 327.8V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-165.3-140-298.6-307.7-287.3zm-5.6 96.9C166 142 96 229.1 96 326.7V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-74.8 64.5-134.8 140.8-127.4 66.5 6.5 115.2 66.2 115.2 133.1V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-114.2-100.2-205.4-217.3-190.4zm6.2 96.3c-45.6 8.9-76.9 51.5-76.9 97.9V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-17.6 14.3-32 32-32s32 14.4 32 32v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-59.2-53.8-106-115.1-94.1z\"]\n};\nvar faRandom = {\n prefix: 'fas',\n iconName: 'random',\n icon: [512, 512, [], \"f074\", \"M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z\"]\n};\nvar faReceipt = {\n prefix: 'fas',\n iconName: 'receipt',\n icon: [384, 512, [], \"f543\", \"M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faRecordVinyl = {\n prefix: 'fas',\n iconName: 'record-vinyl',\n icon: [512, 512, [], \"f8d9\", \"M256 152a104 104 0 1 0 104 104 104 104 0 0 0-104-104zm0 128a24 24 0 1 1 24-24 24 24 0 0 1-24 24zm0-272C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 376a128 128 0 1 1 128-128 128 128 0 0 1-128 128z\"]\n};\nvar faRecycle = {\n prefix: 'fas',\n iconName: 'recycle',\n icon: [512, 512, [], \"f1b8\", \"M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z\"]\n};\nvar faRedo = {\n prefix: 'fas',\n iconName: 'redo',\n icon: [512, 512, [], \"f01e\", \"M500.33 0h-47.41a12 12 0 0 0-12 12.57l4 82.76A247.42 247.42 0 0 0 256 8C119.34 8 7.9 119.53 8 256.19 8.1 393.07 119.1 504 256 504a247.1 247.1 0 0 0 166.18-63.91 12 12 0 0 0 .48-17.43l-34-34a12 12 0 0 0-16.38-.55A176 176 0 1 1 402.1 157.8l-101.53-4.87a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12h200.33a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12z\"]\n};\nvar faRedoAlt = {\n prefix: 'fas',\n iconName: 'redo-alt',\n icon: [512, 512, [], \"f2f9\", \"M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z\"]\n};\nvar faRegistered = {\n prefix: 'fas',\n iconName: 'registered',\n icon: [512, 512, [], \"f25d\", \"M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z\"]\n};\nvar faRemoveFormat = {\n prefix: 'fas',\n iconName: 'remove-format',\n icon: [640, 512, [], \"f87d\", \"M336 416h-11.17l9.26-27.77L267 336.4 240.49 416H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm297.82 42.1L377 259.59 426.17 112H544v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16H176a16 16 0 0 0-16 16v43.9L45.46 3.38A16 16 0 0 0 23 6.19L3.37 31.46a16 16 0 0 0 2.81 22.45l588.36 454.72a16 16 0 0 0 22.46-2.81l19.64-25.27a16 16 0 0 0-2.82-22.45zM309.91 207.76L224 141.36V112h117.83z\"]\n};\nvar faReply = {\n prefix: 'fas',\n iconName: 'reply',\n icon: [512, 512, [], \"f3e5\", \"M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z\"]\n};\nvar faReplyAll = {\n prefix: 'fas',\n iconName: 'reply-all',\n icon: [576, 512, [], \"f122\", \"M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z\"]\n};\nvar faRepublican = {\n prefix: 'fas',\n iconName: 'republican',\n icon: [640, 512, [], \"f75e\", \"M544 192c0-88.4-71.6-160-160-160H160C71.6 32 0 103.6 0 192v64h544v-64zm-367.7-21.6l-19.8 19.3 4.7 27.3c.8 4.9-4.3 8.6-8.7 6.3L128 210.4l-24.5 12.9c-4.3 2.3-9.5-1.4-8.7-6.3l4.7-27.3-19.8-19.3c-3.6-3.5-1.6-9.5 3.3-10.2l27.4-4 12.2-24.8c2.2-4.5 8.6-4.4 10.7 0l12.2 24.8 27.4 4c5 .7 6.9 6.7 3.4 10.2zm144 0l-19.8 19.3 4.7 27.3c.8 4.9-4.3 8.6-8.7 6.3L272 210.4l-24.5 12.9c-4.3 2.3-9.5-1.4-8.7-6.3l4.7-27.3-19.8-19.3c-3.6-3.5-1.6-9.5 3.3-10.2l27.4-4 12.2-24.8c2.2-4.5 8.6-4.4 10.7 0l12.2 24.8 27.4 4c5 .7 6.9 6.7 3.4 10.2zm144 0l-19.8 19.3 4.7 27.3c.8 4.9-4.3 8.6-8.7 6.3L416 210.4l-24.5 12.9c-4.3 2.3-9.5-1.4-8.7-6.3l4.7-27.3-19.8-19.3c-3.6-3.5-1.6-9.5 3.3-10.2l27.4-4 12.2-24.8c2.2-4.5 8.6-4.4 10.7 0l12.2 24.8 27.4 4c5 .7 6.9 6.7 3.4 10.2zM624 320h-32c-8.8 0-16 7.2-16 16v64c0 8.8-7.2 16-16 16s-16-7.2-16-16V288H0v176c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16v-80h192v80c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16V352h32v43.3c0 41.8 30 80.1 71.6 84.3 47.8 4.9 88.4-32.7 88.4-79.6v-64c0-8.8-7.2-16-16-16z\"]\n};\nvar faRestroom = {\n prefix: 'fas',\n iconName: 'restroom',\n icon: [640, 512, [], \"f7bd\", \"M128 128c35.3 0 64-28.7 64-64S163.3 0 128 0 64 28.7 64 64s28.7 64 64 64zm384 0c35.3 0 64-28.7 64-64S547.3 0 512 0s-64 28.7-64 64 28.7 64 64 64zm127.3 226.5l-45.6-185.8c-3.3-13.5-15.5-23-29.8-24.2-15 9.7-32.8 15.5-52 15.5-19.2 0-37-5.8-52-15.5-14.3 1.2-26.5 10.7-29.8 24.2l-45.6 185.8C381 369.6 393 384 409.2 384H464v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V384h54.8c16.2 0 28.2-14.4 24.5-29.5zM336 0h-32c-8.8 0-16 7.2-16 16v480c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zM180.1 144.4c-15 9.8-32.9 15.6-52.1 15.6-19.2 0-37.1-5.8-52.1-15.6C51.3 146.5 32 166.9 32 192v136c0 13.3 10.7 24 24 24h8v136c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V352h8c13.3 0 24-10.7 24-24V192c0-25.1-19.3-45.5-43.9-47.6z\"]\n};\nvar faRetweet = {\n prefix: 'fas',\n iconName: 'retweet',\n icon: [640, 512, [], \"f079\", \"M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z\"]\n};\nvar faRibbon = {\n prefix: 'fas',\n iconName: 'ribbon',\n icon: [448, 512, [], \"f4d6\", \"M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z\"]\n};\nvar faRing = {\n prefix: 'fas',\n iconName: 'ring',\n icon: [512, 512, [], \"f70b\", \"M256 64C110.06 64 0 125.91 0 208v98.13C0 384.48 114.62 448 256 448s256-63.52 256-141.87V208c0-82.09-110.06-144-256-144zm0 64c106.04 0 192 35.82 192 80 0 9.26-3.97 18.12-10.91 26.39C392.15 208.21 328.23 192 256 192s-136.15 16.21-181.09 42.39C67.97 226.12 64 217.26 64 208c0-44.18 85.96-80 192-80zM120.43 264.64C155.04 249.93 201.64 240 256 240s100.96 9.93 135.57 24.64C356.84 279.07 308.93 288 256 288s-100.84-8.93-135.57-23.36z\"]\n};\nvar faRoad = {\n prefix: 'fas',\n iconName: 'road',\n icon: [576, 512, [], \"f018\", \"M573.19 402.67l-139.79-320C428.43 71.29 417.6 64 405.68 64h-97.59l2.45 23.16c.5 4.72-3.21 8.84-7.96 8.84h-29.16c-4.75 0-8.46-4.12-7.96-8.84L267.91 64h-97.59c-11.93 0-22.76 7.29-27.73 18.67L2.8 402.67C-6.45 423.86 8.31 448 30.54 448h196.84l10.31-97.68c.86-8.14 7.72-14.32 15.91-14.32h68.8c8.19 0 15.05 6.18 15.91 14.32L348.62 448h196.84c22.23 0 36.99-24.14 27.73-45.33zM260.4 135.16a8 8 0 0 1 7.96-7.16h39.29c4.09 0 7.53 3.09 7.96 7.16l4.6 43.58c.75 7.09-4.81 13.26-11.93 13.26h-40.54c-7.13 0-12.68-6.17-11.93-13.26l4.59-43.58zM315.64 304h-55.29c-9.5 0-16.91-8.23-15.91-17.68l5.07-48c.86-8.14 7.72-14.32 15.91-14.32h45.15c8.19 0 15.05 6.18 15.91 14.32l5.07 48c1 9.45-6.41 17.68-15.91 17.68z\"]\n};\nvar faRobot = {\n prefix: 'fas',\n iconName: 'robot',\n icon: [640, 512, [], \"f544\", \"M32,224H64V416H32A31.96166,31.96166,0,0,1,0,384V256A31.96166,31.96166,0,0,1,32,224Zm512-48V448a64.06328,64.06328,0,0,1-64,64H160a64.06328,64.06328,0,0,1-64-64V176a79.974,79.974,0,0,1,80-80H288V32a32,32,0,0,1,64,0V96H464A79.974,79.974,0,0,1,544,176ZM264,256a40,40,0,1,0-40,40A39.997,39.997,0,0,0,264,256Zm-8,128H192v32h64Zm96,0H288v32h64ZM456,256a40,40,0,1,0-40,40A39.997,39.997,0,0,0,456,256Zm-8,128H384v32h64ZM640,256V384a31.96166,31.96166,0,0,1-32,32H576V224h32A31.96166,31.96166,0,0,1,640,256Z\"]\n};\nvar faRocket = {\n prefix: 'fas',\n iconName: 'rocket',\n icon: [512, 512, [], \"f135\", \"M505.12019,19.09375c-1.18945-5.53125-6.65819-11-12.207-12.1875C460.716,0,435.507,0,410.40747,0,307.17523,0,245.26909,55.20312,199.05238,128H94.83772c-16.34763.01562-35.55658,11.875-42.88664,26.48438L2.51562,253.29688A28.4,28.4,0,0,0,0,264a24.00867,24.00867,0,0,0,24.00582,24H127.81618l-22.47457,22.46875c-11.36521,11.36133-12.99607,32.25781,0,45.25L156.24582,406.625c11.15623,11.1875,32.15619,13.15625,45.27726,0l22.47457-22.46875V488a24.00867,24.00867,0,0,0,24.00581,24,28.55934,28.55934,0,0,0,10.707-2.51562l98.72834-49.39063c14.62888-7.29687,26.50776-26.5,26.50776-42.85937V312.79688c72.59753-46.3125,128.03493-108.40626,128.03493-211.09376C512.07526,76.5,512.07526,51.29688,505.12019,19.09375ZM384.04033,168A40,40,0,1,1,424.05,128,40.02322,40.02322,0,0,1,384.04033,168Z\"]\n};\nvar faRoute = {\n prefix: 'fas',\n iconName: 'route',\n icon: [512, 512, [], \"f4d7\", \"M416 320h-96c-17.6 0-32-14.4-32-32s14.4-32 32-32h96s96-107 96-160-43-96-96-96-96 43-96 96c0 25.5 22.2 63.4 45.3 96H320c-52.9 0-96 43.1-96 96s43.1 96 96 96h96c17.6 0 32 14.4 32 32s-14.4 32-32 32H185.5c-16 24.8-33.8 47.7-47.3 64H416c52.9 0 96-43.1 96-96s-43.1-96-96-96zm0-256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM96 256c-53 0-96 43-96 96s96 160 96 160 96-107 96-160-43-96-96-96zm0 128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faRss = {\n prefix: 'fas',\n iconName: 'rss',\n icon: [448, 512, [], \"f09e\", \"M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z\"]\n};\nvar faRssSquare = {\n prefix: 'fas',\n iconName: 'rss-square',\n icon: [448, 512, [], \"f143\", \"M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z\"]\n};\nvar faRubleSign = {\n prefix: 'fas',\n iconName: 'ruble-sign',\n icon: [384, 512, [], \"f158\", \"M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z\"]\n};\nvar faRuler = {\n prefix: 'fas',\n iconName: 'ruler',\n icon: [640, 512, [], \"f545\", \"M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z\"]\n};\nvar faRulerCombined = {\n prefix: 'fas',\n iconName: 'ruler-combined',\n icon: [512, 512, [], \"f546\", \"M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z\"]\n};\nvar faRulerHorizontal = {\n prefix: 'fas',\n iconName: 'ruler-horizontal',\n icon: [576, 512, [], \"f547\", \"M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z\"]\n};\nvar faRulerVertical = {\n prefix: 'fas',\n iconName: 'ruler-vertical',\n icon: [256, 512, [], \"f548\", \"M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z\"]\n};\nvar faRunning = {\n prefix: 'fas',\n iconName: 'running',\n icon: [416, 512, [], \"f70c\", \"M272 96c26.51 0 48-21.49 48-48S298.51 0 272 0s-48 21.49-48 48 21.49 48 48 48zM113.69 317.47l-14.8 34.52H32c-17.67 0-32 14.33-32 32s14.33 32 32 32h77.45c19.25 0 36.58-11.44 44.11-29.09l8.79-20.52-10.67-6.3c-17.32-10.23-30.06-25.37-37.99-42.61zM384 223.99h-44.03l-26.06-53.25c-12.5-25.55-35.45-44.23-61.78-50.94l-71.08-21.14c-28.3-6.8-57.77-.55-80.84 17.14l-39.67 30.41c-14.03 10.75-16.69 30.83-5.92 44.86s30.84 16.66 44.86 5.92l39.69-30.41c7.67-5.89 17.44-8 25.27-6.14l14.7 4.37-37.46 87.39c-12.62 29.48-1.31 64.01 26.3 80.31l84.98 50.17-27.47 87.73c-5.28 16.86 4.11 34.81 20.97 40.09 3.19 1 6.41 1.48 9.58 1.48 13.61 0 26.23-8.77 30.52-22.45l31.64-101.06c5.91-20.77-2.89-43.08-21.64-54.39l-61.24-36.14 31.31-78.28 20.27 41.43c8 16.34 24.92 26.89 43.11 26.89H384c17.67 0 32-14.33 32-32s-14.33-31.99-32-31.99z\"]\n};\nvar faRupeeSign = {\n prefix: 'fas',\n iconName: 'rupee-sign',\n icon: [320, 512, [], \"f156\", \"M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z\"]\n};\nvar faSadCry = {\n prefix: 'fas',\n iconName: 'sad-cry',\n icon: [496, 512, [], \"f5b3\", \"M248 8C111 8 0 119 0 256c0 90.1 48.2 168.7 120 212.1V288c0-8.8 7.2-16 16-16s16 7.2 16 16v196.7c29.5 12.4 62 19.3 96 19.3s66.5-6.9 96-19.3V288c0-8.8 7.2-16 16-16s16 7.2 16 16v180.1C447.8 424.7 496 346 496 256 496 119 385 8 248 8zm-65.5 216.5c-14.8-13.2-46.2-13.2-61 0L112 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c.8 5-1.7 10-6.1 12.4-5.8 3.1-11.2.7-13.7-1.6l-9.7-8.5zM248 416c-26.5 0-48-28.7-48-64s21.5-64 48-64 48 28.7 48 64-21.5 64-48 64zm149.8-181.5c-5.8 3.1-11.2.7-13.7-1.6l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S400 197 404 222.2c.6 4.9-1.8 9.9-6.2 12.3z\"]\n};\nvar faSadTear = {\n prefix: 'fas',\n iconName: 'sad-tear',\n icon: [496, 512, [], \"f5b4\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM152 416c-26.5 0-48-21-48-47 0-20 28.5-60.4 41.6-77.8 3.2-4.3 9.6-4.3 12.8 0C171.5 308.6 200 349 200 369c0 26-21.5 47-48 47zm16-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm170.2 154.2C315.8 367.4 282.9 352 248 352c-21.2 0-21.2-32 0-32 44.4 0 86.3 19.6 114.7 53.8 13.8 16.4-11.2 36.5-24.5 20.4z\"]\n};\nvar faSatellite = {\n prefix: 'fas',\n iconName: 'satellite',\n icon: [512, 512, [], \"f7bf\", \"M502.60969,310.04206l-96.70393,96.71625a31.88151,31.88151,0,0,1-45.00765,0L280.572,326.34115l-9.89231,9.90759a190.56343,190.56343,0,0,1-5.40716,168.52287c-4.50077,8.50115-16.39342,9.59505-23.20707,2.79725L134.54715,400.05428l-17.7999,17.79929c.70324,2.60972,1.60965,5.00067,1.60965,7.79793a32.00544,32.00544,0,1,1-32.00544-32.00434c2.79735,0,5.18838.90637,7.7982,1.60959l17.7999-17.79929L4.43129,269.94287c-6.798-6.81342-5.70409-18.6119,2.79735-23.20627a190.58161,190.58161,0,0,1,168.52864-5.407l9.79854-9.79821-80.31053-80.41716a32.002,32.002,0,0,1,0-45.09987L201.96474,9.29814A31.62639,31.62639,0,0,1,224.46868,0a31.99951,31.99951,0,0,1,22.59759,9.29814l80.32615,80.30777,47.805-47.89713a33.6075,33.6075,0,0,1,47.50808,0l47.50807,47.50645a33.63308,33.63308,0,0,1,0,47.50644l-47.805,47.89713L502.71908,265.036A31.78938,31.78938,0,0,1,502.60969,310.04206ZM219.56159,197.433l73.82505-73.82252-68.918-68.9-73.80942,73.80689Zm237.74352,90.106-68.90233-68.9156-73.825,73.82252,68.918,68.9Z\"]\n};\nvar faSatelliteDish = {\n prefix: 'fas',\n iconName: 'satellite-dish',\n icon: [512, 512, [], \"f7c0\", \"M305.44954,462.59c7.39157,7.29792,6.18829,20.09661-3.00038,25.00356-77.713,41.80281-176.72559,29.9105-242.34331-35.7082C-5.49624,386.28227-17.404,287.362,24.41381,209.554c4.89125-9.095,17.68975-10.29834,25.00318-3.00043L166.22872,323.36708l27.39411-27.39452c-.68759-2.60974-1.594-5.00071-1.594-7.81361a32.00407,32.00407,0,1,1,32.00407,32.00455c-2.79723,0-5.20378-.89075-7.79786-1.594l-27.40974,27.41015ZM511.9758,303.06732a16.10336,16.10336,0,0,1-16.002,17.00242H463.86031a15.96956,15.96956,0,0,1-15.89265-15.00213C440.46671,175.5492,336.45348,70.53427,207.03078,63.53328a15.84486,15.84486,0,0,1-15.00191-15.90852V16.02652A16.09389,16.09389,0,0,1,209.031.02425C372.25491,8.61922,503.47472,139.841,511.9758,303.06732Zm-96.01221-.29692a16.21093,16.21093,0,0,1-16.11142,17.29934H367.645a16.06862,16.06862,0,0,1-15.89265-14.70522c-6.90712-77.01094-68.118-138.91037-144.92467-145.22376a15.94,15.94,0,0,1-14.79876-15.89289V112.13393a16.134,16.134,0,0,1,17.29908-16.096C319.45132,104.5391,407.55627,192.64538,415.96359,302.7704Z\"]\n};\nvar faSave = {\n prefix: 'fas',\n iconName: 'save',\n icon: [448, 512, [], \"f0c7\", \"M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z\"]\n};\nvar faSchool = {\n prefix: 'fas',\n iconName: 'school',\n icon: [640, 512, [], \"f549\", \"M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z\"]\n};\nvar faScrewdriver = {\n prefix: 'fas',\n iconName: 'screwdriver',\n icon: [512, 512, [], \"f54a\", \"M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z\"]\n};\nvar faScroll = {\n prefix: 'fas',\n iconName: 'scroll',\n icon: [640, 512, [], \"f70e\", \"M48 0C21.53 0 0 21.53 0 48v64c0 8.84 7.16 16 16 16h80V48C96 21.53 74.47 0 48 0zm208 412.57V352h288V96c0-52.94-43.06-96-96-96H111.59C121.74 13.41 128 29.92 128 48v368c0 38.87 34.65 69.65 74.75 63.12C234.22 474 256 444.46 256 412.57zM288 384v32c0 52.93-43.06 96-96 96h336c61.86 0 112-50.14 112-112 0-8.84-7.16-16-16-16H288z\"]\n};\nvar faSdCard = {\n prefix: 'fas',\n iconName: 'sd-card',\n icon: [384, 512, [], \"f7c2\", \"M320 0H128L0 128v320c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zM160 160h-48V64h48v96zm80 0h-48V64h48v96zm80 0h-48V64h48v96z\"]\n};\nvar faSearch = {\n prefix: 'fas',\n iconName: 'search',\n icon: [512, 512, [], \"f002\", \"M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z\"]\n};\nvar faSearchDollar = {\n prefix: 'fas',\n iconName: 'search-dollar',\n icon: [512, 512, [], \"f688\", \"M505.04 442.66l-99.71-99.69c-4.5-4.5-10.6-7-17-7h-16.3c27.6-35.3 44-79.69 44-127.99C416.03 93.09 322.92 0 208.02 0S0 93.09 0 207.98s93.11 207.98 208.02 207.98c48.3 0 92.71-16.4 128.01-44v16.3c0 6.4 2.5 12.5 7 17l99.71 99.69c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.59.1-33.99zm-297.02-90.7c-79.54 0-144-64.34-144-143.98 0-79.53 64.35-143.98 144-143.98 79.54 0 144 64.34 144 143.98 0 79.53-64.35 143.98-144 143.98zm27.11-152.54l-45.01-13.5c-5.16-1.55-8.77-6.78-8.77-12.73 0-7.27 5.3-13.19 11.8-13.19h28.11c4.56 0 8.96 1.29 12.82 3.72 3.24 2.03 7.36 1.91 10.13-.73l11.75-11.21c3.53-3.37 3.33-9.21-.57-12.14-9.1-6.83-20.08-10.77-31.37-11.35V112c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v16.12c-23.63.63-42.68 20.55-42.68 45.07 0 19.97 12.99 37.81 31.58 43.39l45.01 13.5c5.16 1.55 8.77 6.78 8.77 12.73 0 7.27-5.3 13.19-11.8 13.19h-28.1c-4.56 0-8.96-1.29-12.82-3.72-3.24-2.03-7.36-1.91-10.13.73l-11.75 11.21c-3.53 3.37-3.33 9.21.57 12.14 9.1 6.83 20.08 10.77 31.37 11.35V304c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-16.12c23.63-.63 42.68-20.54 42.68-45.07 0-19.97-12.99-37.81-31.59-43.39z\"]\n};\nvar faSearchLocation = {\n prefix: 'fas',\n iconName: 'search-location',\n icon: [512, 512, [], \"f689\", \"M505.04 442.66l-99.71-99.69c-4.5-4.5-10.6-7-17-7h-16.3c27.6-35.3 44-79.69 44-127.99C416.03 93.09 322.92 0 208.02 0S0 93.09 0 207.98s93.11 207.98 208.02 207.98c48.3 0 92.71-16.4 128.01-44v16.3c0 6.4 2.5 12.5 7 17l99.71 99.69c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.59.1-33.99zm-297.02-90.7c-79.54 0-144-64.34-144-143.98 0-79.53 64.35-143.98 144-143.98 79.54 0 144 64.34 144 143.98 0 79.53-64.35 143.98-144 143.98zm.02-239.96c-40.78 0-73.84 33.05-73.84 73.83 0 32.96 48.26 93.05 66.75 114.86a9.24 9.24 0 0 0 14.18 0c18.49-21.81 66.75-81.89 66.75-114.86 0-40.78-33.06-73.83-73.84-73.83zm0 96c-13.26 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faSearchMinus = {\n prefix: 'fas',\n iconName: 'search-minus',\n icon: [512, 512, [], \"f010\", \"M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z\"]\n};\nvar faSearchPlus = {\n prefix: 'fas',\n iconName: 'search-plus',\n icon: [512, 512, [], \"f00e\", \"M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z\"]\n};\nvar faSeedling = {\n prefix: 'fas',\n iconName: 'seedling',\n icon: [512, 512, [], \"f4d8\", \"M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z\"]\n};\nvar faServer = {\n prefix: 'fas',\n iconName: 'server',\n icon: [512, 512, [], \"f233\", \"M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z\"]\n};\nvar faShapes = {\n prefix: 'fas',\n iconName: 'shapes',\n icon: [512, 512, [], \"f61f\", \"M128,256A128,128,0,1,0,256,384,128,128,0,0,0,128,256Zm379-54.86L400.07,18.29a37.26,37.26,0,0,0-64.14,0L229,201.14C214.76,225.52,232.58,256,261.09,256H474.91C503.42,256,521.24,225.52,507,201.14ZM480,288H320a32,32,0,0,0-32,32V480a32,32,0,0,0,32,32H480a32,32,0,0,0,32-32V320A32,32,0,0,0,480,288Z\"]\n};\nvar faShare = {\n prefix: 'fas',\n iconName: 'share',\n icon: [512, 512, [], \"f064\", \"M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z\"]\n};\nvar faShareAlt = {\n prefix: 'fas',\n iconName: 'share-alt',\n icon: [448, 512, [], \"f1e0\", \"M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z\"]\n};\nvar faShareAltSquare = {\n prefix: 'fas',\n iconName: 'share-alt-square',\n icon: [448, 512, [], \"f1e1\", \"M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z\"]\n};\nvar faShareSquare = {\n prefix: 'fas',\n iconName: 'share-square',\n icon: [576, 512, [], \"f14d\", \"M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z\"]\n};\nvar faShekelSign = {\n prefix: 'fas',\n iconName: 'shekel-sign',\n icon: [448, 512, [], \"f20b\", \"M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z\"]\n};\nvar faShieldAlt = {\n prefix: 'fas',\n iconName: 'shield-alt',\n icon: [512, 512, [], \"f3ed\", \"M466.5 83.7l-192-80a48.15 48.15 0 0 0-36.9 0l-192 80C27.7 91.1 16 108.6 16 128c0 198.5 114.5 335.7 221.5 380.3 11.8 4.9 25.1 4.9 36.9 0C360.1 472.6 496 349.3 496 128c0-19.4-11.7-36.9-29.5-44.3zM256.1 446.3l-.1-381 175.9 73.3c-3.3 151.4-82.1 261.1-175.8 307.7z\"]\n};\nvar faShieldVirus = {\n prefix: 'fas',\n iconName: 'shield-virus',\n icon: [512, 512, [], \"e06c\", \"M224,192a16,16,0,1,0,16,16A16,16,0,0,0,224,192ZM466.5,83.68l-192-80A57.4,57.4,0,0,0,256.05,0a57.4,57.4,0,0,0-18.46,3.67l-192,80A47.93,47.93,0,0,0,16,128C16,326.5,130.5,463.72,237.5,508.32a48.09,48.09,0,0,0,36.91,0C360.09,472.61,496,349.3,496,128A48,48,0,0,0,466.5,83.68ZM384,256H371.88c-28.51,0-42.79,34.47-22.63,54.63l8.58,8.57a16,16,0,1,1-22.63,22.63l-8.57-8.58C306.47,313.09,272,327.37,272,355.88V368a16,16,0,0,1-32,0V355.88c0-28.51-34.47-42.79-54.63-22.63l-8.57,8.58a16,16,0,0,1-22.63-22.63l8.58-8.57c20.16-20.16,5.88-54.63-22.63-54.63H128a16,16,0,0,1,0-32h12.12c28.51,0,42.79-34.47,22.63-54.63l-8.58-8.57a16,16,0,0,1,22.63-22.63l8.57,8.58c20.16,20.16,54.63,5.88,54.63-22.63V112a16,16,0,0,1,32,0v12.12c0,28.51,34.47,42.79,54.63,22.63l8.57-8.58a16,16,0,0,1,22.63,22.63l-8.58,8.57C329.09,189.53,343.37,224,371.88,224H384a16,16,0,0,1,0,32Zm-96,0a16,16,0,1,0,16,16A16,16,0,0,0,288,256Z\"]\n};\nvar faShip = {\n prefix: 'fas',\n iconName: 'ship',\n icon: [640, 512, [], \"f21a\", \"M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z\"]\n};\nvar faShippingFast = {\n prefix: 'fas',\n iconName: 'shipping-fast',\n icon: [640, 512, [], \"f48b\", \"M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z\"]\n};\nvar faShoePrints = {\n prefix: 'fas',\n iconName: 'shoe-prints',\n icon: [640, 512, [], \"f54b\", \"M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z\"]\n};\nvar faShoppingBag = {\n prefix: 'fas',\n iconName: 'shopping-bag',\n icon: [448, 512, [], \"f290\", \"M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z\"]\n};\nvar faShoppingBasket = {\n prefix: 'fas',\n iconName: 'shopping-basket',\n icon: [576, 512, [], \"f291\", \"M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z\"]\n};\nvar faShoppingCart = {\n prefix: 'fas',\n iconName: 'shopping-cart',\n icon: [576, 512, [], \"f07a\", \"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\"]\n};\nvar faShower = {\n prefix: 'fas',\n iconName: 'shower',\n icon: [512, 512, [], \"f2cc\", \"M304,320a16,16,0,1,0,16,16A16,16,0,0,0,304,320Zm32-96a16,16,0,1,0,16,16A16,16,0,0,0,336,224Zm32,64a16,16,0,1,0-16-16A16,16,0,0,0,368,288Zm-32,32a16,16,0,1,0-16-16A16,16,0,0,0,336,320Zm-32-64a16,16,0,1,0,16,16A16,16,0,0,0,304,256Zm128-32a16,16,0,1,0-16-16A16,16,0,0,0,432,224Zm-48,16a16,16,0,1,0,16-16A16,16,0,0,0,384,240Zm-16-48a16,16,0,1,0,16,16A16,16,0,0,0,368,192Zm96,32a16,16,0,1,0,16,16A16,16,0,0,0,464,224Zm32-32a16,16,0,1,0,16,16A16,16,0,0,0,496,192Zm-64,64a16,16,0,1,0,16,16A16,16,0,0,0,432,256Zm-32,32a16,16,0,1,0,16,16A16,16,0,0,0,400,288Zm-64,64a16,16,0,1,0,16,16A16,16,0,0,0,336,352Zm-32,32a16,16,0,1,0,16,16A16,16,0,0,0,304,384Zm64-64a16,16,0,1,0,16,16A16,16,0,0,0,368,320Zm21.65-218.35-11.3-11.31a16,16,0,0,0-22.63,0L350.05,96A111.19,111.19,0,0,0,272,64c-19.24,0-37.08,5.3-52.9,13.85l-10-10A121.72,121.72,0,0,0,123.44,32C55.49,31.5,0,92.91,0,160.85V464a16,16,0,0,0,16,16H48a16,16,0,0,0,16-16V158.4c0-30.15,21-58.2,51-61.93a58.38,58.38,0,0,1,48.93,16.67l10,10C165.3,138.92,160,156.76,160,176a111.23,111.23,0,0,0,32,78.05l-5.66,5.67a16,16,0,0,0,0,22.62l11.3,11.31a16,16,0,0,0,22.63,0L389.65,124.28A16,16,0,0,0,389.65,101.65Z\"]\n};\nvar faShuttleVan = {\n prefix: 'fas',\n iconName: 'shuttle-van',\n icon: [640, 512, [], \"f5b6\", \"M628.88 210.65L494.39 49.27A48.01 48.01 0 0 0 457.52 32H32C14.33 32 0 46.33 0 64v288c0 17.67 14.33 32 32 32h32c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h32c17.67 0 32-14.33 32-32V241.38c0-11.23-3.94-22.1-11.12-30.73zM64 192V96h96v96H64zm96 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm160-240h-96V96h96v96zm160 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-96-240V96h66.02l80 96H384z\"]\n};\nvar faSign = {\n prefix: 'fas',\n iconName: 'sign',\n icon: [512, 512, [], \"f4d9\", \"M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z\"]\n};\nvar faSignInAlt = {\n prefix: 'fas',\n iconName: 'sign-in-alt',\n icon: [512, 512, [], \"f2f6\", \"M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z\"]\n};\nvar faSignLanguage = {\n prefix: 'fas',\n iconName: 'sign-language',\n icon: [448, 512, [], \"f2a7\", \"M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z\"]\n};\nvar faSignOutAlt = {\n prefix: 'fas',\n iconName: 'sign-out-alt',\n icon: [512, 512, [], \"f2f5\", \"M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z\"]\n};\nvar faSignal = {\n prefix: 'fas',\n iconName: 'signal',\n icon: [640, 512, [], \"f012\", \"M216 288h-48c-8.84 0-16 7.16-16 16v192c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V304c0-8.84-7.16-16-16-16zM88 384H40c-8.84 0-16 7.16-16 16v96c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16v-96c0-8.84-7.16-16-16-16zm256-192h-48c-8.84 0-16 7.16-16 16v288c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V208c0-8.84-7.16-16-16-16zm128-96h-48c-8.84 0-16 7.16-16 16v384c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112c0-8.84-7.16-16-16-16zM600 0h-48c-8.84 0-16 7.16-16 16v480c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z\"]\n};\nvar faSignature = {\n prefix: 'fas',\n iconName: 'signature',\n icon: [640, 512, [], \"f5b7\", \"M623.2 192c-51.8 3.5-125.7 54.7-163.1 71.5-29.1 13.1-54.2 24.4-76.1 24.4-22.6 0-26-16.2-21.3-51.9 1.1-8 11.7-79.2-42.7-76.1-25.1 1.5-64.3 24.8-169.5 126L192 182.2c30.4-75.9-53.2-151.5-129.7-102.8L7.4 116.3C0 121-2.2 130.9 2.5 138.4l17.2 27c4.7 7.5 14.6 9.7 22.1 4.9l58-38.9c18.4-11.7 40.7 7.2 32.7 27.1L34.3 404.1C27.5 421 37 448 64 448c8.3 0 16.5-3.2 22.6-9.4 42.2-42.2 154.7-150.7 211.2-195.8-2.2 28.5-2.1 58.9 20.6 83.8 15.3 16.8 37.3 25.3 65.5 25.3 35.6 0 68-14.6 102.3-30 33-14.8 99-62.6 138.4-65.8 8.5-.7 15.2-7.3 15.2-15.8v-32.1c.2-9.1-7.5-16.8-16.6-16.2z\"]\n};\nvar faSimCard = {\n prefix: 'fas',\n iconName: 'sim-card',\n icon: [384, 512, [], \"f7c4\", \"M0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V128L256 0H64C28.7 0 0 28.7 0 64zm224 192h-64v-64h64v64zm96 0h-64v-64h32c17.7 0 32 14.3 32 32v32zm-64 128h64v32c0 17.7-14.3 32-32 32h-32v-64zm-96 0h64v64h-64v-64zm-96 0h64v64H96c-17.7 0-32-14.3-32-32v-32zm0-96h256v64H64v-64zm0-64c0-17.7 14.3-32 32-32h32v64H64v-32z\"]\n};\nvar faSink = {\n prefix: 'fas',\n iconName: 'sink',\n icon: [512, 512, [], \"e06d\", \"M32,416a96,96,0,0,0,96,96H384a96,96,0,0,0,96-96V384H32ZM496,288H400V256h64a16,16,0,0,0,16-16V224a16,16,0,0,0-16-16H384a32,32,0,0,0-32,32v48H288V96a32,32,0,0,1,64,0v16a16,16,0,0,0,16,16h32a16,16,0,0,0,16-16V96A96.16,96.16,0,0,0,300.87,1.86C255.29,10.71,224,53.36,224,99.79V288H160V240a32,32,0,0,0-32-32H48a16,16,0,0,0-16,16v16a16,16,0,0,0,16,16h64v32H16A16,16,0,0,0,0,304v32a16,16,0,0,0,16,16H496a16,16,0,0,0,16-16V304A16,16,0,0,0,496,288Z\"]\n};\nvar faSitemap = {\n prefix: 'fas',\n iconName: 'sitemap',\n icon: [640, 512, [], \"f0e8\", \"M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z\"]\n};\nvar faSkating = {\n prefix: 'fas',\n iconName: 'skating',\n icon: [448, 512, [], \"f7c5\", \"M400 0c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm0 448c-8.8 0-16 7.2-16 16s-7.2 16-16 16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c26.5 0 48-21.5 48-48 0-8.8-7.2-16-16-16zm-282.2 8.6c-6.2 6.2-16.4 6.3-22.6 0l-67.9-67.9c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l67.9 67.9c9.4 9.4 21.7 14 34 14s24.6-4.7 33.9-14c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.3-22.7 0zm56.1-179.8l-93.7 93.7c-12.5 12.5-12.5 32.8 0 45.2 6.2 6.2 14.4 9.4 22.6 9.4s16.4-3.1 22.6-9.4l91.9-91.9-30.2-30.2c-5-5-9.4-10.7-13.2-16.8zM128 160h105.5l-20.1 17.2c-13.5 11.5-21.6 28.4-22.3 46.1-.7 17.8 6.1 35.2 18.7 47.7l78.2 78.2V432c0 17.7 14.3 32 32 32s32-14.3 32-32v-89.4c0-12.6-5.1-25-14.1-33.9l-61-61c.5-.4 1.2-.6 1.7-1.1l82.3-82.3c11.5-11.5 14.9-28.6 8.7-43.6-6.2-15-20.7-24.7-37-24.7H128c-17.7 0-32 14.3-32 32s14.3 32 32 32z\"]\n};\nvar faSkiing = {\n prefix: 'fas',\n iconName: 'skiing',\n icon: [512, 512, [], \"f7c9\", \"M432 96c26.5 0 48-21.5 48-48S458.5 0 432 0s-48 21.5-48 48 21.5 48 48 48zm73 356.1c-9.4-9.4-24.6-9.4-33.9 0-12.1 12.1-30.5 15.4-45.1 8.7l-135.8-70.2 49.2-73.8c12.7-19 10.2-44.5-6-60.6L293 215.7l-107-53.1c-2.9 19.9 3.4 40 17.7 54.4l75.1 75.2-45.9 68.8L35 258.7c-11.7-6-26.2-1.5-32.3 10.3-6.1 11.8-1.5 26.3 10.3 32.3l391.9 202.5c11.9 5.5 24.5 8.1 37.1 8.1 23.2 0 46-9 63-26 9.3-9.3 9.3-24.5 0-33.8zM120 91.6l-11.5 22.5c14.4 7.3 31.2 4.9 42.8-4.8l47.2 23.4c-.1.1-.1.2-.2.3l114.5 56.8 32.4-13 6.4 19.1c4 12.1 12.6 22 24 27.7l58.1 29c15.9 7.9 35 1.5 42.9-14.3 7.9-15.8 1.5-35-14.3-42.9l-52.1-26.1-17.1-51.2c-8.1-24.2-40.9-56.6-84.5-39.2l-81.2 32.5-62.5-31c.3-14.5-7.2-28.6-20.9-35.6l-11.1 21.7h-.2l-34.4-7c-1.8-.4-3.7.2-5 1.7-1.9 2.2-1.7 5.5.5 7.4l26.2 23z\"]\n};\nvar faSkiingNordic = {\n prefix: 'fas',\n iconName: 'skiing-nordic',\n icon: [576, 512, [], \"f7ca\", \"M336 96c26.5 0 48-21.5 48-48S362.5 0 336 0s-48 21.5-48 48 21.5 48 48 48zm216 320c-13.2 0-24 10.7-24 24 0 13.2-10.8 24-24 24h-69.5L460 285.6c11.7-4.7 20.1-16.2 20.1-29.6 0-17.7-14.3-32-32-32h-44L378 170.8c-12.5-25.5-35.5-44.2-61.8-50.9L245 98.7c-28.3-6.8-57.8-.5-80.8 17.1l-39.7 30.4c-14 10.7-16.7 30.8-5.9 44.9.7.9 1.7 1.3 2.4 2.1L66.9 464H24c-13.2 0-24 10.7-24 24s10.8 24 24 24h480c39.7 0 72-32.3 72-72 0-13.2-10.8-24-24-24zm-260.5 48h-96.9l43.1-91-22-13c-12.1-7.2-21.9-16.9-29.5-27.8L123.7 464H99.5l52.3-261.4c4.1-1 8.1-2.9 11.7-5.6l39.7-30.4c7.7-5.9 17.4-8 25.3-6.1l14.7 4.4-37.5 87.4c-12.6 29.5-1.3 64 26.3 80.3l85 50.2-25.5 81.2zm110.6 0h-43.6l23.6-75.5c5.9-20.8-2.9-43.1-21.6-54.4L299.3 298l31.3-78.3 20.3 41.4c8 16.3 24.9 26.9 43.1 26.9h33.3l-25.2 176z\"]\n};\nvar faSkull = {\n prefix: 'fas',\n iconName: 'skull',\n icon: [512, 512, [], \"f54c\", \"M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z\"]\n};\nvar faSkullCrossbones = {\n prefix: 'fas',\n iconName: 'skull-crossbones',\n icon: [448, 512, [], \"f714\", \"M439.15 453.06L297.17 384l141.99-69.06c7.9-3.95 11.11-13.56 7.15-21.46L432 264.85c-3.95-7.9-13.56-11.11-21.47-7.16L224 348.41 37.47 257.69c-7.9-3.95-17.51-.75-21.47 7.16L1.69 293.48c-3.95 7.9-.75 17.51 7.15 21.46L150.83 384 8.85 453.06c-7.9 3.95-11.11 13.56-7.15 21.47l14.31 28.63c3.95 7.9 13.56 11.11 21.47 7.15L224 419.59l186.53 90.72c7.9 3.95 17.51.75 21.47-7.15l14.31-28.63c3.95-7.91.74-17.52-7.16-21.47zM150 237.28l-5.48 25.87c-2.67 12.62 5.42 24.85 16.45 24.85h126.08c11.03 0 19.12-12.23 16.45-24.85l-5.5-25.87c41.78-22.41 70-62.75 70-109.28C368 57.31 303.53 0 224 0S80 57.31 80 128c0 46.53 28.22 86.87 70 109.28zM280 112c17.65 0 32 14.35 32 32s-14.35 32-32 32-32-14.35-32-32 14.35-32 32-32zm-112 0c17.65 0 32 14.35 32 32s-14.35 32-32 32-32-14.35-32-32 14.35-32 32-32z\"]\n};\nvar faSlash = {\n prefix: 'fas',\n iconName: 'slash',\n icon: [640, 512, [], \"f715\", \"M594.53 508.63L6.18 53.9c-6.97-5.42-8.23-15.47-2.81-22.45L23.01 6.18C28.43-.8 38.49-2.06 45.47 3.37L633.82 458.1c6.97 5.42 8.23 15.47 2.81 22.45l-19.64 25.27c-5.42 6.98-15.48 8.23-22.46 2.81z\"]\n};\nvar faSleigh = {\n prefix: 'fas',\n iconName: 'sleigh',\n icon: [640, 512, [], \"f7cc\", \"M612.7 350.7l-9.3-7.4c-6.9-5.5-17-4.4-22.5 2.5l-10 12.5c-5.5 6.9-4.4 17 2.5 22.5l9.3 7.4c5.9 4.7 9.2 11.7 9.2 19.2 0 13.6-11 24.6-24.6 24.6H48c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h516c39 0 73.7-29.3 75.9-68.3 1.4-23.8-8.7-46.3-27.2-61zM32 224c0 59.6 40.9 109.2 96 123.5V400h64v-48h192v48h64v-48c53 0 96-43 96-96v-96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-96v64c0 35.3-28.7 64-64 64h-20.7c-65.8 0-125.9-37.2-155.3-96-29.4-58.8-89.6-96-155.3-96H32C14.3 32 0 46.3 0 64s14.3 32 32 32v128z\"]\n};\nvar faSlidersH = {\n prefix: 'fas',\n iconName: 'sliders-h',\n icon: [512, 512, [], \"f1de\", \"M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z\"]\n};\nvar faSmile = {\n prefix: 'fas',\n iconName: 'smile',\n icon: [496, 512, [], \"f118\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z\"]\n};\nvar faSmileBeam = {\n prefix: 'fas',\n iconName: 'smile-beam',\n icon: [496, 512, [], \"f5b8\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM112 223.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zm250.8 122.8C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.3 24.6 20.5zm6.2-118.3l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.6 8.6-11 11.9-15.1 4.5z\"]\n};\nvar faSmileWink = {\n prefix: 'fas',\n iconName: 'smile-wink',\n icon: [496, 512, [], \"f4da\", \"M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm158.5 16.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.7 11.1-11.4 18.3-19.8 10.8l-9.7-8.5zM157.8 325.8C180.2 352.7 213 368 248 368s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.2 24.6 20.5C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11.2-36.7 24.6-20.4z\"]\n};\nvar faSmog = {\n prefix: 'fas',\n iconName: 'smog',\n icon: [640, 512, [], \"f75f\", \"M624 368H80c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zm-480 96H16c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h128c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zm416 0H224c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h336c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zM144 288h156.1c22.5 19.7 51.6 32 83.9 32s61.3-12.3 83.9-32H528c61.9 0 112-50.1 112-112S589.9 64 528 64c-18 0-34.7 4.6-49.7 12.1C454 31 406.8 0 352 0c-41 0-77.8 17.3-104 44.8C221.8 17.3 185 0 144 0 64.5 0 0 64.5 0 144s64.5 144 144 144z\"]\n};\nvar faSmoking = {\n prefix: 'fas',\n iconName: 'smoking',\n icon: [640, 512, [], \"f48d\", \"M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z\"]\n};\nvar faSmokingBan = {\n prefix: 'fas',\n iconName: 'smoking-ban',\n icon: [512, 512, [], \"f54d\", \"M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z\"]\n};\nvar faSms = {\n prefix: 'fas',\n iconName: 'sms',\n icon: [512, 512, [], \"f7cd\", \"M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7 1.3 3 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128.2 304H116c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h12.3c6 0 10.4-3.5 10.4-6.6 0-1.3-.8-2.7-2.1-3.8l-21.9-18.8c-8.5-7.2-13.3-17.5-13.3-28.1 0-21.3 19-38.6 42.4-38.6H156c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8h-12.3c-6 0-10.4 3.5-10.4 6.6 0 1.3.8 2.7 2.1 3.8l21.9 18.8c8.5 7.2 13.3 17.5 13.3 28.1.1 21.3-19 38.6-42.4 38.6zm191.8-8c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8v-68.2l-24.8 55.8c-2.9 5.9-11.4 5.9-14.3 0L224 227.8V296c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V192c0-8.8 7.2-16 16-16h16c6.1 0 11.6 3.4 14.3 8.8l17.7 35.4 17.7-35.4c2.7-5.4 8.3-8.8 14.3-8.8h16c8.8 0 16 7.2 16 16v104zm48.3 8H356c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h12.3c6 0 10.4-3.5 10.4-6.6 0-1.3-.8-2.7-2.1-3.8l-21.9-18.8c-8.5-7.2-13.3-17.5-13.3-28.1 0-21.3 19-38.6 42.4-38.6H396c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8h-12.3c-6 0-10.4 3.5-10.4 6.6 0 1.3.8 2.7 2.1 3.8l21.9 18.8c8.5 7.2 13.3 17.5 13.3 28.1.1 21.3-18.9 38.6-42.3 38.6z\"]\n};\nvar faSnowboarding = {\n prefix: 'fas',\n iconName: 'snowboarding',\n icon: [512, 512, [], \"f7ce\", \"M432 96c26.5 0 48-21.5 48-48S458.5 0 432 0s-48 21.5-48 48 21.5 48 48 48zm28.8 153.6c5.8 4.3 12.5 6.4 19.2 6.4 9.7 0 19.3-4.4 25.6-12.8 10.6-14.1 7.8-34.2-6.4-44.8l-111.4-83.5c-13.8-10.3-29.1-18.4-45.4-23.8l-63.7-21.2-26.1-52.1C244.7 2 225.5-4.4 209.7 3.5c-15.8 7.9-22.2 27.1-14.3 42.9l29.1 58.1c5.7 11.4 15.6 19.9 27.7 24l16.4 5.5-41.2 20.6c-21.8 10.9-35.4 32.8-35.4 57.2v53.1l-74.1 24.7c-16.8 5.6-25.8 23.7-20.2 40.5 1.7 5.2 4.9 9.4 8.7 12.9l-38.7-14.1c-9.7-3.5-17.4-10.6-21.8-20-5.6-12-19.9-17.2-31.9-11.6s-17.2 19.9-11.6 31.9c9.8 21 27.1 36.9 48.9 44.8l364.8 132.7c9.7 3.5 19.7 5.3 29.7 5.3 12.5 0 24.9-2.7 36.5-8.2 12-5.6 17.2-19.9 11.6-31.9S474 454.7 462 460.3c-9.3 4.4-19.8 4.8-29.5 1.3l-90.8-33.1c8.7-4.1 15.6-11.8 17.8-21.9l21.9-102c3.9-18.2-3.2-37.2-18.1-48.4l-52-39 66-30.5 83.5 62.9zm-144.4 51.7l-19.7 92c-1.5 7.1-.1 13.9 2.8 20l-169.4-61.6c2.7-.2 5.4-.4 8-1.3l85-28.4c19.6-6.5 32.8-24.8 32.8-45.5V256l60.5 45.3z\"]\n};\nvar faSnowflake = {\n prefix: 'fas',\n iconName: 'snowflake',\n icon: [448, 512, [], \"f2dc\", \"M440.3 345.2l-33.8-19.5 26-7c8.2-2.2 13.1-10.7 10.9-18.9l-4-14.9c-2.2-8.2-10.7-13.1-18.9-10.9l-70.8 19-63.9-37 63.8-36.9 70.8 19c8.2 2.2 16.7-2.7 18.9-10.9l4-14.9c2.2-8.2-2.7-16.7-10.9-18.9l-26-7 33.8-19.5c7.4-4.3 9.9-13.7 5.7-21.1L430.4 119c-4.3-7.4-13.7-9.9-21.1-5.7l-33.8 19.5 7-26c2.2-8.2-2.7-16.7-10.9-18.9l-14.9-4c-8.2-2.2-16.7 2.7-18.9 10.9l-19 70.8-62.8 36.2v-77.5l53.7-53.7c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-6.2-6.2-16.4-6.2-22.6 0L256 56.4V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v40.4l-19.7-19.7c-6.2-6.2-16.4-6.2-22.6 0L138.3 48c-6.3 6.2-6.3 16.4 0 22.6l53.7 53.7v77.5l-62.8-36.2-19-70.8c-2.2-8.2-10.7-13.1-18.9-10.9l-14.9 4c-8.2 2.2-13.1 10.7-10.9 18.9l7 26-33.8-19.5c-7.4-4.3-16.8-1.7-21.1 5.7L2.1 145.7c-4.3 7.4-1.7 16.8 5.7 21.1l33.8 19.5-26 7c-8.3 2.2-13.2 10.7-11 19l4 14.9c2.2 8.2 10.7 13.1 18.9 10.9l70.8-19 63.8 36.9-63.8 36.9-70.8-19c-8.2-2.2-16.7 2.7-18.9 10.9l-4 14.9c-2.2 8.2 2.7 16.7 10.9 18.9l26 7-33.8 19.6c-7.4 4.3-9.9 13.7-5.7 21.1l15.5 26.8c4.3 7.4 13.7 9.9 21.1 5.7l33.8-19.5-7 26c-2.2 8.2 2.7 16.7 10.9 18.9l14.9 4c8.2 2.2 16.7-2.7 18.9-10.9l19-70.8 62.8-36.2v77.5l-53.7 53.7c-6.3 6.2-6.3 16.4 0 22.6l11.3 11.3c6.2 6.2 16.4 6.2 22.6 0l19.7-19.7V496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-40.4l19.7 19.7c6.2 6.2 16.4 6.2 22.6 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6L256 387.7v-77.5l62.8 36.2 19 70.8c2.2 8.2 10.7 13.1 18.9 10.9l14.9-4c8.2-2.2 13.1-10.7 10.9-18.9l-7-26 33.8 19.5c7.4 4.3 16.8 1.7 21.1-5.7l15.5-26.8c4.3-7.3 1.8-16.8-5.6-21z\"]\n};\nvar faSnowman = {\n prefix: 'fas',\n iconName: 'snowman',\n icon: [512, 512, [], \"f7d0\", \"M510.9 152.3l-5.9-14.5c-3.3-8-12.6-11.9-20.8-8.7L456 140.6v-29c0-8.6-7.2-15.6-16-15.6h-16c-8.8 0-16 7-16 15.6v46.9c0 .5.3 1 .3 1.5l-56.4 23c-5.9-10-13.3-18.9-22-26.6 13.6-16.6 22-37.4 22-60.5 0-53-43-96-96-96s-96 43-96 96c0 23.1 8.5 43.9 22 60.5-8.7 7.7-16 16.6-22 26.6l-56.4-23c.1-.5.3-1 .3-1.5v-46.9C104 103 96.8 96 88 96H72c-8.8 0-16 7-16 15.6v29l-28.1-11.5c-8.2-3.2-17.5.7-20.8 8.7l-5.9 14.5c-3.3 8 .7 17.1 8.9 20.3l135.2 55.2c-.4 4-1.2 8-1.2 12.2 0 10.1 1.7 19.6 4.2 28.9C120.9 296.4 104 334.2 104 376c0 54 28.4 100.9 70.8 127.8 9.3 5.9 20.3 8.2 31.3 8.2h99.2c13.3 0 26.3-4.1 37.2-11.7 46.5-32.3 74.4-89.4 62.9-152.6-5.5-30.2-20.5-57.6-41.6-79 2.5-9.2 4.2-18.7 4.2-28.7 0-4.2-.8-8.1-1.2-12.2L502 172.6c8.1-3.1 12.1-12.2 8.9-20.3zM224 96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 272c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-88s-16-23.2-16-32 7.2-16 16-16 16 7.2 16 16-16 32-16 32zm32-56c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z\"]\n};\nvar faSnowplow = {\n prefix: 'fas',\n iconName: 'snowplow',\n icon: [640, 512, [], \"f7d2\", \"M120 376c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm238.6 49.4c-14.5-14.5-22.6-34.1-22.6-54.6V269.2c0-20.5 8.1-40.1 22.6-54.6l36.7-36.7c6.2-6.2 6.2-16.4 0-22.6l-22.6-22.6c-6.2-6.2-16.4-6.2-22.6 0l-36.7 36.7c-26.5 26.5-41.4 62.4-41.4 99.9V288h-64v-50.9c0-8.7-1.8-17.2-5.2-25.2L364.5 29.1C356.9 11.4 339.6 0 320.3 0H176c-26.5 0-48 21.5-48 48v112h-16c-26.5 0-48 21.5-48 48v91.2C26.3 317.2 0 355.4 0 400c0 61.9 50.1 112 112 112h256c61.9 0 112-50.1 112-112 0-17.3-4.2-33.4-11.2-48H512v18.7c0 37.5 14.9 73.4 41.4 99.9l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0l22.6-22.6c6.2-6.2 6.2-16.4 0-22.6l-36.7-36.7zM192 64h117.8l68.6 160H256l-64-64V64zm176 384H112c-26.5 0-48-21.5-48-48s21.5-48 48-48h256c26.5 0 48 21.5 48 48s-21.5 48-48 48z\"]\n};\nvar faSoap = {\n prefix: 'fas',\n iconName: 'soap',\n icon: [512, 512, [], \"e06e\", \"M416,192a95.42,95.42,0,0,1-30.94,70.21A95.8,95.8,0,0,1,352,448H160a96,96,0,0,1,0-192h88.91A95.3,95.3,0,0,1,224,192H96A96,96,0,0,0,0,288V416a96,96,0,0,0,96,96H416a96,96,0,0,0,96-96V288A96,96,0,0,0,416,192Zm-96,64a64,64,0,1,0-64-64A64,64,0,0,0,320,256ZM208,96a48,48,0,1,0-48-48A48,48,0,0,0,208,96ZM384,64a32,32,0,1,0-32-32A32,32,0,0,0,384,64ZM160,288a64,64,0,0,0,0,128H352a64,64,0,0,0,0-128Z\"]\n};\nvar faSocks = {\n prefix: 'fas',\n iconName: 'socks',\n icon: [512, 512, [], \"f696\", \"M214.66 311.01L288 256V96H128v176l-86.65 64.61c-39.4 29.56-53.86 84.42-29.21 127.06C30.39 495.25 63.27 512 96.08 512c20.03 0 40.25-6.25 57.52-19.2l21.86-16.39c-29.85-55.38-13.54-125.84 39.2-165.4zM288 32c0-11.05 3.07-21.3 8.02-30.38C293.4.92 290.85 0 288 0H160c-17.67 0-32 14.33-32 32v32h160V32zM480 0H352c-17.67 0-32 14.33-32 32v32h192V32c0-17.67-14.33-32-32-32zM320 272l-86.13 64.61c-39.4 29.56-53.86 84.42-29.21 127.06 18.25 31.58 50.61 48.33 83.42 48.33 20.03 0 40.25-6.25 57.52-19.2l115.2-86.4A127.997 127.997 0 0 0 512 304V96H320v176z\"]\n};\nvar faSolarPanel = {\n prefix: 'fas',\n iconName: 'solar-panel',\n icon: [640, 512, [], \"f5ba\", \"M431.98 448.01l-47.97.05V416h-128v32.21l-47.98.05c-8.82.01-15.97 7.16-15.98 15.99l-.05 31.73c-.01 8.85 7.17 16.03 16.02 16.02l223.96-.26c8.82-.01 15.97-7.16 15.98-15.98l.04-31.73c.01-8.85-7.17-16.03-16.02-16.02zM585.2 26.74C582.58 11.31 568.99 0 553.06 0H86.93C71 0 57.41 11.31 54.79 26.74-3.32 369.16.04 348.08.03 352c-.03 17.32 14.29 32 32.6 32h574.74c18.23 0 32.51-14.56 32.59-31.79.02-4.08 3.35 16.95-54.76-325.47zM259.83 64h120.33l9.77 96H250.06l9.77-96zm-75.17 256H71.09L90.1 208h105.97l-11.41 112zm16.29-160H98.24l16.29-96h96.19l-9.77 96zm32.82 160l11.4-112h149.65l11.4 112H233.77zm195.5-256h96.19l16.29 96H439.04l-9.77-96zm26.06 256l-11.4-112H549.9l19.01 112H455.33z\"]\n};\nvar faSort = {\n prefix: 'fas',\n iconName: 'sort',\n icon: [320, 512, [], \"f0dc\", \"M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z\"]\n};\nvar faSortAlphaDown = {\n prefix: 'fas',\n iconName: 'sort-alpha-down',\n icon: [448, 512, [], \"f15d\", \"M176 352h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm240-64H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 446.37V464a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 321.63V304a16 16 0 0 0-16-16zm31.06-85.38l-59.27-160A16 16 0 0 0 372.72 32h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 224h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 224H432a16 16 0 0 0 15.06-21.38zM335.61 144L352 96l16.39 48z\"]\n};\nvar faSortAlphaDownAlt = {\n prefix: 'fas',\n iconName: 'sort-alpha-down-alt',\n icon: [448, 512, [], \"f881\", \"M176 352h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm112-128h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 65.63V48a16 16 0 0 0-16-16H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 190.37V208a16 16 0 0 0 16 16zm159.06 234.62l-59.27-160A16 16 0 0 0 372.72 288h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 480h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 480H432a16 16 0 0 0 15.06-21.38zM335.61 400L352 352l16.39 48z\"]\n};\nvar faSortAlphaUp = {\n prefix: 'fas',\n iconName: 'sort-alpha-up',\n icon: [448, 512, [], \"f15e\", \"M16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160zm400 128H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 446.37V464a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 321.63V304a16 16 0 0 0-16-16zm31.06-85.38l-59.27-160A16 16 0 0 0 372.72 32h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 224h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 224H432a16 16 0 0 0 15.06-21.38zM335.61 144L352 96l16.39 48z\"]\n};\nvar faSortAlphaUpAlt = {\n prefix: 'fas',\n iconName: 'sort-alpha-up-alt',\n icon: [448, 512, [], \"f882\", \"M16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160zm272 64h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 65.63V48a16 16 0 0 0-16-16H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 190.37V208a16 16 0 0 0 16 16zm159.06 234.62l-59.27-160A16 16 0 0 0 372.72 288h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 480h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 480H432a16 16 0 0 0 15.06-21.38zM335.61 400L352 352l16.39 48z\"]\n};\nvar faSortAmountDown = {\n prefix: 'fas',\n iconName: 'sort-amount-down',\n icon: [512, 512, [], \"f160\", \"M304 416h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-128-64h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.37 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm256-192H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-64 128H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM496 32H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faSortAmountDownAlt = {\n prefix: 'fas',\n iconName: 'sort-amount-down-alt',\n icon: [512, 512, [], \"f884\", \"M240 96h64a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm0 128h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm256 192H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-256-64h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm-64 0h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.37 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352z\"]\n};\nvar faSortAmountUp = {\n prefix: 'fas',\n iconName: 'sort-amount-up',\n icon: [512, 512, [], \"f161\", \"M304 416h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.77 160 16 160zm416 0H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-64 128H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM496 32H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faSortAmountUpAlt = {\n prefix: 'fas',\n iconName: 'sort-amount-up-alt',\n icon: [512, 512, [], \"f885\", \"M240 96h64a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm0 128h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm256 192H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-256-64h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zM16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.39-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160z\"]\n};\nvar faSortDown = {\n prefix: 'fas',\n iconName: 'sort-down',\n icon: [320, 512, [], \"f0dd\", \"M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z\"]\n};\nvar faSortNumericDown = {\n prefix: 'fas',\n iconName: 'sort-numeric-down',\n icon: [448, 512, [], \"f162\", \"M304 96h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-16V48a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 96zm26.15 162.91a79 79 0 0 0-55 54.17c-14.25 51.05 21.21 97.77 68.85 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.76 86.25-61.61 86.25-132V336c-.02-51.21-48.4-91.34-101.85-77.09zM352 356a20 20 0 1 1 20-20 20 20 0 0 1-20 20zm-176-4h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352z\"]\n};\nvar faSortNumericDownAlt = {\n prefix: 'fas',\n iconName: 'sort-numeric-down-alt',\n icon: [448, 512, [], \"f886\", \"M176 352h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm224 64h-16V304a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 352h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM330.17 34.91a79 79 0 0 0-55 54.17c-14.27 51.05 21.19 97.77 68.83 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.77 86.25-61.61 86.25-132V112c-.02-51.21-48.4-91.34-101.85-77.09zM352 132a20 20 0 1 1 20-20 20 20 0 0 1-20 20z\"]\n};\nvar faSortNumericUp = {\n prefix: 'fas',\n iconName: 'sort-numeric-up',\n icon: [448, 512, [], \"f163\", \"M330.17 258.91a79 79 0 0 0-55 54.17c-14.27 51.05 21.19 97.77 68.83 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.76 86.25-61.61 86.25-132V336c-.02-51.21-48.4-91.34-101.85-77.09zM352 356a20 20 0 1 1 20-20 20 20 0 0 1-20 20zM304 96h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-16V48a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 96zM107.31 36.69a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31z\"]\n};\nvar faSortNumericUpAlt = {\n prefix: 'fas',\n iconName: 'sort-numeric-up-alt',\n icon: [448, 512, [], \"f887\", \"M107.31 36.69a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31zM400 416h-16V304a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 352h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM330.17 34.91a79 79 0 0 0-55 54.17c-14.27 51.05 21.19 97.77 68.83 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.77 86.25-61.61 86.25-132V112c-.02-51.21-48.4-91.34-101.85-77.09zM352 132a20 20 0 1 1 20-20 20 20 0 0 1-20 20z\"]\n};\nvar faSortUp = {\n prefix: 'fas',\n iconName: 'sort-up',\n icon: [320, 512, [], \"f0de\", \"M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z\"]\n};\nvar faSpa = {\n prefix: 'fas',\n iconName: 'spa',\n icon: [576, 512, [], \"f5bb\", \"M568.25 192c-29.04.13-135.01 6.16-213.84 83-33.12 29.63-53.36 63.3-66.41 94.86-13.05-31.56-33.29-65.23-66.41-94.86-78.83-76.84-184.8-82.87-213.84-83-4.41-.02-7.79 3.4-7.75 7.82.23 27.92 7.14 126.14 88.77 199.3C172.79 480.94 256 480 288 480s115.19.95 199.23-80.88c81.64-73.17 88.54-171.38 88.77-199.3.04-4.42-3.34-7.84-7.75-7.82zM287.98 302.6c12.82-18.85 27.6-35.78 44.09-50.52 19.09-18.61 39.58-33.3 60.26-45.18-16.44-70.5-51.72-133.05-96.73-172.22-4.11-3.58-11.02-3.58-15.14 0-44.99 39.14-80.27 101.63-96.74 172.07 20.37 11.7 40.5 26.14 59.22 44.39a282.768 282.768 0 0 1 45.04 51.46z\"]\n};\nvar faSpaceShuttle = {\n prefix: 'fas',\n iconName: 'space-shuttle',\n icon: [640, 512, [], \"f197\", \"M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z\"]\n};\nvar faSpellCheck = {\n prefix: 'fas',\n iconName: 'spell-check',\n icon: [576, 512, [], \"f891\", \"M272 256h91.36c43.2 0 82-32.2 84.51-75.34a79.82 79.82 0 0 0-25.26-63.07 79.81 79.81 0 0 0 9.06-44.91C427.9 30.57 389.3 0 347 0h-75a16 16 0 0 0-16 16v224a16 16 0 0 0 16 16zm40-200h40a24 24 0 0 1 0 48h-40zm0 96h56a24 24 0 0 1 0 48h-56zM155.12 22.25A32 32 0 0 0 124.64 0H99.36a32 32 0 0 0-30.48 22.25L.59 235.73A16 16 0 0 0 16 256h24.93a16 16 0 0 0 15.42-11.73L68.29 208h87.42l11.94 36.27A16 16 0 0 0 183.07 256H208a16 16 0 0 0 15.42-20.27zM89.37 144L112 75.3l22.63 68.7zm482 132.48l-45.21-45.3a15.88 15.88 0 0 0-22.59 0l-151.5 151.5-55.41-55.5a15.88 15.88 0 0 0-22.59 0l-45.3 45.3a16 16 0 0 0 0 22.59l112 112.21a15.89 15.89 0 0 0 22.6 0l208-208.21a16 16 0 0 0-.02-22.59z\"]\n};\nvar faSpider = {\n prefix: 'fas',\n iconName: 'spider',\n icon: [576, 512, [], \"f717\", \"M151.17 167.35L177.1 176h4.67l5.22-26.12c.72-3.58 1.8-7.58 3.21-11.79l-20.29-40.58 23.8-71.39c2.79-8.38-1.73-17.44-10.12-20.24L168.42.82c-8.38-2.8-17.45 1.73-20.24 10.12l-25.89 77.68a32.04 32.04 0 0 0 1.73 24.43l27.15 54.3zm422.14 182.03l-52.75-79.12a32.002 32.002 0 0 0-26.62-14.25H416l68.99-24.36a32.03 32.03 0 0 0 16.51-12.61l53.6-80.41c4.9-7.35 2.91-17.29-4.44-22.19l-13.31-8.88c-7.35-4.9-17.29-2.91-22.19 4.44l-50.56 75.83L404.1 208H368l-10.37-51.85C355.44 145.18 340.26 96 288 96c-52.26 0-67.44 49.18-69.63 60.15L208 208h-36.1l-60.49-20.17L60.84 112c-4.9-7.35-14.83-9.34-22.19-4.44l-13.31 8.88c-7.35 4.9-9.34 14.83-4.44 22.19l53.6 80.41a32.03 32.03 0 0 0 16.51 12.61L160 256H82.06a32.02 32.02 0 0 0-26.63 14.25L2.69 349.38c-4.9 7.35-2.92 17.29 4.44 22.19l13.31 8.88c7.35 4.9 17.29 2.91 22.19-4.44l48-72h47.06l-60.83 97.33A31.988 31.988 0 0 0 72 418.3V496c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-73.11l74.08-118.53c-1.01 14.05-2.08 28.11-2.08 42.21C192 399.64 232.76 448 288 448s96-48.36 96-101.43c0-14.1-1.08-28.16-2.08-42.21L456 422.89V496c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-77.71c0-6-1.69-11.88-4.86-16.96L438.31 304h47.06l48 72c4.9 7.35 14.84 9.34 22.19 4.44l13.31-8.88c7.36-4.9 9.34-14.83 4.44-22.18zM406.09 97.51l-20.29 40.58c1.41 4.21 2.49 8.21 3.21 11.79l5.22 26.12h4.67l25.93-8.65 27.15-54.3a31.995 31.995 0 0 0 1.73-24.43l-25.89-77.68C425.03 2.56 415.96-1.98 407.58.82l-15.17 5.06c-8.38 2.8-12.91 11.86-10.12 20.24l23.8 71.39z\"]\n};\nvar faSpinner = {\n prefix: 'fas',\n iconName: 'spinner',\n icon: [512, 512, [], \"f110\", \"M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z\"]\n};\nvar faSplotch = {\n prefix: 'fas',\n iconName: 'splotch',\n icon: [512, 512, [], \"f5bc\", \"M472.29 195.89l-67.06-22.95c-19.28-6.6-33.54-20.92-38.14-38.3L351.1 74.19c-11.58-43.77-76.57-57.13-109.98-22.62l-46.14 47.67c-13.26 13.71-33.54 20.93-54.2 19.31l-71.88-5.62c-52.05-4.07-86.93 44.88-59.03 82.83l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24L24.62 355.4c-20.59 41.25 22.84 84.87 73.49 73.81l69.96-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101.04 7.57 104.45-37.22l4.7-61.86c1.35-17.79 12.8-33.86 30.63-42.99l62-31.74c44.88-22.96 39.59-80.17-8.95-96.79z\"]\n};\nvar faSprayCan = {\n prefix: 'fas',\n iconName: 'spray-can',\n icon: [512, 512, [], \"f5bd\", \"M224 32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96h128V32zm256 96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-256 32H96c-53.02 0-96 42.98-96 96v224c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V256c0-53.02-42.98-96-96-96zm-64 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zM480 96c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm-96 32c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-96-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 0c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 192c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z\"]\n};\nvar faSquare = {\n prefix: 'fas',\n iconName: 'square',\n icon: [448, 512, [], \"f0c8\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z\"]\n};\nvar faSquareFull = {\n prefix: 'fas',\n iconName: 'square-full',\n icon: [512, 512, [], \"f45c\", \"M512 512H0V0h512v512z\"]\n};\nvar faSquareRootAlt = {\n prefix: 'fas',\n iconName: 'square-root-alt',\n icon: [576, 512, [], \"f698\", \"M571.31 251.31l-22.62-22.62c-6.25-6.25-16.38-6.25-22.63 0L480 274.75l-46.06-46.06c-6.25-6.25-16.38-6.25-22.63 0l-22.62 22.62c-6.25 6.25-6.25 16.38 0 22.63L434.75 320l-46.06 46.06c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0L480 365.25l46.06 46.06c6.25 6.25 16.38 6.25 22.63 0l22.62-22.62c6.25-6.25 6.25-16.38 0-22.63L525.25 320l46.06-46.06c6.25-6.25 6.25-16.38 0-22.63zM552 0H307.65c-14.54 0-27.26 9.8-30.95 23.87l-84.79 322.8-58.41-106.1A32.008 32.008 0 0 0 105.47 224H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h43.62l88.88 163.73C168.99 503.5 186.3 512 204.94 512c17.27 0 44.44-9 54.28-41.48L357.03 96H552c13.25 0 24-10.75 24-24V24c0-13.26-10.75-24-24-24z\"]\n};\nvar faStamp = {\n prefix: 'fas',\n iconName: 'stamp',\n icon: [512, 512, [], \"f5bf\", \"M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z\"]\n};\nvar faStar = {\n prefix: 'fas',\n iconName: 'star',\n icon: [576, 512, [], \"f005\", \"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"]\n};\nvar faStarAndCrescent = {\n prefix: 'fas',\n iconName: 'star-and-crescent',\n icon: [512, 512, [], \"f699\", \"M340.47 466.36c-1.45 0-6.89.46-9.18.46-116.25 0-210.82-94.57-210.82-210.82S215.04 45.18 331.29 45.18c2.32 0 7.7.46 9.18.46 7.13 0 13.33-5.03 14.75-12.07 1.46-7.25-2.55-14.49-9.47-17.09C316.58 5.54 286.39 0 256 0 114.84 0 0 114.84 0 256s114.84 256 256 256c30.23 0 60.28-5.49 89.32-16.32 5.96-2.02 10.28-7.64 10.28-14.26 0-8.09-6.39-15.06-15.13-15.06zm162.99-252.5l-76.38-11.1-34.16-69.21c-1.83-3.7-5.38-5.55-8.93-5.55s-7.1 1.85-8.93 5.55l-34.16 69.21-76.38 11.1c-8.17 1.18-11.43 11.22-5.52 16.99l55.27 53.87-13.05 76.07c-1.11 6.44 4.01 11.66 9.81 11.66 1.53 0 3.11-.36 4.64-1.17L384 335.37l68.31 35.91c1.53.8 3.11 1.17 4.64 1.17 5.8 0 10.92-5.23 9.81-11.66l-13.05-76.07 55.27-53.87c5.91-5.77 2.65-15.81-5.52-16.99z\"]\n};\nvar faStarHalf = {\n prefix: 'fas',\n iconName: 'star-half',\n icon: [576, 512, [], \"f089\", \"M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z\"]\n};\nvar faStarHalfAlt = {\n prefix: 'fas',\n iconName: 'star-half-alt',\n icon: [536, 512, [], \"f5c0\", \"M508.55 171.51L362.18 150.2 296.77 17.81C290.89 5.98 279.42 0 267.95 0c-11.4 0-22.79 5.9-28.69 17.81l-65.43 132.38-146.38 21.29c-26.25 3.8-36.77 36.09-17.74 54.59l105.89 103-25.06 145.48C86.98 495.33 103.57 512 122.15 512c4.93 0 10-1.17 14.87-3.75l130.95-68.68 130.94 68.7c4.86 2.55 9.92 3.71 14.83 3.71 18.6 0 35.22-16.61 31.66-37.4l-25.03-145.49 105.91-102.98c19.04-18.5 8.52-50.8-17.73-54.6zm-121.74 123.2l-18.12 17.62 4.28 24.88 19.52 113.45-102.13-53.59-22.38-11.74.03-317.19 51.03 103.29 11.18 22.63 25.01 3.64 114.23 16.63-82.65 80.38z\"]\n};\nvar faStarOfDavid = {\n prefix: 'fas',\n iconName: 'star-of-david',\n icon: [464, 512, [], \"f69a\", \"M405.68 256l53.21-89.39C473.3 142.4 455.48 112 426.88 112H319.96l-55.95-93.98C256.86 6.01 244.43 0 232 0s-24.86 6.01-32.01 18.02L144.04 112H37.11c-28.6 0-46.42 30.4-32.01 54.61L58.32 256 5.1 345.39C-9.31 369.6 8.51 400 37.11 400h106.93l55.95 93.98C207.14 505.99 219.57 512 232 512s24.86-6.01 32.01-18.02L319.96 400h106.93c28.6 0 46.42-30.4 32.01-54.61L405.68 256zm-12.78-88l-19.8 33.26L353.3 168h39.6zm-52.39 88l-52.39 88H175.88l-52.39-88 52.38-88h112.25l52.39 88zM232 73.72L254.79 112h-45.57L232 73.72zM71.1 168h39.6l-19.8 33.26L71.1 168zm0 176l19.8-33.26L110.7 344H71.1zM232 438.28L209.21 400h45.57L232 438.28zM353.29 344l19.8-33.26L392.9 344h-39.61z\"]\n};\nvar faStarOfLife = {\n prefix: 'fas',\n iconName: 'star-of-life',\n icon: [480, 512, [], \"f621\", \"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"]\n};\nvar faStepBackward = {\n prefix: 'fas',\n iconName: 'step-backward',\n icon: [448, 512, [], \"f048\", \"M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z\"]\n};\nvar faStepForward = {\n prefix: 'fas',\n iconName: 'step-forward',\n icon: [448, 512, [], \"f051\", \"M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z\"]\n};\nvar faStethoscope = {\n prefix: 'fas',\n iconName: 'stethoscope',\n icon: [512, 512, [], \"f0f1\", \"M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z\"]\n};\nvar faStickyNote = {\n prefix: 'fas',\n iconName: 'sticky-note',\n icon: [448, 512, [], \"f249\", \"M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z\"]\n};\nvar faStop = {\n prefix: 'fas',\n iconName: 'stop',\n icon: [448, 512, [], \"f04d\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z\"]\n};\nvar faStopCircle = {\n prefix: 'fas',\n iconName: 'stop-circle',\n icon: [512, 512, [], \"f28d\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z\"]\n};\nvar faStopwatch = {\n prefix: 'fas',\n iconName: 'stopwatch',\n icon: [448, 512, [], \"f2f2\", \"M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z\"]\n};\nvar faStopwatch20 = {\n prefix: 'fas',\n iconName: 'stopwatch-20',\n icon: [448, 512, [], \"e06f\", \"M398.5,190.91l.59-.61,26.59-26.58a16,16,0,0,0,0-22.63L403,118.41a16,16,0,0,0-22.63,0l-24.68,24.68A206.68,206.68,0,0,0,256,98.5V64h32a16,16,0,0,0,16-16V16A16,16,0,0,0,288,0H160a16.05,16.05,0,0,0-16,16V48a16.05,16.05,0,0,0,16,16h32V98.5A207.92,207.92,0,0,0,16.09,297.57C12.64,411.5,106.76,510.22,220.72,512,337.13,513.77,432,420,432,304A206,206,0,0,0,398.5,190.91ZM204.37,377.55a8.2,8.2,0,0,1,8.32,8.07v22.31a8.2,8.2,0,0,1-8.32,8.07H121.52a16.46,16.46,0,0,1-16.61-17.62c2.78-35.22,14.67-57.41,38.45-91.37,20.42-29.19,27.1-37.32,27.1-62.34,0-16.92-1.79-24.27-12.21-24.27-9.39,0-12.69,7.4-12.69,22.68v5.23a8.2,8.2,0,0,1-8.33,8.07h-24.9a8.2,8.2,0,0,1-8.33-8.07v-4.07c0-27.3,8.48-60.24,56.43-60.24,43,0,55.57,25.85,55.57,61,0,35.58-12.44,51.21-34.35,81.31-11.56,15-24.61,35.57-26.41,51.2ZM344,352.32c0,35.16-12.3,63.68-57.23,63.68C243.19,416,232,386.48,232,352.55V247.22c0-40.73,19.58-63.22,56.2-63.22C325,184,344,206.64,344,245.3ZM287.87,221.73c-9.41,0-13.23,7.5-13.23,20V357.68c0,13.11,3.59,20.59,13.23,20.59s13-8,13-21.27V241.06C300.89,229.79,297.88,221.73,287.87,221.73Z\"]\n};\nvar faStore = {\n prefix: 'fas',\n iconName: 'store',\n icon: [616, 512, [], \"f54e\", \"M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z\"]\n};\nvar faStoreAlt = {\n prefix: 'fas',\n iconName: 'store-alt',\n icon: [640, 512, [], \"f54f\", \"M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z\"]\n};\nvar faStoreAltSlash = {\n prefix: 'fas',\n iconName: 'store-alt-slash',\n icon: [640, 512, [], \"e070\", \"M17.89,123.62,5.51,142.2c-14.2,21.3,1,49.8,26.59,49.8h74.26ZM576,413.42V224H512V364L384,265V224H330.92l-41.4-32H608c25.5,0,40.7-28.5,26.59-49.8l-85.29-128A32.18,32.18,0,0,0,522.6,0H117.42A31.87,31.87,0,0,0,90.81,14.2l-10.66,16L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.46A16,16,0,0,0,6.18,53.91L594.53,508.63A16,16,0,0,0,617,505.81l19.64-25.26a16,16,0,0,0-2.81-22.45ZM320,384H128V224H64V480a32,32,0,0,0,32,32H352a32,32,0,0,0,32-32V406.59l-64-49.47Z\"]\n};\nvar faStoreSlash = {\n prefix: 'fas',\n iconName: 'store-slash',\n icon: [640, 512, [], \"e071\", \"M121.51,384V284.2a119.43,119.43,0,0,1-28,3.8,123.46,123.46,0,0,1-17.1-1.2,114.88,114.88,0,0,1-15.58-3.6V480c0,17.7,13.59,32,30.4,32H505.75L348.42,384Zm-28-128.09c25.1,0,47.29-10.72,64-27.24L24,120.05c-30.52,53.39-2.45,126.53,56.49,135A95.68,95.68,0,0,0,93.48,255.91ZM602.13,458.09,547.2,413.41V283.2a93.5,93.5,0,0,1-15.57,3.6,127.31,127.31,0,0,1-17.29,1.2,114.89,114.89,0,0,1-28-3.8v79.68L348.52,251.77a88.06,88.06,0,0,0,25.41,4.14c28.11,0,53-13,70.11-33.11,17.19,20.11,42.08,33.11,70.11,33.11a94.31,94.31,0,0,0,13-.91c59.66-8.41,88-82.8,56.06-136.4L521.55,15A30.1,30.1,0,0,0,495.81,0H112A30.11,30.11,0,0,0,86.27,15L76.88,30.78,43.19,3.38A14.68,14.68,0,0,0,21.86,6.19L3.2,31.45A16.58,16.58,0,0,0,5.87,53.91L564.81,508.63a14.69,14.69,0,0,0,21.33-2.82l18.66-25.26A16.58,16.58,0,0,0,602.13,458.09Z\"]\n};\nvar faStream = {\n prefix: 'fas',\n iconName: 'stream',\n icon: [512, 512, [], \"f550\", \"M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z\"]\n};\nvar faStreetView = {\n prefix: 'fas',\n iconName: 'street-view',\n icon: [512, 512, [], \"f21d\", \"M367.9 329.76c-4.62 5.3-9.78 10.1-15.9 13.65v22.94c66.52 9.34 112 28.05 112 49.65 0 30.93-93.12 56-208 56S48 446.93 48 416c0-21.6 45.48-40.3 112-49.65v-22.94c-6.12-3.55-11.28-8.35-15.9-13.65C58.87 345.34 0 378.05 0 416c0 53.02 114.62 96 256 96s256-42.98 256-96c0-37.95-58.87-70.66-144.1-86.24zM256 128c35.35 0 64-28.65 64-64S291.35 0 256 0s-64 28.65-64 64 28.65 64 64 64zm-64 192v96c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-96c17.67 0 32-14.33 32-32v-96c0-26.51-21.49-48-48-48h-11.8c-11.07 5.03-23.26 8-36.2 8s-25.13-2.97-36.2-8H208c-26.51 0-48 21.49-48 48v96c0 17.67 14.33 32 32 32z\"]\n};\nvar faStrikethrough = {\n prefix: 'fas',\n iconName: 'strikethrough',\n icon: [512, 512, [], \"f0cc\", \"M496 224H293.9l-87.17-26.83A43.55 43.55 0 0 1 219.55 112h66.79A49.89 49.89 0 0 1 331 139.58a16 16 0 0 0 21.46 7.15l42.94-21.47a16 16 0 0 0 7.16-21.46l-.53-1A128 128 0 0 0 287.51 32h-68a123.68 123.68 0 0 0-123 135.64c2 20.89 10.1 39.83 21.78 56.36H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h480a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-180.24 96A43 43 0 0 1 336 356.45 43.59 43.59 0 0 1 292.45 400h-66.79A49.89 49.89 0 0 1 181 372.42a16 16 0 0 0-21.46-7.15l-42.94 21.47a16 16 0 0 0-7.16 21.46l.53 1A128 128 0 0 0 224.49 480h68a123.68 123.68 0 0 0 123-135.64 114.25 114.25 0 0 0-5.34-24.36z\"]\n};\nvar faStroopwafel = {\n prefix: 'fas',\n iconName: 'stroopwafel',\n icon: [512, 512, [], \"f551\", \"M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z\"]\n};\nvar faSubscript = {\n prefix: 'fas',\n iconName: 'subscript',\n icon: [512, 512, [], \"f12c\", \"M496 448h-16V304a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 400 352h16v96h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM336 64h-67a16 16 0 0 0-13.14 6.87l-79.9 115-79.9-115A16 16 0 0 0 83 64H16A16 16 0 0 0 0 80v48a16 16 0 0 0 16 16h33.48l77.81 112-77.81 112H16a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h67a16 16 0 0 0 13.14-6.87l79.9-115 79.9 115A16 16 0 0 0 269 448h67a16 16 0 0 0 16-16v-48a16 16 0 0 0-16-16h-33.48l-77.81-112 77.81-112H336a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16z\"]\n};\nvar faSubway = {\n prefix: 'fas',\n iconName: 'subway',\n icon: [448, 512, [], \"f239\", \"M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z\"]\n};\nvar faSuitcase = {\n prefix: 'fas',\n iconName: 'suitcase',\n icon: [512, 512, [], \"f0f2\", \"M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z\"]\n};\nvar faSuitcaseRolling = {\n prefix: 'fas',\n iconName: 'suitcase-rolling',\n icon: [384, 512, [], \"f5c1\", \"M336 160H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h16v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h128v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h16c26.51 0 48-21.49 48-48V208c0-26.51-21.49-48-48-48zm-16 216c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zM144 48h96v80h48V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v80h48V48z\"]\n};\nvar faSun = {\n prefix: 'fas',\n iconName: 'sun',\n icon: [512, 512, [], \"f185\", \"M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm246.4 80.5l-94.7-47.3 33.5-100.4c4.5-13.6-8.4-26.5-21.9-21.9l-100.4 33.5-47.4-94.8c-6.4-12.8-24.6-12.8-31 0l-47.3 94.7L92.7 70.8c-13.6-4.5-26.5 8.4-21.9 21.9l33.5 100.4-94.7 47.4c-12.8 6.4-12.8 24.6 0 31l94.7 47.3-33.5 100.5c-4.5 13.6 8.4 26.5 21.9 21.9l100.4-33.5 47.3 94.7c6.4 12.8 24.6 12.8 31 0l47.3-94.7 100.4 33.5c13.6 4.5 26.5-8.4 21.9-21.9l-33.5-100.4 94.7-47.3c13-6.5 13-24.7.2-31.1zm-155.9 106c-49.9 49.9-131.1 49.9-181 0-49.9-49.9-49.9-131.1 0-181 49.9-49.9 131.1-49.9 181 0 49.9 49.9 49.9 131.1 0 181z\"]\n};\nvar faSuperscript = {\n prefix: 'fas',\n iconName: 'superscript',\n icon: [512, 512, [], \"f12b\", \"M496 160h-16V16a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 400 64h16v96h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM336 64h-67a16 16 0 0 0-13.14 6.87l-79.9 115-79.9-115A16 16 0 0 0 83 64H16A16 16 0 0 0 0 80v48a16 16 0 0 0 16 16h33.48l77.81 112-77.81 112H16a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h67a16 16 0 0 0 13.14-6.87l79.9-115 79.9 115A16 16 0 0 0 269 448h67a16 16 0 0 0 16-16v-48a16 16 0 0 0-16-16h-33.48l-77.81-112 77.81-112H336a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16z\"]\n};\nvar faSurprise = {\n prefix: 'fas',\n iconName: 'surprise',\n icon: [496, 512, [], \"f5c2\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm112 208c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm80-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faSwatchbook = {\n prefix: 'fas',\n iconName: 'swatchbook',\n icon: [512, 512, [], \"f5c3\", \"M434.66,167.71h0L344.5,77.36a31.83,31.83,0,0,0-45-.07h0l-.07.07L224,152.88V424L434.66,212.9A32,32,0,0,0,434.66,167.71ZM480,320H373.09L186.68,506.51c-2.06,2.07-4.5,3.58-6.68,5.49H480a32,32,0,0,0,32-32V352A32,32,0,0,0,480,320ZM192,32A32,32,0,0,0,160,0H32A32,32,0,0,0,0,32V416a96,96,0,0,0,192,0ZM96,440a24,24,0,1,1,24-24A24,24,0,0,1,96,440Zm32-184H64V192h64Zm0-128H64V64h64Z\"]\n};\nvar faSwimmer = {\n prefix: 'fas',\n iconName: 'swimmer',\n icon: [640, 512, [], \"f5c4\", \"M189.61 310.58c3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c16.02-14.77 34.5-22.58 53.46-22.58h16.3c18.96 0 37.45 7.81 53.46 22.58 3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c14.86-13.71 31.88-21.12 49.39-22.16l-112.84-80.6 18-12.86c3.64-2.58 8.28-3.52 12.62-2.61l100.35 21.53c25.91 5.53 51.44-10.97 57-36.88 5.55-25.92-10.95-51.44-36.88-57L437.68 98.47c-30.73-6.58-63.02.12-88.56 18.38l-80.02 57.17c-10.38 7.39-19.36 16.44-26.72 26.94L173.75 299c5.47 3.23 10.82 6.93 15.86 11.58zM624 352h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 343.58 442.04 352 416 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 343.58 250.04 352 224 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 343.58 58.04 352 32 352H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-512-96c44.18 0 80-35.82 80-80s-35.82-80-80-80-80 35.82-80 80 35.82 80 80 80z\"]\n};\nvar faSwimmingPool = {\n prefix: 'fas',\n iconName: 'swimming-pool',\n icon: [640, 512, [], \"f5c5\", \"M624 416h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 407.58 442.04 416 416 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 407.58 250.04 416 224 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 407.58 58.04 416 32 416H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-400-32v-96h192v96c19.12 0 30.86-6.16 34.39-9.42 9.17-8.46 19.2-14.34 29.61-18.07V128c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v96H224v-96c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v228.5c10.41 3.73 20.44 9.62 29.61 18.07 3.53 3.27 15.27 9.43 34.39 9.43z\"]\n};\nvar faSynagogue = {\n prefix: 'fas',\n iconName: 'synagogue',\n icon: [640, 512, [], \"f69b\", \"M70 196.51L6.67 268.29A26.643 26.643 0 0 0 0 285.93V512h128V239.58l-38-43.07c-5.31-6.01-14.69-6.01-20 0zm563.33 71.78L570 196.51c-5.31-6.02-14.69-6.02-20 0l-38 43.07V512h128V285.93c0-6.5-2.37-12.77-6.67-17.64zM339.99 7.01c-11.69-9.35-28.29-9.35-39.98 0l-128 102.4A32.005 32.005 0 0 0 160 134.4V512h96v-92.57c0-31.88 21.78-61.43 53.25-66.55C349.34 346.35 384 377.13 384 416v96h96V134.4c0-9.72-4.42-18.92-12.01-24.99l-128-102.4zm52.07 215.55c1.98 3.15-.29 7.24-4 7.24h-38.94L324 269.79c-1.85 2.95-6.15 2.95-8 0l-25.12-39.98h-38.94c-3.72 0-5.98-4.09-4-7.24l19.2-30.56-19.2-30.56c-1.98-3.15.29-7.24 4-7.24h38.94l25.12-40c1.85-2.95 6.15-2.95 8 0l25.12 39.98h38.95c3.71 0 5.98 4.09 4 7.24L372.87 192l19.19 30.56z\"]\n};\nvar faSync = {\n prefix: 'fas',\n iconName: 'sync',\n icon: [512, 512, [], \"f021\", \"M440.65 12.57l4 82.77A247.16 247.16 0 0 0 255.83 8C134.73 8 33.91 94.92 12.29 209.82A12 12 0 0 0 24.09 224h49.05a12 12 0 0 0 11.67-9.26 175.91 175.91 0 0 1 317-56.94l-101.46-4.86a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12H500a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12h-47.37a12 12 0 0 0-11.98 12.57zM255.83 432a175.61 175.61 0 0 1-146-77.8l101.8 4.87a12 12 0 0 0 12.57-12v-47.4a12 12 0 0 0-12-12H12a12 12 0 0 0-12 12V500a12 12 0 0 0 12 12h47.35a12 12 0 0 0 12-12.6l-4.15-82.57A247.17 247.17 0 0 0 255.83 504c121.11 0 221.93-86.92 243.55-201.82a12 12 0 0 0-11.8-14.18h-49.05a12 12 0 0 0-11.67 9.26A175.86 175.86 0 0 1 255.83 432z\"]\n};\nvar faSyncAlt = {\n prefix: 'fas',\n iconName: 'sync-alt',\n icon: [512, 512, [], \"f2f1\", \"M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z\"]\n};\nvar faSyringe = {\n prefix: 'fas',\n iconName: 'syringe',\n icon: [512, 512, [], \"f48e\", \"M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z\"]\n};\nvar faTable = {\n prefix: 'fas',\n iconName: 'table',\n icon: [512, 512, [], \"f0ce\", \"M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z\"]\n};\nvar faTableTennis = {\n prefix: 'fas',\n iconName: 'table-tennis',\n icon: [512, 512, [], \"f45d\", \"M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z\"]\n};\nvar faTablet = {\n prefix: 'fas',\n iconName: 'tablet',\n icon: [448, 512, [], \"f10a\", \"M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faTabletAlt = {\n prefix: 'fas',\n iconName: 'tablet-alt',\n icon: [448, 512, [], \"f3fa\", \"M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z\"]\n};\nvar faTablets = {\n prefix: 'fas',\n iconName: 'tablets',\n icon: [640, 512, [], \"f490\", \"M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z\"]\n};\nvar faTachometerAlt = {\n prefix: 'fas',\n iconName: 'tachometer-alt',\n icon: [576, 512, [], \"f3fd\", \"M288 32C128.94 32 0 160.94 0 320c0 52.8 14.25 102.26 39.06 144.8 5.61 9.62 16.3 15.2 27.44 15.2h443c11.14 0 21.83-5.58 27.44-15.2C561.75 422.26 576 372.8 576 320c0-159.06-128.94-288-288-288zm0 64c14.71 0 26.58 10.13 30.32 23.65-1.11 2.26-2.64 4.23-3.45 6.67l-9.22 27.67c-5.13 3.49-10.97 6.01-17.64 6.01-17.67 0-32-14.33-32-32S270.33 96 288 96zM96 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm48-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm246.77-72.41l-61.33 184C343.13 347.33 352 364.54 352 384c0 11.72-3.38 22.55-8.88 32H232.88c-5.5-9.45-8.88-20.28-8.88-32 0-33.94 26.5-61.43 59.9-63.59l61.34-184.01c4.17-12.56 17.73-19.45 30.36-15.17 12.57 4.19 19.35 17.79 15.17 30.36zm14.66 57.2l15.52-46.55c3.47-1.29 7.13-2.23 11.05-2.23 17.67 0 32 14.33 32 32s-14.33 32-32 32c-11.38-.01-20.89-6.28-26.57-15.22zM480 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faTag = {\n prefix: 'fas',\n iconName: 'tag',\n icon: [512, 512, [], \"f02b\", \"M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z\"]\n};\nvar faTags = {\n prefix: 'fas',\n iconName: 'tags',\n icon: [640, 512, [], \"f02c\", \"M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z\"]\n};\nvar faTape = {\n prefix: 'fas',\n iconName: 'tape',\n icon: [640, 512, [], \"f4db\", \"M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z\"]\n};\nvar faTasks = {\n prefix: 'fas',\n iconName: 'tasks',\n icon: [512, 512, [], \"f0ae\", \"M139.61 35.5a12 12 0 0 0-17 0L58.93 98.81l-22.7-22.12a12 12 0 0 0-17 0L3.53 92.41a12 12 0 0 0 0 17l47.59 47.4a12.78 12.78 0 0 0 17.61 0l15.59-15.62L156.52 69a12.09 12.09 0 0 0 .09-17zm0 159.19a12 12 0 0 0-17 0l-63.68 63.72-22.7-22.1a12 12 0 0 0-17 0L3.53 252a12 12 0 0 0 0 17L51 316.5a12.77 12.77 0 0 0 17.6 0l15.7-15.69 72.2-72.22a12 12 0 0 0 .09-16.9zM64 368c-26.49 0-48.59 21.5-48.59 48S37.53 464 64 464a48 48 0 0 0 0-96zm432 16H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faTaxi = {\n prefix: 'fas',\n iconName: 'taxi',\n icon: [512, 512, [], \"f1ba\", \"M462 241.64l-22-84.84c-9.6-35.2-41.6-60.8-76.8-60.8H352V64c0-17.67-14.33-32-32-32H192c-17.67 0-32 14.33-32 32v32h-11.2c-35.2 0-67.2 25.6-76.8 60.8l-22 84.84C21.41 248.04 0 273.47 0 304v48c0 23.63 12.95 44.04 32 55.12V448c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-40.88c19.05-11.09 32-31.5 32-55.12v-48c0-30.53-21.41-55.96-50-62.36zM96 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm20.55-112l17.2-66.36c2.23-8.16 9.59-13.64 15.06-13.64h214.4c5.47 0 12.83 5.48 14.85 12.86L395.45 240h-278.9zM416 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faTeeth = {\n prefix: 'fas',\n iconName: 'teeth',\n icon: [640, 512, [], \"f62e\", \"M544 0H96C42.98 0 0 42.98 0 96v320c0 53.02 42.98 96 96 96h448c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96zM160 368c0 26.51-21.49 48-48 48s-48-21.49-48-48v-64c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v64zm0-128c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-64c0-26.51 21.49-48 48-48s48 21.49 48 48v64zm144 120c0 30.93-25.07 56-56 56s-56-25.07-56-56v-56c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v56zm0-120c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-88c0-30.93 25.07-56 56-56s56 25.07 56 56v88zm144 120c0 30.93-25.07 56-56 56s-56-25.07-56-56v-56c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v56zm0-120c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-88c0-30.93 25.07-56 56-56s56 25.07 56 56v88zm128 128c0 26.51-21.49 48-48 48s-48-21.49-48-48v-64c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v64zm0-128c0 8.84-7.16 16-16 16h-64c-8.84 0-16-7.16-16-16v-64c0-26.51 21.49-48 48-48s48 21.49 48 48v64z\"]\n};\nvar faTeethOpen = {\n prefix: 'fas',\n iconName: 'teeth-open',\n icon: [640, 512, [], \"f62f\", \"M544 0H96C42.98 0 0 42.98 0 96v64c0 35.35 28.66 64 64 64h512c35.34 0 64-28.65 64-64V96c0-53.02-42.98-96-96-96zM160 176c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-32c0-26.51 21.49-48 48-48s48 21.49 48 48v32zm144 0c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-56c0-30.93 25.07-56 56-56s56 25.07 56 56v56zm144 0c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-56c0-30.93 25.07-56 56-56s56 25.07 56 56v56zm128 0c0 8.84-7.16 16-16 16h-64c-8.84 0-16-7.16-16-16v-32c0-26.51 21.49-48 48-48s48 21.49 48 48v32zm0 144H64c-35.34 0-64 28.65-64 64v32c0 53.02 42.98 96 96 96h448c53.02 0 96-42.98 96-96v-32c0-35.35-28.66-64-64-64zm-416 80c0 26.51-21.49 48-48 48s-48-21.49-48-48v-32c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v32zm144-8c0 30.93-25.07 56-56 56s-56-25.07-56-56v-24c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v24zm144 0c0 30.93-25.07 56-56 56s-56-25.07-56-56v-24c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v24zm128 8c0 26.51-21.49 48-48 48s-48-21.49-48-48v-32c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v32z\"]\n};\nvar faTemperatureHigh = {\n prefix: 'fas',\n iconName: 'temperature-high',\n icon: [512, 512, [], \"f769\", \"M416 0c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm0 128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-160-16C256 50.1 205.9 0 144 0S32 50.1 32 112v166.5C12.3 303.2 0 334 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-34-12.3-64.9-32-89.5V112zM144 448c-44.1 0-80-35.9-80-80 0-25.5 12.2-48.9 32-63.8V112c0-26.5 21.5-48 48-48s48 21.5 48 48v192.2c19.8 14.8 32 38.3 32 63.8 0 44.1-35.9 80-80 80zm16-125.1V112c0-8.8-7.2-16-16-16s-16 7.2-16 16v210.9c-18.6 6.6-32 24.2-32 45.1 0 26.5 21.5 48 48 48s48-21.5 48-48c0-20.9-13.4-38.5-32-45.1z\"]\n};\nvar faTemperatureLow = {\n prefix: 'fas',\n iconName: 'temperature-low',\n icon: [512, 512, [], \"f76b\", \"M416 0c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm0 128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-160-16C256 50.1 205.9 0 144 0S32 50.1 32 112v166.5C12.3 303.2 0 334 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-34-12.3-64.9-32-89.5V112zM144 448c-44.1 0-80-35.9-80-80 0-25.5 12.2-48.9 32-63.8V112c0-26.5 21.5-48 48-48s48 21.5 48 48v192.2c19.8 14.8 32 38.3 32 63.8 0 44.1-35.9 80-80 80zm16-125.1V304c0-8.8-7.2-16-16-16s-16 7.2-16 16v18.9c-18.6 6.6-32 24.2-32 45.1 0 26.5 21.5 48 48 48s48-21.5 48-48c0-20.9-13.4-38.5-32-45.1z\"]\n};\nvar faTenge = {\n prefix: 'fas',\n iconName: 'tenge',\n icon: [384, 512, [], \"f7d7\", \"M372 160H12c-6.6 0-12 5.4-12 12v56c0 6.6 5.4 12 12 12h140v228c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V240h140c6.6 0 12-5.4 12-12v-56c0-6.6-5.4-12-12-12zm0-128H12C5.4 32 0 37.4 0 44v56c0 6.6 5.4 12 12 12h360c6.6 0 12-5.4 12-12V44c0-6.6-5.4-12-12-12z\"]\n};\nvar faTerminal = {\n prefix: 'fas',\n iconName: 'terminal',\n icon: [640, 512, [], \"f120\", \"M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z\"]\n};\nvar faTextHeight = {\n prefix: 'fas',\n iconName: 'text-height',\n icon: [576, 512, [], \"f034\", \"M304 32H16A16 16 0 0 0 0 48v96a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32h56v304H80a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h160a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-40V112h56v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm256 336h-48V144h48c14.31 0 21.33-17.31 11.31-27.31l-80-80a16 16 0 0 0-22.62 0l-80 80C379.36 126 384.36 144 400 144h48v224h-48c-14.31 0-21.32 17.31-11.31 27.31l80 80a16 16 0 0 0 22.62 0l80-80C580.64 386 575.64 368 560 368z\"]\n};\nvar faTextWidth = {\n prefix: 'fas',\n iconName: 'text-width',\n icon: [448, 512, [], \"f035\", \"M432 32H16A16 16 0 0 0 0 48v80a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-16h120v112h-24a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-24V112h120v16a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm-68.69 260.69C354 283.36 336 288.36 336 304v48H112v-48c0-14.31-17.31-21.32-27.31-11.31l-80 80a16 16 0 0 0 0 22.62l80 80C94 484.64 112 479.64 112 464v-48h224v48c0 14.31 17.31 21.33 27.31 11.31l80-80a16 16 0 0 0 0-22.62z\"]\n};\nvar faTh = {\n prefix: 'fas',\n iconName: 'th',\n icon: [512, 512, [], \"f00a\", \"M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z\"]\n};\nvar faThLarge = {\n prefix: 'fas',\n iconName: 'th-large',\n icon: [512, 512, [], \"f009\", \"M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z\"]\n};\nvar faThList = {\n prefix: 'fas',\n iconName: 'th-list',\n icon: [512, 512, [], \"f00b\", \"M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z\"]\n};\nvar faTheaterMasks = {\n prefix: 'fas',\n iconName: 'theater-masks',\n icon: [640, 512, [], \"f630\", \"M206.86 245.15c-35.88 10.45-59.95 41.2-57.53 74.1 11.4-12.72 28.81-23.7 49.9-30.92l7.63-43.18zM95.81 295L64.08 115.49c-.29-1.62.28-2.62.24-2.65 57.76-32.06 123.12-49.01 189.01-49.01 1.61 0 3.23.17 4.85.19 13.95-13.47 31.73-22.83 51.59-26 18.89-3.02 38.05-4.55 57.18-5.32-9.99-13.95-24.48-24.23-41.77-27C301.27 1.89 277.24 0 253.32 0 176.66 0 101.02 19.42 33.2 57.06 9.03 70.48-3.92 98.48 1.05 126.58l31.73 179.51c14.23 80.52 136.33 142.08 204.45 142.08 3.59 0 6.75-.46 10.01-.8-13.52-17.08-28.94-40.48-39.5-67.58-47.61-12.98-106.06-51.62-111.93-84.79zm97.55-137.46c-.73-4.12-2.23-7.87-4.07-11.4-8.25 8.91-20.67 15.75-35.32 18.32-14.65 2.58-28.67.4-39.48-5.17-.52 3.94-.64 7.98.09 12.1 3.84 21.7 24.58 36.19 46.34 32.37 21.75-3.82 36.28-24.52 32.44-46.22zM606.8 120.9c-88.98-49.38-191.43-67.41-291.98-51.35-27.31 4.36-49.08 26.26-54.04 54.36l-31.73 179.51c-15.39 87.05 95.28 196.27 158.31 207.35 63.03 11.09 204.47-53.79 219.86-140.84l31.73-179.51c4.97-28.11-7.98-56.11-32.15-69.52zm-273.24 96.8c3.84-21.7 24.58-36.19 46.34-32.36 21.76 3.83 36.28 24.52 32.45 46.22-.73 4.12-2.23 7.87-4.07 11.4-8.25-8.91-20.67-15.75-35.32-18.32-14.65-2.58-28.67-.4-39.48 5.17-.53-3.95-.65-7.99.08-12.11zm70.47 198.76c-55.68-9.79-93.52-59.27-89.04-112.9 20.6 25.54 56.21 46.17 99.49 53.78 43.28 7.61 83.82.37 111.93-16.6-14.18 51.94-66.71 85.51-122.38 75.72zm130.3-151.34c-8.25-8.91-20.68-15.75-35.33-18.32-14.65-2.58-28.67-.4-39.48 5.17-.52-3.94-.64-7.98.09-12.1 3.84-21.7 24.58-36.19 46.34-32.37 21.75 3.83 36.28 24.52 32.45 46.22-.73 4.13-2.23 7.88-4.07 11.4z\"]\n};\nvar faThermometer = {\n prefix: 'fas',\n iconName: 'thermometer',\n icon: [512, 512, [], \"f491\", \"M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z\"]\n};\nvar faThermometerEmpty = {\n prefix: 'fas',\n iconName: 'thermometer-empty',\n icon: [256, 512, [], \"f2cb\", \"M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z\"]\n};\nvar faThermometerFull = {\n prefix: 'fas',\n iconName: 'thermometer-full',\n icon: [256, 512, [], \"f2c7\", \"M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z\"]\n};\nvar faThermometerHalf = {\n prefix: 'fas',\n iconName: 'thermometer-half',\n icon: [256, 512, [], \"f2c9\", \"M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z\"]\n};\nvar faThermometerQuarter = {\n prefix: 'fas',\n iconName: 'thermometer-quarter',\n icon: [256, 512, [], \"f2ca\", \"M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z\"]\n};\nvar faThermometerThreeQuarters = {\n prefix: 'fas',\n iconName: 'thermometer-three-quarters',\n icon: [256, 512, [], \"f2c8\", \"M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z\"]\n};\nvar faThumbsDown = {\n prefix: 'fas',\n iconName: 'thumbs-down',\n icon: [512, 512, [], \"f165\", \"M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z\"]\n};\nvar faThumbsUp = {\n prefix: 'fas',\n iconName: 'thumbs-up',\n icon: [512, 512, [], \"f164\", \"M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z\"]\n};\nvar faThumbtack = {\n prefix: 'fas',\n iconName: 'thumbtack',\n icon: [384, 512, [], \"f08d\", \"M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z\"]\n};\nvar faTicketAlt = {\n prefix: 'fas',\n iconName: 'ticket-alt',\n icon: [576, 512, [], \"f3ff\", \"M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z\"]\n};\nvar faTimes = {\n prefix: 'fas',\n iconName: 'times',\n icon: [352, 512, [], \"f00d\", \"M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z\"]\n};\nvar faTimesCircle = {\n prefix: 'fas',\n iconName: 'times-circle',\n icon: [512, 512, [], \"f057\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z\"]\n};\nvar faTint = {\n prefix: 'fas',\n iconName: 'tint',\n icon: [352, 512, [], \"f043\", \"M205.22 22.09c-7.94-28.78-49.44-30.12-58.44 0C100.01 179.85 0 222.72 0 333.91 0 432.35 78.72 512 176 512s176-79.65 176-178.09c0-111.75-99.79-153.34-146.78-311.82zM176 448c-61.75 0-112-50.25-112-112 0-8.84 7.16-16 16-16s16 7.16 16 16c0 44.11 35.89 80 80 80 8.84 0 16 7.16 16 16s-7.16 16-16 16z\"]\n};\nvar faTintSlash = {\n prefix: 'fas',\n iconName: 'tint-slash',\n icon: [640, 512, [], \"f5c7\", \"M633.82 458.1L494.97 350.78c.52-5.57 1.03-11.16 1.03-16.87 0-111.76-99.79-153.34-146.78-311.82-7.94-28.78-49.44-30.12-58.44 0-15.52 52.34-36.87 91.96-58.49 125.68L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM144 333.91C144 432.35 222.72 512 320 512c44.71 0 85.37-16.96 116.4-44.7L162.72 255.78c-11.41 23.5-18.72 48.35-18.72 78.13z\"]\n};\nvar faTired = {\n prefix: 'fas',\n iconName: 'tired',\n icon: [496, 512, [], \"f5c8\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z\"]\n};\nvar faToggleOff = {\n prefix: 'fas',\n iconName: 'toggle-off',\n icon: [576, 512, [], \"f204\", \"M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z\"]\n};\nvar faToggleOn = {\n prefix: 'fas',\n iconName: 'toggle-on',\n icon: [576, 512, [], \"f205\", \"M384 64H192C86 64 0 150 0 256s86 192 192 192h192c106 0 192-86 192-192S490 64 384 64zm0 320c-70.8 0-128-57.3-128-128 0-70.8 57.3-128 128-128 70.8 0 128 57.3 128 128 0 70.8-57.3 128-128 128z\"]\n};\nvar faToilet = {\n prefix: 'fas',\n iconName: 'toilet',\n icon: [384, 512, [], \"f7d8\", \"M368 48c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v16c0 8.8 7.2 16 16 16h16v156.7C11.8 214.8 0 226.9 0 240c0 67.2 34.6 126.2 86.8 160.5l-21.4 70.2C59.1 491.2 74.5 512 96 512h192c21.5 0 36.9-20.8 30.6-41.3l-21.4-70.2C349.4 366.2 384 307.2 384 240c0-13.1-11.8-25.2-32-35.3V48h16zM80 72c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H88c-4.4 0-8-3.6-8-8V72zm112 200c-77.1 0-139.6-14.3-139.6-32s62.5-32 139.6-32 139.6 14.3 139.6 32-62.5 32-139.6 32z\"]\n};\nvar faToiletPaper = {\n prefix: 'fas',\n iconName: 'toilet-paper',\n icon: [576, 512, [], \"f71e\", \"M128 0C74.98 0 32 85.96 32 192v172.07c0 41.12-9.8 62.77-31.17 126.87C-2.62 501.3 5.09 512 16.01 512h280.92c13.77 0 26-8.81 30.36-21.88 12.83-38.48 24.71-72.4 24.71-126.05V192c0-83.6 23.67-153.52 60.44-192H128zM96 224c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm64 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm64 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm64 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zM480 0c-53.02 0-96 85.96-96 192s42.98 192 96 192 96-85.96 96-192S533.02 0 480 0zm0 256c-17.67 0-32-28.65-32-64s14.33-64 32-64 32 28.65 32 64-14.33 64-32 64z\"]\n};\nvar faToiletPaperSlash = {\n prefix: 'fas',\n iconName: 'toilet-paper-slash',\n icon: [640, 512, [], \"e072\", \"M64,192V364.13c0,41.12-9.75,62.75-31.12,126.87A16,16,0,0,0,48,512H328.86a31.87,31.87,0,0,0,30.38-21.87c9.31-27.83,18-53.35,22.18-85.55l-316-244.25C64.53,170.66,64,181.19,64,192ZM633.82,458.09l-102-78.81C575.28,360.91,608,284.32,608,192,608,86,565,0,512,0s-96,86-96,192c0,42,7,80.4,18.43,112L384,265V192c0-83.62,23.63-153.5,60.5-192H160c-23.33,0-44.63,16.83-61.26,44.53L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.45A16,16,0,0,0,6.18,53.91L594.54,508.63A16,16,0,0,0,617,505.81l19.64-25.26A16,16,0,0,0,633.82,458.09ZM512,256c-17.63,0-32-28.62-32-64s14.37-64,32-64,32,28.63,32,64S529.62,256,512,256Z\"]\n};\nvar faToolbox = {\n prefix: 'fas',\n iconName: 'toolbox',\n icon: [512, 512, [], \"f552\", \"M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z\"]\n};\nvar faTools = {\n prefix: 'fas',\n iconName: 'tools',\n icon: [512, 512, [], \"f7d9\", \"M501.1 395.7L384 278.6c-23.1-23.1-57.6-27.6-85.4-13.9L192 158.1V96L64 0 0 64l96 128h62.1l106.6 106.6c-13.6 27.8-9.2 62.3 13.9 85.4l117.1 117.1c14.6 14.6 38.2 14.6 52.7 0l52.7-52.7c14.5-14.6 14.5-38.2 0-52.7zM331.7 225c28.3 0 54.9 11 74.9 31l19.4 19.4c15.8-6.9 30.8-16.5 43.8-29.5 37.1-37.1 49.7-89.3 37.9-136.7-2.2-9-13.5-12.1-20.1-5.5l-74.4 74.4-67.9-11.3L334 98.9l74.4-74.4c6.6-6.6 3.4-17.9-5.7-20.2-47.4-11.7-99.6.9-136.6 37.9-28.5 28.5-41.9 66.1-41.2 103.6l82.1 82.1c8.1-1.9 16.5-2.9 24.7-2.9zm-103.9 82l-56.7-56.7L18.7 402.8c-25 25-25 65.5 0 90.5s65.5 25 90.5 0l123.6-123.6c-7.6-19.9-9.9-41.6-5-62.7zM64 472c-13.2 0-24-10.8-24-24 0-13.3 10.7-24 24-24s24 10.7 24 24c0 13.2-10.7 24-24 24z\"]\n};\nvar faTooth = {\n prefix: 'fas',\n iconName: 'tooth',\n icon: [448, 512, [], \"f5c9\", \"M443.98 96.25c-11.01-45.22-47.11-82.06-92.01-93.72-32.19-8.36-63 5.1-89.14 24.33-3.25 2.39-6.96 3.73-10.5 5.48l28.32 18.21c7.42 4.77 9.58 14.67 4.8 22.11-4.46 6.95-14.27 9.86-22.11 4.8L162.83 12.84c-20.7-10.85-43.38-16.4-66.81-10.31-44.9 11.67-81 48.5-92.01 93.72-10.13 41.62-.42 80.81 21.5 110.43 23.36 31.57 32.68 68.66 36.29 107.35 4.4 47.16 10.33 94.16 20.94 140.32l7.8 33.95c3.19 13.87 15.49 23.7 29.67 23.7 13.97 0 26.15-9.55 29.54-23.16l34.47-138.42c4.56-18.32 20.96-31.16 39.76-31.16s35.2 12.85 39.76 31.16l34.47 138.42c3.39 13.61 15.57 23.16 29.54 23.16 14.18 0 26.48-9.83 29.67-23.7l7.8-33.95c10.61-46.15 16.53-93.16 20.94-140.32 3.61-38.7 12.93-75.78 36.29-107.35 21.95-29.61 31.66-68.8 21.53-110.43z\"]\n};\nvar faTorah = {\n prefix: 'fas',\n iconName: 'torah',\n icon: [640, 512, [], \"f6a0\", \"M320.05 366.48l17.72-29.64h-35.46zm99.21-166H382.4l18.46 30.82zM48 0C21.49 0 0 14.33 0 32v448c0 17.67 21.49 32 48 32s48-14.33 48-32V32C96 14.33 74.51 0 48 0zm172.74 311.5h36.85l-18.46-30.82zm161.71 0h36.86l-18.45-30.8zM128 464h384V48H128zm66.77-278.13a21.22 21.22 0 0 1 18.48-10.71h59.45l29.13-48.71a21.13 21.13 0 0 1 18.22-10.37A20.76 20.76 0 0 1 338 126.29l29.25 48.86h59.52a21.12 21.12 0 0 1 18.1 32L415.63 256 445 305a20.69 20.69 0 0 1 .24 21.12 21.25 21.25 0 0 1-18.48 10.72h-59.47l-29.13 48.7a21.13 21.13 0 0 1-18.16 10.4 20.79 20.79 0 0 1-18-10.22l-29.25-48.88h-59.5a21.11 21.11 0 0 1-18.1-32L224.36 256 195 207a20.7 20.7 0 0 1-.23-21.13zM592 0c-26.51 0-48 14.33-48 32v448c0 17.67 21.49 32 48 32s48-14.33 48-32V32c0-17.67-21.49-32-48-32zM320 145.53l-17.78 29.62h35.46zm-62.45 55h-36.81l18.44 30.8zm29.58 111h65.79L386.09 256l-33.23-55.52h-65.79L253.9 256z\"]\n};\nvar faToriiGate = {\n prefix: 'fas',\n iconName: 'torii-gate',\n icon: [512, 512, [], \"f6a1\", \"M376.45 32h-240.9A303.17 303.17 0 0 1 0 0v96c0 17.67 14.33 32 32 32h32v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v240c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V256h256v240c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V256h48c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-48v-64h32c17.67 0 32-14.33 32-32V0a303.17 303.17 0 0 1-135.55 32zM128 128h96v64h-96v-64zm256 64h-96v-64h96v64z\"]\n};\nvar faTractor = {\n prefix: 'fas',\n iconName: 'tractor',\n icon: [640, 512, [], \"f722\", \"M528 336c-48.6 0-88 39.4-88 88s39.4 88 88 88 88-39.4 88-88-39.4-88-88-88zm0 112c-13.23 0-24-10.77-24-24s10.77-24 24-24 24 10.77 24 24-10.77 24-24 24zm80-288h-64v-40.2c0-14.12 4.7-27.76 13.15-38.84 4.42-5.8 3.55-14.06-1.32-19.49L534.2 37.3c-6.66-7.45-18.32-6.92-24.7.78C490.58 60.9 480 89.81 480 119.8V160H377.67L321.58 29.14A47.914 47.914 0 0 0 277.45 0H144c-26.47 0-48 21.53-48 48v146.52c-8.63-6.73-20.96-6.46-28.89 1.47L36 227.1c-8.59 8.59-8.59 22.52 0 31.11l5.06 5.06c-4.99 9.26-8.96 18.82-11.91 28.72H22c-12.15 0-22 9.85-22 22v44c0 12.15 9.85 22 22 22h7.14c2.96 9.91 6.92 19.46 11.91 28.73l-5.06 5.06c-8.59 8.59-8.59 22.52 0 31.11L67.1 476c8.59 8.59 22.52 8.59 31.11 0l5.06-5.06c9.26 4.99 18.82 8.96 28.72 11.91V490c0 12.15 9.85 22 22 22h44c12.15 0 22-9.85 22-22v-7.14c9.9-2.95 19.46-6.92 28.72-11.91l5.06 5.06c8.59 8.59 22.52 8.59 31.11 0l31.11-31.11c8.59-8.59 8.59-22.52 0-31.11l-5.06-5.06c4.99-9.26 8.96-18.82 11.91-28.72H330c12.15 0 22-9.85 22-22v-6h80.54c21.91-28.99 56.32-48 95.46-48 18.64 0 36.07 4.61 51.8 12.2l50.82-50.82c6-6 9.37-14.14 9.37-22.63V192c.01-17.67-14.32-32-31.99-32zM176 416c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm22-256h-38V64h106.89l41.15 96H198z\"]\n};\nvar faTrademark = {\n prefix: 'fas',\n iconName: 'trademark',\n icon: [640, 512, [], \"f25c\", \"M260.6 96H12c-6.6 0-12 5.4-12 12v43.1c0 6.6 5.4 12 12 12h85.1V404c0 6.6 5.4 12 12 12h54.3c6.6 0 12-5.4 12-12V163.1h85.1c6.6 0 12-5.4 12-12V108c.1-6.6-5.3-12-11.9-12zM640 403l-24-296c-.5-6.2-5.7-11-12-11h-65.4c-5.1 0-9.7 3.3-11.3 8.1l-43.8 127.1c-7.2 20.6-16.1 52.8-16.1 52.8h-.9s-8.9-32.2-16.1-52.8l-43.8-127.1c-1.7-4.8-6.2-8.1-11.3-8.1h-65.4c-6.2 0-11.4 4.8-12 11l-24.4 296c-.6 7 4.9 13 12 13H360c6.3 0 11.5-4.9 12-11.2l9.1-132.9c1.8-24.2 0-53.7 0-53.7h.9s10.7 33.6 17.9 53.7l30.7 84.7c1.7 4.7 6.2 7.9 11.3 7.9h50.3c5.1 0 9.6-3.2 11.3-7.9l30.7-84.7c7.2-20.1 17.9-53.7 17.9-53.7h.9s-1.8 29.5 0 53.7l9.1 132.9c.4 6.3 5.7 11.2 12 11.2H628c7 0 12.5-6 12-13z\"]\n};\nvar faTrafficLight = {\n prefix: 'fas',\n iconName: 'traffic-light',\n icon: [384, 512, [], \"f637\", \"M384 192h-64v-37.88c37.2-13.22 64-48.38 64-90.12h-64V32c0-17.67-14.33-32-32-32H96C78.33 0 64 14.33 64 32v32H0c0 41.74 26.8 76.9 64 90.12V192H0c0 41.74 26.8 76.9 64 90.12V320H0c0 42.84 28.25 78.69 66.99 91.05C79.42 468.72 130.6 512 192 512s112.58-43.28 125.01-100.95C355.75 398.69 384 362.84 384 320h-64v-37.88c37.2-13.22 64-48.38 64-90.12zM192 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm0-128c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm0-128c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48z\"]\n};\nvar faTrailer = {\n prefix: 'fas',\n iconName: 'trailer',\n icon: [640, 512, [], \"e041\", \"M624,320H544V80a16,16,0,0,0-16-16H16A16,16,0,0,0,0,80V368a16,16,0,0,0,16,16H65.61c7.83-54.21,54-96,110.39-96s102.56,41.79,110.39,96H624a16,16,0,0,0,16-16V336A16,16,0,0,0,624,320ZM96,243.68a176.29,176.29,0,0,0-32,20.71V136a8,8,0,0,1,8-8H88a8,8,0,0,1,8,8Zm96-18.54c-5.31-.49-10.57-1.14-16-1.14s-10.69.65-16,1.14V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8Zm96,39.25a176.29,176.29,0,0,0-32-20.71V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8ZM384,320H352V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8Zm96,0H448V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8Zm-304,0a80,80,0,1,0,80,80A80,80,0,0,0,176,320Zm0,112a32,32,0,1,1,32-32A32,32,0,0,1,176,432Z\"]\n};\nvar faTrain = {\n prefix: 'fas',\n iconName: 'train',\n icon: [448, 512, [], \"f238\", \"M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z\"]\n};\nvar faTram = {\n prefix: 'fas',\n iconName: 'tram',\n icon: [512, 512, [], \"f7da\", \"M288 64c17.7 0 32-14.3 32-32S305.7 0 288 0s-32 14.3-32 32 14.3 32 32 32zm223.5-12.1c-2.3-8.6-11-13.6-19.6-11.3l-480 128c-8.5 2.3-13.6 11-11.3 19.6C2.5 195.3 8.9 200 16 200c1.4 0 2.8-.2 4.1-.5L240 140.8V224H64c-17.7 0-32 14.3-32 32v224c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32H272v-91.7l228.1-60.8c8.6-2.3 13.6-11.1 11.4-19.6zM176 384H80v-96h96v96zm160-96h96v96h-96v-96zm-32 0v96h-96v-96h96zM192 96c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z\"]\n};\nvar faTransgender = {\n prefix: 'fas',\n iconName: 'transgender',\n icon: [384, 512, [], \"f224\", \"M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faTransgenderAlt = {\n prefix: 'fas',\n iconName: 'transgender-alt',\n icon: [480, 512, [], \"f225\", \"M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faTrash = {\n prefix: 'fas',\n iconName: 'trash',\n icon: [448, 512, [], \"f1f8\", \"M432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32z\"]\n};\nvar faTrashAlt = {\n prefix: 'fas',\n iconName: 'trash-alt',\n icon: [448, 512, [], \"f2ed\", \"M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faTrashRestore = {\n prefix: 'fas',\n iconName: 'trash-restore',\n icon: [448, 512, [], \"f829\", \"M53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32zm70.11-175.8l89.38-94.26a15.41 15.41 0 0 1 22.62 0l89.38 94.26c10.08 10.62 2.94 28.8-11.32 28.8H256v112a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V320h-57.37c-14.26 0-21.4-18.18-11.32-28.8zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faTrashRestoreAlt = {\n prefix: 'fas',\n iconName: 'trash-restore-alt',\n icon: [448, 512, [], \"f82a\", \"M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm91.31-172.8l89.38-94.26a15.41 15.41 0 0 1 22.62 0l89.38 94.26c10.08 10.62 2.94 28.8-11.32 28.8H256v112a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V320h-57.37c-14.26 0-21.4-18.18-11.32-28.8zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faTree = {\n prefix: 'fas',\n iconName: 'tree',\n icon: [384, 512, [], \"f1bb\", \"M378.31 378.49L298.42 288h30.63c9.01 0 16.98-5 20.78-13.06 3.8-8.04 2.55-17.26-3.28-24.05L268.42 160h28.89c9.1 0 17.3-5.35 20.86-13.61 3.52-8.13 1.86-17.59-4.24-24.08L203.66 4.83c-6.03-6.45-17.28-6.45-23.32 0L70.06 122.31c-6.1 6.49-7.75 15.95-4.24 24.08C69.38 154.65 77.59 160 86.69 160h28.89l-78.14 90.91c-5.81 6.78-7.06 15.99-3.27 24.04C37.97 283 45.93 288 54.95 288h30.63L5.69 378.49c-6 6.79-7.36 16.09-3.56 24.26 3.75 8.05 12 13.25 21.01 13.25H160v24.45l-30.29 48.4c-5.32 10.64 2.42 23.16 14.31 23.16h95.96c11.89 0 19.63-12.52 14.31-23.16L224 440.45V416h136.86c9.01 0 17.26-5.2 21.01-13.25 3.8-8.17 2.44-17.47-3.56-24.26z\"]\n};\nvar faTrophy = {\n prefix: 'fas',\n iconName: 'trophy',\n icon: [576, 512, [], \"f091\", \"M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z\"]\n};\nvar faTruck = {\n prefix: 'fas',\n iconName: 'truck',\n icon: [640, 512, [], \"f0d1\", \"M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z\"]\n};\nvar faTruckLoading = {\n prefix: 'fas',\n iconName: 'truck-loading',\n icon: [640, 512, [], \"f4de\", \"M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z\"]\n};\nvar faTruckMonster = {\n prefix: 'fas',\n iconName: 'truck-monster',\n icon: [640, 512, [], \"f63b\", \"M624 224h-16v-64c0-17.67-14.33-32-32-32h-73.6L419.22 24.02A64.025 64.025 0 0 0 369.24 0H256c-17.67 0-32 14.33-32 32v96H48c-8.84 0-16 7.16-16 16v80H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16.72c29.21-38.65 75.1-64 127.28-64s98.07 25.35 127.28 64h65.45c29.21-38.65 75.1-64 127.28-64s98.07 25.35 127.28 64H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-336-96V64h81.24l51.2 64H288zm304 224h-5.2c-2.2-7.33-5.07-14.28-8.65-20.89l3.67-3.67c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0l-3.67 3.67A110.85 110.85 0 0 0 512 277.2V272c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v5.2c-7.33 2.2-14.28 5.07-20.89 8.65l-3.67-3.67c-6.25-6.25-16.38-6.25-22.63 0l-22.63 22.63c-6.25 6.25-6.25 16.38 0 22.63l3.67 3.67A110.85 110.85 0 0 0 373.2 352H368c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h5.2c2.2 7.33 5.07 14.28 8.65 20.89l-3.67 3.67c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l3.67-3.67c6.61 3.57 13.57 6.45 20.9 8.65v5.2c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-5.2c7.33-2.2 14.28-5.07 20.9-8.65l3.67 3.67c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63l-3.67-3.67a110.85 110.85 0 0 0 8.65-20.89h5.2c8.84 0 16-7.16 16-16v-32c-.02-8.84-7.18-16-16.02-16zm-112 80c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-208-80h-5.2c-2.2-7.33-5.07-14.28-8.65-20.89l3.67-3.67c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0l-3.67 3.67A110.85 110.85 0 0 0 192 277.2V272c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v5.2c-7.33 2.2-14.28 5.07-20.89 8.65l-3.67-3.67c-6.25-6.25-16.38-6.25-22.63 0L58.18 304.8c-6.25 6.25-6.25 16.38 0 22.63l3.67 3.67a110.85 110.85 0 0 0-8.65 20.89H48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h5.2c2.2 7.33 5.07 14.28 8.65 20.89l-3.67 3.67c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l3.67-3.67c6.61 3.57 13.57 6.45 20.9 8.65v5.2c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-5.2c7.33-2.2 14.28-5.07 20.9-8.65l3.67 3.67c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63l-3.67-3.67a110.85 110.85 0 0 0 8.65-20.89h5.2c8.84 0 16-7.16 16-16v-32C288 359.16 280.84 352 272 352zm-112 80c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48z\"]\n};\nvar faTruckMoving = {\n prefix: 'fas',\n iconName: 'truck-moving',\n icon: [640, 512, [], \"f4df\", \"M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z\"]\n};\nvar faTruckPickup = {\n prefix: 'fas',\n iconName: 'truck-pickup',\n icon: [640, 512, [], \"f63c\", \"M624 288h-16v-64c0-17.67-14.33-32-32-32h-48L419.22 56.02A64.025 64.025 0 0 0 369.24 32H256c-17.67 0-32 14.33-32 32v128H64c-17.67 0-32 14.33-32 32v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h49.61c-.76 5.27-1.61 10.52-1.61 16 0 61.86 50.14 112 112 112s112-50.14 112-112c0-5.48-.85-10.73-1.61-16h67.23c-.76 5.27-1.61 10.52-1.61 16 0 61.86 50.14 112 112 112s112-50.14 112-112c0-5.48-.85-10.73-1.61-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM288 96h81.24l76.8 96H288V96zM176 416c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48zm288 0c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48z\"]\n};\nvar faTshirt = {\n prefix: 'fas',\n iconName: 'tshirt',\n icon: [640, 512, [], \"f553\", \"M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z\"]\n};\nvar faTty = {\n prefix: 'fas',\n iconName: 'tty',\n icon: [512, 512, [], \"f1e4\", \"M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z\"]\n};\nvar faTv = {\n prefix: 'fas',\n iconName: 'tv',\n icon: [640, 512, [], \"f26c\", \"M592 0H48A48 48 0 0 0 0 48v320a48 48 0 0 0 48 48h240v32H112a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H352v-32h240a48 48 0 0 0 48-48V48a48 48 0 0 0-48-48zm-16 352H64V64h512z\"]\n};\nvar faUmbrella = {\n prefix: 'fas',\n iconName: 'umbrella',\n icon: [576, 512, [], \"f0e9\", \"M575.7 280.8C547.1 144.5 437.3 62.6 320 49.9V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v17.9C138.3 62.6 29.5 144.5.3 280.8c-2.2 10.1 8.5 21.3 18.7 11.4 52-55 107.7-52.4 158.6 37 5.3 9.5 14.9 8.6 19.7 0 20.2-35.4 44.9-73.2 90.7-73.2 58.5 0 88.2 68.8 90.7 73.2 4.8 8.6 14.4 9.5 19.7 0 51-89.5 107.1-91.4 158.6-37 10.3 10 20.9-1.3 18.7-11.4zM256 301.7V432c0 8.8-7.2 16-16 16-7.8 0-13.2-5.3-15.1-10.7-5.9-16.7-24.1-25.4-40.8-19.5-16.7 5.9-25.4 24.2-19.5 40.8 11.2 31.9 41.6 53.3 75.4 53.3 44.1 0 80-35.9 80-80V301.6c-9.1-7.9-19.8-13.6-32-13.6-12.3.1-22.4 4.8-32 13.7z\"]\n};\nvar faUmbrellaBeach = {\n prefix: 'fas',\n iconName: 'umbrella-beach',\n icon: [640, 512, [], \"f5ca\", \"M115.38 136.9l102.11 37.18c35.19-81.54 86.21-144.29 139-173.7-95.88-4.89-188.78 36.96-248.53 111.8-6.69 8.4-2.66 21.05 7.42 24.72zm132.25 48.16l238.48 86.83c35.76-121.38 18.7-231.66-42.63-253.98-7.4-2.7-15.13-4-23.09-4-58.02.01-128.27 69.17-172.76 171.15zM521.48 60.5c6.22 16.3 10.83 34.6 13.2 55.19 5.74 49.89-1.42 108.23-18.95 166.98l102.62 37.36c10.09 3.67 21.31-3.43 21.57-14.17 2.32-95.69-41.91-187.44-118.44-245.36zM560 447.98H321.06L386 269.5l-60.14-21.9-72.9 200.37H16c-8.84 0-16 7.16-16 16.01v32.01C0 504.83 7.16 512 16 512h544c8.84 0 16-7.17 16-16.01v-32.01c0-8.84-7.16-16-16-16z\"]\n};\nvar faUnderline = {\n prefix: 'fas',\n iconName: 'underline',\n icon: [448, 512, [], \"f0cd\", \"M32 64h32v160c0 88.22 71.78 160 160 160s160-71.78 160-160V64h32a16 16 0 0 0 16-16V16a16 16 0 0 0-16-16H272a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32v160a80 80 0 0 1-160 0V64h32a16 16 0 0 0 16-16V16a16 16 0 0 0-16-16H32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm400 384H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faUndo = {\n prefix: 'fas',\n iconName: 'undo',\n icon: [512, 512, [], \"f0e2\", \"M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z\"]\n};\nvar faUndoAlt = {\n prefix: 'fas',\n iconName: 'undo-alt',\n icon: [512, 512, [], \"f2ea\", \"M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z\"]\n};\nvar faUniversalAccess = {\n prefix: 'fas',\n iconName: 'universal-access',\n icon: [512, 512, [], \"f29a\", \"M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z\"]\n};\nvar faUniversity = {\n prefix: 'fas',\n iconName: 'university',\n icon: [512, 512, [], \"f19c\", \"M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z\"]\n};\nvar faUnlink = {\n prefix: 'fas',\n iconName: 'unlink',\n icon: [512, 512, [], \"f127\", \"M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z\"]\n};\nvar faUnlock = {\n prefix: 'fas',\n iconName: 'unlock',\n icon: [448, 512, [], \"f09c\", \"M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z\"]\n};\nvar faUnlockAlt = {\n prefix: 'fas',\n iconName: 'unlock-alt',\n icon: [448, 512, [], \"f13e\", \"M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z\"]\n};\nvar faUpload = {\n prefix: 'fas',\n iconName: 'upload',\n icon: [512, 512, [], \"f093\", \"M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z\"]\n};\nvar faUser = {\n prefix: 'fas',\n iconName: 'user',\n icon: [448, 512, [], \"f007\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z\"]\n};\nvar faUserAlt = {\n prefix: 'fas',\n iconName: 'user-alt',\n icon: [512, 512, [], \"f406\", \"M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z\"]\n};\nvar faUserAltSlash = {\n prefix: 'fas',\n iconName: 'user-alt-slash',\n icon: [640, 512, [], \"f4fa\", \"M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z\"]\n};\nvar faUserAstronaut = {\n prefix: 'fas',\n iconName: 'user-astronaut',\n icon: [448, 512, [], \"f4fb\", \"M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z\"]\n};\nvar faUserCheck = {\n prefix: 'fas',\n iconName: 'user-check',\n icon: [640, 512, [], \"f4fc\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z\"]\n};\nvar faUserCircle = {\n prefix: 'fas',\n iconName: 'user-circle',\n icon: [496, 512, [], \"f2bd\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z\"]\n};\nvar faUserClock = {\n prefix: 'fas',\n iconName: 'user-clock',\n icon: [640, 512, [], \"f4fd\", \"M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z\"]\n};\nvar faUserCog = {\n prefix: 'fas',\n iconName: 'user-cog',\n icon: [640, 512, [], \"f4fe\", \"M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z\"]\n};\nvar faUserEdit = {\n prefix: 'fas',\n iconName: 'user-edit',\n icon: [640, 512, [], \"f4ff\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z\"]\n};\nvar faUserFriends = {\n prefix: 'fas',\n iconName: 'user-friends',\n icon: [640, 512, [], \"f500\", \"M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z\"]\n};\nvar faUserGraduate = {\n prefix: 'fas',\n iconName: 'user-graduate',\n icon: [448, 512, [], \"f501\", \"M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z\"]\n};\nvar faUserInjured = {\n prefix: 'fas',\n iconName: 'user-injured',\n icon: [448, 512, [], \"f728\", \"M277.37 11.98C261.08 4.47 243.11 0 224 0c-53.69 0-99.5 33.13-118.51 80h81.19l90.69-68.02zM342.51 80c-7.9-19.47-20.67-36.2-36.49-49.52L239.99 80h102.52zM224 256c70.69 0 128-57.31 128-128 0-5.48-.95-10.7-1.61-16H97.61c-.67 5.3-1.61 10.52-1.61 16 0 70.69 57.31 128 128 128zM80 299.7V512h128.26l-98.45-221.52A132.835 132.835 0 0 0 80 299.7zM0 464c0 26.51 21.49 48 48 48V320.24C18.88 344.89 0 381.26 0 422.4V464zm256-48h-55.38l42.67 96H256c26.47 0 48-21.53 48-48s-21.53-48-48-48zm57.6-128h-16.71c-22.24 10.18-46.88 16-72.89 16s-50.65-5.82-72.89-16h-7.37l42.67 96H256c44.11 0 80 35.89 80 80 0 18.08-6.26 34.59-16.41 48H400c26.51 0 48-21.49 48-48v-41.6c0-74.23-60.17-134.4-134.4-134.4z\"]\n};\nvar faUserLock = {\n prefix: 'fas',\n iconName: 'user-lock',\n icon: [640, 512, [], \"f502\", \"M224 256A128 128 0 1 0 96 128a128 128 0 0 0 128 128zm96 64a63.08 63.08 0 0 1 8.1-30.5c-4.8-.5-9.5-1.5-14.5-1.5h-16.7a174.08 174.08 0 0 1-145.8 0h-16.7A134.43 134.43 0 0 0 0 422.4V464a48 48 0 0 0 48 48h280.9a63.54 63.54 0 0 1-8.9-32zm288-32h-32v-80a80 80 0 0 0-160 0v80h-32a32 32 0 0 0-32 32v160a32 32 0 0 0 32 32h224a32 32 0 0 0 32-32V320a32 32 0 0 0-32-32zM496 432a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm32-144h-64v-80a32 32 0 0 1 64 0z\"]\n};\nvar faUserMd = {\n prefix: 'fas',\n iconName: 'user-md',\n icon: [448, 512, [], \"f0f0\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z\"]\n};\nvar faUserMinus = {\n prefix: 'fas',\n iconName: 'user-minus',\n icon: [640, 512, [], \"f503\", \"M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z\"]\n};\nvar faUserNinja = {\n prefix: 'fas',\n iconName: 'user-ninja',\n icon: [448, 512, [], \"f504\", \"M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z\"]\n};\nvar faUserNurse = {\n prefix: 'fas',\n iconName: 'user-nurse',\n icon: [448, 512, [], \"f82f\", \"M319.41,320,224,415.39,128.59,320C57.1,323.1,0,381.6,0,453.79A58.21,58.21,0,0,0,58.21,512H389.79A58.21,58.21,0,0,0,448,453.79C448,381.6,390.9,323.1,319.41,320ZM224,304A128,128,0,0,0,352,176V65.82a32,32,0,0,0-20.76-30L246.47,4.07a64,64,0,0,0-44.94,0L116.76,35.86A32,32,0,0,0,96,65.82V176A128,128,0,0,0,224,304ZM184,71.67a5,5,0,0,1,5-5h21.67V45a5,5,0,0,1,5-5h16.66a5,5,0,0,1,5,5V66.67H259a5,5,0,0,1,5,5V88.33a5,5,0,0,1-5,5H237.33V115a5,5,0,0,1-5,5H215.67a5,5,0,0,1-5-5V93.33H189a5,5,0,0,1-5-5ZM144,160H304v16a80,80,0,0,1-160,0Z\"]\n};\nvar faUserPlus = {\n prefix: 'fas',\n iconName: 'user-plus',\n icon: [640, 512, [], \"f234\", \"M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z\"]\n};\nvar faUserSecret = {\n prefix: 'fas',\n iconName: 'user-secret',\n icon: [448, 512, [], \"f21b\", \"M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z\"]\n};\nvar faUserShield = {\n prefix: 'fas',\n iconName: 'user-shield',\n icon: [640, 512, [], \"f505\", \"M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z\"]\n};\nvar faUserSlash = {\n prefix: 'fas',\n iconName: 'user-slash',\n icon: [640, 512, [], \"f506\", \"M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z\"]\n};\nvar faUserTag = {\n prefix: 'fas',\n iconName: 'user-tag',\n icon: [640, 512, [], \"f507\", \"M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z\"]\n};\nvar faUserTie = {\n prefix: 'fas',\n iconName: 'user-tie',\n icon: [448, 512, [], \"f508\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z\"]\n};\nvar faUserTimes = {\n prefix: 'fas',\n iconName: 'user-times',\n icon: [640, 512, [], \"f235\", \"M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z\"]\n};\nvar faUsers = {\n prefix: 'fas',\n iconName: 'users',\n icon: [640, 512, [], \"f0c0\", \"M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z\"]\n};\nvar faUsersCog = {\n prefix: 'fas',\n iconName: 'users-cog',\n icon: [640, 512, [], \"f509\", \"M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z\"]\n};\nvar faUsersSlash = {\n prefix: 'fas',\n iconName: 'users-slash',\n icon: [640, 512, [], \"e073\", \"M132.65,212.32,36.21,137.78A63.4,63.4,0,0,0,32,160a63.84,63.84,0,0,0,100.65,52.32Zm40.44,62.28A63.79,63.79,0,0,0,128,256H64A64.06,64.06,0,0,0,0,320v32a32,32,0,0,0,32,32H97.91A146.62,146.62,0,0,1,173.09,274.6ZM544,224a64,64,0,1,0-64-64A64.06,64.06,0,0,0,544,224ZM500.56,355.11a114.24,114.24,0,0,0-84.47-65.28L361,247.23c41.46-16.3,71-55.92,71-103.23A111.93,111.93,0,0,0,320,32c-57.14,0-103.69,42.83-110.6,98.08L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.46A16,16,0,0,0,6.18,53.91L594.53,508.63A16,16,0,0,0,617,505.82l19.64-25.27a16,16,0,0,0-2.81-22.45ZM128,403.21V432a48,48,0,0,0,48,48H464a47.45,47.45,0,0,0,12.57-1.87L232,289.13C173.74,294.83,128,343.42,128,403.21ZM576,256H512a63.79,63.79,0,0,0-45.09,18.6A146.29,146.29,0,0,1,542,384h66a32,32,0,0,0,32-32V320A64.06,64.06,0,0,0,576,256Z\"]\n};\nvar faUtensilSpoon = {\n prefix: 'fas',\n iconName: 'utensil-spoon',\n icon: [512, 512, [], \"f2e5\", \"M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z\"]\n};\nvar faUtensils = {\n prefix: 'fas',\n iconName: 'utensils',\n icon: [416, 512, [], \"f2e7\", \"M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z\"]\n};\nvar faVectorSquare = {\n prefix: 'fas',\n iconName: 'vector-square',\n icon: [512, 512, [], \"f5cb\", \"M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z\"]\n};\nvar faVenus = {\n prefix: 'fas',\n iconName: 'venus',\n icon: [288, 512, [], \"f221\", \"M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z\"]\n};\nvar faVenusDouble = {\n prefix: 'fas',\n iconName: 'venus-double',\n icon: [512, 512, [], \"f226\", \"M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z\"]\n};\nvar faVenusMars = {\n prefix: 'fas',\n iconName: 'venus-mars',\n icon: [576, 512, [], \"f228\", \"M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faVest = {\n prefix: 'fas',\n iconName: 'vest',\n icon: [448, 512, [], \"e085\", \"M437.252,239.877,384,160V32A32,32,0,0,0,352,0H320a24.021,24.021,0,0,0-13.312,4.031l-25,16.672a103.794,103.794,0,0,1-115.376,0l-25-16.672A24.021,24.021,0,0,0,128,0H96A32,32,0,0,0,64,32V160L10.748,239.877A64,64,0,0,0,0,275.377V480a32,32,0,0,0,32,32H192V288a31.987,31.987,0,0,1,1.643-10.119L207.135,237.4,150.188,66.564A151.518,151.518,0,0,0,224,86.234a151.55,151.55,0,0,0,73.812-19.672L224,288V512H416a32,32,0,0,0,32-32V275.377A64,64,0,0,0,437.252,239.877ZM131.312,371.312l-48,48a16,16,0,0,1-22.624-22.624l48-48a16,16,0,0,1,22.624,22.624Zm256,48a15.992,15.992,0,0,1-22.624,0l-48-48a16,16,0,0,1,22.624-22.624l48,48A15.993,15.993,0,0,1,387.312,419.312Z\"]\n};\nvar faVestPatches = {\n prefix: 'fas',\n iconName: 'vest-patches',\n icon: [448, 512, [], \"e086\", \"M437.252,239.877,384,160V32A32,32,0,0,0,352,0H320a23.982,23.982,0,0,0-13.312,4.031l-25,16.672a103.794,103.794,0,0,1-115.376,0l-25-16.672A23.982,23.982,0,0,0,128,0H96A32,32,0,0,0,64,32V160L10.748,239.877A64,64,0,0,0,0,275.377V480a32,32,0,0,0,32,32H192V288a31.987,31.987,0,0,1,1.643-10.119L207.135,237.4,150.188,66.561A151.579,151.579,0,0,0,224,86.234a151.565,151.565,0,0,0,73.811-19.668L224,288V512H416a32,32,0,0,0,32-32V275.377A64,64,0,0,0,437.252,239.877ZM63.5,272.484a12.01,12.01,0,0,1,17-16.968l15.5,15.5,15.5-15.5a12.01,12.01,0,0,1,17,16.968L112.984,288,128.5,303.516a12.01,12.01,0,0,1-17,16.968L96,304.984l-15.5,15.5a12.01,12.01,0,0,1-17-16.968L79.016,288ZM96,456a40,40,0,1,1,40-40A40,40,0,0,1,96,456ZM359.227,335.785,310.7,336a6.671,6.671,0,0,1-6.7-6.7l.215-48.574A24.987,24.987,0,0,1,331.43,256.1c12.789,1.162,22.129,12.619,22.056,25.419l-.037,5.057,5.051-.037c12.826-.035,24.236,9.275,25.4,22.076A24.948,24.948,0,0,1,359.227,335.785Z\"]\n};\nvar faVial = {\n prefix: 'fas',\n iconName: 'vial',\n icon: [480, 512, [], \"f492\", \"M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z\"]\n};\nvar faVials = {\n prefix: 'fas',\n iconName: 'vials',\n icon: [640, 512, [], \"f493\", \"M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z\"]\n};\nvar faVideo = {\n prefix: 'fas',\n iconName: 'video',\n icon: [576, 512, [], \"f03d\", \"M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z\"]\n};\nvar faVideoSlash = {\n prefix: 'fas',\n iconName: 'video-slash',\n icon: [640, 512, [], \"f4e2\", \"M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z\"]\n};\nvar faVihara = {\n prefix: 'fas',\n iconName: 'vihara',\n icon: [640, 512, [], \"f6a7\", \"M632.88 400.71L544 352v-64l55.16-17.69c11.79-5.9 11.79-22.72 0-28.62L480 192v-64l27.31-16.3c7.72-7.72 5.61-20.74-4.16-25.62L320 0 136.85 86.07c-9.77 4.88-11.88 17.9-4.16 25.62L160 128v64L40.84 241.69c-11.79 5.9-11.79 22.72 0 28.62L96 288v64L7.12 400.71c-5.42 3.62-7.7 9.63-7 15.29.62 5.01 3.57 9.75 8.72 12.33L64 448v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h160v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h160v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48l55.15-19.67c5.16-2.58 8.1-7.32 8.72-12.33.71-5.67-1.57-11.68-6.99-15.29zM224 128h192v64H224v-64zm-64 224v-64h320v64H160z\"]\n};\nvar faVirus = {\n prefix: 'fas',\n iconName: 'virus',\n icon: [512, 512, [], \"e074\", \"M483.55,227.55H462c-50.68,0-76.07-61.27-40.23-97.11L437,115.19A28.44,28.44,0,0,0,396.8,75L381.56,90.22c-35.84,35.83-97.11,10.45-97.11-40.23V28.44a28.45,28.45,0,0,0-56.9,0V50c0,50.68-61.27,76.06-97.11,40.23L115.2,75A28.44,28.44,0,0,0,75,115.19l15.25,15.25c35.84,35.84,10.45,97.11-40.23,97.11H28.45a28.45,28.45,0,1,0,0,56.89H50c50.68,0,76.07,61.28,40.23,97.12L75,396.8A28.45,28.45,0,0,0,115.2,437l15.24-15.25c35.84-35.84,97.11-10.45,97.11,40.23v21.54a28.45,28.45,0,0,0,56.9,0V462c0-50.68,61.27-76.07,97.11-40.23L396.8,437A28.45,28.45,0,0,0,437,396.8l-15.25-15.24c-35.84-35.84-10.45-97.12,40.23-97.12h21.54a28.45,28.45,0,1,0,0-56.89ZM224,272a48,48,0,1,1,48-48A48,48,0,0,1,224,272Zm80,56a24,24,0,1,1,24-24A24,24,0,0,1,304,328Z\"]\n};\nvar faVirusSlash = {\n prefix: 'fas',\n iconName: 'virus-slash',\n icon: [640, 512, [], \"e075\", \"M114,227.6H92.4C76.7,227.6,64,240.3,64,256s12.7,28.4,28.4,28.4H114c50.7,0,76.1,61.3,40.2,97.1L139,396.8 c-11.5,10.7-12.2,28.7-1.6,40.2s28.7,12.2,40.2,1.6c0.5-0.5,1.1-1,1.6-1.6l15.2-15.2c35.8-35.8,97.1-10.5,97.1,40.2v21.5 c0,15.7,12.8,28.4,28.5,28.4c15.7,0,28.4-12.7,28.4-28.4V462c0-26.6,17-45.9,38.2-53.4l-244.5-189 C133.7,224.7,123.9,227.5,114,227.6z M617,505.8l19.6-25.3c5.4-7,4.2-17-2.8-22.5L470.6,332c4.2-25.4,24.9-47.5,55.4-47.5h21.5 c15.7,0,28.4-12.7,28.4-28.4s-12.7-28.4-28.4-28.4H526c-50.7,0-76.1-61.3-40.2-97.1l15.2-15.3c10.7-11.5,10-29.5-1.6-40.2 c-10.9-10.1-27.7-10.1-38.6,0l-15.2,15.2c-35.8,35.8-97.1,10.5-97.1-40.2V28.5C348.4,12.7,335.7,0,320,0 c-15.7,0-28.4,12.7-28.4,28.4V50c0,50.7-61.3,76.1-97.1,40.2L179.2,75c-11.1-11.1-29.4-10.6-40.5,0.5L45.5,3.4 c-7-5.4-17-4.2-22.5,2.8L3.4,31.5c-5.4,7-4.2,17,2.8,22.5l588.4,454.7C601.5,514.1,611.6,512.8,617,505.8z M335.4,227.5l-62.9-48.6 c4.9-1.8,10.2-2.8,15.4-2.9c26.5,0,48,21.5,48,48C336,225.2,335.5,226.3,335.4,227.5z\"]\n};\nvar faViruses = {\n prefix: 'fas',\n iconName: 'viruses',\n icon: [640, 512, [], \"e076\", \"M624,352H611.88c-28.51,0-42.79-34.47-22.63-54.63l8.58-8.57a16,16,0,1,0-22.63-22.63l-8.57,8.58C546.47,294.91,512,280.63,512,252.12V240a16,16,0,0,0-32,0v12.12c0,28.51-34.47,42.79-54.63,22.63l-8.57-8.58a16,16,0,0,0-22.63,22.63l8.58,8.57c20.16,20.16,5.88,54.63-22.63,54.63H368a16,16,0,0,0,0,32h12.12c28.51,0,42.79,34.47,22.63,54.63l-8.58,8.57a16,16,0,1,0,22.63,22.63l8.57-8.58c20.16-20.16,54.63-5.88,54.63,22.63V496a16,16,0,0,0,32,0V483.88c0-28.51,34.47-42.79,54.63-22.63l8.57,8.58a16,16,0,1,0,22.63-22.63l-8.58-8.57C569.09,418.47,583.37,384,611.88,384H624a16,16,0,0,0,0-32ZM480,384a32,32,0,1,1,32-32A32,32,0,0,1,480,384ZM346.51,213.33h16.16a21.33,21.33,0,0,0,0-42.66H346.51c-38,0-57.05-46-30.17-72.84l11.43-11.44A21.33,21.33,0,0,0,297.6,56.23L286.17,67.66c-26.88,26.88-72.84,7.85-72.84-30.17V21.33a21.33,21.33,0,0,0-42.66,0V37.49c0,38-46,57.05-72.84,30.17L86.4,56.23A21.33,21.33,0,0,0,56.23,86.39L67.66,97.83c26.88,26.88,7.85,72.84-30.17,72.84H21.33a21.33,21.33,0,0,0,0,42.66H37.49c38,0,57.05,46,30.17,72.84L56.23,297.6A21.33,21.33,0,1,0,86.4,327.77l11.43-11.43c26.88-26.88,72.84-7.85,72.84,30.17v16.16a21.33,21.33,0,0,0,42.66,0V346.51c0-38,46-57.05,72.84-30.17l11.43,11.43a21.33,21.33,0,0,0,30.17-30.17l-11.43-11.43C289.46,259.29,308.49,213.33,346.51,213.33ZM160,192a32,32,0,1,1,32-32A32,32,0,0,1,160,192Zm80,32a16,16,0,1,1,16-16A16,16,0,0,1,240,224Z\"]\n};\nvar faVoicemail = {\n prefix: 'fas',\n iconName: 'voicemail',\n icon: [640, 512, [], \"f897\", \"M496 128a144 144 0 0 0-119.74 224H263.74A144 144 0 1 0 144 416h352a144 144 0 0 0 0-288zM64 272a80 80 0 1 1 80 80 80 80 0 0 1-80-80zm432 80a80 80 0 1 1 80-80 80 80 0 0 1-80 80z\"]\n};\nvar faVolleyballBall = {\n prefix: 'fas',\n iconName: 'volleyball-ball',\n icon: [512, 512, [], \"f45f\", \"M231.39 243.48a285.56 285.56 0 0 0-22.7-105.7c-90.8 42.4-157.5 122.4-180.3 216.8a249 249 0 0 0 56.9 81.1 333.87 333.87 0 0 1 146.1-192.2zm-36.9-134.4a284.23 284.23 0 0 0-57.4-70.7c-91 49.8-144.8 152.9-125 262.2 33.4-83.1 98.4-152 182.4-191.5zm187.6 165.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5A333.87 333.87 0 0 1 279.19 241a285 285 0 0 0 102.9 33.18zm-124.7 9.5a286.33 286.33 0 0 0-80.2 72.6c82 57.3 184.5 75.1 277.5 47.8a247.15 247.15 0 0 0 42.2-89.9 336.1 336.1 0 0 1-80.9 10.4c-54.6-.1-108.9-14.1-158.6-40.9zm-98.3 99.7c-15.2 26-25.7 54.4-32.1 84.2a247.07 247.07 0 0 0 289-22.1c-112.9 16.1-203.3-24.8-256.9-62.1zm180.3-360.6c55.3 70.4 82.5 161.2 74.6 253.6a286.59 286.59 0 0 0 89.7-14.2c0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z\"]\n};\nvar faVolumeDown = {\n prefix: 'fas',\n iconName: 'volume-down',\n icon: [384, 512, [], \"f027\", \"M215.03 72.04L126.06 161H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V89.02c0-21.47-25.96-31.98-40.97-16.98zm123.2 108.08c-11.58-6.33-26.19-2.16-32.61 9.45-6.39 11.61-2.16 26.2 9.45 32.61C327.98 229.28 336 242.62 336 257c0 14.38-8.02 27.72-20.92 34.81-11.61 6.41-15.84 21-9.45 32.61 6.43 11.66 21.05 15.8 32.61 9.45 28.23-15.55 45.77-45 45.77-76.88s-17.54-61.32-45.78-76.87z\"]\n};\nvar faVolumeMute = {\n prefix: 'fas',\n iconName: 'volume-mute',\n icon: [512, 512, [], \"f6a9\", \"M215.03 71.05L126.06 160H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V88.02c0-21.46-25.96-31.98-40.97-16.97zM461.64 256l45.64-45.64c6.3-6.3 6.3-16.52 0-22.82l-22.82-22.82c-6.3-6.3-16.52-6.3-22.82 0L416 210.36l-45.64-45.64c-6.3-6.3-16.52-6.3-22.82 0l-22.82 22.82c-6.3 6.3-6.3 16.52 0 22.82L370.36 256l-45.63 45.63c-6.3 6.3-6.3 16.52 0 22.82l22.82 22.82c6.3 6.3 16.52 6.3 22.82 0L416 301.64l45.64 45.64c6.3 6.3 16.52 6.3 22.82 0l22.82-22.82c6.3-6.3 6.3-16.52 0-22.82L461.64 256z\"]\n};\nvar faVolumeOff = {\n prefix: 'fas',\n iconName: 'volume-off',\n icon: [256, 512, [], \"f026\", \"M215 71l-89 89H24a24 24 0 0 0-24 24v144a24 24 0 0 0 24 24h102.06L215 441c15 15 41 4.47 41-17V88c0-21.47-26-32-41-17z\"]\n};\nvar faVolumeUp = {\n prefix: 'fas',\n iconName: 'volume-up',\n icon: [576, 512, [], \"f028\", \"M215.03 71.05L126.06 160H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V88.02c0-21.46-25.96-31.98-40.97-16.97zm233.32-51.08c-11.17-7.33-26.18-4.24-33.51 6.95-7.34 11.17-4.22 26.18 6.95 33.51 66.27 43.49 105.82 116.6 105.82 195.58 0 78.98-39.55 152.09-105.82 195.58-11.17 7.32-14.29 22.34-6.95 33.5 7.04 10.71 21.93 14.56 33.51 6.95C528.27 439.58 576 351.33 576 256S528.27 72.43 448.35 19.97zM480 256c0-63.53-32.06-121.94-85.77-156.24-11.19-7.14-26.03-3.82-33.12 7.46s-3.78 26.21 7.41 33.36C408.27 165.97 432 209.11 432 256s-23.73 90.03-63.48 115.42c-11.19 7.14-14.5 22.07-7.41 33.36 6.51 10.36 21.12 15.14 33.12 7.46C447.94 377.94 480 319.54 480 256zm-141.77-76.87c-11.58-6.33-26.19-2.16-32.61 9.45-6.39 11.61-2.16 26.2 9.45 32.61C327.98 228.28 336 241.63 336 256c0 14.38-8.02 27.72-20.92 34.81-11.61 6.41-15.84 21-9.45 32.61 6.43 11.66 21.05 15.8 32.61 9.45 28.23-15.55 45.77-45 45.77-76.88s-17.54-61.32-45.78-76.86z\"]\n};\nvar faVoteYea = {\n prefix: 'fas',\n iconName: 'vote-yea',\n icon: [640, 512, [], \"f772\", \"M608 320h-64v64h22.4c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8H96v-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h576c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32zm-96 64V64.3c0-17.9-14.5-32.3-32.3-32.3H160.4C142.5 32 128 46.5 128 64.3V384h384zM211.2 202l25.5-25.3c4.2-4.2 11-4.2 15.2.1l41.3 41.6 95.2-94.4c4.2-4.2 11-4.2 15.2.1l25.3 25.5c4.2 4.2 4.2 11-.1 15.2L300.5 292c-4.2 4.2-11 4.2-15.2-.1l-74.1-74.7c-4.3-4.2-4.2-11 0-15.2z\"]\n};\nvar faVrCardboard = {\n prefix: 'fas',\n iconName: 'vr-cardboard',\n icon: [640, 512, [], \"f729\", \"M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h160.22c25.19 0 48.03-14.77 58.36-37.74l27.74-61.64C286.21 331.08 302.35 320 320 320s33.79 11.08 41.68 28.62l27.74 61.64C399.75 433.23 422.6 448 447.78 448H608c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM160 304c-35.35 0-64-28.65-64-64s28.65-64 64-64 64 28.65 64 64-28.65 64-64 64zm320 0c-35.35 0-64-28.65-64-64s28.65-64 64-64 64 28.65 64 64-28.65 64-64 64z\"]\n};\nvar faWalking = {\n prefix: 'fas',\n iconName: 'walking',\n icon: [320, 512, [], \"f554\", \"M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z\"]\n};\nvar faWallet = {\n prefix: 'fas',\n iconName: 'wallet',\n icon: [512, 512, [], \"f555\", \"M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faWarehouse = {\n prefix: 'fas',\n iconName: 'warehouse',\n icon: [640, 512, [], \"f494\", \"M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z\"]\n};\nvar faWater = {\n prefix: 'fas',\n iconName: 'water',\n icon: [576, 512, [], \"f773\", \"M562.1 383.9c-21.5-2.4-42.1-10.5-57.9-22.9-14.1-11.1-34.2-11.3-48.2 0-37.9 30.4-107.2 30.4-145.7-1.5-13.5-11.2-33-9.1-46.7 1.8-38 30.1-106.9 30-145.2-1.7-13.5-11.2-33.3-8.9-47.1 2-15.5 12.2-36 20.1-57.7 22.4-7.9.8-13.6 7.8-13.6 15.7v32.2c0 9.1 7.6 16.8 16.7 16 28.8-2.5 56.1-11.4 79.4-25.9 56.5 34.6 137 34.1 192 0 56.5 34.6 137 34.1 192 0 23.3 14.2 50.9 23.3 79.1 25.8 9.1.8 16.7-6.9 16.7-16v-31.6c.1-8-5.7-15.4-13.8-16.3zm0-144c-21.5-2.4-42.1-10.5-57.9-22.9-14.1-11.1-34.2-11.3-48.2 0-37.9 30.4-107.2 30.4-145.7-1.5-13.5-11.2-33-9.1-46.7 1.8-38 30.1-106.9 30-145.2-1.7-13.5-11.2-33.3-8.9-47.1 2-15.5 12.2-36 20.1-57.7 22.4-7.9.8-13.6 7.8-13.6 15.7v32.2c0 9.1 7.6 16.8 16.7 16 28.8-2.5 56.1-11.4 79.4-25.9 56.5 34.6 137 34.1 192 0 56.5 34.6 137 34.1 192 0 23.3 14.2 50.9 23.3 79.1 25.8 9.1.8 16.7-6.9 16.7-16v-31.6c.1-8-5.7-15.4-13.8-16.3zm0-144C540.6 93.4 520 85.4 504.2 73 490.1 61.9 470 61.7 456 73c-37.9 30.4-107.2 30.4-145.7-1.5-13.5-11.2-33-9.1-46.7 1.8-38 30.1-106.9 30-145.2-1.7-13.5-11.2-33.3-8.9-47.1 2-15.5 12.2-36 20.1-57.7 22.4-7.9.8-13.6 7.8-13.6 15.7v32.2c0 9.1 7.6 16.8 16.7 16 28.8-2.5 56.1-11.4 79.4-25.9 56.5 34.6 137 34.1 192 0 56.5 34.6 137 34.1 192 0 23.3 14.2 50.9 23.3 79.1 25.8 9.1.8 16.7-6.9 16.7-16v-31.6c.1-8-5.7-15.4-13.8-16.3z\"]\n};\nvar faWaveSquare = {\n prefix: 'fas',\n iconName: 'wave-square',\n icon: [640, 512, [], \"f83e\", \"M476 480H324a36 36 0 0 1-36-36V96h-96v156a36 36 0 0 1-36 36H16a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h112V68a36 36 0 0 1 36-36h152a36 36 0 0 1 36 36v348h96V260a36 36 0 0 1 36-36h140a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H512v156a36 36 0 0 1-36 36z\"]\n};\nvar faWeight = {\n prefix: 'fas',\n iconName: 'weight',\n icon: [512, 512, [], \"f496\", \"M448 64h-25.98C438.44 92.28 448 125.01 448 160c0 105.87-86.13 192-192 192S64 265.87 64 160c0-34.99 9.56-67.72 25.98-96H64C28.71 64 0 92.71 0 128v320c0 35.29 28.71 64 64 64h384c35.29 0 64-28.71 64-64V128c0-35.29-28.71-64-64-64zM256 320c88.37 0 160-71.63 160-160S344.37 0 256 0 96 71.63 96 160s71.63 160 160 160zm-.3-151.94l33.58-78.36c3.5-8.17 12.94-11.92 21.03-8.41 8.12 3.48 11.88 12.89 8.41 21l-33.67 78.55C291.73 188 296 197.45 296 208c0 22.09-17.91 40-40 40s-40-17.91-40-40c0-21.98 17.76-39.77 39.7-39.94z\"]\n};\nvar faWeightHanging = {\n prefix: 'fas',\n iconName: 'weight-hanging',\n icon: [512, 512, [], \"f5cd\", \"M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96s-96 42.98-96 96c0 11.28 2.3 21.95 5.88 32h-60.25c-14.43 0-27.08 10.54-30.87 25.72L1.72 445.86C-6.61 479.17 16.38 512 48.03 512h415.95c31.64 0 54.63-32.83 46.3-66.14zM256 128c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z\"]\n};\nvar faWheelchair = {\n prefix: 'fas',\n iconName: 'wheelchair',\n icon: [512, 512, [], \"f193\", \"M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z\"]\n};\nvar faWifi = {\n prefix: 'fas',\n iconName: 'wifi',\n icon: [640, 512, [], \"f1eb\", \"M634.91 154.88C457.74-8.99 182.19-8.93 5.09 154.88c-6.66 6.16-6.79 16.59-.35 22.98l34.24 33.97c6.14 6.1 16.02 6.23 22.4.38 145.92-133.68 371.3-133.71 517.25 0 6.38 5.85 16.26 5.71 22.4-.38l34.24-33.97c6.43-6.39 6.3-16.82-.36-22.98zM320 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm202.67-83.59c-115.26-101.93-290.21-101.82-405.34 0-6.9 6.1-7.12 16.69-.57 23.15l34.44 33.99c6 5.92 15.66 6.32 22.05.8 83.95-72.57 209.74-72.41 293.49 0 6.39 5.52 16.05 5.13 22.05-.8l34.44-33.99c6.56-6.46 6.33-17.06-.56-23.15z\"]\n};\nvar faWind = {\n prefix: 'fas',\n iconName: 'wind',\n icon: [512, 512, [], \"f72e\", \"M156.7 256H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h142.2c15.9 0 30.8 10.9 33.4 26.6 3.3 20-12.1 37.4-31.6 37.4-14.1 0-26.1-9.2-30.4-21.9-2.1-6.3-8.6-10.1-15.2-10.1H81.6c-9.8 0-17.7 8.8-15.9 18.4 8.6 44.1 47.6 77.6 94.2 77.6 57.1 0 102.7-50.1 95.2-108.6C249 291 205.4 256 156.7 256zM16 224h336c59.7 0 106.8-54.8 93.8-116.7-7.6-36.2-36.9-65.5-73.1-73.1-55.4-11.6-105.1 24.9-114.9 75.5-1.9 9.6 6.1 18.3 15.8 18.3h32.8c6.7 0 13.1-3.8 15.2-10.1C325.9 105.2 337.9 96 352 96c19.4 0 34.9 17.4 31.6 37.4-2.6 15.7-17.4 26.6-33.4 26.6H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16zm384 32H243.7c19.3 16.6 33.2 38.8 39.8 64H400c26.5 0 48 21.5 48 48s-21.5 48-48 48c-17.9 0-33.3-9.9-41.6-24.4-2.9-5-8.7-7.6-14.5-7.6h-33.8c-10.9 0-19 10.8-15.3 21.1 17.8 50.6 70.5 84.8 129.4 72.3 41.2-8.7 75.1-41.6 84.7-82.7C526 321.5 470.5 256 400 256z\"]\n};\nvar faWindowClose = {\n prefix: 'fas',\n iconName: 'window-close',\n icon: [512, 512, [], \"f410\", \"M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z\"]\n};\nvar faWindowMaximize = {\n prefix: 'fas',\n iconName: 'window-maximize',\n icon: [512, 512, [], \"f2d0\", \"M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z\"]\n};\nvar faWindowMinimize = {\n prefix: 'fas',\n iconName: 'window-minimize',\n icon: [512, 512, [], \"f2d1\", \"M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z\"]\n};\nvar faWindowRestore = {\n prefix: 'fas',\n iconName: 'window-restore',\n icon: [512, 512, [], \"f2d2\", \"M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z\"]\n};\nvar faWineBottle = {\n prefix: 'fas',\n iconName: 'wine-bottle',\n icon: [512, 512, [], \"f72f\", \"M507.31 72.57L439.43 4.69c-6.25-6.25-16.38-6.25-22.63 0l-22.63 22.63c-6.25 6.25-6.25 16.38 0 22.63l-76.67 76.67c-46.58-19.7-102.4-10.73-140.37 27.23L18.75 312.23c-24.99 24.99-24.99 65.52 0 90.51l90.51 90.51c24.99 24.99 65.52 24.99 90.51 0l158.39-158.39c37.96-37.96 46.93-93.79 27.23-140.37l76.67-76.67c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.24-6.24 6.24-16.37-.01-22.62zM179.22 423.29l-90.51-90.51 122.04-122.04 90.51 90.51-122.04 122.04z\"]\n};\nvar faWineGlass = {\n prefix: 'fas',\n iconName: 'wine-glass',\n icon: [288, 512, [], \"f4e3\", \"M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40z\"]\n};\nvar faWineGlassAlt = {\n prefix: 'fas',\n iconName: 'wine-glass-alt',\n icon: [288, 512, [], \"f5ce\", \"M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM61.75 48h164.5l7.17 80H54.58l7.17-80z\"]\n};\nvar faWonSign = {\n prefix: 'fas',\n iconName: 'won-sign',\n icon: [576, 512, [], \"f159\", \"M564 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-48l18.6-80.6c1.7-7.5-4-14.7-11.7-14.7h-46.1c-5.7 0-10.6 4-11.7 9.5L450.7 128H340.8l-19.7-86c-1.3-5.5-6.1-9.3-11.7-9.3h-44c-5.6 0-10.4 3.8-11.7 9.3l-20 86H125l-17.5-85.7c-1.1-5.6-6.1-9.6-11.8-9.6H53.6c-7.7 0-13.4 7.1-11.7 14.6L60 128H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h62.3l7.2 32H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h83.9l40.9 182.6c1.2 5.5 6.1 9.4 11.7 9.4h56.8c5.6 0 10.4-3.9 11.7-9.3L259.3 288h55.1l42.4 182.7c1.3 5.4 6.1 9.3 11.7 9.3h56.8c5.6 0 10.4-3.9 11.7-9.3L479.1 288H564c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-70.1l7.4-32zM183.8 342c-6.2 25.8-6.8 47.2-7.3 47.2h-1.1s-1.7-22-6.8-47.2l-11-54h38.8zm27.5-118h-66.8l-6.5-32h80.8zm62.9 0l2-8.6c1.9-8 3.5-16 4.8-23.4h11.8c1.3 7.4 2.9 15.4 4.8 23.4l2 8.6zm130.9 118c-5.1 25.2-6.8 47.2-6.8 47.2h-1.1c-.6 0-1.1-21.4-7.3-47.2l-12.4-54h39.1zm25.2-118h-67.4l-7.3-32h81.6z\"]\n};\nvar faWrench = {\n prefix: 'fas',\n iconName: 'wrench',\n icon: [512, 512, [], \"f0ad\", \"M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faXRay = {\n prefix: 'fas',\n iconName: 'x-ray',\n icon: [640, 512, [], \"f497\", \"M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faYenSign = {\n prefix: 'fas',\n iconName: 'yen-sign',\n icon: [384, 512, [], \"f157\", \"M351.2 32h-65.3c-4.6 0-8.8 2.6-10.8 6.7l-55.4 113.2c-14.5 34.7-27.1 71.9-27.1 71.9h-1.3s-12.6-37.2-27.1-71.9L108.8 38.7c-2-4.1-6.2-6.7-10.8-6.7H32.8c-9.1 0-14.8 9.7-10.6 17.6L102.3 200H44c-6.6 0-12 5.4-12 12v32c0 6.6 5.4 12 12 12h88.2l19.8 37.2V320H44c-6.6 0-12 5.4-12 12v32c0 6.6 5.4 12 12 12h108v92c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12v-92h108c6.6 0 12-5.4 12-12v-32c0-6.6-5.4-12-12-12H232v-26.8l19.8-37.2H340c6.6 0 12-5.4 12-12v-32c0-6.6-5.4-12-12-12h-58.3l80.1-150.4c4.3-7.9-1.5-17.6-10.6-17.6z\"]\n};\nvar faYinYang = {\n prefix: 'fas',\n iconName: 'yin-yang',\n icon: [496, 512, [], \"f6ad\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 376c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-128c-53.02 0-96 42.98-96 96s42.98 96 96 96c-106.04 0-192-85.96-192-192S141.96 64 248 64c53.02 0 96 42.98 96 96s-42.98 96-96 96zm0-128c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z\"]\n};\nvar _iconsCache = {\n faAd: faAd,\n faAddressBook: faAddressBook,\n faAddressCard: faAddressCard,\n faAdjust: faAdjust,\n faAirFreshener: faAirFreshener,\n faAlignCenter: faAlignCenter,\n faAlignJustify: faAlignJustify,\n faAlignLeft: faAlignLeft,\n faAlignRight: faAlignRight,\n faAllergies: faAllergies,\n faAmbulance: faAmbulance,\n faAmericanSignLanguageInterpreting: faAmericanSignLanguageInterpreting,\n faAnchor: faAnchor,\n faAngleDoubleDown: faAngleDoubleDown,\n faAngleDoubleLeft: faAngleDoubleLeft,\n faAngleDoubleRight: faAngleDoubleRight,\n faAngleDoubleUp: faAngleDoubleUp,\n faAngleDown: faAngleDown,\n faAngleLeft: faAngleLeft,\n faAngleRight: faAngleRight,\n faAngleUp: faAngleUp,\n faAngry: faAngry,\n faAnkh: faAnkh,\n faAppleAlt: faAppleAlt,\n faArchive: faArchive,\n faArchway: faArchway,\n faArrowAltCircleDown: faArrowAltCircleDown,\n faArrowAltCircleLeft: faArrowAltCircleLeft,\n faArrowAltCircleRight: faArrowAltCircleRight,\n faArrowAltCircleUp: faArrowAltCircleUp,\n faArrowCircleDown: faArrowCircleDown,\n faArrowCircleLeft: faArrowCircleLeft,\n faArrowCircleRight: faArrowCircleRight,\n faArrowCircleUp: faArrowCircleUp,\n faArrowDown: faArrowDown,\n faArrowLeft: faArrowLeft,\n faArrowRight: faArrowRight,\n faArrowUp: faArrowUp,\n faArrowsAlt: faArrowsAlt,\n faArrowsAltH: faArrowsAltH,\n faArrowsAltV: faArrowsAltV,\n faAssistiveListeningSystems: faAssistiveListeningSystems,\n faAsterisk: faAsterisk,\n faAt: faAt,\n faAtlas: faAtlas,\n faAtom: faAtom,\n faAudioDescription: faAudioDescription,\n faAward: faAward,\n faBaby: faBaby,\n faBabyCarriage: faBabyCarriage,\n faBackspace: faBackspace,\n faBackward: faBackward,\n faBacon: faBacon,\n faBacteria: faBacteria,\n faBacterium: faBacterium,\n faBahai: faBahai,\n faBalanceScale: faBalanceScale,\n faBalanceScaleLeft: faBalanceScaleLeft,\n faBalanceScaleRight: faBalanceScaleRight,\n faBan: faBan,\n faBandAid: faBandAid,\n faBarcode: faBarcode,\n faBars: faBars,\n faBaseballBall: faBaseballBall,\n faBasketballBall: faBasketballBall,\n faBath: faBath,\n faBatteryEmpty: faBatteryEmpty,\n faBatteryFull: faBatteryFull,\n faBatteryHalf: faBatteryHalf,\n faBatteryQuarter: faBatteryQuarter,\n faBatteryThreeQuarters: faBatteryThreeQuarters,\n faBed: faBed,\n faBeer: faBeer,\n faBell: faBell,\n faBellSlash: faBellSlash,\n faBezierCurve: faBezierCurve,\n faBible: faBible,\n faBicycle: faBicycle,\n faBiking: faBiking,\n faBinoculars: faBinoculars,\n faBiohazard: faBiohazard,\n faBirthdayCake: faBirthdayCake,\n faBlender: faBlender,\n faBlenderPhone: faBlenderPhone,\n faBlind: faBlind,\n faBlog: faBlog,\n faBold: faBold,\n faBolt: faBolt,\n faBomb: faBomb,\n faBone: faBone,\n faBong: faBong,\n faBook: faBook,\n faBookDead: faBookDead,\n faBookMedical: faBookMedical,\n faBookOpen: faBookOpen,\n faBookReader: faBookReader,\n faBookmark: faBookmark,\n faBorderAll: faBorderAll,\n faBorderNone: faBorderNone,\n faBorderStyle: faBorderStyle,\n faBowlingBall: faBowlingBall,\n faBox: faBox,\n faBoxOpen: faBoxOpen,\n faBoxTissue: faBoxTissue,\n faBoxes: faBoxes,\n faBraille: faBraille,\n faBrain: faBrain,\n faBreadSlice: faBreadSlice,\n faBriefcase: faBriefcase,\n faBriefcaseMedical: faBriefcaseMedical,\n faBroadcastTower: faBroadcastTower,\n faBroom: faBroom,\n faBrush: faBrush,\n faBug: faBug,\n faBuilding: faBuilding,\n faBullhorn: faBullhorn,\n faBullseye: faBullseye,\n faBurn: faBurn,\n faBus: faBus,\n faBusAlt: faBusAlt,\n faBusinessTime: faBusinessTime,\n faCalculator: faCalculator,\n faCalendar: faCalendar,\n faCalendarAlt: faCalendarAlt,\n faCalendarCheck: faCalendarCheck,\n faCalendarDay: faCalendarDay,\n faCalendarMinus: faCalendarMinus,\n faCalendarPlus: faCalendarPlus,\n faCalendarTimes: faCalendarTimes,\n faCalendarWeek: faCalendarWeek,\n faCamera: faCamera,\n faCameraRetro: faCameraRetro,\n faCampground: faCampground,\n faCandyCane: faCandyCane,\n faCannabis: faCannabis,\n faCapsules: faCapsules,\n faCar: faCar,\n faCarAlt: faCarAlt,\n faCarBattery: faCarBattery,\n faCarCrash: faCarCrash,\n faCarSide: faCarSide,\n faCaravan: faCaravan,\n faCaretDown: faCaretDown,\n faCaretLeft: faCaretLeft,\n faCaretRight: faCaretRight,\n faCaretSquareDown: faCaretSquareDown,\n faCaretSquareLeft: faCaretSquareLeft,\n faCaretSquareRight: faCaretSquareRight,\n faCaretSquareUp: faCaretSquareUp,\n faCaretUp: faCaretUp,\n faCarrot: faCarrot,\n faCartArrowDown: faCartArrowDown,\n faCartPlus: faCartPlus,\n faCashRegister: faCashRegister,\n faCat: faCat,\n faCertificate: faCertificate,\n faChair: faChair,\n faChalkboard: faChalkboard,\n faChalkboardTeacher: faChalkboardTeacher,\n faChargingStation: faChargingStation,\n faChartArea: faChartArea,\n faChartBar: faChartBar,\n faChartLine: faChartLine,\n faChartPie: faChartPie,\n faCheck: faCheck,\n faCheckCircle: faCheckCircle,\n faCheckDouble: faCheckDouble,\n faCheckSquare: faCheckSquare,\n faCheese: faCheese,\n faChess: faChess,\n faChessBishop: faChessBishop,\n faChessBoard: faChessBoard,\n faChessKing: faChessKing,\n faChessKnight: faChessKnight,\n faChessPawn: faChessPawn,\n faChessQueen: faChessQueen,\n faChessRook: faChessRook,\n faChevronCircleDown: faChevronCircleDown,\n faChevronCircleLeft: faChevronCircleLeft,\n faChevronCircleRight: faChevronCircleRight,\n faChevronCircleUp: faChevronCircleUp,\n faChevronDown: faChevronDown,\n faChevronLeft: faChevronLeft,\n faChevronRight: faChevronRight,\n faChevronUp: faChevronUp,\n faChild: faChild,\n faChurch: faChurch,\n faCircle: faCircle,\n faCircleNotch: faCircleNotch,\n faCity: faCity,\n faClinicMedical: faClinicMedical,\n faClipboard: faClipboard,\n faClipboardCheck: faClipboardCheck,\n faClipboardList: faClipboardList,\n faClock: faClock,\n faClone: faClone,\n faClosedCaptioning: faClosedCaptioning,\n faCloud: faCloud,\n faCloudDownloadAlt: faCloudDownloadAlt,\n faCloudMeatball: faCloudMeatball,\n faCloudMoon: faCloudMoon,\n faCloudMoonRain: faCloudMoonRain,\n faCloudRain: faCloudRain,\n faCloudShowersHeavy: faCloudShowersHeavy,\n faCloudSun: faCloudSun,\n faCloudSunRain: faCloudSunRain,\n faCloudUploadAlt: faCloudUploadAlt,\n faCocktail: faCocktail,\n faCode: faCode,\n faCodeBranch: faCodeBranch,\n faCoffee: faCoffee,\n faCog: faCog,\n faCogs: faCogs,\n faCoins: faCoins,\n faColumns: faColumns,\n faComment: faComment,\n faCommentAlt: faCommentAlt,\n faCommentDollar: faCommentDollar,\n faCommentDots: faCommentDots,\n faCommentMedical: faCommentMedical,\n faCommentSlash: faCommentSlash,\n faComments: faComments,\n faCommentsDollar: faCommentsDollar,\n faCompactDisc: faCompactDisc,\n faCompass: faCompass,\n faCompress: faCompress,\n faCompressAlt: faCompressAlt,\n faCompressArrowsAlt: faCompressArrowsAlt,\n faConciergeBell: faConciergeBell,\n faCookie: faCookie,\n faCookieBite: faCookieBite,\n faCopy: faCopy,\n faCopyright: faCopyright,\n faCouch: faCouch,\n faCreditCard: faCreditCard,\n faCrop: faCrop,\n faCropAlt: faCropAlt,\n faCross: faCross,\n faCrosshairs: faCrosshairs,\n faCrow: faCrow,\n faCrown: faCrown,\n faCrutch: faCrutch,\n faCube: faCube,\n faCubes: faCubes,\n faCut: faCut,\n faDatabase: faDatabase,\n faDeaf: faDeaf,\n faDemocrat: faDemocrat,\n faDesktop: faDesktop,\n faDharmachakra: faDharmachakra,\n faDiagnoses: faDiagnoses,\n faDice: faDice,\n faDiceD20: faDiceD20,\n faDiceD6: faDiceD6,\n faDiceFive: faDiceFive,\n faDiceFour: faDiceFour,\n faDiceOne: faDiceOne,\n faDiceSix: faDiceSix,\n faDiceThree: faDiceThree,\n faDiceTwo: faDiceTwo,\n faDigitalTachograph: faDigitalTachograph,\n faDirections: faDirections,\n faDisease: faDisease,\n faDivide: faDivide,\n faDizzy: faDizzy,\n faDna: faDna,\n faDog: faDog,\n faDollarSign: faDollarSign,\n faDolly: faDolly,\n faDollyFlatbed: faDollyFlatbed,\n faDonate: faDonate,\n faDoorClosed: faDoorClosed,\n faDoorOpen: faDoorOpen,\n faDotCircle: faDotCircle,\n faDove: faDove,\n faDownload: faDownload,\n faDraftingCompass: faDraftingCompass,\n faDragon: faDragon,\n faDrawPolygon: faDrawPolygon,\n faDrum: faDrum,\n faDrumSteelpan: faDrumSteelpan,\n faDrumstickBite: faDrumstickBite,\n faDumbbell: faDumbbell,\n faDumpster: faDumpster,\n faDumpsterFire: faDumpsterFire,\n faDungeon: faDungeon,\n faEdit: faEdit,\n faEgg: faEgg,\n faEject: faEject,\n faEllipsisH: faEllipsisH,\n faEllipsisV: faEllipsisV,\n faEnvelope: faEnvelope,\n faEnvelopeOpen: faEnvelopeOpen,\n faEnvelopeOpenText: faEnvelopeOpenText,\n faEnvelopeSquare: faEnvelopeSquare,\n faEquals: faEquals,\n faEraser: faEraser,\n faEthernet: faEthernet,\n faEuroSign: faEuroSign,\n faExchangeAlt: faExchangeAlt,\n faExclamation: faExclamation,\n faExclamationCircle: faExclamationCircle,\n faExclamationTriangle: faExclamationTriangle,\n faExpand: faExpand,\n faExpandAlt: faExpandAlt,\n faExpandArrowsAlt: faExpandArrowsAlt,\n faExternalLinkAlt: faExternalLinkAlt,\n faExternalLinkSquareAlt: faExternalLinkSquareAlt,\n faEye: faEye,\n faEyeDropper: faEyeDropper,\n faEyeSlash: faEyeSlash,\n faFan: faFan,\n faFastBackward: faFastBackward,\n faFastForward: faFastForward,\n faFaucet: faFaucet,\n faFax: faFax,\n faFeather: faFeather,\n faFeatherAlt: faFeatherAlt,\n faFemale: faFemale,\n faFighterJet: faFighterJet,\n faFile: faFile,\n faFileAlt: faFileAlt,\n faFileArchive: faFileArchive,\n faFileAudio: faFileAudio,\n faFileCode: faFileCode,\n faFileContract: faFileContract,\n faFileCsv: faFileCsv,\n faFileDownload: faFileDownload,\n faFileExcel: faFileExcel,\n faFileExport: faFileExport,\n faFileImage: faFileImage,\n faFileImport: faFileImport,\n faFileInvoice: faFileInvoice,\n faFileInvoiceDollar: faFileInvoiceDollar,\n faFileMedical: faFileMedical,\n faFileMedicalAlt: faFileMedicalAlt,\n faFilePdf: faFilePdf,\n faFilePowerpoint: faFilePowerpoint,\n faFilePrescription: faFilePrescription,\n faFileSignature: faFileSignature,\n faFileUpload: faFileUpload,\n faFileVideo: faFileVideo,\n faFileWord: faFileWord,\n faFill: faFill,\n faFillDrip: faFillDrip,\n faFilm: faFilm,\n faFilter: faFilter,\n faFingerprint: faFingerprint,\n faFire: faFire,\n faFireAlt: faFireAlt,\n faFireExtinguisher: faFireExtinguisher,\n faFirstAid: faFirstAid,\n faFish: faFish,\n faFistRaised: faFistRaised,\n faFlag: faFlag,\n faFlagCheckered: faFlagCheckered,\n faFlagUsa: faFlagUsa,\n faFlask: faFlask,\n faFlushed: faFlushed,\n faFolder: faFolder,\n faFolderMinus: faFolderMinus,\n faFolderOpen: faFolderOpen,\n faFolderPlus: faFolderPlus,\n faFont: faFont,\n faFontAwesomeLogoFull: faFontAwesomeLogoFull,\n faFootballBall: faFootballBall,\n faForward: faForward,\n faFrog: faFrog,\n faFrown: faFrown,\n faFrownOpen: faFrownOpen,\n faFunnelDollar: faFunnelDollar,\n faFutbol: faFutbol,\n faGamepad: faGamepad,\n faGasPump: faGasPump,\n faGavel: faGavel,\n faGem: faGem,\n faGenderless: faGenderless,\n faGhost: faGhost,\n faGift: faGift,\n faGifts: faGifts,\n faGlassCheers: faGlassCheers,\n faGlassMartini: faGlassMartini,\n faGlassMartiniAlt: faGlassMartiniAlt,\n faGlassWhiskey: faGlassWhiskey,\n faGlasses: faGlasses,\n faGlobe: faGlobe,\n faGlobeAfrica: faGlobeAfrica,\n faGlobeAmericas: faGlobeAmericas,\n faGlobeAsia: faGlobeAsia,\n faGlobeEurope: faGlobeEurope,\n faGolfBall: faGolfBall,\n faGopuram: faGopuram,\n faGraduationCap: faGraduationCap,\n faGreaterThan: faGreaterThan,\n faGreaterThanEqual: faGreaterThanEqual,\n faGrimace: faGrimace,\n faGrin: faGrin,\n faGrinAlt: faGrinAlt,\n faGrinBeam: faGrinBeam,\n faGrinBeamSweat: faGrinBeamSweat,\n faGrinHearts: faGrinHearts,\n faGrinSquint: faGrinSquint,\n faGrinSquintTears: faGrinSquintTears,\n faGrinStars: faGrinStars,\n faGrinTears: faGrinTears,\n faGrinTongue: faGrinTongue,\n faGrinTongueSquint: faGrinTongueSquint,\n faGrinTongueWink: faGrinTongueWink,\n faGrinWink: faGrinWink,\n faGripHorizontal: faGripHorizontal,\n faGripLines: faGripLines,\n faGripLinesVertical: faGripLinesVertical,\n faGripVertical: faGripVertical,\n faGuitar: faGuitar,\n faHSquare: faHSquare,\n faHamburger: faHamburger,\n faHammer: faHammer,\n faHamsa: faHamsa,\n faHandHolding: faHandHolding,\n faHandHoldingHeart: faHandHoldingHeart,\n faHandHoldingMedical: faHandHoldingMedical,\n faHandHoldingUsd: faHandHoldingUsd,\n faHandHoldingWater: faHandHoldingWater,\n faHandLizard: faHandLizard,\n faHandMiddleFinger: faHandMiddleFinger,\n faHandPaper: faHandPaper,\n faHandPeace: faHandPeace,\n faHandPointDown: faHandPointDown,\n faHandPointLeft: faHandPointLeft,\n faHandPointRight: faHandPointRight,\n faHandPointUp: faHandPointUp,\n faHandPointer: faHandPointer,\n faHandRock: faHandRock,\n faHandScissors: faHandScissors,\n faHandSparkles: faHandSparkles,\n faHandSpock: faHandSpock,\n faHands: faHands,\n faHandsHelping: faHandsHelping,\n faHandsWash: faHandsWash,\n faHandshake: faHandshake,\n faHandshakeAltSlash: faHandshakeAltSlash,\n faHandshakeSlash: faHandshakeSlash,\n faHanukiah: faHanukiah,\n faHardHat: faHardHat,\n faHashtag: faHashtag,\n faHatCowboy: faHatCowboy,\n faHatCowboySide: faHatCowboySide,\n faHatWizard: faHatWizard,\n faHdd: faHdd,\n faHeadSideCough: faHeadSideCough,\n faHeadSideCoughSlash: faHeadSideCoughSlash,\n faHeadSideMask: faHeadSideMask,\n faHeadSideVirus: faHeadSideVirus,\n faHeading: faHeading,\n faHeadphones: faHeadphones,\n faHeadphonesAlt: faHeadphonesAlt,\n faHeadset: faHeadset,\n faHeart: faHeart,\n faHeartBroken: faHeartBroken,\n faHeartbeat: faHeartbeat,\n faHelicopter: faHelicopter,\n faHighlighter: faHighlighter,\n faHiking: faHiking,\n faHippo: faHippo,\n faHistory: faHistory,\n faHockeyPuck: faHockeyPuck,\n faHollyBerry: faHollyBerry,\n faHome: faHome,\n faHorse: faHorse,\n faHorseHead: faHorseHead,\n faHospital: faHospital,\n faHospitalAlt: faHospitalAlt,\n faHospitalSymbol: faHospitalSymbol,\n faHospitalUser: faHospitalUser,\n faHotTub: faHotTub,\n faHotdog: faHotdog,\n faHotel: faHotel,\n faHourglass: faHourglass,\n faHourglassEnd: faHourglassEnd,\n faHourglassHalf: faHourglassHalf,\n faHourglassStart: faHourglassStart,\n faHouseDamage: faHouseDamage,\n faHouseUser: faHouseUser,\n faHryvnia: faHryvnia,\n faICursor: faICursor,\n faIceCream: faIceCream,\n faIcicles: faIcicles,\n faIcons: faIcons,\n faIdBadge: faIdBadge,\n faIdCard: faIdCard,\n faIdCardAlt: faIdCardAlt,\n faIgloo: faIgloo,\n faImage: faImage,\n faImages: faImages,\n faInbox: faInbox,\n faIndent: faIndent,\n faIndustry: faIndustry,\n faInfinity: faInfinity,\n faInfo: faInfo,\n faInfoCircle: faInfoCircle,\n faItalic: faItalic,\n faJedi: faJedi,\n faJoint: faJoint,\n faJournalWhills: faJournalWhills,\n faKaaba: faKaaba,\n faKey: faKey,\n faKeyboard: faKeyboard,\n faKhanda: faKhanda,\n faKiss: faKiss,\n faKissBeam: faKissBeam,\n faKissWinkHeart: faKissWinkHeart,\n faKiwiBird: faKiwiBird,\n faLandmark: faLandmark,\n faLanguage: faLanguage,\n faLaptop: faLaptop,\n faLaptopCode: faLaptopCode,\n faLaptopHouse: faLaptopHouse,\n faLaptopMedical: faLaptopMedical,\n faLaugh: faLaugh,\n faLaughBeam: faLaughBeam,\n faLaughSquint: faLaughSquint,\n faLaughWink: faLaughWink,\n faLayerGroup: faLayerGroup,\n faLeaf: faLeaf,\n faLemon: faLemon,\n faLessThan: faLessThan,\n faLessThanEqual: faLessThanEqual,\n faLevelDownAlt: faLevelDownAlt,\n faLevelUpAlt: faLevelUpAlt,\n faLifeRing: faLifeRing,\n faLightbulb: faLightbulb,\n faLink: faLink,\n faLiraSign: faLiraSign,\n faList: faList,\n faListAlt: faListAlt,\n faListOl: faListOl,\n faListUl: faListUl,\n faLocationArrow: faLocationArrow,\n faLock: faLock,\n faLockOpen: faLockOpen,\n faLongArrowAltDown: faLongArrowAltDown,\n faLongArrowAltLeft: faLongArrowAltLeft,\n faLongArrowAltRight: faLongArrowAltRight,\n faLongArrowAltUp: faLongArrowAltUp,\n faLowVision: faLowVision,\n faLuggageCart: faLuggageCart,\n faLungs: faLungs,\n faLungsVirus: faLungsVirus,\n faMagic: faMagic,\n faMagnet: faMagnet,\n faMailBulk: faMailBulk,\n faMale: faMale,\n faMap: faMap,\n faMapMarked: faMapMarked,\n faMapMarkedAlt: faMapMarkedAlt,\n faMapMarker: faMapMarker,\n faMapMarkerAlt: faMapMarkerAlt,\n faMapPin: faMapPin,\n faMapSigns: faMapSigns,\n faMarker: faMarker,\n faMars: faMars,\n faMarsDouble: faMarsDouble,\n faMarsStroke: faMarsStroke,\n faMarsStrokeH: faMarsStrokeH,\n faMarsStrokeV: faMarsStrokeV,\n faMask: faMask,\n faMedal: faMedal,\n faMedkit: faMedkit,\n faMeh: faMeh,\n faMehBlank: faMehBlank,\n faMehRollingEyes: faMehRollingEyes,\n faMemory: faMemory,\n faMenorah: faMenorah,\n faMercury: faMercury,\n faMeteor: faMeteor,\n faMicrochip: faMicrochip,\n faMicrophone: faMicrophone,\n faMicrophoneAlt: faMicrophoneAlt,\n faMicrophoneAltSlash: faMicrophoneAltSlash,\n faMicrophoneSlash: faMicrophoneSlash,\n faMicroscope: faMicroscope,\n faMinus: faMinus,\n faMinusCircle: faMinusCircle,\n faMinusSquare: faMinusSquare,\n faMitten: faMitten,\n faMobile: faMobile,\n faMobileAlt: faMobileAlt,\n faMoneyBill: faMoneyBill,\n faMoneyBillAlt: faMoneyBillAlt,\n faMoneyBillWave: faMoneyBillWave,\n faMoneyBillWaveAlt: faMoneyBillWaveAlt,\n faMoneyCheck: faMoneyCheck,\n faMoneyCheckAlt: faMoneyCheckAlt,\n faMonument: faMonument,\n faMoon: faMoon,\n faMortarPestle: faMortarPestle,\n faMosque: faMosque,\n faMotorcycle: faMotorcycle,\n faMountain: faMountain,\n faMouse: faMouse,\n faMousePointer: faMousePointer,\n faMugHot: faMugHot,\n faMusic: faMusic,\n faNetworkWired: faNetworkWired,\n faNeuter: faNeuter,\n faNewspaper: faNewspaper,\n faNotEqual: faNotEqual,\n faNotesMedical: faNotesMedical,\n faObjectGroup: faObjectGroup,\n faObjectUngroup: faObjectUngroup,\n faOilCan: faOilCan,\n faOm: faOm,\n faOtter: faOtter,\n faOutdent: faOutdent,\n faPager: faPager,\n faPaintBrush: faPaintBrush,\n faPaintRoller: faPaintRoller,\n faPalette: faPalette,\n faPallet: faPallet,\n faPaperPlane: faPaperPlane,\n faPaperclip: faPaperclip,\n faParachuteBox: faParachuteBox,\n faParagraph: faParagraph,\n faParking: faParking,\n faPassport: faPassport,\n faPastafarianism: faPastafarianism,\n faPaste: faPaste,\n faPause: faPause,\n faPauseCircle: faPauseCircle,\n faPaw: faPaw,\n faPeace: faPeace,\n faPen: faPen,\n faPenAlt: faPenAlt,\n faPenFancy: faPenFancy,\n faPenNib: faPenNib,\n faPenSquare: faPenSquare,\n faPencilAlt: faPencilAlt,\n faPencilRuler: faPencilRuler,\n faPeopleArrows: faPeopleArrows,\n faPeopleCarry: faPeopleCarry,\n faPepperHot: faPepperHot,\n faPercent: faPercent,\n faPercentage: faPercentage,\n faPersonBooth: faPersonBooth,\n faPhone: faPhone,\n faPhoneAlt: faPhoneAlt,\n faPhoneSlash: faPhoneSlash,\n faPhoneSquare: faPhoneSquare,\n faPhoneSquareAlt: faPhoneSquareAlt,\n faPhoneVolume: faPhoneVolume,\n faPhotoVideo: faPhotoVideo,\n faPiggyBank: faPiggyBank,\n faPills: faPills,\n faPizzaSlice: faPizzaSlice,\n faPlaceOfWorship: faPlaceOfWorship,\n faPlane: faPlane,\n faPlaneArrival: faPlaneArrival,\n faPlaneDeparture: faPlaneDeparture,\n faPlaneSlash: faPlaneSlash,\n faPlay: faPlay,\n faPlayCircle: faPlayCircle,\n faPlug: faPlug,\n faPlus: faPlus,\n faPlusCircle: faPlusCircle,\n faPlusSquare: faPlusSquare,\n faPodcast: faPodcast,\n faPoll: faPoll,\n faPollH: faPollH,\n faPoo: faPoo,\n faPooStorm: faPooStorm,\n faPoop: faPoop,\n faPortrait: faPortrait,\n faPoundSign: faPoundSign,\n faPowerOff: faPowerOff,\n faPray: faPray,\n faPrayingHands: faPrayingHands,\n faPrescription: faPrescription,\n faPrescriptionBottle: faPrescriptionBottle,\n faPrescriptionBottleAlt: faPrescriptionBottleAlt,\n faPrint: faPrint,\n faProcedures: faProcedures,\n faProjectDiagram: faProjectDiagram,\n faPumpMedical: faPumpMedical,\n faPumpSoap: faPumpSoap,\n faPuzzlePiece: faPuzzlePiece,\n faQrcode: faQrcode,\n faQuestion: faQuestion,\n faQuestionCircle: faQuestionCircle,\n faQuidditch: faQuidditch,\n faQuoteLeft: faQuoteLeft,\n faQuoteRight: faQuoteRight,\n faQuran: faQuran,\n faRadiation: faRadiation,\n faRadiationAlt: faRadiationAlt,\n faRainbow: faRainbow,\n faRandom: faRandom,\n faReceipt: faReceipt,\n faRecordVinyl: faRecordVinyl,\n faRecycle: faRecycle,\n faRedo: faRedo,\n faRedoAlt: faRedoAlt,\n faRegistered: faRegistered,\n faRemoveFormat: faRemoveFormat,\n faReply: faReply,\n faReplyAll: faReplyAll,\n faRepublican: faRepublican,\n faRestroom: faRestroom,\n faRetweet: faRetweet,\n faRibbon: faRibbon,\n faRing: faRing,\n faRoad: faRoad,\n faRobot: faRobot,\n faRocket: faRocket,\n faRoute: faRoute,\n faRss: faRss,\n faRssSquare: faRssSquare,\n faRubleSign: faRubleSign,\n faRuler: faRuler,\n faRulerCombined: faRulerCombined,\n faRulerHorizontal: faRulerHorizontal,\n faRulerVertical: faRulerVertical,\n faRunning: faRunning,\n faRupeeSign: faRupeeSign,\n faSadCry: faSadCry,\n faSadTear: faSadTear,\n faSatellite: faSatellite,\n faSatelliteDish: faSatelliteDish,\n faSave: faSave,\n faSchool: faSchool,\n faScrewdriver: faScrewdriver,\n faScroll: faScroll,\n faSdCard: faSdCard,\n faSearch: faSearch,\n faSearchDollar: faSearchDollar,\n faSearchLocation: faSearchLocation,\n faSearchMinus: faSearchMinus,\n faSearchPlus: faSearchPlus,\n faSeedling: faSeedling,\n faServer: faServer,\n faShapes: faShapes,\n faShare: faShare,\n faShareAlt: faShareAlt,\n faShareAltSquare: faShareAltSquare,\n faShareSquare: faShareSquare,\n faShekelSign: faShekelSign,\n faShieldAlt: faShieldAlt,\n faShieldVirus: faShieldVirus,\n faShip: faShip,\n faShippingFast: faShippingFast,\n faShoePrints: faShoePrints,\n faShoppingBag: faShoppingBag,\n faShoppingBasket: faShoppingBasket,\n faShoppingCart: faShoppingCart,\n faShower: faShower,\n faShuttleVan: faShuttleVan,\n faSign: faSign,\n faSignInAlt: faSignInAlt,\n faSignLanguage: faSignLanguage,\n faSignOutAlt: faSignOutAlt,\n faSignal: faSignal,\n faSignature: faSignature,\n faSimCard: faSimCard,\n faSink: faSink,\n faSitemap: faSitemap,\n faSkating: faSkating,\n faSkiing: faSkiing,\n faSkiingNordic: faSkiingNordic,\n faSkull: faSkull,\n faSkullCrossbones: faSkullCrossbones,\n faSlash: faSlash,\n faSleigh: faSleigh,\n faSlidersH: faSlidersH,\n faSmile: faSmile,\n faSmileBeam: faSmileBeam,\n faSmileWink: faSmileWink,\n faSmog: faSmog,\n faSmoking: faSmoking,\n faSmokingBan: faSmokingBan,\n faSms: faSms,\n faSnowboarding: faSnowboarding,\n faSnowflake: faSnowflake,\n faSnowman: faSnowman,\n faSnowplow: faSnowplow,\n faSoap: faSoap,\n faSocks: faSocks,\n faSolarPanel: faSolarPanel,\n faSort: faSort,\n faSortAlphaDown: faSortAlphaDown,\n faSortAlphaDownAlt: faSortAlphaDownAlt,\n faSortAlphaUp: faSortAlphaUp,\n faSortAlphaUpAlt: faSortAlphaUpAlt,\n faSortAmountDown: faSortAmountDown,\n faSortAmountDownAlt: faSortAmountDownAlt,\n faSortAmountUp: faSortAmountUp,\n faSortAmountUpAlt: faSortAmountUpAlt,\n faSortDown: faSortDown,\n faSortNumericDown: faSortNumericDown,\n faSortNumericDownAlt: faSortNumericDownAlt,\n faSortNumericUp: faSortNumericUp,\n faSortNumericUpAlt: faSortNumericUpAlt,\n faSortUp: faSortUp,\n faSpa: faSpa,\n faSpaceShuttle: faSpaceShuttle,\n faSpellCheck: faSpellCheck,\n faSpider: faSpider,\n faSpinner: faSpinner,\n faSplotch: faSplotch,\n faSprayCan: faSprayCan,\n faSquare: faSquare,\n faSquareFull: faSquareFull,\n faSquareRootAlt: faSquareRootAlt,\n faStamp: faStamp,\n faStar: faStar,\n faStarAndCrescent: faStarAndCrescent,\n faStarHalf: faStarHalf,\n faStarHalfAlt: faStarHalfAlt,\n faStarOfDavid: faStarOfDavid,\n faStarOfLife: faStarOfLife,\n faStepBackward: faStepBackward,\n faStepForward: faStepForward,\n faStethoscope: faStethoscope,\n faStickyNote: faStickyNote,\n faStop: faStop,\n faStopCircle: faStopCircle,\n faStopwatch: faStopwatch,\n faStopwatch20: faStopwatch20,\n faStore: faStore,\n faStoreAlt: faStoreAlt,\n faStoreAltSlash: faStoreAltSlash,\n faStoreSlash: faStoreSlash,\n faStream: faStream,\n faStreetView: faStreetView,\n faStrikethrough: faStrikethrough,\n faStroopwafel: faStroopwafel,\n faSubscript: faSubscript,\n faSubway: faSubway,\n faSuitcase: faSuitcase,\n faSuitcaseRolling: faSuitcaseRolling,\n faSun: faSun,\n faSuperscript: faSuperscript,\n faSurprise: faSurprise,\n faSwatchbook: faSwatchbook,\n faSwimmer: faSwimmer,\n faSwimmingPool: faSwimmingPool,\n faSynagogue: faSynagogue,\n faSync: faSync,\n faSyncAlt: faSyncAlt,\n faSyringe: faSyringe,\n faTable: faTable,\n faTableTennis: faTableTennis,\n faTablet: faTablet,\n faTabletAlt: faTabletAlt,\n faTablets: faTablets,\n faTachometerAlt: faTachometerAlt,\n faTag: faTag,\n faTags: faTags,\n faTape: faTape,\n faTasks: faTasks,\n faTaxi: faTaxi,\n faTeeth: faTeeth,\n faTeethOpen: faTeethOpen,\n faTemperatureHigh: faTemperatureHigh,\n faTemperatureLow: faTemperatureLow,\n faTenge: faTenge,\n faTerminal: faTerminal,\n faTextHeight: faTextHeight,\n faTextWidth: faTextWidth,\n faTh: faTh,\n faThLarge: faThLarge,\n faThList: faThList,\n faTheaterMasks: faTheaterMasks,\n faThermometer: faThermometer,\n faThermometerEmpty: faThermometerEmpty,\n faThermometerFull: faThermometerFull,\n faThermometerHalf: faThermometerHalf,\n faThermometerQuarter: faThermometerQuarter,\n faThermometerThreeQuarters: faThermometerThreeQuarters,\n faThumbsDown: faThumbsDown,\n faThumbsUp: faThumbsUp,\n faThumbtack: faThumbtack,\n faTicketAlt: faTicketAlt,\n faTimes: faTimes,\n faTimesCircle: faTimesCircle,\n faTint: faTint,\n faTintSlash: faTintSlash,\n faTired: faTired,\n faToggleOff: faToggleOff,\n faToggleOn: faToggleOn,\n faToilet: faToilet,\n faToiletPaper: faToiletPaper,\n faToiletPaperSlash: faToiletPaperSlash,\n faToolbox: faToolbox,\n faTools: faTools,\n faTooth: faTooth,\n faTorah: faTorah,\n faToriiGate: faToriiGate,\n faTractor: faTractor,\n faTrademark: faTrademark,\n faTrafficLight: faTrafficLight,\n faTrailer: faTrailer,\n faTrain: faTrain,\n faTram: faTram,\n faTransgender: faTransgender,\n faTransgenderAlt: faTransgenderAlt,\n faTrash: faTrash,\n faTrashAlt: faTrashAlt,\n faTrashRestore: faTrashRestore,\n faTrashRestoreAlt: faTrashRestoreAlt,\n faTree: faTree,\n faTrophy: faTrophy,\n faTruck: faTruck,\n faTruckLoading: faTruckLoading,\n faTruckMonster: faTruckMonster,\n faTruckMoving: faTruckMoving,\n faTruckPickup: faTruckPickup,\n faTshirt: faTshirt,\n faTty: faTty,\n faTv: faTv,\n faUmbrella: faUmbrella,\n faUmbrellaBeach: faUmbrellaBeach,\n faUnderline: faUnderline,\n faUndo: faUndo,\n faUndoAlt: faUndoAlt,\n faUniversalAccess: faUniversalAccess,\n faUniversity: faUniversity,\n faUnlink: faUnlink,\n faUnlock: faUnlock,\n faUnlockAlt: faUnlockAlt,\n faUpload: faUpload,\n faUser: faUser,\n faUserAlt: faUserAlt,\n faUserAltSlash: faUserAltSlash,\n faUserAstronaut: faUserAstronaut,\n faUserCheck: faUserCheck,\n faUserCircle: faUserCircle,\n faUserClock: faUserClock,\n faUserCog: faUserCog,\n faUserEdit: faUserEdit,\n faUserFriends: faUserFriends,\n faUserGraduate: faUserGraduate,\n faUserInjured: faUserInjured,\n faUserLock: faUserLock,\n faUserMd: faUserMd,\n faUserMinus: faUserMinus,\n faUserNinja: faUserNinja,\n faUserNurse: faUserNurse,\n faUserPlus: faUserPlus,\n faUserSecret: faUserSecret,\n faUserShield: faUserShield,\n faUserSlash: faUserSlash,\n faUserTag: faUserTag,\n faUserTie: faUserTie,\n faUserTimes: faUserTimes,\n faUsers: faUsers,\n faUsersCog: faUsersCog,\n faUsersSlash: faUsersSlash,\n faUtensilSpoon: faUtensilSpoon,\n faUtensils: faUtensils,\n faVectorSquare: faVectorSquare,\n faVenus: faVenus,\n faVenusDouble: faVenusDouble,\n faVenusMars: faVenusMars,\n faVest: faVest,\n faVestPatches: faVestPatches,\n faVial: faVial,\n faVials: faVials,\n faVideo: faVideo,\n faVideoSlash: faVideoSlash,\n faVihara: faVihara,\n faVirus: faVirus,\n faVirusSlash: faVirusSlash,\n faViruses: faViruses,\n faVoicemail: faVoicemail,\n faVolleyballBall: faVolleyballBall,\n faVolumeDown: faVolumeDown,\n faVolumeMute: faVolumeMute,\n faVolumeOff: faVolumeOff,\n faVolumeUp: faVolumeUp,\n faVoteYea: faVoteYea,\n faVrCardboard: faVrCardboard,\n faWalking: faWalking,\n faWallet: faWallet,\n faWarehouse: faWarehouse,\n faWater: faWater,\n faWaveSquare: faWaveSquare,\n faWeight: faWeight,\n faWeightHanging: faWeightHanging,\n faWheelchair: faWheelchair,\n faWifi: faWifi,\n faWind: faWind,\n faWindowClose: faWindowClose,\n faWindowMaximize: faWindowMaximize,\n faWindowMinimize: faWindowMinimize,\n faWindowRestore: faWindowRestore,\n faWineBottle: faWineBottle,\n faWineGlass: faWineGlass,\n faWineGlassAlt: faWineGlassAlt,\n faWonSign: faWonSign,\n faWrench: faWrench,\n faXRay: faXRay,\n faYenSign: faYenSign,\n faYinYang: faYinYang\n};\n\nexport { _iconsCache as fas, prefix, faAd, faAddressBook, faAddressCard, faAdjust, faAirFreshener, faAlignCenter, faAlignJustify, faAlignLeft, faAlignRight, faAllergies, faAmbulance, faAmericanSignLanguageInterpreting, faAnchor, faAngleDoubleDown, faAngleDoubleLeft, faAngleDoubleRight, faAngleDoubleUp, faAngleDown, faAngleLeft, faAngleRight, faAngleUp, faAngry, faAnkh, faAppleAlt, faArchive, faArchway, faArrowAltCircleDown, faArrowAltCircleLeft, faArrowAltCircleRight, faArrowAltCircleUp, faArrowCircleDown, faArrowCircleLeft, faArrowCircleRight, faArrowCircleUp, faArrowDown, faArrowLeft, faArrowRight, faArrowUp, faArrowsAlt, faArrowsAltH, faArrowsAltV, faAssistiveListeningSystems, faAsterisk, faAt, faAtlas, faAtom, faAudioDescription, faAward, faBaby, faBabyCarriage, faBackspace, faBackward, faBacon, faBacteria, faBacterium, faBahai, faBalanceScale, faBalanceScaleLeft, faBalanceScaleRight, faBan, faBandAid, faBarcode, faBars, faBaseballBall, faBasketballBall, faBath, faBatteryEmpty, faBatteryFull, faBatteryHalf, faBatteryQuarter, faBatteryThreeQuarters, faBed, faBeer, faBell, faBellSlash, faBezierCurve, faBible, faBicycle, faBiking, faBinoculars, faBiohazard, faBirthdayCake, faBlender, faBlenderPhone, faBlind, faBlog, faBold, faBolt, faBomb, faBone, faBong, faBook, faBookDead, faBookMedical, faBookOpen, faBookReader, faBookmark, faBorderAll, faBorderNone, faBorderStyle, faBowlingBall, faBox, faBoxOpen, faBoxTissue, faBoxes, faBraille, faBrain, faBreadSlice, faBriefcase, faBriefcaseMedical, faBroadcastTower, faBroom, faBrush, faBug, faBuilding, faBullhorn, faBullseye, faBurn, faBus, faBusAlt, faBusinessTime, faCalculator, faCalendar, faCalendarAlt, faCalendarCheck, faCalendarDay, faCalendarMinus, faCalendarPlus, faCalendarTimes, faCalendarWeek, faCamera, faCameraRetro, faCampground, faCandyCane, faCannabis, faCapsules, faCar, faCarAlt, faCarBattery, faCarCrash, faCarSide, faCaravan, faCaretDown, faCaretLeft, faCaretRight, faCaretSquareDown, faCaretSquareLeft, faCaretSquareRight, faCaretSquareUp, faCaretUp, faCarrot, faCartArrowDown, faCartPlus, faCashRegister, faCat, faCertificate, faChair, faChalkboard, faChalkboardTeacher, faChargingStation, faChartArea, faChartBar, faChartLine, faChartPie, faCheck, faCheckCircle, faCheckDouble, faCheckSquare, faCheese, faChess, faChessBishop, faChessBoard, faChessKing, faChessKnight, faChessPawn, faChessQueen, faChessRook, faChevronCircleDown, faChevronCircleLeft, faChevronCircleRight, faChevronCircleUp, faChevronDown, faChevronLeft, faChevronRight, faChevronUp, faChild, faChurch, faCircle, faCircleNotch, faCity, faClinicMedical, faClipboard, faClipboardCheck, faClipboardList, faClock, faClone, faClosedCaptioning, faCloud, faCloudDownloadAlt, faCloudMeatball, faCloudMoon, faCloudMoonRain, faCloudRain, faCloudShowersHeavy, faCloudSun, faCloudSunRain, faCloudUploadAlt, faCocktail, faCode, faCodeBranch, faCoffee, faCog, faCogs, faCoins, faColumns, faComment, faCommentAlt, faCommentDollar, faCommentDots, faCommentMedical, faCommentSlash, faComments, faCommentsDollar, faCompactDisc, faCompass, faCompress, faCompressAlt, faCompressArrowsAlt, faConciergeBell, faCookie, faCookieBite, faCopy, faCopyright, faCouch, faCreditCard, faCrop, faCropAlt, faCross, faCrosshairs, faCrow, faCrown, faCrutch, faCube, faCubes, faCut, faDatabase, faDeaf, faDemocrat, faDesktop, faDharmachakra, faDiagnoses, faDice, faDiceD20, faDiceD6, faDiceFive, faDiceFour, faDiceOne, faDiceSix, faDiceThree, faDiceTwo, faDigitalTachograph, faDirections, faDisease, faDivide, faDizzy, faDna, faDog, faDollarSign, faDolly, faDollyFlatbed, faDonate, faDoorClosed, faDoorOpen, faDotCircle, faDove, faDownload, faDraftingCompass, faDragon, faDrawPolygon, faDrum, faDrumSteelpan, faDrumstickBite, faDumbbell, faDumpster, faDumpsterFire, faDungeon, faEdit, faEgg, faEject, faEllipsisH, faEllipsisV, faEnvelope, faEnvelopeOpen, faEnvelopeOpenText, faEnvelopeSquare, faEquals, faEraser, faEthernet, faEuroSign, faExchangeAlt, faExclamation, faExclamationCircle, faExclamationTriangle, faExpand, faExpandAlt, faExpandArrowsAlt, faExternalLinkAlt, faExternalLinkSquareAlt, faEye, faEyeDropper, faEyeSlash, faFan, faFastBackward, faFastForward, faFaucet, faFax, faFeather, faFeatherAlt, faFemale, faFighterJet, faFile, faFileAlt, faFileArchive, faFileAudio, faFileCode, faFileContract, faFileCsv, faFileDownload, faFileExcel, faFileExport, faFileImage, faFileImport, faFileInvoice, faFileInvoiceDollar, faFileMedical, faFileMedicalAlt, faFilePdf, faFilePowerpoint, faFilePrescription, faFileSignature, faFileUpload, faFileVideo, faFileWord, faFill, faFillDrip, faFilm, faFilter, faFingerprint, faFire, faFireAlt, faFireExtinguisher, faFirstAid, faFish, faFistRaised, faFlag, faFlagCheckered, faFlagUsa, faFlask, faFlushed, faFolder, faFolderMinus, faFolderOpen, faFolderPlus, faFont, faFontAwesomeLogoFull, faFootballBall, faForward, faFrog, faFrown, faFrownOpen, faFunnelDollar, faFutbol, faGamepad, faGasPump, faGavel, faGem, faGenderless, faGhost, faGift, faGifts, faGlassCheers, faGlassMartini, faGlassMartiniAlt, faGlassWhiskey, faGlasses, faGlobe, faGlobeAfrica, faGlobeAmericas, faGlobeAsia, faGlobeEurope, faGolfBall, faGopuram, faGraduationCap, faGreaterThan, faGreaterThanEqual, faGrimace, faGrin, faGrinAlt, faGrinBeam, faGrinBeamSweat, faGrinHearts, faGrinSquint, faGrinSquintTears, faGrinStars, faGrinTears, faGrinTongue, faGrinTongueSquint, faGrinTongueWink, faGrinWink, faGripHorizontal, faGripLines, faGripLinesVertical, faGripVertical, faGuitar, faHSquare, faHamburger, faHammer, faHamsa, faHandHolding, faHandHoldingHeart, faHandHoldingMedical, faHandHoldingUsd, faHandHoldingWater, faHandLizard, faHandMiddleFinger, faHandPaper, faHandPeace, faHandPointDown, faHandPointLeft, faHandPointRight, faHandPointUp, faHandPointer, faHandRock, faHandScissors, faHandSparkles, faHandSpock, faHands, faHandsHelping, faHandsWash, faHandshake, faHandshakeAltSlash, faHandshakeSlash, faHanukiah, faHardHat, faHashtag, faHatCowboy, faHatCowboySide, faHatWizard, faHdd, faHeadSideCough, faHeadSideCoughSlash, faHeadSideMask, faHeadSideVirus, faHeading, faHeadphones, faHeadphonesAlt, faHeadset, faHeart, faHeartBroken, faHeartbeat, faHelicopter, faHighlighter, faHiking, faHippo, faHistory, faHockeyPuck, faHollyBerry, faHome, faHorse, faHorseHead, faHospital, faHospitalAlt, faHospitalSymbol, faHospitalUser, faHotTub, faHotdog, faHotel, faHourglass, faHourglassEnd, faHourglassHalf, faHourglassStart, faHouseDamage, faHouseUser, faHryvnia, faICursor, faIceCream, faIcicles, faIcons, faIdBadge, faIdCard, faIdCardAlt, faIgloo, faImage, faImages, faInbox, faIndent, faIndustry, faInfinity, faInfo, faInfoCircle, faItalic, faJedi, faJoint, faJournalWhills, faKaaba, faKey, faKeyboard, faKhanda, faKiss, faKissBeam, faKissWinkHeart, faKiwiBird, faLandmark, faLanguage, faLaptop, faLaptopCode, faLaptopHouse, faLaptopMedical, faLaugh, faLaughBeam, faLaughSquint, faLaughWink, faLayerGroup, faLeaf, faLemon, faLessThan, faLessThanEqual, faLevelDownAlt, faLevelUpAlt, faLifeRing, faLightbulb, faLink, faLiraSign, faList, faListAlt, faListOl, faListUl, faLocationArrow, faLock, faLockOpen, faLongArrowAltDown, faLongArrowAltLeft, faLongArrowAltRight, faLongArrowAltUp, faLowVision, faLuggageCart, faLungs, faLungsVirus, faMagic, faMagnet, faMailBulk, faMale, faMap, faMapMarked, faMapMarkedAlt, faMapMarker, faMapMarkerAlt, faMapPin, faMapSigns, faMarker, faMars, faMarsDouble, faMarsStroke, faMarsStrokeH, faMarsStrokeV, faMask, faMedal, faMedkit, faMeh, faMehBlank, faMehRollingEyes, faMemory, faMenorah, faMercury, faMeteor, faMicrochip, faMicrophone, faMicrophoneAlt, faMicrophoneAltSlash, faMicrophoneSlash, faMicroscope, faMinus, faMinusCircle, faMinusSquare, faMitten, faMobile, faMobileAlt, faMoneyBill, faMoneyBillAlt, faMoneyBillWave, faMoneyBillWaveAlt, faMoneyCheck, faMoneyCheckAlt, faMonument, faMoon, faMortarPestle, faMosque, faMotorcycle, faMountain, faMouse, faMousePointer, faMugHot, faMusic, faNetworkWired, faNeuter, faNewspaper, faNotEqual, faNotesMedical, faObjectGroup, faObjectUngroup, faOilCan, faOm, faOtter, faOutdent, faPager, faPaintBrush, faPaintRoller, faPalette, faPallet, faPaperPlane, faPaperclip, faParachuteBox, faParagraph, faParking, faPassport, faPastafarianism, faPaste, faPause, faPauseCircle, faPaw, faPeace, faPen, faPenAlt, faPenFancy, faPenNib, faPenSquare, faPencilAlt, faPencilRuler, faPeopleArrows, faPeopleCarry, faPepperHot, faPercent, faPercentage, faPersonBooth, faPhone, faPhoneAlt, faPhoneSlash, faPhoneSquare, faPhoneSquareAlt, faPhoneVolume, faPhotoVideo, faPiggyBank, faPills, faPizzaSlice, faPlaceOfWorship, faPlane, faPlaneArrival, faPlaneDeparture, faPlaneSlash, faPlay, faPlayCircle, faPlug, faPlus, faPlusCircle, faPlusSquare, faPodcast, faPoll, faPollH, faPoo, faPooStorm, faPoop, faPortrait, faPoundSign, faPowerOff, faPray, faPrayingHands, faPrescription, faPrescriptionBottle, faPrescriptionBottleAlt, faPrint, faProcedures, faProjectDiagram, faPumpMedical, faPumpSoap, faPuzzlePiece, faQrcode, faQuestion, faQuestionCircle, faQuidditch, faQuoteLeft, faQuoteRight, faQuran, faRadiation, faRadiationAlt, faRainbow, faRandom, faReceipt, faRecordVinyl, faRecycle, faRedo, faRedoAlt, faRegistered, faRemoveFormat, faReply, faReplyAll, faRepublican, faRestroom, faRetweet, faRibbon, faRing, faRoad, faRobot, faRocket, faRoute, faRss, faRssSquare, faRubleSign, faRuler, faRulerCombined, faRulerHorizontal, faRulerVertical, faRunning, faRupeeSign, faSadCry, faSadTear, faSatellite, faSatelliteDish, faSave, faSchool, faScrewdriver, faScroll, faSdCard, faSearch, faSearchDollar, faSearchLocation, faSearchMinus, faSearchPlus, faSeedling, faServer, faShapes, faShare, faShareAlt, faShareAltSquare, faShareSquare, faShekelSign, faShieldAlt, faShieldVirus, faShip, faShippingFast, faShoePrints, faShoppingBag, faShoppingBasket, faShoppingCart, faShower, faShuttleVan, faSign, faSignInAlt, faSignLanguage, faSignOutAlt, faSignal, faSignature, faSimCard, faSink, faSitemap, faSkating, faSkiing, faSkiingNordic, faSkull, faSkullCrossbones, faSlash, faSleigh, faSlidersH, faSmile, faSmileBeam, faSmileWink, faSmog, faSmoking, faSmokingBan, faSms, faSnowboarding, faSnowflake, faSnowman, faSnowplow, faSoap, faSocks, faSolarPanel, faSort, faSortAlphaDown, faSortAlphaDownAlt, faSortAlphaUp, faSortAlphaUpAlt, faSortAmountDown, faSortAmountDownAlt, faSortAmountUp, faSortAmountUpAlt, faSortDown, faSortNumericDown, faSortNumericDownAlt, faSortNumericUp, faSortNumericUpAlt, faSortUp, faSpa, faSpaceShuttle, faSpellCheck, faSpider, faSpinner, faSplotch, faSprayCan, faSquare, faSquareFull, faSquareRootAlt, faStamp, faStar, faStarAndCrescent, faStarHalf, faStarHalfAlt, faStarOfDavid, faStarOfLife, faStepBackward, faStepForward, faStethoscope, faStickyNote, faStop, faStopCircle, faStopwatch, faStopwatch20, faStore, faStoreAlt, faStoreAltSlash, faStoreSlash, faStream, faStreetView, faStrikethrough, faStroopwafel, faSubscript, faSubway, faSuitcase, faSuitcaseRolling, faSun, faSuperscript, faSurprise, faSwatchbook, faSwimmer, faSwimmingPool, faSynagogue, faSync, faSyncAlt, faSyringe, faTable, faTableTennis, faTablet, faTabletAlt, faTablets, faTachometerAlt, faTag, faTags, faTape, faTasks, faTaxi, faTeeth, faTeethOpen, faTemperatureHigh, faTemperatureLow, faTenge, faTerminal, faTextHeight, faTextWidth, faTh, faThLarge, faThList, faTheaterMasks, faThermometer, faThermometerEmpty, faThermometerFull, faThermometerHalf, faThermometerQuarter, faThermometerThreeQuarters, faThumbsDown, faThumbsUp, faThumbtack, faTicketAlt, faTimes, faTimesCircle, faTint, faTintSlash, faTired, faToggleOff, faToggleOn, faToilet, faToiletPaper, faToiletPaperSlash, faToolbox, faTools, faTooth, faTorah, faToriiGate, faTractor, faTrademark, faTrafficLight, faTrailer, faTrain, faTram, faTransgender, faTransgenderAlt, faTrash, faTrashAlt, faTrashRestore, faTrashRestoreAlt, faTree, faTrophy, faTruck, faTruckLoading, faTruckMonster, faTruckMoving, faTruckPickup, faTshirt, faTty, faTv, faUmbrella, faUmbrellaBeach, faUnderline, faUndo, faUndoAlt, faUniversalAccess, faUniversity, faUnlink, faUnlock, faUnlockAlt, faUpload, faUser, faUserAlt, faUserAltSlash, faUserAstronaut, faUserCheck, faUserCircle, faUserClock, faUserCog, faUserEdit, faUserFriends, faUserGraduate, faUserInjured, faUserLock, faUserMd, faUserMinus, faUserNinja, faUserNurse, faUserPlus, faUserSecret, faUserShield, faUserSlash, faUserTag, faUserTie, faUserTimes, faUsers, faUsersCog, faUsersSlash, faUtensilSpoon, faUtensils, faVectorSquare, faVenus, faVenusDouble, faVenusMars, faVest, faVestPatches, faVial, faVials, faVideo, faVideoSlash, faVihara, faVirus, faVirusSlash, faViruses, faVoicemail, faVolleyballBall, faVolumeDown, faVolumeMute, faVolumeOff, faVolumeUp, faVoteYea, faVrCardboard, faWalking, faWallet, faWarehouse, faWater, faWaveSquare, faWeight, faWeightHanging, faWheelchair, faWifi, faWind, faWindowClose, faWindowMaximize, faWindowMinimize, faWindowRestore, faWineBottle, faWineGlass, faWineGlassAlt, faWonSign, faWrench, faXRay, faYenSign, faYinYang };\n","import {\n WithModuleProps,\n LinkedVisualConsoleProps,\n AnyObject,\n WithAgentProps\n} from \"../lib/types\";\nimport { modulePropsDecoder, linkedVCPropsDecoder, t } from \"../lib\";\nimport Item, { itemBasePropsDecoder, ItemType, ItemProps } from \"../Item\";\nimport { FormContainer, InputGroup } from \"../Form\";\nimport fontAwesomeIcon from \"../lib/FontAwesomeIcon\";\nimport { faTrashAlt, faPlusCircle } from \"@fortawesome/free-solid-svg-icons\";\n\nexport type ColorCloudProps = {\n type: ItemType.COLOR_CLOUD;\n color: string;\n defaultColor: string;\n colorRanges: {\n color: string;\n fromValue: number;\n toValue: number;\n }[];\n // TODO: Add the rest of the color cloud values?\n} & ItemProps &\n WithAgentProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the static graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function colorCloudPropsDecoder(\n data: AnyObject\n): ColorCloudProps | never {\n // TODO: Validate the color.\n if (typeof data.color !== \"string\" || data.color.length === 0) {\n throw new TypeError(\"invalid color.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.COLOR_CLOUD,\n color: data.color,\n defaultColor: data.defaultColor,\n colorRanges: data.colorRanges,\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\n/**\n * Class to add item to the Color cloud item form\n * This item consists of a label and a color type input color.\n * Element default color is stored in the color property\n */\nclass ColorInputGroup extends InputGroup> {\n protected createContent(): HTMLElement | HTMLElement[] {\n const generalDiv = document.createElement(\"div\");\n generalDiv.className = \"div-input-group\";\n\n const colorLabel = document.createElement(\"label\");\n colorLabel.textContent = t(\"Default color\");\n\n generalDiv.appendChild(colorLabel);\n\n const ColorInput = document.createElement(\"input\");\n ColorInput.type = \"color\";\n ColorInput.required = true;\n\n ColorInput.value = `${this.currentData.defaultColor ||\n this.initialData.defaultColor ||\n \"#000000\"}`;\n\n ColorInput.addEventListener(\"change\", e => {\n this.updateData({\n defaultColor: (e.target as HTMLInputElement).value\n });\n });\n\n generalDiv.appendChild(ColorInput);\n\n return generalDiv;\n }\n}\n\ntype ColorRanges = ColorCloudProps[\"colorRanges\"];\ntype ColorRange = ColorRanges[0];\n\nclass RangesInputGroup extends InputGroup> {\n protected createContent(): HTMLElement | HTMLElement[] {\n const generalDiv = document.createElement(\"div\");\n generalDiv.className = \"div-input-group div-ranges-input-group\";\n\n const rangesLabel = this.createLabel(\"Ranges\");\n\n generalDiv.appendChild(rangesLabel);\n\n const rangesControlsContainer = document.createElement(\"div\");\n const createdRangesContainer = document.createElement(\"div\");\n\n generalDiv.appendChild(createdRangesContainer);\n generalDiv.appendChild(rangesControlsContainer);\n\n const colorRanges =\n this.currentData.colorRanges || this.initialData.colorRanges || [];\n\n let buildRanges: (ranges: ColorRanges) => void;\n\n const handleRangeUpdatePartial = (index: number) => (\n range: ColorRange\n ): void => {\n const colorRanges =\n this.currentData.colorRanges || this.initialData.colorRanges || [];\n this.updateData({\n colorRanges: [\n ...colorRanges.slice(0, index),\n range,\n ...colorRanges.slice(index + 1)\n ]\n });\n };\n\n const handleDelete = (index: number) => () => {\n const colorRanges =\n this.currentData.colorRanges || this.initialData.colorRanges || [];\n const newRanges = [\n ...colorRanges.slice(0, index),\n ...colorRanges.slice(index + 1)\n ];\n\n this.updateData({ colorRanges: newRanges });\n buildRanges(newRanges);\n };\n\n const handleCreate = (range: ColorRange): void => {\n const colorRanges =\n this.currentData.colorRanges || this.initialData.colorRanges || [];\n const newRanges = [...colorRanges, range];\n this.updateData({ colorRanges: newRanges });\n buildRanges(newRanges);\n };\n\n buildRanges = ranges => {\n createdRangesContainer.innerHTML = \"\";\n ranges.forEach((colorRange, index) =>\n createdRangesContainer.appendChild(\n this.rangeContainer(\n colorRange,\n handleRangeUpdatePartial(index),\n handleDelete(index)\n )\n )\n );\n };\n\n buildRanges(colorRanges);\n\n rangesControlsContainer.appendChild(\n this.initialRangeContainer(handleCreate)\n );\n\n return generalDiv;\n }\n\n private initialRangeContainer(onCreate: (range: ColorRange) => void) {\n // TODO: Document\n const initialState = { color: \"#ffffff\" };\n\n let state: Partial = { ...initialState };\n\n const handleFromValue = (value: ColorRange[\"fromValue\"]): void => {\n state.fromValue = value;\n };\n const handleToValue = (value: ColorRange[\"toValue\"]): void => {\n state.toValue = value;\n };\n const handleColor = (value: ColorRange[\"color\"]): void => {\n state.color = value;\n };\n\n // User defined type guard.\n // Docs: https://www.typescriptlang.org/docs/handbook/advanced-types.html#user-defined-type-guards\n const isValid = (range: Partial): range is ColorRange =>\n typeof range.color !== \"undefined\" &&\n typeof range.toValue !== \"undefined\" &&\n typeof range.fromValue !== \"undefined\";\n\n const rangesContainer = document.createElement(\"div\");\n\n // Div From value.\n const rangesContainerFromValue = document.createElement(\"div\");\n const rangesLabelFromValue = this.createLabel(\"From Value\");\n const rangesInputFromValue = this.createInputNumber(null, handleFromValue);\n rangesContainerFromValue.appendChild(rangesLabelFromValue);\n rangesContainerFromValue.appendChild(rangesInputFromValue);\n rangesContainer.appendChild(rangesContainerFromValue);\n\n // Div To Value.\n const rangesDivContainerToValue = document.createElement(\"div\");\n const rangesLabelToValue = this.createLabel(\"To Value\");\n const rangesInputToValue = this.createInputNumber(null, handleToValue);\n rangesContainerFromValue.appendChild(rangesLabelToValue);\n rangesContainerFromValue.appendChild(rangesInputToValue);\n rangesContainer.appendChild(rangesDivContainerToValue);\n\n // Div Color.\n const rangesDivContainerColor = document.createElement(\"div\");\n const rangesLabelColor = this.createLabel(\"Color\");\n const rangesInputColor = this.createInputColor(\n initialState.color,\n handleColor\n );\n rangesContainerFromValue.appendChild(rangesLabelColor);\n rangesContainerFromValue.appendChild(rangesInputColor);\n rangesContainer.appendChild(rangesDivContainerColor);\n\n // Button delete.\n const createBtn = document.createElement(\"a\");\n createBtn.appendChild(\n fontAwesomeIcon(faPlusCircle, t(\"Create color range\"), {\n size: \"small\",\n color: \"#565656\"\n })\n );\n\n const handleCreate = () => {\n if (isValid(state)) onCreate(state);\n state = initialState;\n rangesInputFromValue.value = `${state.fromValue || \"\"}`;\n rangesInputToValue.value = `${state.toValue || \"\"}`;\n rangesInputColor.value = `${state.color}`;\n };\n\n createBtn.addEventListener(\"click\", handleCreate);\n\n rangesContainer.appendChild(createBtn);\n\n return rangesContainer;\n }\n\n private rangeContainer(\n colorRange: ColorRange,\n onUpdate: (range: ColorRange) => void,\n onDelete: () => void\n ): HTMLDivElement {\n // TODO: Document\n const state = { ...colorRange };\n\n const handleFromValue = (value: ColorRange[\"fromValue\"]): void => {\n state.fromValue = value;\n onUpdate({ ...state });\n };\n const handleToValue = (value: ColorRange[\"toValue\"]): void => {\n state.toValue = value;\n onUpdate({ ...state });\n };\n const handleColor = (value: ColorRange[\"color\"]): void => {\n state.color = value;\n onUpdate({ ...state });\n };\n\n const rangesContainer = document.createElement(\"div\");\n\n // Div From value.\n const rangesContainerFromValue = document.createElement(\"div\");\n const rangesLabelFromValue = this.createLabel(\"From Value\");\n const rangesInputFromValue = this.createInputNumber(\n colorRange.fromValue,\n handleFromValue\n );\n rangesContainerFromValue.appendChild(rangesLabelFromValue);\n rangesContainerFromValue.appendChild(rangesInputFromValue);\n rangesContainer.appendChild(rangesContainerFromValue);\n\n // Div To Value.\n const rangesDivContainerToValue = document.createElement(\"div\");\n const rangesLabelToValue = this.createLabel(\"To Value\");\n const rangesInputToValue = this.createInputNumber(\n colorRange.toValue,\n handleToValue\n );\n rangesContainerFromValue.appendChild(rangesLabelToValue);\n rangesContainerFromValue.appendChild(rangesInputToValue);\n rangesContainer.appendChild(rangesDivContainerToValue);\n\n // Div Color.\n const rangesDivContainerColor = document.createElement(\"div\");\n const rangesLabelColor = this.createLabel(\"Color\");\n const rangesInputColor = this.createInputColor(\n colorRange.color,\n handleColor\n );\n rangesContainerFromValue.appendChild(rangesLabelColor);\n rangesContainerFromValue.appendChild(rangesInputColor);\n rangesContainer.appendChild(rangesDivContainerColor);\n\n // Button delete.\n const deleteBtn = document.createElement(\"a\");\n deleteBtn.appendChild(\n fontAwesomeIcon(faTrashAlt, t(\"Delete color range\"), {\n size: \"small\",\n color: \"#565656\"\n })\n );\n deleteBtn.addEventListener(\"click\", onDelete);\n\n rangesContainer.appendChild(deleteBtn);\n\n return rangesContainer;\n }\n\n private createLabel(text: string): HTMLLabelElement {\n const label = document.createElement(\"label\");\n label.textContent = t(text);\n return label;\n }\n\n private createInputNumber(\n value: number | null,\n onUpdate: (value: number) => void\n ): HTMLInputElement {\n const input = document.createElement(\"input\");\n input.type = \"number\";\n if (value !== null) input.value = `${value}`;\n input.addEventListener(\"change\", e => {\n const value = parseInt((e.target as HTMLInputElement).value);\n if (!isNaN(value)) onUpdate(value);\n });\n\n return input;\n }\n\n private createInputColor(\n value: string | null,\n onUpdate: (value: string) => void\n ): HTMLInputElement {\n const input = document.createElement(\"input\");\n input.type = \"color\";\n if (value !== null) input.value = value;\n input.addEventListener(\"change\", e =>\n onUpdate((e.target as HTMLInputElement).value)\n );\n\n return input;\n }\n}\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\nexport default class ColorCloud extends Item {\n protected createDomElement(): HTMLElement {\n const container: HTMLDivElement = document.createElement(\"div\");\n container.className = \"color-cloud\";\n\n // Add the SVG.\n container.append(this.createSvgElement());\n\n return container;\n }\n\n protected resizeElement(width: number): void {\n super.resizeElement(width, width);\n }\n\n public createSvgElement(): SVGSVGElement {\n const gradientId = `grad_${this.props.id}`;\n // SVG container.\n const svg = document.createElementNS(svgNS, \"svg\");\n // Auto resize SVG using the view box magic: https://css-tricks.com/scale-svg/\n svg.setAttribute(\"viewBox\", \"0 0 100 100\");\n\n // Defs.\n const defs = document.createElementNS(svgNS, \"defs\");\n // Radial gradient.\n const radialGradient = document.createElementNS(svgNS, \"radialGradient\");\n radialGradient.setAttribute(\"id\", gradientId);\n radialGradient.setAttribute(\"cx\", \"50%\");\n radialGradient.setAttribute(\"cy\", \"50%\");\n radialGradient.setAttribute(\"r\", \"50%\");\n radialGradient.setAttribute(\"fx\", \"50%\");\n radialGradient.setAttribute(\"fy\", \"50%\");\n // Stops.\n const stop0 = document.createElementNS(svgNS, \"stop\");\n stop0.setAttribute(\"offset\", \"0%\");\n stop0.setAttribute(\n \"style\",\n `stop-color:${this.props.color};stop-opacity:0.9`\n );\n const stop100 = document.createElementNS(svgNS, \"stop\");\n stop100.setAttribute(\"offset\", \"100%\");\n stop100.setAttribute(\n \"style\",\n `stop-color:${this.props.color};stop-opacity:0`\n );\n // Circle.\n const circle = document.createElementNS(svgNS, \"circle\");\n circle.setAttribute(\"fill\", `url(#${gradientId})`);\n circle.setAttribute(\"cx\", \"50%\");\n circle.setAttribute(\"cy\", \"50%\");\n circle.setAttribute(\"r\", \"50%\");\n\n // Append elements.\n radialGradient.append(stop0, stop100);\n defs.append(radialGradient);\n svg.append(defs, circle);\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n svg.setAttribute(\"opacity\", \"0.2\");\n }\n\n return svg;\n }\n\n /**\n * @override function to add or remove inputsGroups those that are not necessary.\n * Add to:\n * ColorInputGroup\n * RangesInputGroup\n */\n public getFormContainer(): FormContainer {\n return ColorCloud.getFormContainer(this.props);\n }\n\n public static getFormContainer(\n props: Partial\n ): FormContainer {\n const formContainer = super.getFormContainer(props);\n formContainer.removeInputGroup(\"label\");\n\n formContainer.addInputGroup(new ColorInputGroup(\"color-cloud\", props), 3);\n formContainer.addInputGroup(new RangesInputGroup(\"ranges-cloud\", props), 4);\n\n return formContainer;\n }\n}\n","import { AnyObject, Position, Size, ItemMeta } from \"../lib/types\";\nimport {\n parseIntOr,\n notEmptyStringOr,\n debounce,\n addMovementListener\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\nimport TypedEvent, { Listener, Disposable } from \"../lib/TypedEvent\";\n\nexport interface LineProps extends ItemProps {\n // Overrided properties.\n type: number;\n label: null;\n isLinkEnabled: false;\n parentId: null;\n aclGroupId: null;\n // Custom properties.\n startPosition: Position;\n endPosition: Position;\n lineWidth: number;\n color: string | null;\n viewportOffsetX: number;\n viewportOffsetY: number;\n labelEnd: string;\n labelStart: string;\n linkedEnd: number | null;\n linkedStart: number | null;\n labelEndWidth: number;\n labelEndHeight: number;\n labelStartWidth: number;\n labelStartHeight: number;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the item props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function linePropsDecoder(data: AnyObject): LineProps | never {\n const props: LineProps = {\n ...itemBasePropsDecoder({ ...data, width: 1, height: 1 }), // Object spread. It will merge the properties of the two objects.\n type: ItemType.LINE_ITEM,\n label: null,\n isLinkEnabled: false,\n parentId: null,\n aclGroupId: null,\n // Initialize Position & Size.\n x: 0,\n y: 0,\n width: 0,\n height: 0,\n // Custom properties.\n startPosition: {\n x: parseIntOr(data.startX, 0),\n y: parseIntOr(data.startY, 0)\n },\n endPosition: {\n x: parseIntOr(data.endX, 0),\n y: parseIntOr(data.endY, 0)\n },\n lineWidth: parseIntOr(data.lineWidth || data.borderWidth, 1),\n color: notEmptyStringOr(data.borderColor || data.color, null),\n viewportOffsetX: 0,\n viewportOffsetY: 0,\n labelEnd: notEmptyStringOr(data.labelEnd, \"\"),\n labelEndWidth: parseIntOr(data.labelEndWidth, 0),\n linkedEnd: data.linkedEnd,\n linkedStart: data.linkedStart,\n labelEndHeight: parseIntOr(data.labelEndHeight, 0),\n labelStart: notEmptyStringOr(data.labelStart, \"\"),\n labelStartWidth: parseIntOr(data.labelStartWidth, 0),\n labelStartHeight: parseIntOr(data.labelStartHeight, 0)\n };\n\n /*\n * We need to enhance the props with the extracted size and position\n * of the box cause there are missing at the props update. A better\n * solution would be overriding the props setter to do it there, but\n * the language doesn't allow it while targetting ES5.\n * TODO: We need to figure out a more consistent solution.\n */\n\n return {\n ...props,\n // Enhance the props extracting the box size and position.\n // eslint-disable-next-line @typescript-eslint/no-use-before-define\n ...Line.extractBoxSizeAndPosition(props.startPosition, props.endPosition)\n };\n}\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\nexport interface LineMovedEvent {\n item: Line;\n startPosition: LineProps[\"startPosition\"];\n endPosition: LineProps[\"endPosition\"];\n}\n\nexport default class Line extends Item {\n protected circleRadius = 8;\n // To control if the line movement is enabled.\n protected moveMode: boolean = false;\n // To control if the line is moving.\n protected isMoving: boolean = false;\n\n // Event manager for moved events.\n public readonly lineMovedEventManager = new TypedEvent();\n // List of references to clean the event listeners.\n protected readonly lineMovedEventDisposables: Disposable[] = [];\n\n // This function will only run the 2nd arg function after the time\n // of the first arg have passed after its last execution.\n protected debouncedStartPositionMovementSave = debounce(\n 500, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n this.isMoving = false;\n const startPosition = { x, y };\n // Emit the movement event.\n this.lineMovedEventManager.emit({\n item: this,\n startPosition,\n endPosition: this.props.endPosition\n });\n }\n );\n // This property will store the function\n // to clean the movement listener.\n protected removeStartPositionMovement: Function | null = null;\n\n /**\n * Start the movement funtionality for the start position.\n * @param element Element to move inside its container.\n */\n protected initStartPositionMovementListener(\n element: HTMLElement,\n container: HTMLElement\n ): void {\n this.removeStartPositionMovement = addMovementListener(\n element,\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n // Calculate the center of the circle.\n x += this.circleRadius - this.props.viewportOffsetX / 2;\n y += this.circleRadius - this.props.viewportOffsetY / 2;\n\n const startPosition = { x, y };\n\n this.isMoving = true;\n this.props = {\n ...this.props,\n startPosition\n };\n\n // Run the end function.\n this.debouncedStartPositionMovementSave(x, y);\n },\n container\n );\n }\n /**\n * Stop the movement fun\n */\n private stopStartPositionMovementListener(): void {\n if (this.removeStartPositionMovement) {\n this.removeStartPositionMovement();\n this.removeStartPositionMovement = null;\n }\n }\n\n // This function will only run the 2nd arg function after the time\n // of the first arg have passed after its last execution.\n protected debouncedEndPositionMovementSave = debounce(\n 500, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n this.isMoving = false;\n const endPosition = { x, y };\n // Emit the movement event.\n this.lineMovedEventManager.emit({\n item: this,\n endPosition,\n startPosition: this.props.startPosition\n });\n }\n );\n // This property will store the function\n // to clean the movement listener.\n protected removeEndPositionMovement: Function | null = null;\n\n /**\n * End the movement funtionality for the end position.\n * @param element Element to move inside its container.\n */\n protected initEndPositionMovementListener(\n element: HTMLElement,\n container: HTMLElement\n ): void {\n this.removeEndPositionMovement = addMovementListener(\n element,\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n // Calculate the center of the circle.\n x += this.circleRadius - this.props.viewportOffsetX / 2;\n y += this.circleRadius - this.props.viewportOffsetY / 2;\n\n this.isMoving = true;\n this.props = {\n ...this.props,\n endPosition: { x, y }\n };\n\n // Run the end function.\n this.debouncedEndPositionMovementSave(x, y);\n },\n container\n );\n }\n /**\n * Stop the movement function.\n */\n private stopEndPositionMovementListener(): void {\n if (this.removeEndPositionMovement) {\n this.removeEndPositionMovement();\n this.removeEndPositionMovement = null;\n }\n }\n\n /**\n * @override\n */\n public constructor(props: LineProps, meta: ItemMeta) {\n /*\n * We need to override the constructor cause we need to obtain the\n * box size and position from the start and finish points of the line.\n */\n super(\n {\n ...props,\n ...Line.extractBoxSizeAndPosition(\n props.startPosition,\n props.endPosition\n )\n },\n {\n ...meta\n },\n true\n );\n\n this.moveMode = meta.editMode;\n this.init();\n\n super.resizeElement(\n Math.max(props.width, props.viewportOffsetX),\n Math.max(props.height, props.viewportOffsetY)\n );\n }\n\n /**\n * Classic and protected version of the setter of the `props` property.\n * Useful to override it from children classes.\n * @param newProps\n * @override Item.setProps\n */\n public setProps(newProps: LineProps) {\n super.setProps({\n ...newProps,\n ...Line.extractBoxSizeAndPosition(\n newProps.startPosition,\n newProps.endPosition\n )\n });\n }\n\n /**\n * Classic and protected version of the setter of the `meta` property.\n * Useful to override it from children classes.\n * @param newMetadata\n * @override Item.setMeta\n */\n public setMeta(newMetadata: ItemMeta) {\n this.moveMode = newMetadata.editMode;\n super.setMeta({\n ...newMetadata,\n lineMode: true\n });\n }\n\n /**\n * @override\n * To create the item's DOM representation.\n * @return Item.\n */\n protected createDomElement(): HTMLElement {\n const element: HTMLDivElement = document.createElement(\"div\");\n element.className = \"line\";\n\n let {\n x, // Box x\n y, // Box y\n width, // Box width\n height, // Box height\n lineWidth, // Line thickness,\n viewportOffsetX, // viewport width,\n viewportOffsetY, // viewport heigth,\n startPosition, // Line start position\n endPosition, // Line end position\n color // Line color\n } = this.props;\n\n width = width + viewportOffsetX;\n height = height + viewportOffsetY;\n\n const x1 = startPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const y1 = startPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n const x2 = endPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const y2 = endPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n\n // SVG container.\n const svg = document.createElementNS(svgNS, \"svg\");\n // Set SVG size.\n svg.setAttribute(\"width\", `${width + lineWidth}`);\n svg.setAttribute(\"height\", `${height + lineWidth}`);\n\n const line = document.createElementNS(svgNS, \"line\");\n line.setAttribute(\"x1\", `${x1}`);\n line.setAttribute(\"y1\", `${y1}`);\n line.setAttribute(\"x2\", `${x2}`);\n line.setAttribute(\"y2\", `${y2}`);\n line.setAttribute(\"stroke\", color || \"black\");\n line.setAttribute(\"stroke-width\", `${lineWidth}`);\n\n svg.append(line);\n element.append(svg);\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n if (element.parentElement != null) {\n element.parentElement.style.cursor = \"default\";\n }\n\n let {\n x, // Box x\n y, // Box y\n width, // Box width\n height, // Box height\n lineWidth, // Line thickness\n viewportOffsetX, // viewport width,\n viewportOffsetY, // viewport heigth,\n startPosition, // Line start position\n endPosition, // Line end position\n color // Line color\n } = this.props;\n\n width = width + viewportOffsetX;\n height = height + viewportOffsetY;\n\n const x1 = startPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const y1 = startPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n const x2 = endPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const y2 = endPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n\n const svgs = element.getElementsByTagName(\"svg\");\n\n if (svgs.length > 0) {\n const svg = svgs.item(0);\n\n if (svg != null) {\n // Set SVG size.\n svg.setAttribute(\"width\", `${width + lineWidth}`);\n svg.setAttribute(\"height\", `${height + lineWidth}`);\n\n const lines = svg.getElementsByTagNameNS(svgNS, \"line\");\n\n if (lines.length > 0) {\n const line = lines.item(0);\n\n if (line != null) {\n line.setAttribute(\"x1\", `${x1}`);\n line.setAttribute(\"y1\", `${y1}`);\n line.setAttribute(\"x2\", `${x2}`);\n line.setAttribute(\"y2\", `${y2}`);\n line.setAttribute(\"stroke\", color || \"black\");\n line.setAttribute(\"stroke-width\", `${lineWidth}`);\n }\n }\n }\n }\n\n if (this.moveMode) {\n let startCircle: HTMLElement = document.createElement(\"div\");\n let endCircle: HTMLElement = document.createElement(\"div\");\n\n if (this.isMoving) {\n const circlesStart = element.getElementsByClassName(\n \"visual-console-item-line-circle-start\"\n );\n if (circlesStart.length > 0) {\n const circle = circlesStart.item(0) as HTMLElement;\n if (circle) startCircle = circle;\n }\n const circlesEnd = element.getElementsByClassName(\n \"visual-console-item-line-circle-end\"\n );\n if (circlesEnd.length > 0) {\n const circle = circlesEnd.item(0) as HTMLElement;\n if (circle) endCircle = circle;\n }\n }\n\n startCircle.classList.add(\n \"visual-console-item-line-circle\",\n \"visual-console-item-line-circle-start\"\n );\n startCircle.style.width = `${this.circleRadius * 2}px`;\n startCircle.style.height = `${this.circleRadius * 2}px`;\n startCircle.style.borderRadius = \"50%\";\n startCircle.style.backgroundColor = `${color}`;\n startCircle.style.position = \"absolute\";\n startCircle.style.left = `${x1 - this.circleRadius}px`;\n startCircle.style.top = `${y1 - this.circleRadius}px`;\n startCircle.style.cursor = `move`;\n\n endCircle.classList.add(\n \"visual-console-item-line-circle\",\n \"visual-console-item-line-circle-end\"\n );\n endCircle.style.width = `${this.circleRadius * 2}px`;\n endCircle.style.height = `${this.circleRadius * 2}px`;\n endCircle.style.borderRadius = \"50%\";\n endCircle.style.backgroundColor = `${color}`;\n endCircle.style.position = \"absolute\";\n endCircle.style.left = `${x2 - this.circleRadius}px`;\n endCircle.style.top = `${y2 - this.circleRadius}px`;\n endCircle.style.cursor = `move`;\n\n if (element.parentElement !== null) {\n const circles = element.parentElement.getElementsByClassName(\n \"visual-console-item-line-circle\"\n );\n while (circles.length > 0) {\n const circle = circles.item(0);\n if (circle) circle.remove();\n }\n\n element.parentElement.appendChild(startCircle);\n element.parentElement.appendChild(endCircle);\n }\n\n // Init the movement listeners.\n this.initStartPositionMovementListener(\n startCircle,\n this.elementRef.parentElement as HTMLElement\n );\n this.initEndPositionMovementListener(\n endCircle,\n this.elementRef.parentElement as HTMLElement\n );\n } else if (!this.moveMode) {\n this.stopStartPositionMovementListener();\n // Remove circles.\n if (element.parentElement !== null) {\n const circles = element.parentElement.getElementsByClassName(\n \"visual-console-item-line-circle\"\n );\n\n while (circles.length > 0) {\n const circle = circles.item(0);\n if (circle) circle.remove();\n }\n }\n } else {\n this.stopStartPositionMovementListener();\n }\n }\n\n /**\n * Extract the size and position of the box from\n * the start and the finish of the line.\n * @param props Item properties.\n */\n public static extractBoxSizeAndPosition(\n startPosition: Position,\n endPosition: Position\n ): Size & Position {\n return {\n width: Math.abs(startPosition.x - endPosition.x),\n height: Math.abs(startPosition.y - endPosition.y),\n x: Math.min(startPosition.x, endPosition.x),\n y: Math.min(startPosition.y, endPosition.y)\n };\n }\n\n /**\n * Update the position into the properties and move the DOM container.\n * @param x Horizontal axis position.\n * @param y Vertical axis position.\n * @override item function\n */\n public move(x: number, y: number): void {\n super.moveElement(x, y);\n const startIsLeft =\n this.props.startPosition.x - this.props.endPosition.x <= 0;\n const startIsTop =\n this.props.startPosition.y - this.props.endPosition.y <= 0;\n\n const start = {\n x: startIsLeft ? x : this.props.width + x,\n y: startIsTop ? y : this.props.height + y\n };\n\n const end = {\n x: startIsLeft ? this.props.width + x : x,\n y: startIsTop ? this.props.height + y : y\n };\n\n this.props = {\n ...this.props,\n startPosition: start,\n endPosition: end\n };\n }\n\n /**\n * To remove the event listeners and the elements from the DOM.\n * @override Item.remove\n */\n public remove(): void {\n // Clear the item's event listeners.\n this.stopStartPositionMovementListener();\n // Call the parent's .remove()\n super.remove();\n }\n\n /**\n * To add an event handler to the movement of visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n *\n * @override Item.onMoved\n */\n public onLineMovementFinished(\n listener: Listener\n ): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.lineMovedEventManager.on(listener);\n this.lineMovedEventDisposables.push(disposable);\n\n return disposable;\n }\n}\n","import { AnyObject, Position, ItemMeta } from \"../lib/types\";\nimport { debounce, notEmptyStringOr, parseIntOr } from \"../lib\";\nimport { ItemType } from \"../Item\";\nimport Line, { LineProps, linePropsDecoder } from \"./Line\";\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\nexport interface NetworkLinkProps extends LineProps {\n // Overrided properties.\n type: number;\n labelStart: string;\n labelEnd: string;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the item props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function networkLinkPropsDecoder(\n data: AnyObject\n): NetworkLinkProps | never {\n return {\n ...linePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.NETWORK_LINK,\n viewportOffsetX: 0,\n viewportOffsetY: 0,\n labelEnd: notEmptyStringOr(data.labelEnd, \"\"),\n labelEndWidth: parseIntOr(data.labelEndWidth, 0),\n labelEndHeight: parseIntOr(data.labelEndHeight, 0),\n labelStart: notEmptyStringOr(data.labelStart, \"\"),\n labelStartWidth: parseIntOr(data.labelStartWidth, 0),\n labelStartHeight: parseIntOr(data.labelStartHeight, 0)\n };\n}\n\nexport default class NetworkLink extends Line {\n /**\n * @override\n */\n public constructor(props: NetworkLinkProps, meta: ItemMeta) {\n /*\n * We need to override the constructor cause we need to obtain the\n * box size and position from the start and finish points of the line.\n */\n super(\n {\n ...props\n },\n {\n ...meta\n }\n );\n\n this.render();\n }\n\n /**\n * @override\n */\n protected debouncedStartPositionMovementSave = debounce(\n 50, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n this.isMoving = false;\n\n const startPosition = { x, y };\n\n // Re-Paint after move.\n this.render();\n\n // Emit the movement event.\n this.lineMovedEventManager.emit({\n item: this,\n startPosition,\n endPosition: this.props.endPosition\n });\n }\n );\n\n protected debouncedEndPositionMovementSave = debounce(\n 50, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n this.isMoving = false;\n const endPosition = { x, y };\n\n // Re-Paint after move.\n this.render();\n\n // Emit the movement event.\n this.lineMovedEventManager.emit({\n item: this,\n endPosition,\n startPosition: this.props.startPosition\n });\n }\n );\n\n protected updateDomElement(element: HTMLElement): void {\n super.updateDomElement(element);\n\n let {\n x, // Box x\n y, // Box y\n lineWidth, // Line thickness\n viewportOffsetX, // viewport width,\n viewportOffsetY, // viewport heigth,\n startPosition, // Line start position\n endPosition, // Line end position\n color, // Line color\n labelEnd,\n labelStart,\n labelEndWidth,\n labelEndHeight,\n labelStartWidth,\n labelStartHeight\n } = this.props;\n\n const svgs = element.getElementsByTagName(\"svg\");\n let line;\n let svg;\n\n if (svgs.length > 0) {\n svg = svgs.item(0);\n\n if (svg != null) {\n // Set SVG size.\n const lines = svg.getElementsByTagNameNS(svgNS, \"line\");\n let groups = svg.getElementsByTagNameNS(svgNS, \"g\");\n while (groups.length > 0) {\n groups[0].remove();\n }\n\n if (lines.length > 0) {\n line = lines.item(0);\n }\n }\n } else {\n // No line or svg, no more actions are required.\n return;\n }\n\n if (svg == null || line == null) {\n // No more actionas are required.\n return;\n }\n\n // Font size and text adjustments.\n const fontsize = 10;\n const adjustment = 25;\n\n const lineX1 = startPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const lineY1 = startPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n const lineX2 = endPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const lineY2 = endPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n\n let x1 = startPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n let y1 = startPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n let x2 = endPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n let y2 = endPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n\n // Calculate angle (rotation).\n let rad = Math.atan2(lineY2 - lineY1, lineX2 - lineX1);\n let g = (rad * 180) / Math.PI;\n\n // Calculate effective 'text' box sizes.\n const fontheight = 25;\n if (labelStartWidth <= 0) {\n let lines = labelStart.split(\"
\");\n labelStartWidth = 0;\n lines.forEach(l => {\n if (l.length > labelStartWidth) {\n labelStartWidth = l.length * fontsize;\n }\n });\n if (labelStartHeight <= 0) {\n labelStartHeight = lines.length * fontheight;\n }\n }\n\n if (labelEndWidth <= 0) {\n let lines = labelEnd.split(\"
\");\n labelEndWidth = 0;\n lines.forEach(l => {\n if (l.length > labelEndWidth) {\n labelEndWidth = l.length * fontsize;\n }\n });\n if (labelEndHeight <= 0) {\n labelEndHeight = lines.length * fontheight;\n }\n }\n\n if (x1 < x2) {\n // x1 on left of x2.\n x1 += adjustment;\n x2 -= adjustment + labelEndWidth;\n }\n\n if (x1 > x2) {\n // x1 on right of x2.\n x1 -= adjustment + labelStartWidth;\n x2 += adjustment;\n }\n\n if (y1 < y2) {\n // y1 on y2.\n y1 += adjustment;\n y2 -= adjustment + labelEndHeight;\n }\n\n if (y1 > y2) {\n // y1 under y2.\n y1 -= adjustment + labelStartHeight;\n y2 += adjustment;\n }\n\n if (typeof color == \"undefined\") {\n color = \"#000\";\n }\n\n // Clean.\n if (element.parentElement !== null) {\n const labels = element.parentElement.getElementsByClassName(\n \"vc-item-nl-label\"\n );\n while (labels.length > 0) {\n const label = labels.item(0);\n if (label) label.remove();\n }\n\n const arrows = element.parentElement.getElementsByClassName(\n \"vc-item-nl-arrow\"\n );\n while (arrows.length > 0) {\n const arrow = arrows.item(0);\n if (arrow) arrow.remove();\n }\n }\n\n let arrowSize = lineWidth * 2;\n\n let arrowPosX = lineX1 + (lineX2 - lineX1) / 2 - arrowSize;\n let arrowPosY = lineY1 + (lineY2 - lineY1) / 2 - arrowSize;\n\n let arrowStart: HTMLElement = document.createElement(\"div\");\n arrowStart.classList.add(\"vc-item-nl-arrow\");\n arrowStart.style.position = \"absolute\";\n arrowStart.style.border = `${arrowSize}px solid transparent`;\n arrowStart.style.borderBottom = `${arrowSize}px solid ${color}`;\n arrowStart.style.left = `${arrowPosX}px`;\n arrowStart.style.top = `${arrowPosY}px`;\n arrowStart.style.transform = `rotate(${90 + g}deg)`;\n\n let arrowEnd: HTMLElement = document.createElement(\"div\");\n arrowEnd.classList.add(\"vc-item-nl-arrow\");\n arrowEnd.style.position = \"absolute\";\n arrowEnd.style.border = `${arrowSize}px solid transparent`;\n arrowEnd.style.borderBottom = `${arrowSize}px solid ${color}`;\n arrowEnd.style.left = `${arrowPosX}px`;\n arrowEnd.style.top = `${arrowPosY}px`;\n arrowEnd.style.transform = `rotate(${270 + g}deg)`;\n\n if (element.parentElement !== null) {\n element.parentElement.appendChild(arrowStart);\n element.parentElement.appendChild(arrowEnd);\n }\n\n if (labelStart != \"\") {\n let htmlLabelStart: HTMLElement = document.createElement(\"div\");\n\n try {\n htmlLabelStart.innerHTML = labelStart;\n htmlLabelStart.style.position = \"absolute\";\n htmlLabelStart.style.left = `${x1}px`;\n htmlLabelStart.style.top = `${y1}px`;\n htmlLabelStart.style.width = `${labelStartWidth}px`;\n htmlLabelStart.style.border = `2px solid ${color}`;\n\n htmlLabelStart.classList.add(\"vc-item-nl-label\", \"label-start\");\n } catch (error) {\n console.error(error);\n }\n\n if (element.parentElement !== null) {\n element.parentElement.appendChild(htmlLabelStart);\n }\n }\n\n if (labelEnd != \"\") {\n let htmlLabelEnd: HTMLElement = document.createElement(\"div\");\n\n try {\n htmlLabelEnd.innerHTML = labelEnd;\n htmlLabelEnd.style.position = \"absolute\";\n htmlLabelEnd.style.left = `${x2}px`;\n htmlLabelEnd.style.top = `${y2}px`;\n htmlLabelEnd.style.width = `${labelEndWidth}px`;\n htmlLabelEnd.style.border = `2px solid ${color}`;\n\n htmlLabelEnd.classList.add(\"vc-item-nl-label\", \"label-end\");\n } catch (error) {\n console.error(error);\n }\n\n if (element.parentElement !== null) {\n element.parentElement.appendChild(htmlLabelEnd);\n }\n }\n }\n}\n","import { LinkedVisualConsoleProps, AnyObject } from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n parseIntOr,\n notEmptyStringOr,\n stringIsEmpty,\n decodeBase64,\n parseBoolean,\n t\n} from \"../lib\";\nimport Item, { ItemProps, itemBasePropsDecoder, ItemType } from \"../Item\";\n\nexport type GroupProps = {\n type: ItemType.GROUP_ITEM;\n groupId: number;\n imageSrc: string | null; // URL?\n statusImageSrc: string | null;\n showStatistics: boolean;\n html?: string | null;\n} & ItemProps &\n LinkedVisualConsoleProps;\n\nfunction extractHtml(data: AnyObject): string | null {\n if (!stringIsEmpty(data.html)) return data.html;\n if (!stringIsEmpty(data.encodedHtml)) return decodeBase64(data.encodedHtml);\n return null;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the group props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function groupPropsDecoder(data: AnyObject): GroupProps | never {\n if (\n (typeof data.imageSrc !== \"string\" || data.imageSrc.length === 0) &&\n data.encodedHtml === null\n ) {\n throw new TypeError(\"invalid image src.\");\n }\n if (parseIntOr(data.groupId, null) === null) {\n throw new TypeError(\"invalid group Id.\");\n }\n\n const showStatistics = parseBoolean(data.showStatistics);\n const html = showStatistics ? extractHtml(data) : null;\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.GROUP_ITEM,\n groupId: parseInt(data.groupId),\n imageSrc: notEmptyStringOr(data.imageSrc, null),\n statusImageSrc: notEmptyStringOr(data.statusImageSrc, null),\n showStatistics,\n html,\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\nexport default class Group extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"group\";\n\n if (!this.props.showStatistics && this.props.statusImageSrc !== null) {\n // Icon with status.\n element.style.backgroundImage = `url(${this.props.statusImageSrc})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n } else if (this.props.showStatistics && this.props.html != null) {\n // Stats table.\n element.style.backgroundImage = \"none\";\n element.innerHTML = this.props.html;\n }\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n if (!this.props.showStatistics && this.props.statusImageSrc !== null) {\n // Icon with status.\n element.style.backgroundImage = `url(${this.props.statusImageSrc})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n element.innerHTML = \"\";\n } else if (this.props.showStatistics && this.props.html != null) {\n // Stats table.\n element.style.backgroundImage = \"none\";\n element.innerHTML = this.props.html;\n }\n }\n}\n","import \"./styles.css\";\n\nimport {\n LinkedVisualConsoleProps,\n AnyObject,\n Size,\n ItemMeta\n} from \"../../lib/types\";\nimport {\n linkedVCPropsDecoder,\n parseIntOr,\n parseBoolean,\n prefixedCssRules,\n notEmptyStringOr,\n humanDate,\n humanTime,\n t\n} from \"../../lib\";\nimport Item, { ItemProps, itemBasePropsDecoder, ItemType } from \"../../Item\";\n\nexport type ClockProps = {\n type: ItemType.CLOCK;\n clockType: \"analogic\" | \"digital\";\n clockFormat: \"datetime\" | \"time\";\n clockTimezone: string;\n clockTimezoneOffset: number; // Offset of the timezone to UTC in seconds.\n showClockTimezone: boolean;\n color?: string | null;\n} & ItemProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param clockType Raw value.\n */\nconst parseClockType = (clockType: unknown): ClockProps[\"clockType\"] => {\n switch (clockType) {\n case \"analogic\":\n case \"digital\":\n return clockType;\n default:\n return \"analogic\";\n }\n};\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param clockFormat Raw value.\n */\nconst parseClockFormat = (clockFormat: unknown): ClockProps[\"clockFormat\"] => {\n switch (clockFormat) {\n case \"datetime\":\n case \"time\":\n return clockFormat;\n default:\n return \"datetime\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the clock props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function clockPropsDecoder(data: AnyObject): ClockProps | never {\n if (\n typeof data.clockTimezone !== \"string\" ||\n data.clockTimezone.length === 0\n ) {\n throw new TypeError(\"invalid timezone.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.CLOCK,\n clockType: parseClockType(data.clockType),\n clockFormat: parseClockFormat(data.clockFormat),\n clockTimezone: data.clockTimezone,\n clockTimezoneOffset: parseIntOr(data.clockTimezoneOffset, 0),\n showClockTimezone: parseBoolean(data.showClockTimezone),\n color: notEmptyStringOr(data.color, null),\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class Clock extends Item {\n public static readonly TICK_INTERVAL = 1000; // In ms.\n private intervalRef: number | null = null;\n\n public constructor(props: ClockProps, meta: ItemMeta) {\n // Call the superclass constructor.\n super(props, meta);\n\n /* The item is already loaded and inserted into the DOM.\n * The class properties are now initialized.\n * Now you can modify the item, add event handlers, timers, etc.\n */\n\n /* The use of the arrow function is important here. startTick will\n * use the function passed as an argument to call the global setInterval\n * function. The interval, timeout or event functions, among other, are\n * called into another execution loop and using a different context.\n * The arrow functions, unlike the classic functions, doesn't create\n * their own context (this), so their context at execution time will be\n * use the current context at the declaration time.\n * http://es6-features.org/#Lexicalthis\n */\n this.startTick(\n () => {\n // Replace the old element with the updated date.\n this.childElementRef.innerHTML = this.createClock().innerHTML;\n },\n /* The analogic clock doesn't need to tick,\n * but it will be refreshed every 20 seconds\n * to avoid a desync caused by page freezes.\n */\n this.props.clockType === \"analogic\" ? 20000 : Clock.TICK_INTERVAL\n );\n }\n\n /**\n * Wrap a window.clearInterval call.\n */\n private stopTick(): void {\n if (this.intervalRef !== null) {\n window.clearInterval(this.intervalRef);\n this.intervalRef = null;\n }\n }\n\n /**\n * Wrap a window.setInterval call.\n * @param handler Function to be called every time the interval\n * timer is reached.\n * @param interval Number in milliseconds for the interval timer.\n */\n private startTick(\n handler: TimerHandler,\n interval: number = Clock.TICK_INTERVAL\n ): void {\n this.stopTick();\n this.intervalRef = window.setInterval(handler, interval);\n }\n\n /**\n * Create a element which contains the DOM representation of the item.\n * @return DOM Element.\n * @override\n */\n protected createDomElement(): HTMLElement | never {\n return this.createClock();\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n // Destructuring assigment: http://es6-features.org/#ObjectMatchingShorthandNotation\n const { width: newWidth, height: newHeight } = this.getElementSize(\n this.props.width,\n this.props.height\n );\n\n if (this.props.clockType === \"digital\") {\n if (this.meta.isBeingResized === false) {\n super.resizeElement(this.props.width, this.props.height);\n }\n element.classList.replace(\"analogic-clock\", \"digital-clock\");\n } else {\n if (this.meta.isBeingResized === false) {\n super.resizeElement(newWidth, newHeight);\n }\n element.classList.replace(\"digital-clock\", \"analogic-clock\");\n }\n element.innerHTML = this.createDomElement().innerHTML;\n }\n\n /**\n * To remove the event listeners and the elements from the DOM.\n * @override\n */\n public remove(): void {\n // Clear the interval.\n this.stopTick();\n // Call to the parent clean function.\n super.remove();\n }\n\n /**\n * @override Item.resizeElement\n * Resize the DOM content container.\n * @param width\n * @param height\n */\n protected resizeElement(width: number, height: number): void {\n // Destructuring assigment: http://es6-features.org/#ObjectMatchingShorthandNotation\n const { width: newWidth, height: newHeight } = this.getElementSize(\n width,\n height\n );\n\n // Re-render the item to force it calculate a new font size.\n if (this.props.clockType === \"digital\") {\n super.resizeElement(width, height);\n // Replace the old element with the updated date.\n //this.childElementRef.innerHTML = this.createClock().innerHTML;\n } else {\n super.resizeElement(newWidth, newHeight);\n }\n }\n\n /**\n * Create a element which contains a representation of a clock.\n * It choose between the clock types.\n * @return DOM Element.\n * @throws Error.\n */\n private createClock(): HTMLElement | never {\n switch (this.props.clockType) {\n case \"analogic\":\n return this.createAnalogicClock();\n case \"digital\":\n return this.createDigitalClock();\n default:\n throw new Error(\"invalid clock type.\");\n }\n }\n\n /**\n * Create a element which contains a representation of an analogic clock.\n * @return DOM Element.\n */\n private createAnalogicClock(): HTMLElement {\n const svgNS = \"http://www.w3.org/2000/svg\";\n const colors = {\n watchFace: \"#FFFFF0\",\n watchFaceBorder: \"#242124\",\n mark: \"#242124\",\n handDark: \"#242124\",\n handLight: \"#525252\",\n secondHand: \"#DC143C\"\n };\n\n const { width, height } = this.getElementSize(); // Destructuring assigment: http://es6-features.org/#ObjectMatchingShorthandNotation\n\n // Calculate font size to adapt the font to the item size.\n const baseTimeFontSize = 20; // Per 100px of width.\n const dateFontSizeMultiplier = 0.5;\n const dateFontSize =\n (baseTimeFontSize * dateFontSizeMultiplier * width) / 100;\n\n const div = document.createElement(\"div\");\n div.className = \"analogic-clock\";\n div.style.width = `${width}px`;\n div.style.height = `${height}px`;\n\n // SVG container.\n const svg = document.createElementNS(svgNS, \"svg\");\n // Auto resize SVG using the view box magic: https://css-tricks.com/scale-svg/\n svg.setAttribute(\"viewBox\", \"0 0 100 100\");\n\n // Clock face.\n const clockFace = document.createElementNS(svgNS, \"g\");\n clockFace.setAttribute(\"class\", \"clockface\");\n const clockFaceBackground = document.createElementNS(svgNS, \"circle\");\n clockFaceBackground.setAttribute(\"cx\", \"50\");\n clockFaceBackground.setAttribute(\"cy\", \"50\");\n clockFaceBackground.setAttribute(\"r\", \"48\");\n clockFaceBackground.setAttribute(\"fill\", colors.watchFace);\n clockFaceBackground.setAttribute(\"stroke\", colors.watchFaceBorder);\n clockFaceBackground.setAttribute(\"stroke-width\", \"2\");\n clockFaceBackground.setAttribute(\"stroke-linecap\", \"round\");\n // Insert the clockface background into the clockface group.\n clockFace.append(clockFaceBackground);\n\n // Timezone complication.\n const city = this.getHumanTimezone();\n if (city.length > 0) {\n const timezoneComplication = document.createElementNS(svgNS, \"text\");\n timezoneComplication.setAttribute(\"text-anchor\", \"middle\");\n timezoneComplication.setAttribute(\"font-size\", \"8\");\n timezoneComplication.setAttribute(\n \"transform\",\n \"translate(30 50) rotate(90)\" // Rotate to counter the clock rotation.\n );\n timezoneComplication.setAttribute(\"fill\", colors.mark);\n timezoneComplication.textContent = city;\n clockFace.append(timezoneComplication);\n }\n\n // Marks group.\n const marksGroup = document.createElementNS(svgNS, \"g\");\n marksGroup.setAttribute(\"class\", \"marks\");\n // Build the 12 hours mark.\n const mainMarkGroup = document.createElementNS(svgNS, \"g\");\n mainMarkGroup.setAttribute(\"class\", \"mark\");\n mainMarkGroup.setAttribute(\"transform\", \"translate(50 50)\");\n const mark1a = document.createElementNS(svgNS, \"line\");\n mark1a.setAttribute(\"x1\", \"36\");\n mark1a.setAttribute(\"y1\", \"0\");\n mark1a.setAttribute(\"x2\", \"46\");\n mark1a.setAttribute(\"y2\", \"0\");\n mark1a.setAttribute(\"stroke\", colors.mark);\n mark1a.setAttribute(\"stroke-width\", \"5\");\n const mark1b = document.createElementNS(svgNS, \"line\");\n mark1b.setAttribute(\"x1\", \"36\");\n mark1b.setAttribute(\"y1\", \"0\");\n mark1b.setAttribute(\"x2\", \"46\");\n mark1b.setAttribute(\"y2\", \"0\");\n mark1b.setAttribute(\"stroke\", colors.watchFace);\n mark1b.setAttribute(\"stroke-width\", \"1\");\n // Insert the 12 mark lines into their group.\n mainMarkGroup.append(mark1a, mark1b);\n // Insert the main mark into the marks group.\n marksGroup.append(mainMarkGroup);\n // Build the rest of the marks.\n for (let i = 1; i < 60; i++) {\n const mark = document.createElementNS(svgNS, \"line\");\n mark.setAttribute(\"y1\", \"0\");\n mark.setAttribute(\"y2\", \"0\");\n mark.setAttribute(\"stroke\", colors.mark);\n mark.setAttribute(\"transform\", `translate(50 50) rotate(${i * 6})`);\n\n if (i % 5 === 0) {\n mark.setAttribute(\"x1\", \"38\");\n mark.setAttribute(\"x2\", \"46\");\n mark.setAttribute(\"stroke-width\", i % 15 === 0 ? \"2\" : \"1\");\n } else {\n mark.setAttribute(\"x1\", \"42\");\n mark.setAttribute(\"x2\", \"46\");\n mark.setAttribute(\"stroke-width\", \"0.5\");\n }\n\n // Insert the mark into the marks group.\n marksGroup.append(mark);\n }\n\n /* Clock hands */\n\n // Hour hand.\n const hourHand = document.createElementNS(svgNS, \"g\");\n hourHand.setAttribute(\"class\", \"hour-hand\");\n hourHand.setAttribute(\"transform\", \"translate(50 50)\");\n // This will go back and will act like a border.\n const hourHandA = document.createElementNS(svgNS, \"line\");\n hourHandA.setAttribute(\"class\", \"hour-hand-a\");\n hourHandA.setAttribute(\"x1\", \"0\");\n hourHandA.setAttribute(\"y1\", \"0\");\n hourHandA.setAttribute(\"x2\", \"30\");\n hourHandA.setAttribute(\"y2\", \"0\");\n hourHandA.setAttribute(\"stroke\", colors.handLight);\n hourHandA.setAttribute(\"stroke-width\", \"4\");\n hourHandA.setAttribute(\"stroke-linecap\", \"round\");\n // This will go in front of the previous line.\n const hourHandB = document.createElementNS(svgNS, \"line\");\n hourHandB.setAttribute(\"class\", \"hour-hand-b\");\n hourHandB.setAttribute(\"x1\", \"0\");\n hourHandB.setAttribute(\"y1\", \"0\");\n hourHandB.setAttribute(\"x2\", \"29.9\");\n hourHandB.setAttribute(\"y2\", \"0\");\n hourHandB.setAttribute(\"stroke\", colors.handDark);\n hourHandB.setAttribute(\"stroke-width\", \"3.1\");\n hourHandB.setAttribute(\"stroke-linecap\", \"round\");\n // Append the elements to finish the hour hand.\n hourHand.append(hourHandA, hourHandB);\n\n // Minute hand.\n const minuteHand = document.createElementNS(svgNS, \"g\");\n minuteHand.setAttribute(\"class\", \"minute-hand\");\n minuteHand.setAttribute(\"transform\", \"translate(50 50)\");\n // This will go back and will act like a border.\n const minuteHandA = document.createElementNS(svgNS, \"line\");\n minuteHandA.setAttribute(\"class\", \"minute-hand-a\");\n minuteHandA.setAttribute(\"x1\", \"0\");\n minuteHandA.setAttribute(\"y1\", \"0\");\n minuteHandA.setAttribute(\"x2\", \"40\");\n minuteHandA.setAttribute(\"y2\", \"0\");\n minuteHandA.setAttribute(\"stroke\", colors.handLight);\n minuteHandA.setAttribute(\"stroke-width\", \"2\");\n minuteHandA.setAttribute(\"stroke-linecap\", \"round\");\n // This will go in front of the previous line.\n const minuteHandB = document.createElementNS(svgNS, \"line\");\n minuteHandB.setAttribute(\"class\", \"minute-hand-b\");\n minuteHandB.setAttribute(\"x1\", \"0\");\n minuteHandB.setAttribute(\"y1\", \"0\");\n minuteHandB.setAttribute(\"x2\", \"39.9\");\n minuteHandB.setAttribute(\"y2\", \"0\");\n minuteHandB.setAttribute(\"stroke\", colors.handDark);\n minuteHandB.setAttribute(\"stroke-width\", \"1.5\");\n minuteHandB.setAttribute(\"stroke-linecap\", \"round\");\n const minuteHandPin = document.createElementNS(svgNS, \"circle\");\n minuteHandPin.setAttribute(\"r\", \"3\");\n minuteHandPin.setAttribute(\"fill\", colors.handDark);\n // Append the elements to finish the minute hand.\n minuteHand.append(minuteHandA, minuteHandB, minuteHandPin);\n\n // Second hand.\n const secondHand = document.createElementNS(svgNS, \"g\");\n secondHand.setAttribute(\"class\", \"second-hand\");\n secondHand.setAttribute(\"transform\", \"translate(50 50)\");\n const secondHandBar = document.createElementNS(svgNS, \"line\");\n secondHandBar.setAttribute(\"x1\", \"0\");\n secondHandBar.setAttribute(\"y1\", \"0\");\n secondHandBar.setAttribute(\"x2\", \"46\");\n secondHandBar.setAttribute(\"y2\", \"0\");\n secondHandBar.setAttribute(\"stroke\", colors.secondHand);\n secondHandBar.setAttribute(\"stroke-width\", \"1\");\n secondHandBar.setAttribute(\"stroke-linecap\", \"round\");\n const secondHandPin = document.createElementNS(svgNS, \"circle\");\n secondHandPin.setAttribute(\"r\", \"2\");\n secondHandPin.setAttribute(\"fill\", colors.secondHand);\n // Append the elements to finish the second hand.\n secondHand.append(secondHandBar, secondHandPin);\n\n // Pin.\n const pin = document.createElementNS(svgNS, \"circle\");\n pin.setAttribute(\"cx\", \"50\");\n pin.setAttribute(\"cy\", \"50\");\n pin.setAttribute(\"r\", \"0.3\");\n pin.setAttribute(\"fill\", colors.handDark);\n\n // Get the hand angles.\n const date = this.getOriginDate();\n const seconds = date.getSeconds();\n const minutes = date.getMinutes();\n const hours = date.getHours();\n const secAngle = (360 / 60) * seconds;\n const minuteAngle = (360 / 60) * minutes + (360 / 60) * (seconds / 60);\n const hourAngle = (360 / 12) * hours + (360 / 12) * (minutes / 60);\n // Set the clock time by moving the hands.\n hourHand.setAttribute(\"transform\", `translate(50 50) rotate(${hourAngle})`);\n minuteHand.setAttribute(\n \"transform\",\n `translate(50 50) rotate(${minuteAngle})`\n );\n secondHand.setAttribute(\n \"transform\",\n `translate(50 50) rotate(${secAngle})`\n );\n\n // Build the clock\n svg.append(clockFace, marksGroup, hourHand, minuteHand, secondHand, pin);\n // Rotate the clock to its normal position.\n svg.setAttribute(\"transform\", \"rotate(-90)\");\n\n /* Add the animation declaration to the container.\n * Since the animation keyframes need to know the\n * start angle, this angle is dynamic (current time),\n * and we can't edit keyframes through javascript\n * safely and with backwards compatibility, we need\n * to inject it.\n */\n div.innerHTML = `\n \n `;\n // Add the clock to the container\n div.append(svg);\n\n // Date.\n if (this.props.clockFormat === \"datetime\") {\n const dateElem: HTMLSpanElement = document.createElement(\"span\");\n dateElem.className = \"date\";\n dateElem.textContent = humanDate(date, \"default\");\n dateElem.style.fontSize = `${dateFontSize}px`;\n if (this.props.color) dateElem.style.color = this.props.color;\n div.append(dateElem);\n }\n\n return div;\n }\n\n /**\n * Create a element which contains a representation of a digital clock.\n * @return DOM Element.\n */\n private createDigitalClock(): HTMLElement {\n const element: HTMLDivElement = document.createElement(\"div\");\n element.className = \"digital-clock\";\n\n const { width, height } = this.getElementSize(); // Destructuring assigment: http://es6-features.org/#ObjectMatchingShorthandNotation\n let modified = width;\n if (height < width) {\n modified = height;\n }\n\n // Calculate font size to adapt the font to the item size.\n const baseTimeFontSize = 35; // Per 100px of width.\n const dateFontSizeMultiplier = 0.5;\n const tzFontSizeMultiplier = 6 / this.props.clockTimezone.length;\n const timeFontSize = (baseTimeFontSize * modified) / 100;\n const dateFontSize =\n (baseTimeFontSize * dateFontSizeMultiplier * modified) / 100;\n const tzFontSize = Math.min(\n (baseTimeFontSize * tzFontSizeMultiplier * modified) / 100,\n (width / 100) * 10\n );\n\n // Date calculated using the original timezone.\n const date = this.getOriginDate();\n\n // Date.\n if (this.props.clockFormat === \"datetime\") {\n const dateElem: HTMLSpanElement = document.createElement(\"span\");\n dateElem.className = \"date\";\n dateElem.textContent = humanDate(date, \"default\");\n dateElem.style.fontSize = `${dateFontSize}px`;\n if (this.props.color) dateElem.style.color = this.props.color;\n element.append(dateElem);\n }\n\n // Time.\n const timeElem: HTMLSpanElement = document.createElement(\"span\");\n timeElem.className = \"time\";\n timeElem.textContent = humanTime(date);\n timeElem.style.fontSize = `${timeFontSize}px`;\n if (this.props.color) timeElem.style.color = this.props.color;\n element.append(timeElem);\n\n // City name.\n const city = this.getHumanTimezone();\n if (city.length > 0) {\n const tzElem: HTMLSpanElement = document.createElement(\"span\");\n tzElem.className = \"timezone\";\n tzElem.textContent = city;\n tzElem.style.fontSize = `${tzFontSize}px`;\n if (this.props.color) tzElem.style.color = this.props.color;\n element.append(tzElem);\n }\n\n return element;\n }\n\n /**\n * Generate the current date using the timezone offset stored into the properties.\n * @return The current date.\n */\n private getOriginDate(initialDate: Date | null = null): Date {\n const d = initialDate ? initialDate : new Date();\n const targetTZOffset = this.props.clockTimezoneOffset * 1000; // In ms.\n const localTZOffset = d.getTimezoneOffset() * 60 * 1000; // In ms.\n const utimestamp = d.getTime() + targetTZOffset + localTZOffset;\n\n return new Date(utimestamp);\n }\n\n /**\n * Extract a human readable city name from the timezone text.\n * @param timezone Timezone text.\n */\n public getHumanTimezone(timezone: string = this.props.clockTimezone): string {\n const [, city = \"\"] = timezone.split(\"/\");\n return city.replace(\"_\", \" \");\n }\n\n /**\n * Generate a element size using the current size and the default values.\n * @return The size.\n */\n private getElementSize(\n width: number = this.props.width,\n height: number = this.props.height\n ): Size {\n switch (this.props.clockType) {\n case \"analogic\": {\n let diameter = 100; // Default value.\n\n if (width > 0 && height > 0) {\n diameter = Math.min(width, height);\n } else if (width > 0) {\n diameter = width;\n } else if (height > 0) {\n diameter = height;\n }\n\n let extraHeigth = 0;\n if (this.props.clockFormat === \"datetime\") {\n extraHeigth = height / 8;\n }\n\n return {\n width: diameter,\n height: diameter + extraHeigth\n };\n }\n case \"digital\": {\n if (width > 0 && height > 0) {\n // The proportion of the clock should be (width = height / 2) aproximately.\n height = width / 2 < height ? width / 2 : height;\n } else if (width > 0) {\n height = width / 2;\n } else if (height > 0) {\n // The proportion of the clock should be (height * 2 = width) aproximately.\n width = height * 2;\n } else {\n width = 100; // Default value.\n height = 50; // Default value.\n }\n\n return {\n width,\n height\n };\n }\n default:\n throw new Error(\"invalid clock type.\");\n }\n }\n}\n","import { AnyObject } from \"../lib/types\";\nimport { parseIntOr, notEmptyStringOr, t } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\ninterface BoxProps extends ItemProps {\n // Overrided properties.\n readonly type: ItemType.BOX_ITEM;\n label: null;\n isLinkEnabled: false;\n parentId: null;\n aclGroupId: null;\n // Custom properties.\n borderWidth: number;\n borderColor: string | null;\n fillColor: string | null;\n fillTransparent: boolean | null;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the item props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function boxPropsDecoder(data: AnyObject): BoxProps | never {\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.BOX_ITEM,\n label: null,\n isLinkEnabled: false,\n parentId: null,\n aclGroupId: null,\n // Custom properties.\n borderWidth: parseIntOr(data.borderWidth, 0),\n borderColor: notEmptyStringOr(data.borderColor, null),\n fillColor: notEmptyStringOr(data.fillColor, null),\n fillTransparent: data.fillTransparent\n };\n}\n\nexport default class Box extends Item {\n protected createDomElement(): HTMLElement {\n const box: HTMLDivElement = document.createElement(\"div\");\n box.className = \"box\";\n // To prevent this item to expand beyond its parent.\n box.style.boxSizing = \"border-box\";\n\n if (this.props.fillTransparent) {\n box.style.backgroundColor = \"transparent\";\n } else {\n if (this.props.fillColor) {\n box.style.backgroundColor = this.props.fillColor;\n }\n }\n\n // Border.\n if (this.props.borderWidth > 0) {\n box.style.borderStyle = \"solid\";\n // Control the max width to prevent this item to expand beyond its parent.\n const maxBorderWidth = Math.min(this.props.width, this.props.height) / 2;\n const borderWidth = Math.min(this.props.borderWidth, maxBorderWidth);\n box.style.borderWidth = `${borderWidth}px`;\n\n if (this.props.borderColor) {\n box.style.borderColor = this.props.borderColor;\n }\n }\n\n return box;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n if (this.props.fillTransparent) {\n element.style.backgroundColor = \"transparent\";\n } else {\n if (this.props.fillColor) {\n element.style.backgroundColor = this.props.fillColor;\n }\n }\n\n // Border.\n if (this.props.borderWidth > 0) {\n element.style.borderStyle = \"solid\";\n // Control the max width to prevent this item to expand beyond its parent.\n const maxBorderWidth = Math.min(this.props.width, this.props.height) / 2;\n const borderWidth = Math.min(this.props.borderWidth, maxBorderWidth);\n element.style.borderWidth = `${borderWidth}px`;\n\n if (this.props.borderColor) {\n element.style.borderColor = this.props.borderColor;\n }\n }\n }\n}\n","import { LinkedVisualConsoleProps, AnyObject } from \"../lib/types\";\nimport { linkedVCPropsDecoder } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type LabelProps = {\n type: ItemType.LABEL;\n} & ItemProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the label props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function labelPropsDecoder(data: AnyObject): LabelProps | never {\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.LABEL,\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class Label extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"label\";\n element.innerHTML = this.getLabelWithMacrosReplaced();\n\n return element;\n }\n\n /**\n * @override Item.createLabelDomElement\n * Create a new label for the visual console item.\n * @return Item label.\n */\n public createLabelDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"visual-console-item-label\";\n // Always return an empty label.\n return element;\n }\n}\n","import {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n parseIntOr,\n modulePropsDecoder,\n replaceMacros\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type SimpleValueProps = {\n type: ItemType.SIMPLE_VALUE;\n valueType: \"string\" | \"image\";\n value: string;\n} & (\n | {\n processValue: \"none\";\n }\n | {\n processValue: \"avg\" | \"max\" | \"min\";\n period: number;\n }\n) &\n ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw value type.\n * @param valueType Raw value.\n */\nconst parseValueType = (valueType: unknown): SimpleValueProps[\"valueType\"] => {\n switch (valueType) {\n case \"string\":\n case \"image\":\n return valueType;\n default:\n return \"string\";\n }\n};\n\n/**\n * Extract a valid enum value from a raw process value.\n * @param processValue Raw value.\n */\nconst parseProcessValue = (\n processValue: unknown\n): SimpleValueProps[\"processValue\"] => {\n switch (processValue) {\n case \"none\":\n case \"avg\":\n case \"max\":\n case \"min\":\n return processValue;\n default:\n return \"none\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the simple value props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function simpleValuePropsDecoder(\n data: AnyObject\n): SimpleValueProps | never {\n if (typeof data.value !== \"string\" || data.value.length === 0) {\n throw new TypeError(\"invalid value\");\n }\n\n const processValue = parseProcessValue(data.processValue);\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.SIMPLE_VALUE,\n valueType: parseValueType(data.valueType),\n value: data.value,\n ...(processValue === \"none\"\n ? { processValue }\n : { processValue, period: parseIntOr(data.period, 0) }), // Object spread. It will merge the properties of the two objects.\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class SimpleValue extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"simple-value\";\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n if (this.props.valueType === \"image\") {\n const img = document.createElement(\"img\");\n img.src = this.props.value;\n element.append(img);\n } else {\n // Add the value to the label and show it.\n let text = this.props.value;\n let label = this.getLabelWithMacrosReplaced();\n if (label.length > 0) {\n text = replaceMacros([{ macro: /\\(?_VALUE_\\)?/i, value: text }], label);\n }\n\n element.innerHTML = text;\n }\n\n return element;\n }\n\n /**\n * Generate a element size\n * using the current size and the default values.\n * @return The size.\n */ protected createLabelDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"visual-console-item-label\";\n // Always return an empty label.\n return element;\n }\n}\n","var pi = Math.PI,\n tau = 2 * pi,\n epsilon = 1e-6,\n tauEpsilon = tau - epsilon;\n\nfunction Path() {\n this._x0 = this._y0 = // start of current subpath\n this._x1 = this._y1 = null; // end of current subpath\n this._ = \"\";\n}\n\nfunction path() {\n return new Path;\n}\n\nPath.prototype = path.prototype = {\n constructor: Path,\n moveTo: function(x, y) {\n this._ += \"M\" + (this._x0 = this._x1 = +x) + \",\" + (this._y0 = this._y1 = +y);\n },\n closePath: function() {\n if (this._x1 !== null) {\n this._x1 = this._x0, this._y1 = this._y0;\n this._ += \"Z\";\n }\n },\n lineTo: function(x, y) {\n this._ += \"L\" + (this._x1 = +x) + \",\" + (this._y1 = +y);\n },\n quadraticCurveTo: function(x1, y1, x, y) {\n this._ += \"Q\" + (+x1) + \",\" + (+y1) + \",\" + (this._x1 = +x) + \",\" + (this._y1 = +y);\n },\n bezierCurveTo: function(x1, y1, x2, y2, x, y) {\n this._ += \"C\" + (+x1) + \",\" + (+y1) + \",\" + (+x2) + \",\" + (+y2) + \",\" + (this._x1 = +x) + \",\" + (this._y1 = +y);\n },\n arcTo: function(x1, y1, x2, y2, r) {\n x1 = +x1, y1 = +y1, x2 = +x2, y2 = +y2, r = +r;\n var x0 = this._x1,\n y0 = this._y1,\n x21 = x2 - x1,\n y21 = y2 - y1,\n x01 = x0 - x1,\n y01 = y0 - y1,\n l01_2 = x01 * x01 + y01 * y01;\n\n // Is the radius negative? Error.\n if (r < 0) throw new Error(\"negative radius: \" + r);\n\n // Is this path empty? Move to (x1,y1).\n if (this._x1 === null) {\n this._ += \"M\" + (this._x1 = x1) + \",\" + (this._y1 = y1);\n }\n\n // Or, is (x1,y1) coincident with (x0,y0)? Do nothing.\n else if (!(l01_2 > epsilon));\n\n // Or, are (x0,y0), (x1,y1) and (x2,y2) collinear?\n // Equivalently, is (x1,y1) coincident with (x2,y2)?\n // Or, is the radius zero? Line to (x1,y1).\n else if (!(Math.abs(y01 * x21 - y21 * x01) > epsilon) || !r) {\n this._ += \"L\" + (this._x1 = x1) + \",\" + (this._y1 = y1);\n }\n\n // Otherwise, draw an arc!\n else {\n var x20 = x2 - x0,\n y20 = y2 - y0,\n l21_2 = x21 * x21 + y21 * y21,\n l20_2 = x20 * x20 + y20 * y20,\n l21 = Math.sqrt(l21_2),\n l01 = Math.sqrt(l01_2),\n l = r * Math.tan((pi - Math.acos((l21_2 + l01_2 - l20_2) / (2 * l21 * l01))) / 2),\n t01 = l / l01,\n t21 = l / l21;\n\n // If the start tangent is not coincident with (x0,y0), line to.\n if (Math.abs(t01 - 1) > epsilon) {\n this._ += \"L\" + (x1 + t01 * x01) + \",\" + (y1 + t01 * y01);\n }\n\n this._ += \"A\" + r + \",\" + r + \",0,0,\" + (+(y01 * x20 > x01 * y20)) + \",\" + (this._x1 = x1 + t21 * x21) + \",\" + (this._y1 = y1 + t21 * y21);\n }\n },\n arc: function(x, y, r, a0, a1, ccw) {\n x = +x, y = +y, r = +r, ccw = !!ccw;\n var dx = r * Math.cos(a0),\n dy = r * Math.sin(a0),\n x0 = x + dx,\n y0 = y + dy,\n cw = 1 ^ ccw,\n da = ccw ? a0 - a1 : a1 - a0;\n\n // Is the radius negative? Error.\n if (r < 0) throw new Error(\"negative radius: \" + r);\n\n // Is this path empty? Move to (x0,y0).\n if (this._x1 === null) {\n this._ += \"M\" + x0 + \",\" + y0;\n }\n\n // Or, is (x0,y0) not coincident with the previous point? Line to (x0,y0).\n else if (Math.abs(this._x1 - x0) > epsilon || Math.abs(this._y1 - y0) > epsilon) {\n this._ += \"L\" + x0 + \",\" + y0;\n }\n\n // Is this arc empty? We’re done.\n if (!r) return;\n\n // Does the angle go the wrong way? Flip the direction.\n if (da < 0) da = da % tau + tau;\n\n // Is this a complete circle? Draw two arcs to complete the circle.\n if (da > tauEpsilon) {\n this._ += \"A\" + r + \",\" + r + \",0,1,\" + cw + \",\" + (x - dx) + \",\" + (y - dy) + \"A\" + r + \",\" + r + \",0,1,\" + cw + \",\" + (this._x1 = x0) + \",\" + (this._y1 = y0);\n }\n\n // Is this arc non-empty? Draw an arc!\n else if (da > epsilon) {\n this._ += \"A\" + r + \",\" + r + \",0,\" + (+(da >= pi)) + \",\" + cw + \",\" + (this._x1 = x + r * Math.cos(a1)) + \",\" + (this._y1 = y + r * Math.sin(a1));\n }\n },\n rect: function(x, y, w, h) {\n this._ += \"M\" + (this._x0 = this._x1 = +x) + \",\" + (this._y0 = this._y1 = +y) + \"h\" + (+w) + \"v\" + (+h) + \"h\" + (-w) + \"Z\";\n },\n toString: function() {\n return this._;\n }\n};\n\nexport default path;\n","export default function(x) {\n return function constant() {\n return x;\n };\n}\n","export var abs = Math.abs;\nexport var atan2 = Math.atan2;\nexport var cos = Math.cos;\nexport var max = Math.max;\nexport var min = Math.min;\nexport var sin = Math.sin;\nexport var sqrt = Math.sqrt;\n\nexport var epsilon = 1e-12;\nexport var pi = Math.PI;\nexport var halfPi = pi / 2;\nexport var tau = 2 * pi;\n\nexport function acos(x) {\n return x > 1 ? 0 : x < -1 ? pi : Math.acos(x);\n}\n\nexport function asin(x) {\n return x >= 1 ? halfPi : x <= -1 ? -halfPi : Math.asin(x);\n}\n","import {path} from \"d3-path\";\nimport constant from \"./constant.js\";\nimport {abs, acos, asin, atan2, cos, epsilon, halfPi, max, min, pi, sin, sqrt, tau} from \"./math.js\";\n\nfunction arcInnerRadius(d) {\n return d.innerRadius;\n}\n\nfunction arcOuterRadius(d) {\n return d.outerRadius;\n}\n\nfunction arcStartAngle(d) {\n return d.startAngle;\n}\n\nfunction arcEndAngle(d) {\n return d.endAngle;\n}\n\nfunction arcPadAngle(d) {\n return d && d.padAngle; // Note: optional!\n}\n\nfunction intersect(x0, y0, x1, y1, x2, y2, x3, y3) {\n var x10 = x1 - x0, y10 = y1 - y0,\n x32 = x3 - x2, y32 = y3 - y2,\n t = y32 * x10 - x32 * y10;\n if (t * t < epsilon) return;\n t = (x32 * (y0 - y2) - y32 * (x0 - x2)) / t;\n return [x0 + t * x10, y0 + t * y10];\n}\n\n// Compute perpendicular offset line of length rc.\n// http://mathworld.wolfram.com/Circle-LineIntersection.html\nfunction cornerTangents(x0, y0, x1, y1, r1, rc, cw) {\n var x01 = x0 - x1,\n y01 = y0 - y1,\n lo = (cw ? rc : -rc) / sqrt(x01 * x01 + y01 * y01),\n ox = lo * y01,\n oy = -lo * x01,\n x11 = x0 + ox,\n y11 = y0 + oy,\n x10 = x1 + ox,\n y10 = y1 + oy,\n x00 = (x11 + x10) / 2,\n y00 = (y11 + y10) / 2,\n dx = x10 - x11,\n dy = y10 - y11,\n d2 = dx * dx + dy * dy,\n r = r1 - rc,\n D = x11 * y10 - x10 * y11,\n d = (dy < 0 ? -1 : 1) * sqrt(max(0, r * r * d2 - D * D)),\n cx0 = (D * dy - dx * d) / d2,\n cy0 = (-D * dx - dy * d) / d2,\n cx1 = (D * dy + dx * d) / d2,\n cy1 = (-D * dx + dy * d) / d2,\n dx0 = cx0 - x00,\n dy0 = cy0 - y00,\n dx1 = cx1 - x00,\n dy1 = cy1 - y00;\n\n // Pick the closer of the two intersection points.\n // TODO Is there a faster way to determine which intersection to use?\n if (dx0 * dx0 + dy0 * dy0 > dx1 * dx1 + dy1 * dy1) cx0 = cx1, cy0 = cy1;\n\n return {\n cx: cx0,\n cy: cy0,\n x01: -ox,\n y01: -oy,\n x11: cx0 * (r1 / r - 1),\n y11: cy0 * (r1 / r - 1)\n };\n}\n\nexport default function() {\n var innerRadius = arcInnerRadius,\n outerRadius = arcOuterRadius,\n cornerRadius = constant(0),\n padRadius = null,\n startAngle = arcStartAngle,\n endAngle = arcEndAngle,\n padAngle = arcPadAngle,\n context = null;\n\n function arc() {\n var buffer,\n r,\n r0 = +innerRadius.apply(this, arguments),\n r1 = +outerRadius.apply(this, arguments),\n a0 = startAngle.apply(this, arguments) - halfPi,\n a1 = endAngle.apply(this, arguments) - halfPi,\n da = abs(a1 - a0),\n cw = a1 > a0;\n\n if (!context) context = buffer = path();\n\n // Ensure that the outer radius is always larger than the inner radius.\n if (r1 < r0) r = r1, r1 = r0, r0 = r;\n\n // Is it a point?\n if (!(r1 > epsilon)) context.moveTo(0, 0);\n\n // Or is it a circle or annulus?\n else if (da > tau - epsilon) {\n context.moveTo(r1 * cos(a0), r1 * sin(a0));\n context.arc(0, 0, r1, a0, a1, !cw);\n if (r0 > epsilon) {\n context.moveTo(r0 * cos(a1), r0 * sin(a1));\n context.arc(0, 0, r0, a1, a0, cw);\n }\n }\n\n // Or is it a circular or annular sector?\n else {\n var a01 = a0,\n a11 = a1,\n a00 = a0,\n a10 = a1,\n da0 = da,\n da1 = da,\n ap = padAngle.apply(this, arguments) / 2,\n rp = (ap > epsilon) && (padRadius ? +padRadius.apply(this, arguments) : sqrt(r0 * r0 + r1 * r1)),\n rc = min(abs(r1 - r0) / 2, +cornerRadius.apply(this, arguments)),\n rc0 = rc,\n rc1 = rc,\n t0,\n t1;\n\n // Apply padding? Note that since r1 ≥ r0, da1 ≥ da0.\n if (rp > epsilon) {\n var p0 = asin(rp / r0 * sin(ap)),\n p1 = asin(rp / r1 * sin(ap));\n if ((da0 -= p0 * 2) > epsilon) p0 *= (cw ? 1 : -1), a00 += p0, a10 -= p0;\n else da0 = 0, a00 = a10 = (a0 + a1) / 2;\n if ((da1 -= p1 * 2) > epsilon) p1 *= (cw ? 1 : -1), a01 += p1, a11 -= p1;\n else da1 = 0, a01 = a11 = (a0 + a1) / 2;\n }\n\n var x01 = r1 * cos(a01),\n y01 = r1 * sin(a01),\n x10 = r0 * cos(a10),\n y10 = r0 * sin(a10);\n\n // Apply rounded corners?\n if (rc > epsilon) {\n var x11 = r1 * cos(a11),\n y11 = r1 * sin(a11),\n x00 = r0 * cos(a00),\n y00 = r0 * sin(a00),\n oc;\n\n // Restrict the corner radius according to the sector angle.\n if (da < pi && (oc = intersect(x01, y01, x00, y00, x11, y11, x10, y10))) {\n var ax = x01 - oc[0],\n ay = y01 - oc[1],\n bx = x11 - oc[0],\n by = y11 - oc[1],\n kc = 1 / sin(acos((ax * bx + ay * by) / (sqrt(ax * ax + ay * ay) * sqrt(bx * bx + by * by))) / 2),\n lc = sqrt(oc[0] * oc[0] + oc[1] * oc[1]);\n rc0 = min(rc, (r0 - lc) / (kc - 1));\n rc1 = min(rc, (r1 - lc) / (kc + 1));\n }\n }\n\n // Is the sector collapsed to a line?\n if (!(da1 > epsilon)) context.moveTo(x01, y01);\n\n // Does the sector’s outer ring have rounded corners?\n else if (rc1 > epsilon) {\n t0 = cornerTangents(x00, y00, x01, y01, r1, rc1, cw);\n t1 = cornerTangents(x11, y11, x10, y10, r1, rc1, cw);\n\n context.moveTo(t0.cx + t0.x01, t0.cy + t0.y01);\n\n // Have the corners merged?\n if (rc1 < rc) context.arc(t0.cx, t0.cy, rc1, atan2(t0.y01, t0.x01), atan2(t1.y01, t1.x01), !cw);\n\n // Otherwise, draw the two corners and the ring.\n else {\n context.arc(t0.cx, t0.cy, rc1, atan2(t0.y01, t0.x01), atan2(t0.y11, t0.x11), !cw);\n context.arc(0, 0, r1, atan2(t0.cy + t0.y11, t0.cx + t0.x11), atan2(t1.cy + t1.y11, t1.cx + t1.x11), !cw);\n context.arc(t1.cx, t1.cy, rc1, atan2(t1.y11, t1.x11), atan2(t1.y01, t1.x01), !cw);\n }\n }\n\n // Or is the outer ring just a circular arc?\n else context.moveTo(x01, y01), context.arc(0, 0, r1, a01, a11, !cw);\n\n // Is there no inner ring, and it’s a circular sector?\n // Or perhaps it’s an annular sector collapsed due to padding?\n if (!(r0 > epsilon) || !(da0 > epsilon)) context.lineTo(x10, y10);\n\n // Does the sector’s inner ring (or point) have rounded corners?\n else if (rc0 > epsilon) {\n t0 = cornerTangents(x10, y10, x11, y11, r0, -rc0, cw);\n t1 = cornerTangents(x01, y01, x00, y00, r0, -rc0, cw);\n\n context.lineTo(t0.cx + t0.x01, t0.cy + t0.y01);\n\n // Have the corners merged?\n if (rc0 < rc) context.arc(t0.cx, t0.cy, rc0, atan2(t0.y01, t0.x01), atan2(t1.y01, t1.x01), !cw);\n\n // Otherwise, draw the two corners and the ring.\n else {\n context.arc(t0.cx, t0.cy, rc0, atan2(t0.y01, t0.x01), atan2(t0.y11, t0.x11), !cw);\n context.arc(0, 0, r0, atan2(t0.cy + t0.y11, t0.cx + t0.x11), atan2(t1.cy + t1.y11, t1.cx + t1.x11), cw);\n context.arc(t1.cx, t1.cy, rc0, atan2(t1.y11, t1.x11), atan2(t1.y01, t1.x01), !cw);\n }\n }\n\n // Or is the inner ring just a circular arc?\n else context.arc(0, 0, r0, a10, a00, cw);\n }\n\n context.closePath();\n\n if (buffer) return context = null, buffer + \"\" || null;\n }\n\n arc.centroid = function() {\n var r = (+innerRadius.apply(this, arguments) + +outerRadius.apply(this, arguments)) / 2,\n a = (+startAngle.apply(this, arguments) + +endAngle.apply(this, arguments)) / 2 - pi / 2;\n return [cos(a) * r, sin(a) * r];\n };\n\n arc.innerRadius = function(_) {\n return arguments.length ? (innerRadius = typeof _ === \"function\" ? _ : constant(+_), arc) : innerRadius;\n };\n\n arc.outerRadius = function(_) {\n return arguments.length ? (outerRadius = typeof _ === \"function\" ? _ : constant(+_), arc) : outerRadius;\n };\n\n arc.cornerRadius = function(_) {\n return arguments.length ? (cornerRadius = typeof _ === \"function\" ? _ : constant(+_), arc) : cornerRadius;\n };\n\n arc.padRadius = function(_) {\n return arguments.length ? (padRadius = _ == null ? null : typeof _ === \"function\" ? _ : constant(+_), arc) : padRadius;\n };\n\n arc.startAngle = function(_) {\n return arguments.length ? (startAngle = typeof _ === \"function\" ? _ : constant(+_), arc) : startAngle;\n };\n\n arc.endAngle = function(_) {\n return arguments.length ? (endAngle = typeof _ === \"function\" ? _ : constant(+_), arc) : endAngle;\n };\n\n arc.padAngle = function(_) {\n return arguments.length ? (padAngle = typeof _ === \"function\" ? _ : constant(+_), arc) : padAngle;\n };\n\n arc.context = function(_) {\n return arguments.length ? ((context = _ == null ? null : _), arc) : context;\n };\n\n return arc;\n}\n","import { arc as arcFactory } from \"d3-shape\";\n\nimport {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n modulePropsDecoder,\n notEmptyStringOr,\n parseIntOr,\n parseFloatOr\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type PercentileProps = {\n type: ItemType.PERCENTILE_BAR;\n percentileType:\n | \"progress-bar\"\n | \"bubble\"\n | \"circular-progress-bar\"\n | \"circular-progress-bar-alt\";\n valueType: \"percent\" | \"value\";\n minValue: number | null;\n maxValue: number | null;\n color: string | null;\n labelColor: string | null;\n value: number | null;\n unit: string | null;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw type value.\n * @param type Raw value.\n */\nfunction extractPercentileType(\n type: unknown\n): PercentileProps[\"percentileType\"] {\n switch (type) {\n case \"progress-bar\":\n case \"bubble\":\n case \"circular-progress-bar\":\n case \"circular-progress-bar-alt\":\n return type;\n default:\n case ItemType.PERCENTILE_BAR:\n return \"progress-bar\";\n case ItemType.PERCENTILE_BUBBLE:\n return \"bubble\";\n case ItemType.CIRCULAR_PROGRESS_BAR:\n return \"circular-progress-bar\";\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n return \"circular-progress-bar-alt\";\n }\n}\n\n/**\n * Extract a valid enum value from a raw value type value.\n * @param type Raw value.\n */\nfunction extractValueType(valueType: unknown): PercentileProps[\"valueType\"] {\n switch (valueType) {\n case \"percent\":\n case \"value\":\n return valueType;\n default:\n return \"percent\";\n }\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the percentile props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function percentilePropsDecoder(\n data: AnyObject\n): PercentileProps | never {\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.PERCENTILE_BAR,\n percentileType: extractPercentileType(data.percentileType || data.type),\n valueType: extractValueType(data.valueType),\n minValue: parseIntOr(data.minValue, null),\n maxValue: parseIntOr(data.maxValue, null),\n color: notEmptyStringOr(data.color, null),\n labelColor: notEmptyStringOr(data.labelColor, null),\n value: parseFloatOr(data.value, null),\n unit: notEmptyStringOr(data.unit, null),\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\nexport default class Percentile extends Item {\n protected createDomElement(): HTMLElement {\n const colors = {\n background: \"#000000\",\n progress: this.props.color || \"#F0F0F0\",\n text: this.props.labelColor || \"#444444\"\n };\n // Progress.\n const progress = this.getProgress();\n // Main element.\n const element = document.createElement(\"div\");\n\n var formatValue;\n if (this.props.value != null) {\n if (Intl) {\n formatValue = Intl.NumberFormat(\"en-EN\").format(this.props.value);\n } else {\n formatValue = this.props.value;\n }\n }\n\n // SVG container.\n const svg = document.createElementNS(svgNS, \"svg\");\n\n switch (this.props.percentileType) {\n case \"progress-bar\":\n {\n const backgroundRect = document.createElementNS(svgNS, \"rect\");\n backgroundRect.setAttribute(\"fill\", colors.background);\n backgroundRect.setAttribute(\"fill-opacity\", \"0.5\");\n backgroundRect.setAttribute(\"width\", \"100%\");\n backgroundRect.setAttribute(\"height\", \"100%\");\n backgroundRect.setAttribute(\"rx\", \"5\");\n backgroundRect.setAttribute(\"ry\", \"5\");\n const progressRect = document.createElementNS(svgNS, \"rect\");\n progressRect.setAttribute(\"fill\", colors.progress);\n progressRect.setAttribute(\"fill-opacity\", \"1\");\n progressRect.setAttribute(\"width\", `${progress}%`);\n progressRect.setAttribute(\"height\", \"100%\");\n progressRect.setAttribute(\"rx\", \"5\");\n progressRect.setAttribute(\"ry\", \"5\");\n const text = document.createElementNS(svgNS, \"text\");\n text.setAttribute(\"text-anchor\", \"middle\");\n text.setAttribute(\"alignment-baseline\", \"middle\");\n text.setAttribute(\"font-size\", \"15\");\n text.setAttribute(\"font-family\", \"lato\");\n text.setAttribute(\"font-weight\", \"bold\");\n text.setAttribute(\n \"transform\",\n `translate(${this.props.width / 2}, 17.5)`\n );\n text.setAttribute(\"fill\", colors.text);\n\n if (this.props.valueType === \"value\") {\n text.style.fontSize = \"6pt\";\n\n text.textContent = this.props.unit\n ? `${formatValue} ${this.props.unit}`\n : `${formatValue}`;\n } else {\n text.textContent = `${progress}%`;\n }\n\n svg.setAttribute(\"width\", \"100%\");\n svg.setAttribute(\"height\", \"100%\");\n svg.append(backgroundRect, progressRect, text);\n }\n break;\n case \"bubble\":\n case \"circular-progress-bar\":\n case \"circular-progress-bar-alt\":\n {\n // Auto resize SVG using the view box magic: https://css-tricks.com/scale-svg/\n svg.setAttribute(\"viewBox\", \"0 0 100 100\");\n\n if (this.props.percentileType === \"bubble\") {\n // Create and append the circles.\n const backgroundCircle = document.createElementNS(svgNS, \"circle\");\n backgroundCircle.setAttribute(\"transform\", \"translate(50 50)\");\n backgroundCircle.setAttribute(\"fill\", colors.background);\n backgroundCircle.setAttribute(\"fill-opacity\", \"0.5\");\n backgroundCircle.setAttribute(\"r\", \"50\");\n const progressCircle = document.createElementNS(svgNS, \"circle\");\n progressCircle.setAttribute(\"transform\", \"translate(50 50)\");\n progressCircle.setAttribute(\"fill\", colors.progress);\n progressCircle.setAttribute(\"fill-opacity\", \"1\");\n progressCircle.setAttribute(\"r\", `${progress / 2}`);\n\n svg.append(backgroundCircle, progressCircle);\n } else {\n // Create and append the circles.\n const arcProps = {\n innerRadius:\n this.props.percentileType === \"circular-progress-bar\" ? 30 : 0,\n outerRadius: 50,\n startAngle: 0,\n endAngle: Math.PI * 2\n };\n const arc = arcFactory();\n\n const backgroundCircle = document.createElementNS(svgNS, \"path\");\n backgroundCircle.setAttribute(\"transform\", \"translate(50 50)\");\n backgroundCircle.setAttribute(\"fill\", colors.background);\n backgroundCircle.setAttribute(\"fill-opacity\", \"0.5\");\n backgroundCircle.setAttribute(\"d\", `${arc(arcProps)}`);\n const progressCircle = document.createElementNS(svgNS, \"path\");\n progressCircle.setAttribute(\"transform\", \"translate(50 50)\");\n progressCircle.setAttribute(\"fill\", colors.progress);\n progressCircle.setAttribute(\"fill-opacity\", \"1\");\n progressCircle.setAttribute(\n \"d\",\n `${arc({\n ...arcProps,\n endAngle: arcProps.endAngle * (progress / 100)\n })}`\n );\n\n svg.append(backgroundCircle, progressCircle);\n }\n\n // Create and append the text.\n const text = document.createElementNS(svgNS, \"text\");\n text.setAttribute(\"text-anchor\", \"middle\");\n text.setAttribute(\"alignment-baseline\", \"middle\");\n text.setAttribute(\"font-size\", \"16\");\n text.setAttribute(\"font-family\", \"lato\");\n text.setAttribute(\"font-weight\", \"bold\");\n text.setAttribute(\"fill\", colors.text);\n\n if (this.props.valueType === \"value\" && this.props.value != null) {\n // Show value and unit in 1 (no unit) or 2 lines.\n if (this.props.unit && this.props.unit.length > 0) {\n const value = document.createElementNS(svgNS, \"tspan\");\n value.setAttribute(\"x\", \"0\");\n value.setAttribute(\"dy\", \"1em\");\n value.textContent = `${formatValue}`;\n value.style.fontSize = \"8pt\";\n const unit = document.createElementNS(svgNS, \"tspan\");\n unit.setAttribute(\"x\", \"0\");\n unit.setAttribute(\"dy\", \"1em\");\n unit.textContent = `${this.props.unit}`;\n unit.style.fontSize = \"8pt\";\n text.append(value, unit);\n text.setAttribute(\"transform\", \"translate(50 33)\");\n } else {\n text.textContent = `${formatValue}`;\n text.style.fontSize = \"8pt\";\n text.setAttribute(\"transform\", \"translate(50 50)\");\n }\n } else {\n // Percentage.\n text.textContent = `${progress}%`;\n text.setAttribute(\"transform\", \"translate(50 50)\");\n }\n\n svg.append(text);\n }\n break;\n }\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n svg.setAttribute(\"opacity\", \"0.2\");\n }\n\n if (svg !== null) element.append(svg);\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n if (this.meta.isBeingResized === false) {\n this.resizeElement(this.props.width, this.props.height);\n }\n element.innerHTML = this.createDomElement().innerHTML;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected resizeElement(width: number, height: number): void {\n if (this.props.percentileType === \"progress-bar\") {\n super.resizeElement(width, 35);\n } else {\n super.resizeElement(width, width);\n }\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n public resize(width: number): void {\n this.resizeElement(width, width);\n let height = this.props.maxValue || 0;\n if (this.props.percentileType === \"progress-bar\") {\n height = 35;\n }\n super.setProps({\n ...this.props, // Object spread: http://es6-features.org/#SpreadOperator\n width,\n height\n });\n }\n\n private getProgress(): number {\n const minValue = this.props.minValue || 0;\n const maxValue = this.props.maxValue || 100;\n const value = this.props.value == null ? 0 : this.props.value;\n\n if (value <= minValue) return 0;\n else if (value >= maxValue) return 100;\n else return Math.trunc(((value - minValue) / (maxValue - minValue)) * 100);\n }\n}\n","import { AnyObject } from \"../lib/types\";\nimport {\n stringIsEmpty,\n notEmptyStringOr,\n decodeBase64,\n parseIntOr,\n t\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\nimport { FormContainer, InputGroup } from \"../Form\";\nimport fontAwesomeIcon from \"../lib/FontAwesomeIcon\";\nimport {\n faCircleNotch,\n faExclamationCircle\n} from \"@fortawesome/free-solid-svg-icons\";\n\nexport type ServiceProps = {\n type: ItemType.SERVICE;\n serviceId: number;\n imageSrc: string | null;\n statusImageSrc: string | null;\n encodedTitle: string | null;\n} & ItemProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the service props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function servicePropsDecoder(data: AnyObject): ServiceProps | never {\n if (data.imageSrc !== null) {\n if (\n typeof data.statusImageSrc !== \"string\" ||\n data.imageSrc.statusImageSrc === 0\n ) {\n throw new TypeError(\"invalid status image src.\");\n }\n } else {\n if (stringIsEmpty(data.encodedTitle)) {\n throw new TypeError(\"missing encode tittle content.\");\n }\n }\n\n if (parseIntOr(data.serviceId, null) === null) {\n throw new TypeError(\"invalid service id.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.SERVICE,\n serviceId: data.serviceId,\n imageSrc: notEmptyStringOr(data.imageSrc, null),\n statusImageSrc: notEmptyStringOr(data.statusImageSrc, null),\n encodedTitle: notEmptyStringOr(data.encodedTitle, null)\n };\n}\n\nexport default class Service extends Item {\n public createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"service\";\n\n if (this.props.statusImageSrc !== null) {\n element.style.background = `url(${this.props.statusImageSrc}) no-repeat`;\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n if (this.props.encodedTitle !== null) {\n element.className = \"service image forced_title\";\n element.setAttribute(\"data-use_title_for_force_title\", \"1\");\n element.setAttribute(\n \"data-title\",\n decodeBase64(this.props.encodedTitle)\n );\n }\n } else if (this.props.encodedTitle !== null) {\n element.innerHTML = decodeBase64(this.props.encodedTitle);\n }\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n if (this.props.statusImageSrc !== null) {\n element.style.background = `url(${this.props.statusImageSrc}) no-repeat`;\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n if (this.props.encodedTitle !== null) {\n element.className = \"service image forced_title\";\n element.setAttribute(\"data-use_title_for_force_title\", \"1\");\n element.setAttribute(\n \"data-title\",\n decodeBase64(this.props.encodedTitle)\n );\n }\n element.innerHTML = \"\";\n } else if (this.props.encodedTitle !== null) {\n element.innerHTML = decodeBase64(this.props.encodedTitle);\n }\n }\n}\n","import { AnyObject, WithModuleProps } from \"../lib/types\";\n\nimport { modulePropsDecoder, parseIntOr, stringIsEmpty, t } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type OdometerProps = {\n type: ItemType.ODOMETER;\n value: number;\n status: string;\n title: string | null;\n titleModule: string;\n titleColor: string;\n odometerType: string;\n thresholds: string | any;\n minMaxValue: string;\n} & ItemProps &\n WithModuleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the events history props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function odometerPropsDecoder(data: AnyObject): OdometerProps | never {\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.ODOMETER,\n value: parseIntOr(data.value, 0),\n status: stringIsEmpty(data.status) ? \"#B2B2B2\" : data.status,\n titleColor: stringIsEmpty(data.titleColor) ? \"#3f3f3f\" : data.titleColor,\n title: stringIsEmpty(data.title) ? \"\" : data.title,\n titleModule: stringIsEmpty(data.titleModule) ? \"\" : data.titleModule,\n thresholds: stringIsEmpty(data.thresholds) ? \"\" : data.thresholds,\n minMaxValue: stringIsEmpty(data.minMaxValue) ? \"\" : data.minMaxValue,\n odometerType: stringIsEmpty(data.odometerType)\n ? \"percent\"\n : data.odometerType,\n ...modulePropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class Odometer extends Item {\n protected createDomElement(): HTMLElement {\n let lineWarning = \"\";\n let lineWarning2 = \"\";\n let lineCritical = \"\";\n let lineCritical2 = \"\";\n\n if (this.props.thresholds !== \"\") {\n const thresholds = JSON.parse(this.props.thresholds);\n\n if (thresholds !== null) {\n if (thresholds.min_warning != 0 || thresholds.max_warning != 0) {\n lineWarning = this.getCoords(\n thresholds.min_warning,\n this.props.width / 2\n );\n if (thresholds.max_warning == 0) {\n lineWarning2 = this.getCoords(100, this.props.width / 2);\n } else {\n lineWarning2 = this.getCoords(\n thresholds.max_warning,\n this.props.width / 2\n );\n }\n }\n\n if (thresholds.min_critical != 0 || thresholds.max_critical != 0) {\n lineCritical = this.getCoords(\n thresholds.min_critical,\n this.props.width / 2\n );\n if (thresholds.max_critical == 0) {\n lineCritical2 = this.getCoords(100, this.props.width / 2);\n } else {\n lineCritical2 = this.getCoords(\n thresholds.max_critical,\n this.props.width / 2\n );\n }\n }\n }\n }\n\n let percent = \"\";\n let number;\n // Float\n if (\n Number(this.props.value) === this.props.value &&\n this.props.value % 1 !== 0\n ) {\n number = this.props.value.toFixed(1);\n } else {\n if (this.props.minMaxValue === \"\") {\n percent = \" %\";\n } else {\n percent = this.getSubfix(this.props.value);\n }\n number = new Intl.NumberFormat(\"es\", {\n maximumSignificantDigits: 4,\n maximumFractionDigits: 3\n }).format(this.props.value);\n }\n\n var numb = number.match(/\\d*\\.\\d/);\n if (numb !== null) {\n number = numb[0];\n }\n\n const rotate = this.getRotate(this.props.value);\n\n let backgroundColor = document.getElementById(\n \"visual-console-container\"\n ) as HTMLElement;\n\n if (backgroundColor === null) {\n backgroundColor = document.getElementById(\n `visual-console-container-${this.props.cellId}`\n ) as HTMLElement;\n }\n\n if (backgroundColor.style.backgroundColor == \"\") {\n backgroundColor.style.backgroundColor = \"#fff\";\n }\n\n const anchoB = this.props.width * 0.7;\n\n const element = document.createElement(\"div\");\n element.className = \"odometer\";\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Odometer container.\n const odometerContainer = document.createElement(\"div\");\n odometerContainer.className = \"odometer-container\";\n\n // Central semicircle.\n const odometerA = document.createElement(\"div\");\n odometerA.className = \"odometer-a\";\n odometerA.style.backgroundColor = `${backgroundColor.style.backgroundColor}`;\n\n // Semicircle rotating with the value.\n const odometerB = document.createElement(\"div\");\n odometerB.className = \"odometer-b\";\n odometerB.id = `odometerB-${this.props.id}`;\n odometerB.style.backgroundColor = `${this.props.status}`;\n\n // Dark semicircle.\n const odometerC = document.createElement(\"div\");\n odometerC.className = \"odometer-c\";\n\n // Green outer semicircle.\n const gaugeE = document.createElement(\"div\");\n gaugeE.className = \"odometer-d\";\n\n const SVG_NS = \"http://www.w3.org/2000/svg\";\n // Portion of threshold warning\n if (lineWarning != \"\") {\n const svgWarning = document.createElementNS(SVG_NS, \"svg\");\n svgWarning.setAttributeNS(null, \"width\", \"100%\");\n svgWarning.setAttributeNS(null, \"height\", \"100%\");\n svgWarning.setAttributeNS(null, \"style\", \"position:absolute;z-index:1\");\n const pathWarning = document.createElementNS(SVG_NS, \"path\");\n pathWarning.setAttributeNS(null, \"id\", `svgWarning-${this.props.id}`);\n pathWarning.setAttributeNS(\n null,\n \"d\",\n `M${this.props.width / 2},${this.props.width / 2}L${lineWarning}A${this\n .props.width / 2},${this.props.width / 2},0,0,1,${lineWarning2}Z`\n );\n pathWarning.setAttributeNS(null, \"class\", \"svg_warning\");\n svgWarning.appendChild(pathWarning);\n odometerContainer.appendChild(svgWarning);\n }\n\n // Portion of threshold critical\n if (lineCritical != \"\") {\n const svgCritical = document.createElementNS(SVG_NS, \"svg\");\n svgCritical.setAttributeNS(null, \"width\", \"100%\");\n svgCritical.setAttributeNS(null, \"height\", \"100%\");\n svgCritical.setAttributeNS(null, \"style\", \"position:absolute;z-index:2\");\n const pathCritical = document.createElementNS(SVG_NS, \"path\");\n pathCritical.setAttributeNS(null, \"id\", `svgCritical-${this.props.id}`);\n pathCritical.setAttributeNS(\n null,\n \"d\",\n `M${this.props.width / 2},${this.props.width / 2}L${lineCritical}A${this\n .props.width / 2},${this.props.width / 2},0,0,1,${lineCritical2}Z`\n );\n pathCritical.setAttributeNS(null, \"fill\", \"#E63C52\");\n svgCritical.appendChild(pathCritical);\n odometerContainer.appendChild(svgCritical);\n }\n\n // Text.\n const h1 = document.createElement(\"h1\");\n h1.innerText = number + percent;\n h1.style.fontSize = `${anchoB * 0.17}px`;\n h1.style.color = `${this.props.status}`;\n h1.style.lineHeight = \"0\";\n\n const h2 = document.createElement(\"h2\");\n if (this.props.title == \"\") {\n h2.textContent = this.truncateTitle(this.props.moduleName);\n } else {\n h2.textContent = this.truncateTitle(this.props.title);\n }\n h2.title = this.props.titleModule;\n h2.setAttribute(\"title\", this.props.titleModule);\n\n h2.style.fontSize = `${anchoB * 0.06}px`;\n h2.style.color = `${this.props.titleColor}`;\n h2.style.lineHeight = \"0\";\n\n let script = document.createElement(\"script\");\n script.type = \"text/javascript\";\n script.onload = () => {\n odometerB.style.transform = `rotate(${rotate}turn)`;\n };\n var url_pandora = window.location.pathname.split(\"/\")[1];\n script.src = `${document.dir}/${url_pandora}/include/javascript/pandora_alerts.js`;\n odometerA.appendChild(h1);\n odometerA.appendChild(h2);\n odometerContainer.appendChild(odometerB);\n odometerContainer.appendChild(odometerC);\n odometerContainer.appendChild(gaugeE);\n odometerContainer.appendChild(odometerA);\n odometerContainer.appendChild(script);\n element.appendChild(odometerContainer);\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.createDomElement().innerHTML;\n\n let rotate = this.getRotate(this.props.value);\n\n const svgWarning = document.getElementById(`svgWarning-${this.props.id}`);\n if (svgWarning != null) {\n svgWarning.style.display = \"none\";\n }\n\n const svgCritical = document.getElementById(`svgCritical-${this.props.id}`);\n if (svgCritical != null) {\n svgCritical.style.display = \"none\";\n }\n\n setTimeout(() => {\n if (svgWarning != null) {\n svgWarning.style.display = \"block\";\n }\n\n if (svgCritical != null) {\n svgCritical.style.display = \"block\";\n }\n\n var odometerB = document.getElementById(`odometerB-${this.props.id}`);\n if (odometerB) {\n odometerB.style.transform = `rotate(${rotate}turn)`;\n }\n }, 500);\n }\n\n protected resizeElement(width: number): void {\n super.resizeElement(width, width / 2);\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n public resize(width: number): void {\n this.resizeElement(this.props.width);\n }\n\n private getRotate(value: number): number {\n let rotate = 0;\n if (this.props.minMaxValue === \"\") {\n rotate = value / 2 / 100;\n } else {\n const minMax = JSON.parse(this.props.minMaxValue);\n if (minMax[\"min\"] === value) {\n rotate = 0;\n } else if (minMax[\"max\"] === value) {\n rotate = 0.5;\n } else {\n const limit = minMax[\"max\"] - minMax[\"min\"];\n const valueMax = minMax[\"max\"] - value;\n rotate = (100 - (valueMax * 100) / limit) / 100 / 2;\n }\n }\n\n return rotate;\n }\n\n private getSubfix(value: number): string {\n let subfix = \"\";\n const length = (value + \"\").length;\n if (length > 3 && length <= 6) {\n subfix = \" K\";\n } else if (length > 6 && length <= 9) {\n subfix = \" M\";\n } else if (length > 9 && length <= 12) {\n subfix = \" G\";\n } else if (length > 12 && length <= 15) {\n subfix = \" T\";\n }\n\n return subfix;\n }\n\n private getCoords(percent: number, radio: number): string {\n if (this.props.minMaxValue !== \"\") {\n const minMax = JSON.parse(this.props.minMaxValue);\n if (minMax[\"min\"] === percent) {\n percent = 0;\n } else if (minMax[\"max\"] === percent || percent === 100) {\n percent = 100;\n } else {\n const limit = minMax[\"max\"] - minMax[\"min\"];\n let valueMax = minMax[\"max\"] - percent;\n percent = 100 - (valueMax * 100) / limit;\n }\n }\n\n percent = 180 - percent * 1.8;\n const x = radio + Math.cos((percent * Math.PI) / 180) * radio;\n const y = radio - Math.sin((percent * Math.PI) / 180) * radio;\n return `${x},${y}`;\n }\n\n private truncateTitle(title: any): string {\n if (title != null && title.length > 22) {\n const halfLength = title.length / 2;\n const diff = halfLength - 9;\n const stringBefore = title.substr(0, halfLength - diff);\n const stringAfter = title.substr(halfLength + diff);\n\n return `${stringBefore}...${stringAfter}`;\n } else {\n return title;\n }\n }\n}\n","import { AnyObject, Size, Position, WithModuleProps } from \"./lib/types\";\nimport {\n parseBoolean,\n sizePropsDecoder,\n parseIntOr,\n notEmptyStringOr,\n itemMetaDecoder,\n t,\n ellipsize,\n debounce\n} from \"./lib\";\nimport Item, {\n ItemType,\n ItemProps,\n ItemClickEvent,\n ItemRemoveEvent,\n ItemMovedEvent,\n ItemResizedEvent,\n ItemSelectionChangedEvent\n} from \"./Item\";\nimport StaticGraph, { staticGraphPropsDecoder } from \"./items/StaticGraph\";\nimport Icon, { iconPropsDecoder } from \"./items/Icon\";\nimport ColorCloud, { colorCloudPropsDecoder } from \"./items/ColorCloud\";\nimport NetworkLink, { networkLinkPropsDecoder } from \"./items/NetworkLink\";\nimport Group, { groupPropsDecoder } from \"./items/Group\";\nimport Clock, { clockPropsDecoder } from \"./items/Clock\";\nimport Box, { boxPropsDecoder } from \"./items/Box\";\nimport Line, { linePropsDecoder, LineMovedEvent } from \"./items/Line\";\nimport Label, { labelPropsDecoder } from \"./items/Label\";\nimport SimpleValue, { simpleValuePropsDecoder } from \"./items/SimpleValue\";\nimport EventsHistory, {\n eventsHistoryPropsDecoder\n} from \"./items/EventsHistory\";\nimport Percentile, { percentilePropsDecoder } from \"./items/Percentile\";\nimport TypedEvent, { Disposable, Listener } from \"./lib/TypedEvent\";\nimport DonutGraph, { donutGraphPropsDecoder } from \"./items/DonutGraph\";\nimport BarsGraph, { barsGraphPropsDecoder } from \"./items/BarsGraph\";\nimport ModuleGraph, { moduleGraphPropsDecoder } from \"./items/ModuleGraph\";\nimport Service, { servicePropsDecoder } from \"./items/Service\";\nimport Odometer, { odometerPropsDecoder } from \"./items/Odometer\";\nimport BasicChart, { basicChartPropsDecoder } from \"./items/BasicChart\";\n\n// TODO: Document.\n// eslint-disable-next-line @typescript-eslint/explicit-function-return-type\nfunction itemInstanceFrom(data: AnyObject) {\n const type = parseIntOr(data.type, null);\n if (type == null) throw new TypeError(\"missing item type.\");\n\n const meta = itemMetaDecoder(data);\n\n switch (type as ItemType) {\n case ItemType.STATIC_GRAPH:\n return new StaticGraph(staticGraphPropsDecoder(data), meta);\n case ItemType.MODULE_GRAPH:\n return new ModuleGraph(moduleGraphPropsDecoder(data), meta);\n case ItemType.SIMPLE_VALUE:\n case ItemType.SIMPLE_VALUE_MAX:\n case ItemType.SIMPLE_VALUE_MIN:\n case ItemType.SIMPLE_VALUE_AVG:\n return new SimpleValue(simpleValuePropsDecoder(data), meta);\n case ItemType.PERCENTILE_BAR:\n case ItemType.PERCENTILE_BUBBLE:\n case ItemType.CIRCULAR_PROGRESS_BAR:\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n return new Percentile(percentilePropsDecoder(data), meta);\n case ItemType.LABEL:\n return new Label(labelPropsDecoder(data), meta);\n case ItemType.ICON:\n return new Icon(iconPropsDecoder(data), meta);\n case ItemType.SERVICE:\n return new Service(servicePropsDecoder(data), meta);\n case ItemType.GROUP_ITEM:\n return new Group(groupPropsDecoder(data), meta);\n case ItemType.BOX_ITEM:\n return new Box(boxPropsDecoder(data), meta);\n case ItemType.LINE_ITEM:\n return new Line(linePropsDecoder(data), meta);\n case ItemType.AUTO_SLA_GRAPH:\n return new EventsHistory(eventsHistoryPropsDecoder(data), meta);\n case ItemType.DONUT_GRAPH:\n return new DonutGraph(donutGraphPropsDecoder(data), meta);\n case ItemType.BARS_GRAPH:\n return new BarsGraph(barsGraphPropsDecoder(data), meta);\n case ItemType.CLOCK:\n return new Clock(clockPropsDecoder(data), meta);\n case ItemType.COLOR_CLOUD:\n return new ColorCloud(colorCloudPropsDecoder(data), meta);\n case ItemType.NETWORK_LINK:\n return new NetworkLink(networkLinkPropsDecoder(data), meta);\n case ItemType.ODOMETER:\n return new Odometer(odometerPropsDecoder(data), meta);\n case ItemType.BASIC_CHART:\n return new BasicChart(basicChartPropsDecoder(data), meta);\n default:\n throw new TypeError(\"item not found\");\n }\n}\n\n// TODO: Document.\n// eslint-disable-next-line @typescript-eslint/explicit-function-return-type\nfunction decodeProps(data: AnyObject) {\n const type = parseIntOr(data.type, null);\n if (type == null) throw new TypeError(\"missing item type.\");\n\n switch (type as ItemType) {\n case ItemType.STATIC_GRAPH:\n return staticGraphPropsDecoder(data);\n case ItemType.MODULE_GRAPH:\n return moduleGraphPropsDecoder(data);\n case ItemType.SIMPLE_VALUE:\n case ItemType.SIMPLE_VALUE_MAX:\n case ItemType.SIMPLE_VALUE_MIN:\n case ItemType.SIMPLE_VALUE_AVG:\n return simpleValuePropsDecoder(data);\n case ItemType.PERCENTILE_BAR:\n case ItemType.PERCENTILE_BUBBLE:\n case ItemType.CIRCULAR_PROGRESS_BAR:\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n return percentilePropsDecoder(data);\n case ItemType.LABEL:\n return labelPropsDecoder(data);\n case ItemType.ICON:\n return iconPropsDecoder(data);\n case ItemType.SERVICE:\n return servicePropsDecoder(data);\n case ItemType.GROUP_ITEM:\n return groupPropsDecoder(data);\n case ItemType.BOX_ITEM:\n return boxPropsDecoder(data);\n case ItemType.LINE_ITEM:\n return linePropsDecoder(data);\n case ItemType.AUTO_SLA_GRAPH:\n return eventsHistoryPropsDecoder(data);\n case ItemType.DONUT_GRAPH:\n return donutGraphPropsDecoder(data);\n case ItemType.BARS_GRAPH:\n return barsGraphPropsDecoder(data);\n case ItemType.CLOCK:\n return clockPropsDecoder(data);\n case ItemType.COLOR_CLOUD:\n return colorCloudPropsDecoder(data);\n case ItemType.NETWORK_LINK:\n return networkLinkPropsDecoder(data);\n case ItemType.ODOMETER:\n return odometerPropsDecoder(data);\n case ItemType.BASIC_CHART:\n return basicChartPropsDecoder(data);\n default:\n throw new TypeError(\"decoder not found\");\n }\n}\n\n// Base properties.\nexport interface VisualConsoleProps extends Size {\n readonly id: number;\n name: string;\n groupId: number;\n backgroundURL: string | null; // URL?\n backgroundColor: string | null;\n isFavorite: boolean;\n relationLineWidth: number;\n maintenanceMode: MaintenanceModeInterface | null;\n}\n\nexport interface MaintenanceModeInterface {\n user: string;\n timestamp: number;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the Visual Console props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function visualConsolePropsDecoder(\n data: AnyObject\n): VisualConsoleProps | never {\n // Object destructuring: http://es6-features.org/#ObjectMatchingShorthandNotation\n const {\n id,\n name,\n groupId,\n backgroundURL,\n backgroundColor,\n isFavorite,\n relationLineWidth,\n maintenanceMode\n } = data;\n\n if (id == null || isNaN(parseInt(id))) {\n throw new TypeError(\"invalid Id.\");\n }\n if (typeof name !== \"string\" || name.length === 0) {\n throw new TypeError(\"invalid name.\");\n }\n if (groupId == null || isNaN(parseInt(groupId))) {\n throw new TypeError(\"invalid group Id.\");\n }\n\n return {\n id: parseInt(id),\n name,\n groupId: parseInt(groupId),\n backgroundURL: notEmptyStringOr(backgroundURL, null),\n backgroundColor: notEmptyStringOr(backgroundColor, null),\n isFavorite: parseBoolean(isFavorite),\n relationLineWidth: parseIntOr(relationLineWidth, 0),\n maintenanceMode: maintenanceMode,\n ...sizePropsDecoder(data)\n };\n}\n\nexport default class VisualConsole {\n // Reference to the DOM element which will contain the items.\n private readonly containerRef: HTMLElement;\n // Properties.\n private _props: VisualConsoleProps;\n // Visual Console Item instances by their Id.\n private elementsById: {\n [key: number]: Item;\n } = {};\n // Visual Console Item Ids.\n private elementIds: ItemProps[\"id\"][] = [];\n // Dictionary which store the created lines.\n private relations: {\n [key: string]: Line;\n } = {};\n\n // Dictionary which store the related items (by ID).\n private lineLinks: {\n [key: number]: { [key: number]: { [key: string]: number } };\n } = {};\n\n private lines: {\n [key: number]: { [key: string]: number };\n } = {};\n\n // Event manager for click events.\n private readonly clickEventManager = new TypedEvent();\n // Event manager for double click events.\n private readonly dblClickEventManager = new TypedEvent();\n // Event manager for move events.\n private readonly movedEventManager = new TypedEvent();\n // Event manager for line move events.\n private readonly lineMovedEventManager = new TypedEvent();\n // Event manager for resize events.\n private readonly resizedEventManager = new TypedEvent();\n // Event manager for remove events.\n private readonly selectionChangedEventManager = new TypedEvent<\n ItemSelectionChangedEvent\n >();\n // List of references to clean the event listeners.\n private readonly disposables: Disposable[] = [];\n\n /**\n * React to a click on an element.\n * @param e Event object.\n */\n private handleElementClick: (e: ItemClickEvent) => void = e => {\n this.clickEventManager.emit(e);\n // console.log(`Clicked element #${e.data.id}`, e);\n };\n\n /**\n * React to a double click on an element.\n * @param e Event object.\n */\n private handleElementDblClick: (e: ItemClickEvent) => void = e => {\n this.dblClickEventManager.emit(e);\n // console.log(`Double clicked element #${e.data.id}`, e);\n };\n\n /**\n * React to a movement on an element.\n * @param e Event object.\n */\n private handleElementMovement: (e: ItemMovedEvent) => void = e => {\n // Move their relation lines.\n const itemId = e.item.props.id;\n const relations = this.getItemRelations(itemId);\n\n relations.forEach(relation => {\n if (relation.parentId === itemId) {\n // Move the line start.\n relation.line.props = {\n ...relation.line.props,\n startPosition: this.getVisualCenter(e.newPosition, e.item)\n };\n } else if (relation.childId === itemId) {\n // Move the line end.\n relation.line.props = {\n ...relation.line.props,\n endPosition: this.getVisualCenter(e.newPosition, e.item)\n };\n }\n });\n\n // Move lines conneted with this item.\n this.updateLinesConnected(e.item.props, e.newPosition, false);\n\n // console.log(`Moved element #${e.item.props.id}`, e);\n };\n\n /**\n * React to a movement finished on an element.\n * @param e Event object.\n */\n private handleElementMovementFinished: (e: ItemMovedEvent) => void = e => {\n this.movedEventManager.emit(e);\n // Move lines conneted with this item.\n this.updateLinesConnected(e.item.props, e.newPosition, true);\n // console.log(`Movement finished for element #${e.item.props.id}`, e);\n };\n\n /**\n * Verifies if x,y are inside item coordinates.\n * @param x Coordinate X\n * @param y Coordinate Y\n * @param item ItemProps instance.\n */\n private coordinatesInItem(x: number, y: number, props: ItemProps) {\n if (\n props.type == ItemType.LINE_ITEM ||\n props.type == ItemType.NETWORK_LINK\n ) {\n return false;\n }\n\n if (\n x > props.x &&\n x < props.x + props.width &&\n y > props.y &&\n y < props.y + props.height\n ) {\n return true;\n }\n return false;\n }\n\n /**\n * React to a line movement.\n * @param e Event object.\n */\n private handleLineElementMovementFinished: (\n e: LineMovedEvent\n ) => void = e => {\n // Update links.\n this.refreshLink(e.item);\n\n // Build line relationships between items and lines.\n this.lineMovedEventManager.emit(e);\n\n // console.log(`Movement finished for element #${e.item.props.id}`, e);\n };\n\n /**\n * React to a resizement on an element.\n * @param e Event object.\n */\n private handleElementResizement: (e: ItemResizedEvent) => void = e => {\n // Move their relation lines.\n const item = e.item;\n const props = item.props;\n const itemId = props.id;\n const relations = this.getItemRelations(itemId);\n\n const position = {\n x: props.x,\n y: props.y\n };\n\n const meta = this.elementsById[itemId].meta;\n\n this.elementsById[itemId].meta = {\n ...meta,\n isUpdating: true\n };\n\n relations.forEach(relation => {\n if (relation.parentId === itemId) {\n // Move the line start.\n relation.line.props = {\n ...relation.line.props,\n startPosition: this.getVisualCenter(position, item)\n };\n } else if (relation.childId === itemId) {\n // Move the line end.\n relation.line.props = {\n ...relation.line.props,\n endPosition: this.getVisualCenter(position, item)\n };\n }\n });\n\n // console.log(`Resized element #${e.item.props.id}`, e);\n };\n\n /**\n * React to a finished resizement on an element.\n * @param e Event object.\n */\n private handleElementResizementFinished: (\n e: ItemResizedEvent\n ) => void = e => {\n this.resizedEventManager.emit(e);\n // console.log(`Resize fonished for element #${e.item.props.id}`, e);\n };\n\n /**\n * Clear some element references.\n * @param e Event object.\n */\n private handleElementRemove: (e: ItemRemoveEvent) => void = e => {\n // Remove the element from the list and its relations.\n this.elementIds = this.elementIds.filter(id => id !== e.item.props.id);\n delete this.elementsById[e.item.props.id];\n this.clearRelations(e.item.props.id);\n };\n\n /**\n * React to element selection change\n * @param e Event object.\n */\n private handleElementSelectionChanged: (\n e: ItemSelectionChangedEvent\n ) => void = e => {\n if (this.elements.filter(item => item.meta.isSelected == true).length > 0) {\n e.selected = true;\n } else {\n e.selected = false;\n }\n this.selectionChangedEventManager.emit(e);\n };\n\n // TODO: Document\n private handleContainerClick: (e: MouseEvent) => void = () => {\n this.unSelectItems();\n };\n\n /**\n * Refresh link for given line.\n *\n * @param line Line.\n */\n protected refreshLink(l: Line) {\n let line: number = l.props.id;\n let itemAtStart = 0;\n let itemAtEnd = 0;\n\n try {\n for (let i in this.elementsById) {\n if (\n this.coordinatesInItem(\n l.props.startPosition.x,\n l.props.startPosition.y,\n this.elementsById[i].props\n )\n ) {\n // Start position at element i.\n itemAtStart = parseInt(i);\n }\n\n if (\n this.coordinatesInItem(\n l.props.endPosition.x,\n l.props.endPosition.y,\n this.elementsById[i].props\n )\n ) {\n // Start position at element i.\n itemAtEnd = parseInt(i);\n }\n }\n\n if (this.lineLinks == null) {\n this.lineLinks = {};\n }\n\n if (this.lines == null) {\n this.lines = {};\n }\n\n if (itemAtStart == line) {\n itemAtStart = 0;\n }\n\n if (itemAtEnd == line) {\n itemAtEnd = 0;\n }\n\n // Initialize line if not registered.\n if (this.lines[line] == null) {\n this.lines[line] = {\n start: itemAtStart,\n end: itemAtEnd\n };\n }\n\n // Register 'start' side of the line.\n if (itemAtStart > 0) {\n // Initialize.\n if (this.lineLinks[itemAtStart] == null) {\n this.lineLinks[itemAtStart] = {};\n }\n\n // Assign.\n this.lineLinks[itemAtStart][line] = {\n start: itemAtStart,\n end: itemAtEnd\n };\n\n // Register line if not exists prviously.\n } else {\n // Clean previous line relationship.\n if (this.lines[line][\"start\"] > 0) {\n this.lineLinks[this.lines[line][\"start\"]][line][\"start\"] = 0;\n this.lines[line][\"start\"] = 0;\n }\n }\n\n if (itemAtEnd > 0) {\n if (this.lineLinks[itemAtEnd] == null) {\n this.lineLinks[itemAtEnd] = {};\n }\n\n this.lineLinks[itemAtEnd][line] = {\n start: itemAtStart,\n end: itemAtEnd\n };\n } else {\n // Clean previous line relationship.\n if (this.lines[line][\"end\"] > 0) {\n this.lineLinks[this.lines[line][\"end\"]][line][\"end\"] = 0;\n this.lines[line][\"end\"] = 0;\n }\n }\n\n this.lines[line] = {\n start: itemAtStart,\n end: itemAtEnd\n };\n\n // Cleanup.\n for (let i in this.lineLinks) {\n if (this.lineLinks[i][line]) {\n if (\n this.lineLinks[i][line].start == 0 &&\n this.lineLinks[i][line].end == 0\n ) {\n // Object not connected to a line.\n delete this.lineLinks[i][line];\n\n if (Object.keys(this.lineLinks[i]).length === 0) {\n delete this.lineLinks[i];\n }\n }\n\n if (\n (this.lineLinks[i][line].start != itemAtStart &&\n this.lineLinks[i][line].end == itemAtEnd) ||\n (this.lineLinks[i][line].start == itemAtStart &&\n this.lineLinks[i][line].end != itemAtEnd)\n ) {\n // Object not connected to a line.\n delete this.lineLinks[i][line];\n\n if (Object.keys(this.lineLinks[i]).length === 0) {\n delete this.lineLinks[i];\n }\n }\n }\n }\n } catch (error) {\n console.error(error);\n }\n }\n\n /**\n * Updates lines connected to this item.\n *\n * @param item Item moved.\n * @param newPosition New location for item.\n * @param oldPosition Old location for item.\n * @param save Save to ajax or not.\n */\n protected updateLinesConnected(item: ItemProps, to: Position, save: boolean) {\n if (this.lineLinks[item.id] == null) {\n return;\n }\n\n Object.keys(this.lineLinks[item.id]).forEach(i => {\n let lineId = parseInt(i);\n const found = this.elementIds.indexOf(lineId);\n if (found === -1) {\n return;\n }\n let line = this.elementsById[lineId] as Line;\n if (line.props) {\n let startX = line.props.startPosition.x;\n let startY = line.props.startPosition.y;\n let endX = line.props.endPosition.x;\n let endY = line.props.endPosition.y;\n\n if (item.id == this.lineLinks[item.id][lineId][\"start\"]) {\n startX = to.x + item.width / 2;\n startY = to.y + item.height / 2;\n }\n\n if (item.id == this.lineLinks[item.id][lineId][\"end\"]) {\n endX = to.x + item.width / 2;\n endY = to.y + item.height / 2;\n }\n\n // Update line movement.\n this.updateElement({\n ...line.props,\n startX: startX,\n startY: startY,\n endX: endX,\n endY: endY\n });\n\n if (save) {\n let debouncedLinePositionSave = debounce(\n 500,\n (options: AnyObject) => {\n this.lineMovedEventManager.emit({\n item: options.line,\n startPosition: {\n x: options.startX,\n y: options.startY\n },\n endPosition: {\n x: options.endX,\n y: options.endY\n }\n });\n }\n );\n\n // Save line positon.\n debouncedLinePositionSave({\n line: line,\n startX: startX,\n startY: startY,\n endX: endX,\n endY: endY\n });\n }\n }\n });\n\n // Update parents...\n this.buildRelations(item.id, to.x + item.width / 2, to.y + item.height / 2);\n }\n\n public constructor(\n container: HTMLElement,\n props: AnyObject,\n items: AnyObject[]\n ) {\n this.containerRef = container;\n this._props = visualConsolePropsDecoder(props);\n\n // Force the first render.\n this.render();\n\n // Sort by id ASC\n items = items.sort(function(a, b) {\n if (a.id == null || b.id == null) return 0;\n else if (a.id > b.id) return 1;\n else return -1;\n });\n\n // Initialize the items.\n items.forEach(item => this.addElement(item, this));\n\n // Create lines.\n this.buildRelations();\n\n // Re-attach all connected lines if any.\n this.elements.forEach(item => {\n if (item instanceof Line) {\n this.refreshLink(item);\n }\n });\n\n this.containerRef.addEventListener(\"click\", this.handleContainerClick);\n }\n\n /**\n * Public accessor of the `elements` property.\n * @return Properties.\n */\n public get elements(): Item[] {\n // Ensure the type cause Typescript doesn't know the filter removes null items.\n return this.elementIds\n .map(id => this.elementsById[id])\n .filter(_ => _ != null) as Item[];\n }\n\n /**\n * To create a new element add it to the DOM.\n * @param item. Raw representation of the item's data.\n */\n public addElement(item: AnyObject, context: this = this) {\n try {\n const itemInstance = itemInstanceFrom(item);\n // Add the item to the list.\n context.elementsById[itemInstance.props.id] = itemInstance;\n context.elementIds.push(itemInstance.props.id);\n // Item event handlers.\n itemInstance.onRemove(context.handleElementRemove);\n itemInstance.onSelectionChanged(context.handleElementSelectionChanged);\n itemInstance.onClick(context.handleElementClick);\n itemInstance.onDblClick(context.handleElementDblClick);\n\n // TODO:Continue\n if (itemInstance instanceof Line) {\n itemInstance.onLineMovementFinished(\n context.handleLineElementMovementFinished\n );\n this.refreshLink(itemInstance);\n } else {\n itemInstance.onMoved(context.handleElementMovement);\n itemInstance.onMovementFinished(context.handleElementMovementFinished);\n itemInstance.onResized(context.handleElementResizement);\n itemInstance.onResizeFinished(context.handleElementResizementFinished);\n }\n\n // Add the item to the DOM.\n context.containerRef.append(itemInstance.elementRef);\n return itemInstance;\n } catch (error) {\n console.error(\"Error creating a new element:\", (error as Error).message);\n }\n return;\n }\n\n /**\n * Public setter of the `elements` property.\n * @param items.\n */\n public updateElements(items: AnyObject[]): void {\n // Ensure the type cause Typescript doesn't know the filter removes null items.\n const itemIds = items\n .map(item => item.id || null)\n .filter(id => id != null) as number[];\n // Get the elements we should delete.\n const deletedIds = this.elementIds.filter(id => itemIds.indexOf(id) < 0);\n // Delete the elements.\n deletedIds.forEach(id => {\n if (this.elementsById[id] != null) {\n this.elementsById[id].remove();\n delete this.elementsById[id];\n }\n });\n // Replace the element ids.\n this.elementIds = itemIds;\n\n // Initialize the items.\n items.forEach(item => {\n if (item.id) {\n if (this.elementsById[item.id] == null) {\n // New item.\n this.addElement(item);\n } else {\n // Update item.\n try {\n this.elementsById[item.id].props = decodeProps(item);\n } catch (error) {\n console.error(\n \"Error updating an element:\",\n (error as Error).message\n );\n }\n }\n }\n });\n\n // Re-build relations.\n this.buildRelations();\n }\n\n /**\n * Public setter of the `element` property.\n * @param item.\n */\n public updateElement(item: AnyObject): void {\n // Update item.\n try {\n this.elementsById[item.id].props = {\n ...decodeProps(item)\n };\n } catch (error) {\n console.error(\"Error updating element:\", (error as Error).message);\n }\n\n // Re-build relations.\n this.buildRelations();\n }\n\n /**\n * Public accessor of the `props` property.\n * @return Properties.\n */\n public get props(): VisualConsoleProps {\n return { ...this._props }; // Return a copy.\n }\n\n /**\n * Public setter of the `props` property.\n * If the new props are different enough than the\n * stored props, a render would be fired.\n * @param newProps\n */\n public set props(newProps: VisualConsoleProps) {\n const prevProps = this.props;\n // Update the internal props.\n this._props = newProps;\n\n // From this point, things which rely on this.props can access to the changes.\n\n // Re-render.\n this.render(prevProps);\n }\n\n /**\n * Recreate or update the HTMLElement which represents the Visual Console into the DOM.\n * @param prevProps If exists it will be used to only DOM updates instead of a full replace.\n */\n public render(prevProps: VisualConsoleProps | null = null): void {\n if (prevProps) {\n if (prevProps.backgroundURL !== this.props.backgroundURL) {\n this.containerRef.style.backgroundImage =\n this.props.backgroundURL !== null\n ? `url(${this.props.backgroundURL})`\n : \"\";\n }\n if (this.props.backgroundColor != null)\n if (prevProps.backgroundColor !== this.props.backgroundColor) {\n this.containerRef.style.backgroundColor = this.props.backgroundColor;\n }\n if (this.sizeChanged(prevProps, this.props)) {\n this.resizeElement(this.props.width, this.props.height);\n }\n } else {\n if (this.props.backgroundURL)\n this.containerRef.style.backgroundImage =\n this.props.backgroundURL !== null\n ? `url(${this.props.backgroundURL})`\n : \"\";\n\n if (this.props.backgroundColor)\n this.containerRef.style.backgroundColor = this.props.backgroundColor;\n this.resizeElement(this.props.width, this.props.height);\n }\n }\n\n /**\n * Compare the previous and the new size and return\n * a boolean value in case the size changed.\n * @param prevSize\n * @param newSize\n * @return Whether the size changed or not.\n */\n public sizeChanged(prevSize: Size, newSize: Size): boolean {\n return (\n prevSize.width !== newSize.width || prevSize.height !== newSize.height\n );\n }\n\n /**\n * Resize the DOM container.\n * @param width\n * @param height\n */\n public resizeElement(width: number, height: number): void {\n this.containerRef.style.width = `${width}px`;\n this.containerRef.style.height = `${height}px`;\n }\n\n /**\n * Update the size into the properties and resize the DOM container.\n * @param width\n * @param height\n */\n public resize(width: number, height: number): void {\n this.props = {\n ...this.props, // Object spread: http://es6-features.org/#SpreadOperator\n width,\n height\n };\n }\n\n /**\n * To remove the event listeners and the elements from the DOM.\n */\n public remove(): void {\n this.disposables.forEach(d => d.dispose()); // Arrow function.\n this.elements.forEach(e => e.remove()); // Arrow function.\n this.elementsById = {};\n this.elementIds = [];\n // Clear relations.\n this.clearRelations();\n // Remove the click event listener.\n this.containerRef.removeEventListener(\"click\", this.handleContainerClick);\n // Clean container.\n this.containerRef.innerHTML = \"\";\n }\n\n /**\n * Create line elements which connect the elements with their parents.\n *\n * When itemId is being moved, overwrite position of the 'parent' or 'child'\n * endpoints of the line, using X and Y values.\n */\n public buildRelations(itemId?: number, x?: number, y?: number): void {\n // Clear relations.\n this.clearRelations();\n // Add relations.\n this.elements.forEach(item => {\n if (item.props.parentId !== null) {\n const parent = this.elementsById[item.props.parentId];\n const child = this.elementsById[item.props.id];\n\n if (parent && child) {\n if (itemId != undefined) {\n if (item.props.parentId == itemId) {\n // Update parent line position.\n this.addRelationLine(parent, child, x, y);\n } else if (item.props.id == itemId) {\n // Update child line position.\n this.addRelationLine(parent, child, undefined, undefined, x, y);\n } else {\n this.addRelationLine(parent, child);\n }\n } else {\n // No movements default behaviour.\n this.addRelationLine(parent, child);\n }\n }\n }\n });\n }\n\n /**\n * @param itemId Optional identifier of a parent or child item.\n * Remove the line elements which connect the elements with their parents.\n */\n private clearRelations(itemId?: number): void {\n if (itemId != null) {\n for (let key in this.relations) {\n const ids = key.split(\"|\");\n const parentId = Number.parseInt(ids[0]);\n const childId = Number.parseInt(ids[1]);\n\n if (itemId === parentId || itemId === childId) {\n this.relations[key].remove();\n delete this.relations[key];\n }\n }\n } else {\n for (let key in this.relations) {\n this.relations[key].remove();\n delete this.relations[key];\n }\n }\n }\n\n /**\n * Retrieve the line element which represent the relation between items.\n * @param parentId Identifier of the parent item.\n * @param childId Itentifier of the child item.\n * @return The line element or nothing.\n */\n private getRelationLine(parentId: number, childId: number): Line | null {\n const identifier = `${parentId}|${childId}`;\n return this.relations[identifier] || null;\n }\n\n // TODO: Document.\n private getItemRelations(\n itemId: number\n ): {\n parentId: number;\n childId: number;\n line: Line;\n }[] {\n const itemRelations = [];\n\n for (let key in this.relations) {\n const ids = key.split(\"|\");\n const parentId = Number.parseInt(ids[0]);\n const childId = Number.parseInt(ids[1]);\n\n if (itemId === parentId || itemId === childId) {\n itemRelations.push({\n parentId,\n childId,\n line: this.relations[key]\n });\n }\n }\n\n return itemRelations;\n }\n\n /**\n * Retrieve the visual center of the item. It's ussually the center of the\n * content, like the label doesn't exist.\n * @param position Initial position.\n * @param element Element we want to use.\n */\n private getVisualCenter(\n position: Position,\n element: Item\n ): Position {\n let x = position.x + element.elementRef.clientWidth / 2;\n let y = position.y + element.elementRef.clientHeight / 2;\n if (\n typeof element.props.label !== \"undefined\" ||\n element.props.label !== \"\" ||\n element.props.label !== null\n ) {\n switch (element.props.labelPosition) {\n case \"up\":\n y =\n position.y +\n (element.elementRef.clientHeight +\n element.labelElementRef.clientHeight) /\n 2;\n break;\n case \"down\":\n y =\n position.y +\n (element.elementRef.clientHeight -\n element.labelElementRef.clientHeight) /\n 2;\n break;\n case \"right\":\n x =\n position.x +\n (element.elementRef.clientWidth -\n element.labelElementRef.clientWidth) /\n 2;\n break;\n case \"left\":\n x =\n position.x +\n (element.elementRef.clientWidth +\n element.labelElementRef.clientWidth) /\n 2;\n break;\n }\n }\n return { x, y };\n }\n\n /**\n * Add a new line item to represent a relation between the items.\n * @param parent Parent item.\n * @param child Child item.\n * @return Whether the line was added or not.\n */\n private addRelationLine(\n parent: Item,\n child: Item,\n parentX?: number,\n parentY?: number,\n childX?: number,\n childY?: number\n ): Line {\n const identifier = `${parent.props.id}|${child.props.id}`;\n if (this.relations[identifier] != null) {\n this.relations[identifier].remove();\n }\n\n // Get the items center.\n let { x: startX, y: startY } = this.getVisualCenter(parent.props, parent);\n let { x: endX, y: endY } = this.getVisualCenter(child.props, child);\n\n // Overwrite positions if needed (while moving it!).\n if (parentX != null) {\n startX = parentX;\n }\n\n if (parentY != null) {\n startY = parentY;\n }\n\n if (childX != null) {\n endX = childX;\n }\n\n if (childY != null) {\n endY = childY;\n }\n\n // Line inherits child element status.\n const line = new Line(\n linePropsDecoder({\n id: 0,\n type: ItemType.LINE_ITEM,\n startX,\n startY,\n endX,\n endY,\n width: 0,\n height: 0,\n lineWidth: this.props.relationLineWidth,\n color: notEmptyStringOr(child.props.colorStatus, \"#CCC\")\n }),\n itemMetaDecoder({\n receivedAt: new Date()\n })\n );\n // Save a reference to the line item.\n this.relations[identifier] = line;\n\n // Add the line to the DOM.\n line.elementRef.style.zIndex = \"0\";\n this.containerRef.append(line.elementRef);\n\n return line;\n }\n\n /**\n * Add an event handler to the click of the linked visual console elements.\n * @param listener Function which is going to be executed when a linked console is clicked.\n */\n public onItemClick(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.clickEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the double click of the linked visual console elements.\n * @param listener Function which is going to be executed when a linked console is double clicked.\n */\n public onItemDblClick(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.dblClickEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the movement of the visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onItemMoved(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.movedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the movement of the visual console line elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onLineMoved(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.lineMovedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the resizement of the visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onItemResized(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.resizedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the elements selection change of the visual console .\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onItemSelectionChanged(\n listener: Listener\n ): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.selectionChangedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Enable the edition mode.\n */\n public enableEditMode(): void {\n this.elements.forEach(item => {\n item.meta = { ...item.meta, editMode: true };\n });\n this.containerRef.classList.add(\"is-editing\");\n }\n\n /**\n * Disable the edition mode.\n */\n public disableEditMode(): void {\n this.elements.forEach(item => {\n item.meta = { ...item.meta, editMode: false };\n });\n this.containerRef.classList.remove(\"is-editing\");\n }\n\n /**\n * Enable the maintenance mode.\n */\n public enableMaintenanceMode(): void {\n this.elements.forEach(item => {\n item.meta = { ...item.meta, maintenanceMode: true };\n });\n this.containerRef.classList.add(\"is-maintenance\");\n this.containerRef.classList.remove(\"is-editing\");\n }\n\n /**\n * Disable the maintenance mode.\n */\n public disableMaintenanceMode(): void {\n this.elements.forEach(item => {\n item.meta = { ...item.meta, maintenanceMode: false };\n });\n this.containerRef.classList.remove(\"is-maintenance\");\n this.containerRef.classList.add(\"is-editing\");\n }\n\n /**\n * Select an item.\n * @param itemId Item Id.\n * @param unique To remove the selection of other items or not.\n */\n public selectItem(itemId: number, unique: boolean = false): void {\n if (unique) {\n this.elementIds.forEach(currentItemId => {\n const meta = this.elementsById[currentItemId].meta;\n\n if (currentItemId !== itemId && meta.isSelected) {\n this.elementsById[currentItemId].unSelectItem();\n } else if (currentItemId === itemId && !meta.isSelected) {\n this.elementsById[currentItemId].selectItem();\n }\n });\n } else if (this.elementsById[itemId]) {\n this.elementsById[itemId].selectItem();\n }\n }\n\n /**\n * Unselect an item.\n * @param itemId Item Id.\n */\n public unSelectItem(itemId: number): void {\n if (this.elementsById[itemId]) {\n const meta = this.elementsById[itemId].meta;\n\n if (meta.isSelected) {\n this.elementsById[itemId].unSelectItem();\n }\n }\n }\n\n /**\n * Unselect all items.\n */\n public unSelectItems(): void {\n this.elementIds.forEach(itemId => {\n if (this.elementsById[itemId]) {\n this.elementsById[itemId].unSelectItem();\n }\n });\n }\n\n // TODO: Document.\n public static items = {\n [ItemType.STATIC_GRAPH]: StaticGraph,\n [ItemType.MODULE_GRAPH]: ModuleGraph,\n [ItemType.SIMPLE_VALUE]: SimpleValue,\n [ItemType.SIMPLE_VALUE_MAX]: SimpleValue,\n [ItemType.SIMPLE_VALUE_MIN]: SimpleValue,\n [ItemType.SIMPLE_VALUE_AVG]: SimpleValue,\n [ItemType.PERCENTILE_BAR]: Percentile,\n [ItemType.PERCENTILE_BUBBLE]: Percentile,\n [ItemType.CIRCULAR_PROGRESS_BAR]: Percentile,\n [ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR]: Percentile,\n [ItemType.LABEL]: Label,\n [ItemType.ICON]: Icon,\n [ItemType.SERVICE]: Service,\n [ItemType.GROUP_ITEM]: Group,\n [ItemType.BOX_ITEM]: Box,\n [ItemType.LINE_ITEM]: Line,\n [ItemType.AUTO_SLA_GRAPH]: EventsHistory,\n [ItemType.DONUT_GRAPH]: DonutGraph,\n [ItemType.BARS_GRAPH]: BarsGraph,\n [ItemType.CLOCK]: Clock,\n [ItemType.COLOR_CLOUD]: ColorCloud,\n [ItemType.NETWORK_LINK]: NetworkLink,\n [ItemType.ODOMETER]: Odometer,\n [ItemType.BASIC_CHART]: BasicChart\n };\n\n /**\n * Relying type item and srcimg and agent and module\n * name convert name item representative.\n *\n * @param item Instance item from extract name.\n *\n * @return Name item.\n */\n public static itemDescriptiveName(item: Item): string {\n let text: string;\n switch (item.props.type) {\n case ItemType.STATIC_GRAPH:\n text = `${t(\"Static graph\")} - ${(item as StaticGraph).props.imageSrc}`;\n break;\n case ItemType.MODULE_GRAPH:\n text = t(\"Module graph\");\n break;\n case ItemType.CLOCK:\n text = t(\"Clock\");\n break;\n case ItemType.BARS_GRAPH:\n text = t(\"Bars graph\");\n break;\n case ItemType.AUTO_SLA_GRAPH:\n text = t(\"Event history graph\");\n break;\n case ItemType.PERCENTILE_BAR:\n text = t(\"Percentile bar\");\n break;\n case ItemType.CIRCULAR_PROGRESS_BAR:\n text = t(\"Circular progress bar\");\n break;\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n text = t(\"Circular progress bar (interior)\");\n break;\n case ItemType.SIMPLE_VALUE:\n text = t(\"Simple Value\");\n break;\n case ItemType.LABEL:\n text = t(\"Label\");\n break;\n case ItemType.GROUP_ITEM:\n text = t(\"Group\");\n break;\n case ItemType.COLOR_CLOUD:\n text = t(\"Color cloud\");\n break;\n case ItemType.ICON:\n text = `${t(\"Icon\")} - ${(item as Icon).props.imageSrc}`;\n break;\n case ItemType.ODOMETER:\n text = t(\"Odometer\");\n break;\n case ItemType.BASIC_CHART:\n text = t(\"BasicChart\");\n break;\n default:\n text = t(\"Item\");\n break;\n }\n\n const linkedAgentAndModuleProps = item.props as Partial;\n if (\n linkedAgentAndModuleProps.agentAlias != null &&\n linkedAgentAndModuleProps.moduleName != null\n ) {\n text += ` (${ellipsize(\n linkedAgentAndModuleProps.agentAlias,\n 18\n )} - ${ellipsize(linkedAgentAndModuleProps.moduleName, 25)})`;\n } else if (linkedAgentAndModuleProps.agentAlias != null) {\n text += ` (${ellipsize(linkedAgentAndModuleProps.agentAlias, 25)})`;\n }\n\n return text;\n }\n}\n","import TypedEvent, { Disposable, Listener } from \"./TypedEvent\";\n\ninterface Cancellable {\n cancel(): void;\n}\n\ntype AsyncTaskStatus = \"waiting\" | \"started\" | \"cancelled\" | \"finished\";\ntype AsyncTaskInitiator = (done: () => void) => Cancellable;\n\n/**\n * Defines an async task which can be started and cancelled.\n * It's possible to observe the status changes of the task.\n */\nclass AsyncTask {\n private readonly taskInitiator: AsyncTaskInitiator;\n private cancellable: Cancellable = { cancel: () => {} };\n private _status: AsyncTaskStatus = \"waiting\";\n\n // Event manager for status change events.\n private readonly statusChangeEventManager = new TypedEvent();\n // List of references to clean the event listeners.\n private readonly disposables: Disposable[] = [];\n\n public constructor(taskInitiator: AsyncTaskInitiator) {\n this.taskInitiator = taskInitiator;\n }\n\n /**\n * Public setter of the `status` property.\n * @param status.\n */\n public set status(status: AsyncTaskStatus) {\n this._status = status;\n this.statusChangeEventManager.emit(status);\n }\n\n /**\n * Public accessor of the `status` property.\n * @return status.\n */\n public get status() {\n return this._status;\n }\n\n /**\n * Start the async task.\n */\n public init(): void {\n this.cancellable = this.taskInitiator(() => {\n this.status = \"finished\";\n });\n this.status = \"started\";\n }\n\n /**\n * Cancel the async task.\n */\n public cancel(): void {\n this.cancellable.cancel();\n this.status = \"cancelled\";\n }\n\n /**\n * Add an event handler to the status change.\n * @param listener Function which is going to be executed when the status changes.\n */\n public onStatusChange(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.statusChangeEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n}\n\n/**\n * Wrap an async task into another which will execute that task indefinitely\n * every time the tash finnish and the chosen period ends.\n * Will last until cancellation.\n *\n * @param task Async task to execute.\n * @param period Time in milliseconds to wait until the next async esecution.\n *\n * @return A new async task.\n */\nfunction asyncPeriodic(task: AsyncTask, period: number): AsyncTask {\n return new AsyncTask(() => {\n let ref: number | null = null;\n\n task.onStatusChange(status => {\n if (status === \"finished\") {\n ref = window.setTimeout(() => {\n task.init();\n }, period);\n }\n });\n\n task.init();\n\n return {\n cancel: () => {\n if (ref) clearTimeout(ref);\n task.cancel();\n }\n };\n });\n}\n\n/**\n * Manages a list of async tasks.\n */\nexport default class AsyncTaskManager {\n private tasks: { [identifier: string]: AsyncTask } = {};\n\n /**\n * Adds an async task to the manager.\n *\n * @param identifier Unique identifier.\n * @param taskInitiator Function to initialize the async task.\n * Should return a structure to cancel the task.\n * @param period Optional period to repeat the task indefinitely.\n */\n public add(\n identifier: string,\n taskInitiator: AsyncTaskInitiator,\n period: number = 0\n ): AsyncTask {\n if (this.tasks[identifier] && this.tasks[identifier].status === \"started\") {\n this.tasks[identifier].cancel();\n }\n\n const asyncTask =\n period > 0\n ? asyncPeriodic(new AsyncTask(taskInitiator), period)\n : new AsyncTask(taskInitiator);\n\n this.tasks[identifier] = asyncTask;\n\n return this.tasks[identifier];\n }\n\n /**\n * Starts an async task.\n *\n * @param identifier Unique identifier.\n */\n public init(identifier: string) {\n if (\n this.tasks[identifier] &&\n (this.tasks[identifier].status === \"waiting\" ||\n this.tasks[identifier].status === \"cancelled\" ||\n this.tasks[identifier].status === \"finished\")\n ) {\n this.tasks[identifier].init();\n }\n }\n\n /**\n * Cancel a running async task.\n *\n * @param identifier Unique identifier.\n */\n public cancel(identifier: string) {\n if (this.tasks[identifier] && this.tasks[identifier].status === \"started\") {\n this.tasks[identifier].cancel();\n }\n }\n}\n","/*\n * Useful resources.\n * http://es6-features.org/\n * http://exploringjs.com/es6\n * https://www.typescriptlang.org/\n */\n\nimport \"./main.css\"; // CSS import.\nimport VisualConsole from \"./VisualConsole\";\nimport * as Form from \"./Form\";\nimport AsyncTaskManager from \"./lib/AsyncTaskManager\";\n\n// Export the VisualConsole class to the global object.\n// eslint-disable-next-line\n(window as any).VisualConsole = VisualConsole;\n\n// Export the VisualConsole's Form classes to the global object.\n// eslint-disable-next-line\n(window as any).VisualConsole.Form = Form;\n\n// Export the AsyncTaskManager class to the global object.\n// eslint-disable-next-line\n(window as any).AsyncTaskManager = AsyncTaskManager;\n"],"names":["name","initialData","_name","currentData","dataRequestedEventManager","this","length","RangeError","_element","element","document","createElement","className","content","createContent","Array","forEach","appendChild","reset","updateData","data","requestData","identifier","params","done","emit","onDataRequested","listener","on","title","inputGroups","enabledInputGroups","inputGroupsByName","enabledInputGroupNames","submitEventManager","itemDataRequestedEventManager","handleItemDataRequested","reduce","prevVal","inputGroup","filter","getInputGroup","inputGroupName","addInputGroup","index","slice","removeInputGroup","getFormElement","type","form","id","addEventListener","e","preventDefault","nativeEvent","formContent","onSubmit","onInputGroupDataRequested","parseLabelPosition","labelPosition","itemBasePropsDecoder","isNaN","parseInt","TypeError","label","isLinkEnabled","link","isOnTop","parentId","aclGroupId","cacheExpiration","colorStatus","cellId","alertOutline","props","metadata","deferInit","elementRef","labelElementRef","childElementRef","clickEventManager","dblClickEventManager","movedEventManager","movementFinishedEventManager","resizedEventManager","resizeFinishedEventManager","removeEventManager","selectionChangedEventManager","disposables","debouncedMovementSave","x","y","_metadata","isBeingMoved","prevPosition","newPosition","positionChanged","move","item","removeMovement","debouncedResizementSave","width","height","isBeingResized","prevSize","newSize","sizeChanged","resize","removeResizement","itemProps","init","initMovementListener","meta","isSelected","moveElement","stopMovementListener","initResizementListener","getBoundingClientRect","labelWidth","labelHeight","resizeElement","stopResizementListener","createContainerDomElement","createLabelDomElement","createDomElement","changeLabelPosition","box","href","classList","add","style","left","top","unSelectItem","selectItem","editMode","stopPropagation","divParent","divSpinner","path","composedPath","containerId","undefined","includes","containerVC","getElementById","maintenanceMode","isFetching","isUpdating","getLabelWithMacrosReplaced","table","row","emptyRow1","emptyRow2","cell","innerHTML","textAlign","macro","value","Date","agentAlias","agentDescription","agentAddress","moduleName","moduleDescription","updateDomElement","newProps","setProps","prevProps","shouldBeUpdated","render","newMetadata","setMeta","prevMetadata","selected","prevMeta","oldLabelHtml","newLabelHtml","remove","container","attrs","attributes","i","nodeName","cloneIsNeeded","getAttributeNode","setAttributeNode","cloneNode","parentNode","replaceChild","setAttribute","div","querySelector","parentElement","removeChild","disposable","dispose","ignored","position","flexDirection","tables","getElementsByTagName","onClick","push","onDblClick","onMoved","onMovementFinished","onResized","onResizeFinished","onRemove","onSelectionChanged","getFormContainer","VisualConsoleItem","t","titleItem","FormContainer","parseBarsGraphProps","backgroundColor","parseTypeGraph","typeGraph","barsGraphPropsDecoder","html","encodedHtml","gridColor","agentDisabled","moduleDisabled","opacity","scripts","src","setTimeout","eval","trim","basicChartPropsDecoder","period","parseFloat","status","moduleNameColor","header","textContent","color","number_format","moduleValue","legendP","margin","overviewGraphs","getElementsByClassName","insertBefore","firstChild","number","force_integer","unit","short_data","divisor","Math","round","aux_decimals","pad","Number","pos","abs","input","padding","str","donutGraphPropsDecoder","legendBackgroundColor","eventsHistoryPropsDecoder","maxTime","legendColor","flotText","aux","parseBackgroundType","backgroundType","parseGraphType","graphType","moduleGraphPropsDecoder","customGraphId","svgNS","iconDefinition","size","spin","pulse","iconName","icon","createElementNS","pathData","listeners","listenersOncer","off","once","callbackIndex","indexOf","splice","event","pipe","te","parseIntOr","defaultValue","parseFloatOr","stringIsEmpty","notEmptyStringOr","parseBoolean","leftPad","diffLength","substr","substring","repeatTimes","floor","restLength","newPad","positionPropsDecoder","sizePropsDecoder","modulePropsDecoder","moduleId","agentProps","agentId","agentName","metaconsoleId","agentPropsDecoder","linkedVCPropsDecoder","linkedLayoutStatusProps","linkedLayoutStatusType","weight","linkedLayoutStatusTypeWeight","warningThreshold","linkedLayoutStatusTypeWarningThreshold","criticalThreshold","linkedLayoutStatusTypeCriticalThreshold","linkedLayoutId","linkedLayoutNodeId","itemMetaDecoder","receivedAt","getTime","error","Error","isFromCache","lineMode","prefixedCssRules","ruleName","ruleValue","rule","decodeBase64","decodeURIComponent","escape","window","atob","humanDate","date","locale","Intl","DateTimeFormat","day","month","year","format","getDate","getMonth","getFullYear","humanTime","hours","getHours","minutes","getMinutes","seconds","getSeconds","replaceMacros","macros","text","acc","replace","throttle","delay","fn","last","now","args","debounce","timerRef","clearTimeout","getOffset","el","parent","offsetLeft","offsetTop","scrollLeft","scrollTop","offsetParent","addMovementListener","altContainer","isDraggable","draggable","lastX","lastY","lastMouseX","lastMouseY","mouseElementOffsetX","mouseElementOffsetY","containerBounds","containerOffset","containerTop","containerBottom","containerLeft","containerRight","elementBounds","borderWidth","getComputedStyle","borderFix","debouncedMovement","throttledMovement","handleMove","mouseX","pageX","mouseY","pageY","mouseDeltaX","mouseDeltaY","maxX","maxY","outOfBoundsLeft","outOfBoundsRight","outOfBoundsTop","outOfBoundsBottom","handleEnd","removeEventListener","body","userSelect","handleStart","button","elementOffset","offsetX","offsetY","addResizementListener","resizeDraggable","lastWidth","lastHeight","elementTop","elementLeft","debouncedResizement","throttledResizement","handleResize","ellipsize","max","ellipse","__webpack_module_cache__","__webpack_require__","cachedModule","exports","module","__webpack_modules__","d","definition","key","o","Object","defineProperty","enumerable","get","obj","prop","prototype","hasOwnProperty","call","r","Symbol","toStringTag","parseShowLastValueTooltip","showLastValueTooltip","staticGraphPropsDecoder","imageSrc","statusImageSrc","lastValue","imgSrc","backgroundImage","backgroundRepeat","backgroundSize","backgroundPosition","Item","iconPropsDecoder","image","faPlusCircle","prefix","faTrashAlt","colorCloudPropsDecoder","defaultColor","colorRanges","generalDiv","colorLabel","ColorInput","required","target","InputGroup","rangesLabel","createLabel","rangesControlsContainer","createdRangesContainer","buildRanges","ranges","colorRange","rangeContainer","range","handleRangeUpdatePartial","newRanges","handleDelete","initialRangeContainer","onCreate","initialState","state","rangesContainer","rangesContainerFromValue","rangesLabelFromValue","rangesInputFromValue","createInputNumber","fromValue","rangesDivContainerToValue","rangesLabelToValue","rangesInputToValue","toValue","rangesDivContainerColor","rangesLabelColor","rangesInputColor","createInputColor","createBtn","onUpdate","onDelete","deleteBtn","append","createSvgElement","gradientId","svg","defs","radialGradient","stop0","stop100","circle","ColorCloud","formContainer","ColorInputGroup","RangesInputGroup","linePropsDecoder","startPosition","startX","startY","endPosition","endX","endY","lineWidth","borderColor","viewportOffsetX","viewportOffsetY","labelEnd","labelEndWidth","linkedEnd","linkedStart","labelEndHeight","labelStart","labelStartWidth","labelStartHeight","Line","extractBoxSizeAndPosition","circleRadius","moveMode","isMoving","lineMovedEventManager","TypedEvent","lineMovedEventDisposables","debouncedStartPositionMovementSave","removeStartPositionMovement","debouncedEndPositionMovementSave","removeEndPositionMovement","initStartPositionMovementListener","stopStartPositionMovementListener","initEndPositionMovementListener","stopEndPositionMovementListener","x1","y1","x2","y2","line","cursor","svgs","lines","getElementsByTagNameNS","startCircle","endCircle","circlesStart","circlesEnd","borderRadius","circles","min","startIsLeft","startIsTop","start","end","onLineMovementFinished","networkLinkPropsDecoder","groups","adjustment","lineX1","lineY1","lineX2","lineY2","g","atan2","PI","split","l","labels","arrows","arrow","arrowSize","arrowPosX","arrowPosY","arrowStart","border","borderBottom","transform","arrowEnd","htmlLabelStart","console","htmlLabelEnd","groupPropsDecoder","groupId","showStatistics","extractHtml","parseClockType","clockType","parseClockFormat","clockFormat","clockPropsDecoder","clockTimezone","clockTimezoneOffset","showClockTimezone","intervalRef","startTick","createClock","Clock","TICK_INTERVAL","stopTick","clearInterval","handler","interval","setInterval","getElementSize","newWidth","newHeight","createAnalogicClock","createDigitalClock","colors","dateFontSize","baseTimeFontSize","clockFace","clockFaceBackground","city","getHumanTimezone","timezoneComplication","marksGroup","mainMarkGroup","mark1a","mark1b","mark","hourHand","hourHandA","hourHandB","minuteHand","minuteHandA","minuteHandB","minuteHandPin","secondHand","secondHandBar","secondHandPin","pin","getOriginDate","secAngle","minuteAngle","hourAngle","join","dateElem","fontSize","modified","tzFontSizeMultiplier","timeFontSize","tzFontSize","timeElem","tzElem","initialDate","targetTZOffset","localTZOffset","getTimezoneOffset","utimestamp","timezone","diameter","extraHeigth","boxPropsDecoder","fillColor","fillTransparent","boxSizing","borderStyle","maxBorderWidth","labelPropsDecoder","parseValueType","valueType","simpleValuePropsDecoder","processValue","parseProcessValue","img","pi","tau","epsilon","tauEpsilon","Path","_x0","_y0","_x1","_y1","_","constructor","moveTo","closePath","lineTo","quadraticCurveTo","bezierCurveTo","arcTo","x0","y0","x21","y21","x01","y01","l01_2","x20","y20","l21_2","l20_2","l21","sqrt","l01","tan","acos","t01","t21","arc","a0","a1","ccw","dx","cos","dy","sin","cw","da","rect","w","h","toString","halfPi","asin","arcInnerRadius","innerRadius","arcOuterRadius","outerRadius","arcStartAngle","startAngle","arcEndAngle","endAngle","arcPadAngle","padAngle","intersect","x3","y3","x10","y10","x32","y32","cornerTangents","r1","rc","lo","ox","oy","x11","y11","x00","y00","d2","D","cx0","cy0","cx1","cy1","dx0","dy0","dx1","dy1","cx","cy","extractPercentileType","extractValueType","percentilePropsDecoder","percentileType","minValue","maxValue","labelColor","formatValue","background","progress","getProgress","NumberFormat","backgroundRect","progressRect","backgroundCircle","progressCircle","arcProps","cornerRadius","constant","padRadius","context","buffer","r0","apply","arguments","t0","t1","a01","a11","a00","a10","da0","da1","ap","rp","rc0","rc1","p0","p1","oc","ax","ay","bx","by","kc","lc","centroid","a","trunc","servicePropsDecoder","encodedTitle","serviceId","odometerPropsDecoder","titleColor","titleModule","thresholds","minMaxValue","odometerType","lineWarning","lineWarning2","lineCritical","lineCritical2","JSON","parse","min_warning","max_warning","getCoords","min_critical","max_critical","percent","toFixed","getSubfix","maximumSignificantDigits","maximumFractionDigits","numb","match","rotate","getRotate","anchoB","odometerContainer","odometerA","odometerB","odometerC","gaugeE","SVG_NS","svgWarning","setAttributeNS","pathWarning","svgCritical","pathCritical","h1","innerText","lineHeight","h2","truncateTitle","script","onload","url_pandora","location","pathname","dir","display","minMax","limit","subfix","radio","halfLength","diff","stringBefore","stringAfter","decodeProps","items","elementsById","elementIds","relations","lineLinks","handleElementClick","handleElementDblClick","handleElementMovement","itemId","getItemRelations","relation","getVisualCenter","childId","updateLinesConnected","handleElementMovementFinished","handleLineElementMovementFinished","refreshLink","handleElementResizement","handleElementResizementFinished","handleElementRemove","clearRelations","handleElementSelectionChanged","elements","handleContainerClick","unSelectItems","containerRef","_props","backgroundURL","isFavorite","relationLineWidth","visualConsolePropsDecoder","sort","b","addElement","buildRelations","coordinatesInItem","itemAtStart","itemAtEnd","keys","to","save","lineId","updateElement","options","debouncedLinePositionSave","map","itemInstance","ModuleGraph","EventsHistory","DonutGraph","BarsGraph","BasicChart","itemInstanceFrom","message","updateElements","itemIds","child","addRelationLine","ids","getRelationLine","itemRelations","clientWidth","clientHeight","parentX","parentY","childX","childY","zIndex","onItemClick","onItemDblClick","onItemMoved","onLineMoved","onItemResized","onItemSelectionChanged","enableEditMode","disableEditMode","enableMaintenanceMode","disableMaintenanceMode","unique","currentItemId","itemDescriptiveName","linkedAgentAndModuleProps","taskInitiator","cancellable","cancel","_status","statusChangeEventManager","onStatusChange","tasks","asyncTask","task","AsyncTask","ref","asyncPeriodic","VisualConsole","Form","AsyncTaskManager"],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"vc.main.min.js","mappings":"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","sources":["webpack://pandora-fms-visual-console/./src/Form.ts","webpack://pandora-fms-visual-console/./src/Item.ts","webpack://pandora-fms-visual-console/./src/items/BarsGraph.ts","webpack://pandora-fms-visual-console/./src/items/BasicChart.ts","webpack://pandora-fms-visual-console/./src/items/DonutGraph.ts","webpack://pandora-fms-visual-console/./src/items/EventsHistory.ts","webpack://pandora-fms-visual-console/./src/items/ModuleGraph.ts","webpack://pandora-fms-visual-console/./src/lib/FontAwesomeIcon.ts","webpack://pandora-fms-visual-console/./src/lib/TypedEvent.ts","webpack://pandora-fms-visual-console/./src/lib/index.ts","webpack://pandora-fms-visual-console/webpack/bootstrap","webpack://pandora-fms-visual-console/webpack/runtime/define property getters","webpack://pandora-fms-visual-console/webpack/runtime/hasOwnProperty shorthand","webpack://pandora-fms-visual-console/webpack/runtime/make namespace object","webpack://pandora-fms-visual-console/./src/items/StaticGraph.ts","webpack://pandora-fms-visual-console/./src/items/Icon.ts","webpack://pandora-fms-visual-console/./node_modules/@fortawesome/free-solid-svg-icons/index.es.js","webpack://pandora-fms-visual-console/./src/items/ColorCloud.ts","webpack://pandora-fms-visual-console/./src/items/Line.ts","webpack://pandora-fms-visual-console/./src/items/NetworkLink.ts","webpack://pandora-fms-visual-console/./src/items/Group.ts","webpack://pandora-fms-visual-console/./src/items/Clock/index.ts","webpack://pandora-fms-visual-console/./src/items/Box.ts","webpack://pandora-fms-visual-console/./src/items/Label.ts","webpack://pandora-fms-visual-console/./src/items/SimpleValue.ts","webpack://pandora-fms-visual-console/./node_modules/d3-path/src/path.js","webpack://pandora-fms-visual-console/./node_modules/d3-shape/src/constant.js","webpack://pandora-fms-visual-console/./node_modules/d3-shape/src/math.js","webpack://pandora-fms-visual-console/./node_modules/d3-shape/src/arc.js","webpack://pandora-fms-visual-console/./src/items/Percentile.ts","webpack://pandora-fms-visual-console/./src/items/Service.ts","webpack://pandora-fms-visual-console/./src/items/Odometer.ts","webpack://pandora-fms-visual-console/./src/VisualConsole.ts","webpack://pandora-fms-visual-console/./src/lib/AsyncTaskManager.ts","webpack://pandora-fms-visual-console/./src/index.ts"],"sourcesContent":["import TypedEvent, { Listener, Disposable } from \"./lib/TypedEvent\";\nimport { AnyObject, UnknownObject } from \"./lib/types\";\nimport { t } from \"./lib\";\n\ninterface InputGroupDataRequestedEvent {\n identifier: string;\n params: UnknownObject;\n done: (error: Error | null, data?: unknown) => void;\n}\n\n// TODO: Document\nexport abstract class InputGroup {\n private _name: string = \"\";\n private _element?: HTMLElement;\n public readonly initialData: Data;\n protected currentData: Partial = {};\n // Event manager for data requests.\n private readonly dataRequestedEventManager = new TypedEvent<\n InputGroupDataRequestedEvent\n >();\n\n public constructor(name: string, initialData: Data) {\n this.name = name;\n this.initialData = initialData;\n }\n\n public set name(name: string) {\n if (name.length === 0) throw new RangeError(\"empty name\");\n this._name = name;\n }\n\n public get name(): string {\n return this._name;\n }\n\n public get data(): Partial {\n return { ...this.currentData };\n }\n\n public get element(): HTMLElement {\n if (this._element == null) {\n const element = document.createElement(\"div\");\n element.className = `input-group input-group-${this.name}`;\n\n const content = this.createContent();\n\n if (content instanceof Array) {\n content.forEach(element.appendChild);\n } else {\n element.appendChild(content);\n }\n\n this._element = element;\n }\n\n return this._element;\n }\n\n public reset(): void {\n this.currentData = {};\n }\n\n protected updateData(data: Partial): void {\n this.currentData = {\n ...this.currentData,\n ...data\n };\n // TODO: Update item.\n }\n\n protected requestData(\n identifier: string,\n params: UnknownObject,\n done: (error: Error | null, data?: unknown) => void\n ): void {\n this.dataRequestedEventManager.emit({ identifier, params, done });\n }\n\n public onDataRequested(\n listener: Listener\n ): Disposable {\n return this.dataRequestedEventManager.on(listener);\n }\n\n protected abstract createContent(): HTMLElement | HTMLElement[];\n\n // public abstract get isValid(): boolean;\n}\n\nexport interface SubmitFormEvent {\n nativeEvent: Event;\n data: AnyObject;\n}\n\n// TODO: Document\nexport class FormContainer {\n public readonly title: string;\n private inputGroupsByName: { [name: string]: InputGroup } = {};\n private enabledInputGroupNames: string[] = [];\n // Event manager for submit events.\n private readonly submitEventManager = new TypedEvent();\n // Event manager for item data requests.\n private readonly itemDataRequestedEventManager = new TypedEvent<\n InputGroupDataRequestedEvent\n >();\n private handleItemDataRequested = this.itemDataRequestedEventManager.emit;\n\n public constructor(\n title: string,\n inputGroups: InputGroup[] = [],\n enabledInputGroups: string[] = []\n ) {\n this.title = title;\n\n if (inputGroups.length > 0) {\n this.inputGroupsByName = inputGroups.reduce((prevVal, inputGroup) => {\n // Add event handlers.\n inputGroup.onDataRequested(this.handleItemDataRequested);\n prevVal[inputGroup.name] = inputGroup;\n return prevVal;\n }, this.inputGroupsByName);\n }\n\n if (enabledInputGroups.length > 0) {\n this.enabledInputGroupNames = [\n ...this.enabledInputGroupNames,\n ...enabledInputGroups.filter(\n name => this.inputGroupsByName[name] != null\n )\n ];\n }\n }\n\n public getInputGroup(inputGroupName: string): InputGroup | null {\n return this.inputGroupsByName[inputGroupName] || null;\n }\n\n public addInputGroup(\n inputGroup: InputGroup,\n index: number | null = null\n ): FormContainer {\n // Add event handlers.\n inputGroup.onDataRequested(this.handleItemDataRequested);\n this.inputGroupsByName[inputGroup.name] = inputGroup;\n\n // Remove the current stored name if exist.\n this.enabledInputGroupNames = this.enabledInputGroupNames.filter(\n name => name !== inputGroup.name\n );\n\n if (index !== null) {\n if (index <= 0) {\n this.enabledInputGroupNames = [\n inputGroup.name,\n ...this.enabledInputGroupNames\n ];\n } else if (index >= this.enabledInputGroupNames.length) {\n this.enabledInputGroupNames = [\n ...this.enabledInputGroupNames,\n inputGroup.name\n ];\n } else {\n this.enabledInputGroupNames = [\n // part of the array before the specified index\n ...this.enabledInputGroupNames.slice(0, index),\n // inserted item\n inputGroup.name,\n // part of the array after the specified index\n ...this.enabledInputGroupNames.slice(index)\n ];\n }\n } else {\n this.enabledInputGroupNames = [\n ...this.enabledInputGroupNames,\n inputGroup.name\n ];\n }\n\n return this;\n }\n\n public removeInputGroup(inputGroupName: string): FormContainer {\n delete this.inputGroupsByName[inputGroupName];\n // Remove the current stored name.\n this.enabledInputGroupNames = this.enabledInputGroupNames.filter(\n name => name !== inputGroupName\n );\n\n return this;\n }\n\n public getFormElement(\n type: \"creation\" | \"update\" = \"update\"\n ): HTMLFormElement {\n const form = document.createElement(\"form\");\n form.id = \"visual-console-item-edition\";\n form.className = \"visual-console-item-edition\";\n form.addEventListener(\"submit\", e => {\n e.preventDefault();\n this.submitEventManager.emit({\n nativeEvent: e,\n data: this.enabledInputGroupNames.reduce((data, name) => {\n if (this.inputGroupsByName[name]) {\n data = {\n ...data,\n ...this.inputGroupsByName[name].data\n };\n }\n return data;\n }, {})\n });\n });\n\n const formContent = document.createElement(\"div\");\n formContent.className = \"input-groups\";\n\n this.enabledInputGroupNames.forEach(name => {\n if (this.inputGroupsByName[name]) {\n formContent.appendChild(this.inputGroupsByName[name].element);\n }\n });\n\n form.appendChild(formContent);\n\n return form;\n }\n\n public reset(): void {\n this.enabledInputGroupNames.forEach(name => {\n if (this.inputGroupsByName[name]) {\n this.inputGroupsByName[name].reset();\n }\n });\n }\n\n // public get isValid(): boolean {\n // for (let i = 0; i < this.enabledInputGroupNames.length; i++) {\n // const inputGroup = this.inputGroupsByName[this.enabledInputGroupNames[i]];\n // if (inputGroup && !inputGroup.isValid) return false;\n // }\n\n // return true;\n // }\n\n public onSubmit(listener: Listener): Disposable {\n return this.submitEventManager.on(listener);\n }\n\n public onInputGroupDataRequested(\n listener: Listener\n ): Disposable {\n return this.itemDataRequestedEventManager.on(listener);\n }\n}\n","import {\n Position,\n Size,\n AnyObject,\n WithModuleProps,\n ItemMeta,\n LinkedVisualConsoleProps,\n WithAgentProps\n} from \"./lib/types\";\nimport {\n sizePropsDecoder,\n positionPropsDecoder,\n parseIntOr,\n parseBoolean,\n notEmptyStringOr,\n replaceMacros,\n humanDate,\n humanTime,\n addMovementListener,\n debounce,\n addResizementListener,\n t\n} from \"./lib\";\nimport TypedEvent, { Listener, Disposable } from \"./lib/TypedEvent\";\nimport { FormContainer, InputGroup } from \"./Form\";\n\n// Enum: https://www.typescriptlang.org/docs/handbook/enums.html.\nexport const enum ItemType {\n STATIC_GRAPH = 0,\n MODULE_GRAPH = 1,\n SIMPLE_VALUE = 2,\n PERCENTILE_BAR = 3,\n LABEL = 4,\n ICON = 5,\n SIMPLE_VALUE_MAX = 6,\n SIMPLE_VALUE_MIN = 7,\n SIMPLE_VALUE_AVG = 8,\n PERCENTILE_BUBBLE = 9,\n SERVICE = 10,\n GROUP_ITEM = 11,\n BOX_ITEM = 12,\n LINE_ITEM = 13,\n AUTO_SLA_GRAPH = 14,\n CIRCULAR_PROGRESS_BAR = 15,\n CIRCULAR_INTERIOR_PROGRESS_BAR = 16,\n DONUT_GRAPH = 17,\n BARS_GRAPH = 18,\n CLOCK = 19,\n COLOR_CLOUD = 20,\n NETWORK_LINK = 21,\n ODOMETER = 22,\n BASIC_CHART = 23\n}\n\n// Base item properties. This interface should be extended by the item implementations.\nexport interface ItemProps extends Position, Size {\n readonly id: number;\n readonly type: ItemType;\n label: string | null;\n labelPosition: \"up\" | \"right\" | \"down\" | \"left\";\n isLinkEnabled: boolean;\n link: string | null;\n isOnTop: boolean;\n parentId: number | null;\n aclGroupId: number | null;\n cacheExpiration: number | null;\n colorStatus: string;\n cellId: number | null;\n alertOutline: boolean;\n}\n\nexport interface ItemClickEvent {\n item: VisualConsoleItem;\n nativeEvent: Event;\n}\n\n// FIXME: Fix type compatibility.\nexport interface ItemRemoveEvent {\n // data: Props;\n item: VisualConsoleItem;\n}\n\nexport interface ItemMovedEvent {\n item: VisualConsoleItem;\n prevPosition: Position;\n newPosition: Position;\n}\n\nexport interface ItemResizedEvent {\n item: VisualConsoleItem;\n prevSize: Size;\n newSize: Size;\n}\n\nexport interface ItemSelectionChangedEvent {\n selected: boolean;\n}\n\n/**\n * Extract a valid enum value from a raw label position value.\n * @param labelPosition Raw value.\n */\nconst parseLabelPosition = (\n labelPosition: unknown\n): ItemProps[\"labelPosition\"] => {\n switch (labelPosition) {\n case \"up\":\n case \"right\":\n case \"down\":\n case \"left\":\n return labelPosition;\n default:\n return \"down\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the item props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function itemBasePropsDecoder(data: AnyObject): ItemProps | never {\n if (data.id == null || isNaN(parseInt(data.id))) {\n throw new TypeError(\"invalid id.\");\n }\n if (data.type == null || isNaN(parseInt(data.type))) {\n throw new TypeError(\"invalid type.\");\n }\n\n return {\n id: parseInt(data.id),\n type: parseInt(data.type),\n label: notEmptyStringOr(data.label, null),\n labelPosition: parseLabelPosition(data.labelPosition),\n isLinkEnabled: parseBoolean(data.isLinkEnabled),\n link: notEmptyStringOr(data.link, null),\n isOnTop: parseBoolean(data.isOnTop),\n parentId: parseIntOr(data.parentId, null),\n aclGroupId: parseIntOr(data.aclGroupId, null),\n cacheExpiration: parseIntOr(data.cacheExpiration, null),\n colorStatus: notEmptyStringOr(data.colorStatus, \"#CCC\"),\n cellId: parseIntOr(data.cellId, null),\n alertOutline: parseBoolean(data.alertOutline),\n ...sizePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...positionPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\n//TODO: Document\nexport function titleItem(id: number): string {\n let title = \"\";\n switch (id) {\n case ItemType.STATIC_GRAPH:\n title = t(\"Static image\");\n break;\n case ItemType.MODULE_GRAPH:\n title = t(\"Module graph\");\n break;\n case ItemType.SIMPLE_VALUE:\n title = t(\"Simple value\");\n break;\n case ItemType.PERCENTILE_BAR:\n title = t(\"Percentile item\");\n break;\n case ItemType.LABEL:\n title = t(\"Label\");\n break;\n case ItemType.ICON:\n title = t(\"Icon\");\n break;\n case ItemType.SIMPLE_VALUE_MAX:\n title = t(\"Simple value\");\n break;\n case ItemType.SIMPLE_VALUE_MIN:\n title = t(\"Simple value\");\n break;\n case ItemType.SIMPLE_VALUE_AVG:\n title = t(\"Simple value\");\n break;\n case ItemType.PERCENTILE_BUBBLE:\n title = t(\"Percentile item\");\n break;\n case ItemType.SERVICE:\n title = t(\"Service\");\n break;\n case ItemType.GROUP_ITEM:\n title = t(\"Group\");\n break;\n case ItemType.BOX_ITEM:\n title = t(\"Box\");\n break;\n case ItemType.LINE_ITEM:\n title = t(\"Line\");\n break;\n case ItemType.AUTO_SLA_GRAPH:\n title = t(\"Event history graph\");\n break;\n case ItemType.CIRCULAR_PROGRESS_BAR:\n title = t(\"Percentile item\");\n break;\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n title = t(\"Percentile item\");\n break;\n case ItemType.DONUT_GRAPH:\n title = t(\"Serialized pie graph\");\n break;\n case ItemType.BARS_GRAPH:\n title = t(\"Bars graph\");\n break;\n case ItemType.CLOCK:\n title = t(\"Clock\");\n break;\n case ItemType.COLOR_CLOUD:\n title = t(\"Color cloud\");\n break;\n case ItemType.NETWORK_LINK:\n title = t(\"Network link\");\n break;\n case ItemType.ODOMETER:\n title = t(\"Odometer\");\n break;\n case ItemType.BASIC_CHART:\n title = t(\"Basic chart\");\n break;\n default:\n title = t(\"Item\");\n break;\n }\n\n return title;\n}\n\n/**\n * Base class of the visual console items. Should be extended to use its capabilities.\n */\nabstract class VisualConsoleItem {\n // Properties of the item.\n private itemProps: Props;\n // Metadata of the item.\n private _metadata: ItemMeta;\n // Reference to the DOM element which will contain the item.\n public elementRef: HTMLElement = document.createElement(\"div\");\n public labelElementRef: HTMLElement = document.createElement(\"div\");\n // Reference to the DOM element which will contain the view of the item which extends this class.\n protected childElementRef: HTMLElement = document.createElement(\"div\");\n // Event manager for click events.\n private readonly clickEventManager = new TypedEvent();\n // Event manager for double click events.\n private readonly dblClickEventManager = new TypedEvent();\n // Event manager for moved events.\n private readonly movedEventManager = new TypedEvent();\n // Event manager for stopped movement events.\n private readonly movementFinishedEventManager = new TypedEvent<\n ItemMovedEvent\n >();\n // Event manager for resized events.\n private readonly resizedEventManager = new TypedEvent();\n // Event manager for resize finished events.\n private readonly resizeFinishedEventManager = new TypedEvent<\n ItemResizedEvent\n >();\n // Event manager for remove events.\n private readonly removeEventManager = new TypedEvent();\n // Event manager for selection change events.\n private readonly selectionChangedEventManager = new TypedEvent<\n ItemSelectionChangedEvent\n >();\n // List of references to clean the event listeners.\n private readonly disposables: Disposable[] = [];\n\n // This function will only run the 2nd arg function after the time\n // of the first arg have passed after its last execution.\n private debouncedMovementSave = debounce(\n 500, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n // Update the metadata information.\n // Don't use the .meta property cause we don't need DOM updates.\n this._metadata.isBeingMoved = false;\n\n const prevPosition = {\n x: this.props.x,\n y: this.props.y\n };\n const newPosition = {\n x: x,\n y: y\n };\n\n if (!this.positionChanged(prevPosition, newPosition)) return;\n\n // Save the new position to the props.\n this.move(x, y);\n // Emit the movement event.\n this.movementFinishedEventManager.emit({\n item: this,\n prevPosition: prevPosition,\n newPosition: newPosition\n });\n }\n );\n // This property will store the function\n // to clean the movement listener.\n private removeMovement: Function | null = null;\n\n /**\n * Start the movement funtionality.\n * @param element Element to move inside its container.\n */\n private initMovementListener(element: HTMLElement): void {\n // Avoid line movement as 'block' force using circles.\n if (\n this.props.type == ItemType.LINE_ITEM ||\n this.props.type == ItemType.NETWORK_LINK\n ) {\n return;\n }\n\n this.removeMovement = addMovementListener(\n element,\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n const prevPosition = {\n x: this.props.x,\n y: this.props.y\n };\n const newPosition = { x, y };\n\n this.meta = {\n ...this.meta,\n isSelected: true\n };\n\n if (!this.positionChanged(prevPosition, newPosition)) return;\n\n // Update the metadata information.\n // Don't use the .meta property cause we don't need DOM updates.\n this._metadata.isBeingMoved = true;\n // Move the DOM element.\n this.moveElement(x, y);\n // Emit the movement event.\n this.movedEventManager.emit({\n item: this,\n prevPosition: prevPosition,\n newPosition: newPosition\n });\n // Run the save function.\n this.debouncedMovementSave(x, y);\n }\n );\n }\n /**\n * Stop the movement fun\n */\n private stopMovementListener(): void {\n if (this.removeMovement) {\n this.removeMovement();\n this.removeMovement = null;\n }\n }\n\n // This function will only run the 2nd arg function after the time\n // of the first arg have passed after its last execution.\n private debouncedResizementSave = debounce(\n 500, // ms.\n (width: Size[\"width\"], height: Size[\"height\"]) => {\n // Update the metadata information.\n // Don't use the .meta property cause we don't need DOM updates.\n this._metadata.isBeingResized = false;\n\n const prevSize = {\n width: this.props.width,\n height: this.props.height\n };\n const newSize = { width, height };\n\n if (!this.sizeChanged(prevSize, newSize)) return;\n\n // Save the new position to the props.\n this.resize(width, height);\n\n // Emit the resize finished event.\n this.resizeFinishedEventManager.emit({\n item: this,\n prevSize: prevSize,\n newSize: newSize\n });\n }\n );\n // This property will store the function\n // to clean the resizement listener.\n private removeResizement: Function | null = null;\n\n /**\n * Start the resizement funtionality.\n * @param element Element to move inside its container.\n */\n protected initResizementListener(element: HTMLElement): void {\n if (\n this.props.type == ItemType.LINE_ITEM ||\n this.props.type == ItemType.NETWORK_LINK\n ) {\n return;\n }\n this.removeResizement = addResizementListener(\n element,\n (width: Size[\"width\"], height: Size[\"height\"]) => {\n // Update the metadata information.\n // Don't use the .meta property cause we don't need DOM updates.\n this._metadata.isBeingResized = true;\n\n // The label it's outside the item's size, so we need\n // to get rid of its size to get the real size of the\n // item's content.\n if (this.props.label && this.props.label.length > 0) {\n const {\n width: labelWidth,\n height: labelHeight\n } = this.labelElementRef.getBoundingClientRect();\n\n switch (this.props.labelPosition) {\n case \"up\":\n case \"down\":\n height -= labelHeight;\n break;\n case \"left\":\n case \"right\":\n width -= labelWidth;\n break;\n }\n }\n\n const prevSize = {\n width: this.props.width,\n height: this.props.height\n };\n const newSize = { width, height };\n\n if (!this.sizeChanged(prevSize, newSize)) return;\n\n // Move the DOM element.\n this.resizeElement(width, height);\n // Emit the resizement event.\n this.resizedEventManager.emit({\n item: this,\n prevSize,\n newSize\n });\n // Run the save function.\n this.debouncedResizementSave(width, height);\n }\n );\n }\n /**\n * Stop the resizement functionality.\n */\n private stopResizementListener(): void {\n if (this.removeResizement) {\n this.removeResizement();\n this.removeResizement = null;\n }\n }\n\n /**\n * To create a new element which will be inside the item box.\n * @return Item.\n */\n protected abstract createDomElement(): HTMLElement;\n\n public constructor(\n props: Props,\n metadata: ItemMeta,\n deferInit: boolean = false\n ) {\n this.itemProps = props;\n this._metadata = metadata;\n\n if (!deferInit) this.init();\n }\n\n /**\n * To create and append the DOM elements.\n */\n protected init(): void {\n /*\n * Get a HTMLElement which represents the container box\n * of the Visual Console item. This element will manage\n * all the common things like click events, show a border\n * when hovered, etc.\n */\n this.elementRef = this.createContainerDomElement();\n this.labelElementRef = this.createLabelDomElement();\n\n /*\n * Get a HTMLElement which represents the custom view\n * of the Visual Console item. This element will be\n * different depending on the item implementation.\n */\n this.childElementRef = this.createDomElement();\n\n // Insert the elements into the container.\n this.elementRef.appendChild(this.childElementRef);\n this.elementRef.appendChild(this.labelElementRef);\n\n // Resize element.\n this.resizeElement(this.itemProps.width, this.itemProps.height);\n // Set label position.\n this.changeLabelPosition(this.itemProps.labelPosition);\n }\n\n /**\n * To create a new box for the visual console item.\n * @return Item box.\n */\n private createContainerDomElement(): HTMLElement {\n let box;\n if (this.props.isLinkEnabled) {\n box = document.createElement(\"a\") as HTMLAnchorElement;\n\n if (this.props.link) {\n box.href = this.props.link;\n } else {\n box.className = \"textDecorationNone\";\n }\n } else {\n box = document.createElement(\"div\") as HTMLDivElement;\n box.className = \"textDecorationNone\";\n }\n\n box.classList.add(\"visual-console-item\");\n if (this.props.isOnTop) {\n box.classList.add(\"is-on-top\");\n }\n box.style.left = `${this.props.x}px`;\n box.style.top = `${this.props.y}px`;\n\n if (this.props.alertOutline) {\n box.classList.add(\"is-alert-triggered\");\n }\n\n // Init the click listeners.\n box.addEventListener(\"dblclick\", e => {\n if (!this.meta.isBeingMoved && !this.meta.isBeingResized) {\n this.unSelectItem();\n this.selectItem();\n\n this.dblClickEventManager.emit({\n item: this,\n nativeEvent: e\n });\n }\n });\n box.addEventListener(\"click\", e => {\n if (this.meta.editMode) {\n e.preventDefault();\n e.stopPropagation();\n } else {\n // Add loading click item.\n if (this.itemProps.isLinkEnabled && this.itemProps.link != null) {\n const divParent = document.createElement(\"div\");\n divParent.className = \"div-visual-console-spinner\";\n const divSpinner = document.createElement(\"div\");\n divSpinner.className = \"visual-console-spinner\";\n divParent.appendChild(divSpinner);\n let path = e.composedPath();\n let containerId = \"visual-console-container\";\n for (let index = 0; index < path.length; index++) {\n const element = path[index] as HTMLInputElement;\n if (\n element.id != undefined &&\n element.id != null &&\n element.id != \"\"\n ) {\n if (element.id.includes(containerId) === true) {\n containerId = element.id;\n break;\n }\n }\n }\n\n const containerVC = document.getElementById(containerId);\n if (containerVC != null) {\n containerVC.classList.add(\"is-updating\");\n containerVC.appendChild(divParent);\n }\n }\n }\n\n if (!this.meta.isBeingMoved && !this.meta.isBeingResized) {\n this.clickEventManager.emit({\n item: this,\n nativeEvent: e\n });\n }\n });\n\n // Metadata state.\n if (this.meta.maintenanceMode) {\n box.classList.add(\"is-maintenance\");\n }\n if (this.meta.editMode) {\n box.classList.add(\"is-editing\");\n }\n if (this.meta.isFetching) {\n box.classList.add(\"is-fetching\");\n }\n if (this.meta.isUpdating) {\n box.classList.add(\"is-updating\");\n }\n if (this.meta.isSelected) {\n box.classList.add(\"is-selected\");\n }\n\n return box;\n }\n\n /**\n * To create a new label for the visual console item.\n * @return Item label.\n */\n protected createLabelDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"visual-console-item-label\";\n // Add the label if it exists.\n const label = this.getLabelWithMacrosReplaced();\n if (label.length > 0) {\n // Ugly table we need to use to replicate the legacy style.\n const table = document.createElement(\"table\");\n const row = document.createElement(\"tr\");\n const emptyRow1 = document.createElement(\"tr\");\n const emptyRow2 = document.createElement(\"tr\");\n const cell = document.createElement(\"td\");\n\n cell.innerHTML = label;\n row.appendChild(cell);\n table.appendChild(emptyRow1);\n table.appendChild(row);\n table.appendChild(emptyRow2);\n table.style.textAlign = \"center\";\n\n // Change the table size depending on its position.\n switch (this.props.labelPosition) {\n case \"up\":\n case \"down\":\n if (this.props.width > 0) {\n table.style.width = `${this.props.width}px`;\n table.style.height = \"\";\n }\n break;\n case \"left\":\n case \"right\":\n if (this.props.height > 0) {\n table.style.width = \"\";\n table.style.height = `${this.props.height}px`;\n }\n break;\n }\n\n // element.innerHTML = this.props.label;\n element.appendChild(table);\n }\n\n return element;\n }\n\n /**\n * Return the label stored into the props with some macros replaced.\n */\n protected getLabelWithMacrosReplaced(): string {\n // We assert that the props may have some needed properties.\n const props = this.props as Partial;\n\n return replaceMacros(\n [\n {\n macro: \"_date_\",\n value: humanDate(new Date())\n },\n {\n macro: \"_time_\",\n value: humanTime(new Date())\n },\n {\n macro: \"_agent_\",\n value: props.agentAlias != null ? props.agentAlias : \"\"\n },\n {\n macro: \"_agentdescription_\",\n value: props.agentDescription != null ? props.agentDescription : \"\"\n },\n {\n macro: \"_address_\",\n value: props.agentAddress != null ? props.agentAddress : \"\"\n },\n {\n macro: \"_module_\",\n value: props.moduleName != null ? props.moduleName : \"\"\n },\n {\n macro: \"_moduledescription_\",\n value: props.moduleDescription != null ? props.moduleDescription : \"\"\n }\n ],\n this.props.label || \"\"\n );\n }\n\n /**\n * To update the content element.\n * @return Item.\n */\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.createDomElement().innerHTML;\n }\n\n /**\n * Public accessor of the `props` property.\n * @return Properties.\n */\n public get props(): Props {\n return { ...this.itemProps }; // Return a copy.\n }\n\n /**\n * Public setter of the `props` property.\n * If the new props are different enough than the\n * stored props, a render would be fired.\n * @param newProps\n */\n public set props(newProps: Props) {\n this.setProps(newProps);\n }\n\n /**\n * Clasic and protected version of the setter of the `props` property.\n * Useful to override it from children classes.\n * @param newProps\n */\n protected setProps(newProps: Props) {\n const prevProps = this.props;\n // Update the internal props.\n this.itemProps = newProps;\n\n // From this point, things which rely on this.props can access to the changes.\n\n // Check if we should re-render.\n if (this.shouldBeUpdated(prevProps, newProps))\n this.render(prevProps, this._metadata);\n }\n\n /**\n * Public accessor of the `meta` property.\n * @return Properties.\n */\n public get meta(): ItemMeta {\n return { ...this._metadata }; // Return a copy.\n }\n\n /**\n * Public setter of the `meta` property.\n * If the new meta are different enough than the\n * stored meta, a render would be fired.\n * @param newProps\n */\n public set meta(newMetadata: ItemMeta) {\n this.setMeta(newMetadata);\n }\n\n /**\n * Classic version of the setter of the `meta` property.\n * Useful to override it from children classes.\n * @param newProps\n */\n public setMeta(newMetadata: Partial): void {\n const prevMetadata = this._metadata;\n // Update the internal meta.\n this._metadata = {\n ...prevMetadata,\n ...newMetadata\n };\n\n if (\n typeof newMetadata.isSelected !== \"undefined\" &&\n prevMetadata.isSelected !== newMetadata.isSelected\n ) {\n this.selectionChangedEventManager.emit({\n selected: newMetadata.isSelected\n });\n }\n\n // From this point, things which rely on this.props can access to the changes.\n\n // Check if we should re-render.\n // if (this.shouldBeUpdated(prevMetadata, newMetadata))\n this.render(this.itemProps, prevMetadata);\n }\n\n /**\n * To compare the previous and the new props and returns a boolean value\n * in case the difference is meaningfull enough to perform DOM changes.\n *\n * Here, the only comparision is done by reference.\n *\n * Override this function to perform a different comparision depending on the item needs.\n *\n * @param prevProps\n * @param newProps\n * @return Whether the difference is meaningful enough to perform DOM changes or not.\n */\n protected shouldBeUpdated(prevProps: Props, newProps: Props): boolean {\n return prevProps !== newProps;\n }\n\n /**\n * To recreate or update the HTMLElement which represents the item into the DOM.\n * @param prevProps If exists it will be used to only perform DOM updates instead of a full replace.\n */\n public render(\n prevProps: Props | null = null,\n prevMeta: ItemMeta | null = null\n ): void {\n if (prevProps) {\n this.updateDomElement(this.childElementRef);\n }\n // Move box.\n if (!prevProps || this.positionChanged(prevProps, this.props)) {\n this.moveElement(this.props.x, this.props.y);\n if (\n prevProps &&\n prevProps.type != ItemType.LINE_ITEM &&\n prevProps.type != ItemType.NETWORK_LINK\n ) {\n this.updateDomElement(this.childElementRef);\n }\n }\n // Resize box.\n if (!prevProps || this.sizeChanged(prevProps, this.props)) {\n this.resizeElement(this.props.width, this.props.height);\n if (\n prevProps &&\n prevProps.type != ItemType.LINE_ITEM &&\n prevProps.type != ItemType.NETWORK_LINK\n ) {\n this.updateDomElement(this.childElementRef);\n }\n }\n // Change label.\n const oldLabelHtml = this.labelElementRef.innerHTML;\n const newLabelHtml = this.createLabelDomElement().innerHTML;\n if (oldLabelHtml !== newLabelHtml) {\n this.labelElementRef.innerHTML = newLabelHtml;\n }\n // Change label position.\n if (!prevProps || prevProps.labelPosition !== this.props.labelPosition) {\n this.changeLabelPosition(this.props.labelPosition);\n }\n //Change z-index class is-on-top\n if (!prevProps || prevProps.isOnTop !== this.props.isOnTop) {\n if (this.props.isOnTop) {\n this.elementRef.classList.add(\"is-on-top\");\n } else {\n this.elementRef.classList.remove(\"is-on-top\");\n }\n }\n // Change link.\n if (prevProps && prevProps.isLinkEnabled !== this.props.isLinkEnabled) {\n const container = this.createContainerDomElement();\n // Add the children of the old element.\n container.innerHTML = this.elementRef.innerHTML;\n // Copy the attributes.\n const attrs = this.elementRef.attributes;\n for (let i = 0; i < attrs.length; i++) {\n if (attrs[i].nodeName !== \"id\") {\n let cloneIsNeeded = this.elementRef.getAttributeNode(\n attrs[i].nodeName\n );\n if (cloneIsNeeded !== null) {\n container.setAttributeNode(cloneIsNeeded.cloneNode());\n }\n }\n }\n // Replace the reference.\n if (this.elementRef.parentNode !== null) {\n this.elementRef.parentNode.replaceChild(container, this.elementRef);\n }\n\n // Changed the reference to the main element. It's ugly, but needed.\n this.elementRef = container;\n }\n\n if (\n prevProps &&\n this.props.isLinkEnabled &&\n prevProps.link !== this.props.link\n ) {\n if (this.props.link !== null) {\n this.elementRef.setAttribute(\"href\", this.props.link);\n }\n }\n\n // Change metadata related things.\n if (\n !prevMeta ||\n prevMeta.editMode !== this.meta.editMode ||\n prevMeta.maintenanceMode !== this.meta.maintenanceMode\n ) {\n if (this.meta.editMode && this.meta.maintenanceMode === false) {\n this.elementRef.classList.add(\"is-editing\");\n this.elementRef.classList.remove(\"is-alert-triggered\");\n } else {\n this.elementRef.classList.remove(\"is-editing\");\n\n if (this.props.alertOutline) {\n this.elementRef.classList.add(\"is-alert-triggered\");\n }\n }\n }\n\n if (!prevMeta || prevMeta.isFetching !== this.meta.isFetching) {\n if (this.meta.isFetching) {\n this.elementRef.classList.add(\"is-fetching\");\n } else {\n this.elementRef.classList.remove(\"is-fetching\");\n }\n }\n\n if (!prevMeta || prevMeta.isUpdating !== this.meta.isUpdating) {\n if (this.meta.isUpdating) {\n this.elementRef.classList.add(\"is-updating\");\n\n const divParent = document.createElement(\"div\");\n divParent.className = \"div-visual-console-spinner\";\n const divSpinner = document.createElement(\"div\");\n divSpinner.className = \"visual-console-spinner\";\n divParent.appendChild(divSpinner);\n this.elementRef.appendChild(divParent);\n } else {\n this.elementRef.classList.remove(\"is-updating\");\n\n const div = this.elementRef.querySelector(\n \".div-visual-console-spinner\"\n );\n if (div !== null) {\n const parent = div.parentElement;\n if (parent !== null) {\n parent.removeChild(div);\n }\n }\n }\n\n this.updateDomElement(this.childElementRef);\n }\n if (!prevMeta || prevMeta.isSelected !== this.meta.isSelected) {\n if (this.meta.isSelected) {\n this.elementRef.classList.add(\"is-selected\");\n } else {\n this.elementRef.classList.remove(\"is-selected\");\n }\n }\n }\n\n /**\n * To remove the event listeners and the elements from the DOM.\n */\n public remove(): void {\n // Call the remove event.\n this.removeEventManager.emit({ item: this });\n // Event listeners.\n this.disposables.forEach(disposable => {\n try {\n disposable.dispose();\n } catch (ignored) {} // eslint-disable-line no-empty\n });\n // VisualConsoleItem DOM element.\n this.elementRef.remove();\n }\n\n /**\n * Compare the previous and the new position and return\n * a boolean value in case the position changed.\n * @param prevPosition\n * @param newPosition\n * @return Whether the position changed or not.\n */\n protected positionChanged(\n prevPosition: Position,\n newPosition: Position\n ): boolean {\n return prevPosition.x !== newPosition.x || prevPosition.y !== newPosition.y;\n }\n\n /**\n * Move the label around the item content.\n * @param position Label position.\n */\n protected changeLabelPosition(position: Props[\"labelPosition\"]): void {\n switch (position) {\n case \"up\":\n this.elementRef.style.flexDirection = \"column-reverse\";\n break;\n case \"left\":\n this.elementRef.style.flexDirection = \"row-reverse\";\n break;\n case \"right\":\n this.elementRef.style.flexDirection = \"row\";\n break;\n case \"down\":\n default:\n this.elementRef.style.flexDirection = \"column\";\n break;\n }\n\n // Ugly table to show the label as its legacy counterpart.\n const tables = this.labelElementRef.getElementsByTagName(\"table\");\n const table = tables.length > 0 ? tables.item(0) : null;\n // Change the table size depending on its position.\n if (table) {\n switch (this.props.labelPosition) {\n case \"up\":\n case \"down\":\n if (this.props.width > 0) {\n table.style.width = `${this.props.width}px`;\n table.style.height = \"\";\n }\n break;\n case \"left\":\n case \"right\":\n if (this.props.height > 0) {\n table.style.width = \"\";\n table.style.height = `${this.props.height}px`;\n }\n break;\n }\n }\n }\n\n /**\n * Move the DOM container.\n * @param x Horizontal axis position.\n * @param y Vertical axis position.\n */\n protected moveElement(x: number, y: number): void {\n this.elementRef.style.left = `${x}px`;\n this.elementRef.style.top = `${y}px`;\n }\n\n /**\n * Update the position into the properties and move the DOM container.\n * @param x Horizontal axis position.\n * @param y Vertical axis position.\n */\n public move(x: number, y: number): void {\n this.moveElement(x, y);\n this.itemProps = {\n ...this.props, // Object spread: http://es6-features.org/#SpreadOperator\n x,\n y\n };\n }\n\n /**\n * Compare the previous and the new size and return\n * a boolean value in case the size changed.\n * @param prevSize\n * @param newSize\n * @return Whether the size changed or not.\n */\n protected sizeChanged(prevSize: Size, newSize: Size): boolean {\n return (\n prevSize.width !== newSize.width || prevSize.height !== newSize.height\n );\n }\n\n /**\n * Resize the DOM content container.\n * @param width\n * @param height\n */\n protected resizeElement(width: number, height: number): void {\n // The most valuable size is the content size.\n if (\n this.props.type != ItemType.LINE_ITEM &&\n this.props.type != ItemType.NETWORK_LINK\n ) {\n this.childElementRef.style.width = width > 0 ? `${width}px` : \"\";\n this.childElementRef.style.height = height > 0 ? `${height}px` : \"\";\n }\n\n if (this.props.label && this.props.label.length > 0) {\n // Ugly table to show the label as its legacy counterpart.\n const tables = this.labelElementRef.getElementsByTagName(\"table\");\n const table = tables.length > 0 ? tables.item(0) : null;\n\n if (table) {\n switch (this.props.labelPosition) {\n case \"up\":\n case \"down\":\n table.style.width = width > 0 ? `${width}px` : \"\";\n break;\n case \"left\":\n case \"right\":\n table.style.height = height > 0 ? `${height}px` : \"\";\n break;\n }\n }\n }\n }\n\n /**\n * Update the size into the properties and resize the DOM container.\n * @param width\n * @param height\n */\n public resize(width: number, height: number): void {\n this.resizeElement(width, height);\n this.itemProps = {\n ...this.props, // Object spread: http://es6-features.org/#SpreadOperator\n width,\n height\n };\n }\n\n /**\n * To add an event handler to the click of the linked visual console elements.\n * @param listener Function which is going to be executed when a linked console is clicked.\n */\n public onClick(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.clickEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the double click of the linked visual console elements.\n * @param listener Function which is going to be executed when a linked console is double clicked.\n */\n public onDblClick(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.dblClickEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the movement of visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onMoved(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.movedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the movement stopped of visual console elements.\n * @param listener Function which is going to be executed when a linked console's movement is finished.\n */\n public onMovementFinished(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.movementFinishedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the resizement of visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onResized(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.resizedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the resizement finish of visual console elements.\n * @param listener Function which is going to be executed when a linked console is finished resizing.\n */\n public onResizeFinished(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.resizeFinishedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the removal of the item.\n * @param listener Function which is going to be executed when a item is removed.\n */\n public onRemove(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.removeEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to item selection.\n * @param listener Function which is going to be executed when a item is removed.\n */\n public onSelectionChanged(\n listener: Listener\n ): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.selectionChangedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Select an item.\n * @param itemId Item Id.\n * @param unique To remove the selection of other items or not.\n */\n public selectItem(): void {\n this.meta = {\n ...this.meta,\n isSelected: true\n };\n\n this.initMovementListener(this.elementRef);\n if (\n this.props.type !== ItemType.LINE_ITEM &&\n this.props.type !== ItemType.NETWORK_LINK\n ) {\n this.initResizementListener(this.elementRef);\n }\n }\n\n /**\n * Unselect an item.\n * @param itemId Item Id.\n */\n public unSelectItem(): void {\n this.meta = {\n ...this.meta,\n isSelected: false\n };\n\n this.stopMovementListener();\n if (this.props.type !== ItemType.LINE_ITEM) {\n this.stopResizementListener();\n }\n }\n\n // TODO: Document\n public getFormContainer(): FormContainer {\n return VisualConsoleItem.getFormContainer(this.props);\n }\n\n // TODO: Document\n public static getFormContainer(props: Partial): FormContainer {\n const title: string = props.type ? titleItem(props.type) : t(\"Item\");\n return new FormContainer(title, [], []);\n }\n}\n\nexport default VisualConsoleItem;\n","import { AnyObject, WithModuleProps } from \"../lib/types\";\nimport { modulePropsDecoder, decodeBase64, stringIsEmpty, t } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type BarsGraphProps = {\n type: ItemType.BARS_GRAPH;\n html: string;\n backgroundColor: \"white\" | \"black\" | \"transparent\";\n typeGraph: \"horizontal\" | \"vertical\";\n gridColor: string;\n} & ItemProps &\n WithModuleProps;\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param BarsGraphProps Raw value.\n */\nconst parseBarsGraphProps = (\n backgroundColor: unknown\n): BarsGraphProps[\"backgroundColor\"] => {\n switch (backgroundColor) {\n case \"white\":\n case \"black\":\n case \"transparent\":\n return backgroundColor;\n default:\n return \"transparent\";\n }\n};\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param typeGraph Raw value.\n */\nconst parseTypeGraph = (typeGraph: unknown): BarsGraphProps[\"typeGraph\"] => {\n switch (typeGraph) {\n case \"horizontal\":\n case \"vertical\":\n return typeGraph;\n default:\n return \"vertical\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the bars graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function barsGraphPropsDecoder(data: AnyObject): BarsGraphProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.BARS_GRAPH,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n backgroundColor: parseBarsGraphProps(data.backgroundColor),\n typeGraph: parseTypeGraph(data.typeGraph),\n gridColor: stringIsEmpty(data.gridColor) ? \"#000000\" : data.gridColor,\n ...modulePropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class BarsGraph extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.innerHTML = this.props.html;\n element.className = \"bars-graph\";\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n setTimeout(() => {\n try {\n eval(scripts[i].innerHTML.trim());\n } catch (ignored) {} // eslint-disable-line no-empty\n }, 0);\n }\n }\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.props.html;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n }\n}\n","import {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n modulePropsDecoder,\n decodeBase64,\n stringIsEmpty,\n parseIntOr\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type BasicChartProps = {\n type: ItemType.BASIC_CHART;\n html: string;\n period: number | null;\n value: number | null;\n status: string;\n moduleNameColor: string;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the basic chart props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function basicChartPropsDecoder(\n data: AnyObject\n): BasicChartProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.BASIC_CHART,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n period: parseIntOr(data.period, null),\n value: parseFloat(data.value),\n status: stringIsEmpty(data.status) ? \"#B2B2B2\" : data.status,\n moduleNameColor: stringIsEmpty(data.moduleNameColor)\n ? \"#3f3f3f\"\n : data.moduleNameColor,\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class BasicChart extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n\n const header = document.createElement(\"div\");\n header.className = \"basic-chart-header\";\n\n const moduleName = document.createElement(\"h2\");\n moduleName.className = \"basic-chart-header-name\";\n moduleName.textContent = this.props.moduleName;\n moduleName.style.color = `${this.props.moduleNameColor}`;\n header.appendChild(moduleName);\n\n let value = \"\";\n if (this.props.value !== null) {\n value = this.number_format(this.props.value, false, \"\", 2, 1000);\n }\n\n const moduleValue = document.createElement(\"h2\");\n moduleValue.className = \"basic-chart-header-value\";\n moduleValue.textContent = `${value}`;\n moduleValue.style.color = this.props.status;\n header.appendChild(moduleValue);\n\n element.innerHTML = this.props.html;\n element.className = \"basic-chart\";\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Remove the overview graph.\n const legendP = element.getElementsByTagName(\"p\");\n for (let i = 0; i < legendP.length; i++) {\n legendP[i].style.margin = \"0px\";\n }\n\n // Remove the overview graph.\n const overviewGraphs = element.getElementsByClassName(\"overview_graph\");\n for (let i = 0; i < overviewGraphs.length; i++) {\n overviewGraphs[i].remove();\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n setTimeout(() => {\n try {\n eval(scripts[i].innerHTML.trim());\n } catch (ignored) {} // eslint-disable-line no-empty\n }, 0);\n }\n }\n\n element.innerHTML = this.props.html;\n element.insertBefore(header, element.firstChild);\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n const header = document.createElement(\"div\");\n header.className = \"basic-chart-header\";\n\n const moduleName = document.createElement(\"h2\");\n moduleName.className = \"basic-chart-header-name\";\n moduleName.textContent = this.props.moduleName;\n moduleName.style.color = `${this.props.moduleNameColor}`;\n header.appendChild(moduleName);\n\n let value = \"\";\n if (this.props.value !== null) {\n value = this.number_format(this.props.value, false, \"\", 2, 1000);\n }\n\n const moduleValue = document.createElement(\"h2\");\n moduleValue.className = \"basic-chart-header-value\";\n moduleValue.textContent = `${value}`;\n moduleValue.style.color = this.props.status;\n header.appendChild(moduleValue);\n\n element.innerHTML = this.props.html;\n element.insertBefore(header, element.firstChild);\n\n // Remove the overview graph.\n const legendP = element.getElementsByTagName(\"p\");\n for (let i = 0; i < legendP.length; i++) {\n legendP[i].style.margin = \"0px\";\n }\n\n // Remove the overview graph.\n const overviewGraphs = element.getElementsByClassName(\"overview_graph\");\n for (let i = 0; i < overviewGraphs.length; i++) {\n overviewGraphs[i].remove();\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n }\n\n protected number_format(\n number: number,\n force_integer: boolean,\n unit: string,\n short_data: number,\n divisor: number\n ) {\n divisor = typeof divisor !== \"undefined\" ? divisor : 1000;\n var decimals = 2;\n\n // Set maximum decimal precision to 99 in case short_data is not set.\n if (!short_data) {\n short_data = 99;\n }\n\n if (force_integer) {\n if (Math.round(number) != number) {\n return \"\";\n }\n } else {\n short_data++;\n const aux_decimals = this.pad(\"1\", short_data, 0);\n number =\n Math.round(number * Number.parseInt(aux_decimals)) /\n Number.parseInt(aux_decimals);\n }\n\n var shorts = [\"\", \"K\", \"M\", \"G\", \"T\", \"P\", \"E\", \"Z\", \"Y\"];\n var pos = 0;\n\n while (Math.abs(number) >= divisor) {\n // As long as the number can be divided by 1000 or 1024.\n pos++;\n number = number / divisor;\n }\n\n if (divisor) {\n number = Math.round(number * decimals) / decimals;\n } else {\n number = Math.round(number * decimals);\n }\n\n if (isNaN(number)) {\n number = 0;\n }\n\n return number + \" \" + shorts[pos] + unit;\n }\n\n protected pad(input: string, length: number, padding: number): string {\n var str = input + \"\";\n return length <= str.length\n ? str\n : this.pad(str + padding, length, padding);\n }\n}\n","import {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n modulePropsDecoder,\n decodeBase64,\n stringIsEmpty,\n t\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type DonutGraphProps = {\n type: ItemType.DONUT_GRAPH;\n html: string;\n legendBackgroundColor: string;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the donut graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function donutGraphPropsDecoder(\n data: AnyObject\n): DonutGraphProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.DONUT_GRAPH,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n legendBackgroundColor: stringIsEmpty(data.legendBackgroundColor)\n ? \"#ffffff\"\n : data.legendBackgroundColor,\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class DonutGraph extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"donut-graph\";\n element.innerHTML = this.props.html;\n element.style.backgroundColor = this.props.legendBackgroundColor;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n setTimeout(() => {\n try {\n eval(scripts[i].innerHTML.trim());\n } catch (ignored) {} // eslint-disable-line no-empty\n }, 0);\n }\n }\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.props.html;\n element.style.backgroundColor = this.props.legendBackgroundColor;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n }\n}\n","import { AnyObject, WithModuleProps } from \"../lib/types\";\nimport {\n modulePropsDecoder,\n parseIntOr,\n decodeBase64,\n stringIsEmpty,\n t\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type EventsHistoryProps = {\n type: ItemType.AUTO_SLA_GRAPH;\n maxTime: number | null;\n legendColor: string;\n html: string;\n} & ItemProps &\n WithModuleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the events history props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function eventsHistoryPropsDecoder(\n data: AnyObject\n): EventsHistoryProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.AUTO_SLA_GRAPH,\n maxTime: parseIntOr(data.maxTime, null),\n legendColor: data.legendColor,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n ...modulePropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class EventsHistory extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"events-history\";\n element.innerHTML = this.props.html;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n setTimeout(() => {\n try {\n eval(scripts[i].innerHTML.trim());\n } catch (ignored) {} // eslint-disable-line no-empty\n }, 0);\n }\n }\n\n var flotText = element.getElementsByClassName(\n \"noresizevc\"\n ) as HTMLCollectionOf;\n flotText[0].style.color = this.props.legendColor;\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.props.html;\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const aux = document.createElement(\"div\");\n aux.innerHTML = this.props.html;\n const scripts = aux.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n\n var flotText = element.getElementsByClassName(\n \"noresizevc\"\n ) as HTMLCollectionOf;\n flotText[0].style.color = this.props.legendColor;\n }\n}\n","import {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n modulePropsDecoder,\n decodeBase64,\n stringIsEmpty,\n parseIntOr\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type ModuleGraphProps = {\n type: ItemType.MODULE_GRAPH;\n html: string;\n backgroundType: \"white\" | \"black\" | \"transparent\";\n graphType: \"line\" | \"area\";\n period: number | null;\n customGraphId: number | null;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param backgroundType Raw value.\n */\nconst parseBackgroundType = (\n backgroundType: unknown\n): ModuleGraphProps[\"backgroundType\"] => {\n switch (backgroundType) {\n case \"white\":\n case \"black\":\n case \"transparent\":\n return backgroundType;\n default:\n return \"transparent\";\n }\n};\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param graphType Raw value.\n */\nconst parseGraphType = (graphType: unknown): ModuleGraphProps[\"graphType\"] => {\n switch (graphType) {\n case \"line\":\n case \"area\":\n return graphType;\n default:\n return \"line\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the module graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function moduleGraphPropsDecoder(\n data: AnyObject\n): ModuleGraphProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.MODULE_GRAPH,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n backgroundType: parseBackgroundType(data.backgroundType),\n period: parseIntOr(data.period, null),\n graphType: parseGraphType(data.graphType),\n customGraphId: parseIntOr(data.customGraphId, null),\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class ModuleGraph extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n\n element.innerHTML = this.props.html;\n element.className = \"module-graph\";\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n setTimeout(() => {\n try {\n eval(scripts[i].innerHTML.trim());\n } catch (ignored) {} // eslint-disable-line no-empty\n }, 0);\n }\n }\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.props.html;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n }\n}\n","import { IconDefinition } from \"@fortawesome/free-solid-svg-icons\";\nimport \"./FontAwesomeIcon.styles.css\";\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\ninterface ExtraProps {\n size?: \"small\" | \"medium\" | \"large\";\n color?: string;\n spin?: boolean;\n pulse?: boolean;\n}\n\nconst fontAwesomeIcon = (\n iconDefinition: IconDefinition,\n title: string,\n { size, color, spin, pulse }: ExtraProps = {}\n): HTMLElement => {\n const container = document.createElement(\"figure\");\n container.title = title;\n container.className = `fa fa-${iconDefinition.iconName}`;\n\n if (size) container.classList.add(`fa-${size}`);\n\n if (spin) container.classList.add(\"fa-spin\");\n else if (pulse) container.classList.add(\"fa-pulse\");\n\n const icon = document.createElementNS(svgNS, \"svg\");\n // Auto resize SVG using the view box magic: https://css-tricks.com/scale-svg/\n icon.setAttribute(\n \"viewBox\",\n `0 0 ${iconDefinition.icon[0]} ${iconDefinition.icon[1]}`\n );\n if (color) icon.setAttribute(\"fill\", color);\n\n // Path\n const path = document.createElementNS(svgNS, \"path\");\n const pathData =\n typeof iconDefinition.icon[4] === \"string\"\n ? iconDefinition.icon[4]\n : iconDefinition.icon[4][0];\n path.setAttribute(\"d\", pathData);\n\n icon.appendChild(path);\n container.appendChild(icon);\n\n return container;\n};\n\nexport default fontAwesomeIcon;\n","export interface Listener {\n (event: T): void;\n}\n\nexport interface Disposable {\n dispose: () => void;\n}\n\n/** passes through events as they happen. You will not get events from before you start listening */\nexport default class TypedEvent {\n private listeners: Listener[] = [];\n private listenersOncer: Listener[] = [];\n\n public on = (listener: Listener): Disposable => {\n this.listeners.push(listener);\n return {\n dispose: () => this.off(listener)\n };\n };\n\n public once = (listener: Listener): void => {\n this.listenersOncer.push(listener);\n };\n\n public off = (listener: Listener): void => {\n const callbackIndex = this.listeners.indexOf(listener);\n if (callbackIndex > -1) this.listeners.splice(callbackIndex, 1);\n };\n\n public emit = (event: T): void => {\n /** Update any general listeners */\n this.listeners.forEach(listener => listener(event));\n\n /** Clear the `once` queue */\n this.listenersOncer.forEach(listener => listener(event));\n this.listenersOncer = [];\n };\n\n public pipe = (te: TypedEvent): Disposable => this.on(e => te.emit(e));\n}\n","import {\n AnyObject,\n Position,\n Size,\n WithAgentProps,\n WithModuleProps,\n LinkedVisualConsoleProps,\n LinkedVisualConsolePropsStatus,\n UnknownObject,\n ItemMeta\n} from \"./types\";\n\nimport helpTipIcon from \"./help-tip.png\";\nimport fontAwesomeIcon from \"./FontAwesomeIcon\";\nimport { faPencilAlt, faListAlt } from \"@fortawesome/free-solid-svg-icons\";\nimport \"./autocomplete.css\";\n\n/**\n * Return a number or a default value from a raw value.\n * @param value Raw value from which we will try to extract a valid number.\n * @param defaultValue Default value to use if we cannot extract a valid number.\n * @return A valid number or the default value.\n */\nexport function parseIntOr(value: unknown, defaultValue: T): number | T {\n if (typeof value === \"number\") return value;\n if (typeof value === \"string\" && value.length > 0 && !isNaN(parseInt(value)))\n return parseInt(value);\n else return defaultValue;\n}\n\n/**\n * Return a number or a default value from a raw value.\n * @param value Raw value from which we will try to extract a valid number.\n * @param defaultValue Default value to use if we cannot extract a valid number.\n * @return A valid number or the default value.\n */\nexport function parseFloatOr(value: unknown, defaultValue: T): number | T {\n if (typeof value === \"number\") return value;\n if (\n typeof value === \"string\" &&\n value.length > 0 &&\n !isNaN(parseFloat(value))\n )\n return parseFloat(value);\n else return defaultValue;\n}\n\n/**\n * Check if a string exists and it's not empty.\n * @param value Value to check.\n * @return The check result.\n */\nexport function stringIsEmpty(value?: string | null): boolean {\n return value == null || value.length === 0;\n}\n\n/**\n * Return a not empty string or a default value from a raw value.\n * @param value Raw value from which we will try to extract a non empty string.\n * @param defaultValue Default value to use if we cannot extract a non empty string.\n * @return A non empty string or the default value.\n */\nexport function notEmptyStringOr(\n value: unknown,\n defaultValue: T\n): string | T {\n return typeof value === \"string\" && value.length > 0 ? value : defaultValue;\n}\n\n/**\n * Return a boolean from a raw value.\n * @param value Raw value from which we will try to extract the boolean.\n * @return A valid boolean value. false by default.\n */\nexport function parseBoolean(value: unknown): boolean {\n if (typeof value === \"boolean\") return value;\n else if (typeof value === \"number\") return value > 0;\n else if (typeof value === \"string\") return value === \"1\" || value === \"true\";\n else return false;\n}\n\n/**\n * Return a valid date or a default value from a raw value.\n * @param value Raw value from which we will try to extract a valid date.\n * @param defaultValue Default value to use if we cannot extract a valid date.\n * @return A valid date or the default value.\n */\nexport function parseDateOr(value: unknown, defaultValue: T): Date | T {\n if (value instanceof Date) return value;\n else if (typeof value === \"number\") return new Date(value * 1000);\n else if (\n typeof value === \"string\" &&\n !Number.isNaN(new Date(value).getTime())\n )\n return new Date(value);\n else return defaultValue;\n}\n\n/**\n * Pad the current string with another string (multiple times, if needed)\n * until the resulting string reaches the given length.\n * The padding is applied from the start (left) of the current string.\n * @param value Text that needs to be padded.\n * @param length Length of the returned text.\n * @param pad Text to add.\n * @return Padded text.\n */\nexport function leftPad(\n value: string | number,\n length: number,\n pad: string | number = \" \"\n): string {\n if (typeof value === \"number\") value = `${value}`;\n if (typeof pad === \"number\") pad = `${pad}`;\n\n const diffLength = length - value.length;\n if (diffLength === 0) return value;\n if (diffLength < 0) return value.substr(Math.abs(diffLength));\n\n if (diffLength === pad.length) return `${pad}${value}`;\n if (diffLength < pad.length) return `${pad.substring(0, diffLength)}${value}`;\n\n const repeatTimes = Math.floor(diffLength / pad.length);\n const restLength = diffLength - pad.length * repeatTimes;\n\n let newPad = \"\";\n for (let i = 0; i < repeatTimes; i++) newPad += pad;\n\n if (restLength === 0) return `${newPad}${value}`;\n return `${newPad}${pad.substring(0, restLength)}${value}`;\n}\n\n/* Decoders */\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the position.\n */\nexport function positionPropsDecoder(data: AnyObject): Position {\n return {\n x: parseIntOr(data.x, 0),\n y: parseIntOr(data.y, 0)\n };\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the size.\n * @throws Will throw a TypeError if the width and height are not valid numbers.\n */\nexport function sizePropsDecoder(data: AnyObject): Size | never {\n if (\n data.width == null ||\n isNaN(parseInt(data.width)) ||\n data.height == null ||\n isNaN(parseInt(data.height))\n ) {\n throw new TypeError(\"invalid size.\");\n }\n\n return {\n width: parseInt(data.width),\n height: parseInt(data.height)\n };\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the agent properties.\n */\nexport function agentPropsDecoder(data: AnyObject): WithAgentProps {\n const agentProps: WithAgentProps = {\n agentId: parseIntOr(data.agentId, null),\n agentName: notEmptyStringOr(data.agentName, null),\n agentAlias: notEmptyStringOr(data.agentAlias, null),\n agentDescription: notEmptyStringOr(data.agentDescription, null),\n agentAddress: notEmptyStringOr(data.agentAddress, null),\n agentDisabled: parseBoolean(data.agentDisabled)\n };\n\n return data.metaconsoleId != null\n ? {\n metaconsoleId: data.metaconsoleId,\n ...agentProps // Object spread: http://es6-features.org/#SpreadOperator\n }\n : agentProps;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the module and agent properties.\n */\nexport function modulePropsDecoder(data: AnyObject): WithModuleProps {\n return {\n moduleId: parseIntOr(data.moduleId, null),\n moduleName: notEmptyStringOr(data.moduleName, null),\n moduleDescription: notEmptyStringOr(data.moduleDescription, null),\n moduleDisabled: parseBoolean(data.moduleDisabled),\n ...agentPropsDecoder(data) // Object spread: http://es6-features.org/#SpreadOperator\n };\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the linked visual console properties.\n * @throws Will throw a TypeError if the status calculation properties are invalid.\n */\nexport function linkedVCPropsDecoder(\n data: AnyObject\n): LinkedVisualConsoleProps | never {\n let linkedLayoutStatusProps: LinkedVisualConsolePropsStatus = {\n linkedLayoutStatusType: \"default\"\n };\n switch (data.linkedLayoutStatusType) {\n case \"weight\": {\n const weight = parseIntOr(data.linkedLayoutStatusTypeWeight, null);\n if (weight == null)\n throw new TypeError(\"invalid status calculation properties.\");\n\n if (data.linkedLayoutStatusTypeWeight)\n linkedLayoutStatusProps = {\n linkedLayoutStatusType: \"weight\",\n linkedLayoutStatusTypeWeight: weight\n };\n break;\n }\n case \"service\": {\n const warningThreshold = parseIntOr(\n data.linkedLayoutStatusTypeWarningThreshold,\n null\n );\n const criticalThreshold = parseIntOr(\n data.linkedLayoutStatusTypeCriticalThreshold,\n null\n );\n if (warningThreshold == null || criticalThreshold == null) {\n throw new TypeError(\"invalid status calculation properties.\");\n }\n\n linkedLayoutStatusProps = {\n linkedLayoutStatusType: \"service\",\n linkedLayoutStatusTypeWarningThreshold: warningThreshold,\n linkedLayoutStatusTypeCriticalThreshold: criticalThreshold\n };\n break;\n }\n }\n\n return {\n linkedLayoutId: parseIntOr(data.linkedLayoutId, null),\n linkedLayoutNodeId: parseIntOr(data.linkedLayoutNodeId, null),\n ...linkedLayoutStatusProps // Object spread: http://es6-features.org/#SpreadOperator\n };\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the item's meta properties.\n */\nexport function itemMetaDecoder(data: UnknownObject): ItemMeta | never {\n const receivedAt = parseDateOr(data.receivedAt, null);\n if (receivedAt === null) throw new TypeError(\"invalid meta structure\");\n\n let error = null;\n if (data.error instanceof Error) error = data.error;\n else if (typeof data.error === \"string\") error = new Error(data.error);\n\n return {\n receivedAt,\n error,\n editMode: parseBoolean(data.editMode),\n maintenanceMode: parseBoolean(data.maintenanceMode),\n isFromCache: parseBoolean(data.isFromCache),\n isFetching: false,\n isUpdating: false,\n isBeingMoved: false,\n isBeingResized: false,\n isSelected: false,\n lineMode: false\n };\n}\n\n/**\n * To get a CSS rule with the most used prefixes.\n * @param ruleName Name of the CSS rule.\n * @param ruleValue Value of the CSS rule.\n * @return An array of rules with the prefixes applied.\n */\nexport function prefixedCssRules(\n ruleName: string,\n ruleValue: string\n): string[] {\n const rule = `${ruleName}: ${ruleValue};`;\n return [\n `-webkit-${rule}`,\n `-moz-${rule}`,\n `-ms-${rule}`,\n `-o-${rule}`,\n `${rule}`\n ];\n}\n\n/**\n * Decode a base64 string.\n * @param input Data encoded using base64.\n * @return Decoded data.\n */\nexport function decodeBase64(input: string): string {\n return decodeURIComponent(escape(window.atob(input)));\n}\n\n/**\n * Generate a date representation with the format 'd/m/Y'.\n * @param initialDate Date to be used instead of a generated one.\n * @param locale Locale to use if localization is required and available.\n * @example 24/02/2020.\n * @return Date representation.\n */\nexport function humanDate(date: Date, locale: string | null = null): string {\n if (locale && Intl && Intl.DateTimeFormat) {\n // Format using the user locale.\n const options: Intl.DateTimeFormatOptions = {\n day: \"2-digit\",\n month: \"2-digit\",\n year: \"numeric\"\n };\n return Intl.DateTimeFormat(locale, options).format(date);\n } else {\n // Use getDate, getDay returns the week day.\n const day = leftPad(date.getDate(), 2, 0);\n // The getMonth function returns the month starting by 0.\n const month = leftPad(date.getMonth() + 1, 2, 0);\n const year = leftPad(date.getFullYear(), 4, 0);\n\n // Format: 'd/m/Y'.\n return `${day}/${month}/${year}`;\n }\n}\n\n/**\n * Generate a time representation with the format 'hh:mm:ss'.\n * @param initialDate Date to be used instead of a generated one.\n * @example 01:34:09.\n * @return Time representation.\n */\nexport function humanTime(date: Date): string {\n const hours = leftPad(date.getHours(), 2, 0);\n const minutes = leftPad(date.getMinutes(), 2, 0);\n const seconds = leftPad(date.getSeconds(), 2, 0);\n\n return `${hours}:${minutes}:${seconds}`;\n}\n\ninterface Macro {\n macro: string | RegExp;\n value: string;\n}\n/**\n * Replace the macros of a text.\n * @param macros List of macros and their replacements.\n * @param text Text in which we need to replace the macros.\n */\nexport function replaceMacros(macros: Macro[], text: string): string {\n return macros.reduce(\n (acc, { macro, value }) => acc.replace(macro, value),\n text\n );\n}\n\n/**\n * Create a function which will limit the rate of execution of\n * the selected function to one time for the selected interval.\n * @param delay Interval.\n * @param fn Function to be executed at a limited rate.\n */\nexport function throttle(delay: number, fn: (...args: T[]) => R) {\n let last = 0;\n return (...args: T[]) => {\n const now = Date.now();\n if (now - last < delay) return;\n last = now;\n return fn(...args);\n };\n}\n\n/**\n * Create a function which will call the selected function only\n * after the interval time has passed after its last execution.\n * @param delay Interval.\n * @param fn Function to be executed after the last call.\n */\nexport function debounce(delay: number, fn: (...args: T[]) => void) {\n let timerRef: number | null = null;\n return (...args: T[]) => {\n if (timerRef !== null) window.clearTimeout(timerRef);\n timerRef = window.setTimeout(() => {\n fn(...args);\n timerRef = null;\n }, delay);\n };\n}\n\n/**\n * Retrieve the offset of an element relative to the page.\n * @param el Node used to calculate the offset.\n */\nfunction getOffset(el: HTMLElement | null, parent?: HTMLElement) {\n let x = 0;\n let y = 0;\n while (\n el &&\n !Number.isNaN(el.offsetLeft) &&\n !Number.isNaN(el.offsetTop) &&\n el !== parent\n ) {\n x += el.offsetLeft - el.scrollLeft;\n y += el.offsetTop - el.scrollTop;\n el = el.offsetParent as HTMLElement | null;\n }\n return { top: y, left: x };\n}\n\n/**\n * Add the grab & move functionality to a certain element inside it's container.\n *\n * @param element Element to move.\n * @param onMoved Function to execute when the element moves.\n * @param altContainer Alternative element to contain the moved element.\n *\n * @return A function which will clean the event handlers when executed.\n */\nexport function addMovementListener(\n element: HTMLElement,\n onMoved: (x: Position[\"x\"], y: Position[\"y\"]) => void,\n altContainer?: HTMLElement\n): Function {\n const container = altContainer || (element.parentElement as HTMLElement);\n\n // Store the initial draggable state.\n const isDraggable = element.draggable;\n // Init the coordinates.\n let lastX: Position[\"x\"] = 0;\n let lastY: Position[\"y\"] = 0;\n let lastMouseX: Position[\"x\"] = 0;\n let lastMouseY: Position[\"y\"] = 0;\n let mouseElementOffsetX: Position[\"x\"] = 0;\n let mouseElementOffsetY: Position[\"y\"] = 0;\n // Bounds.\n let containerBounds = container.getBoundingClientRect();\n let containerOffset = getOffset(container);\n let containerTop = containerOffset.top;\n let containerBottom = containerTop + containerBounds.height;\n let containerLeft = containerOffset.left;\n let containerRight = containerLeft + containerBounds.width;\n let elementBounds = element.getBoundingClientRect();\n let borderWidth = window.getComputedStyle(element).borderWidth || \"0\";\n let borderFix = Number.parseInt(borderWidth) * 2;\n\n // Will run onMoved 32ms after its last execution.\n const debouncedMovement = debounce(32, onMoved);\n // Will run onMoved one time max every 16ms.\n const throttledMovement = throttle(16, onMoved);\n\n const handleMove = (e: MouseEvent) => {\n // Calculate the new element coordinates.\n let x = 0;\n let y = 0;\n\n const mouseX = e.pageX;\n const mouseY = e.pageY;\n const mouseDeltaX = mouseX - lastMouseX;\n const mouseDeltaY = mouseY - lastMouseY;\n\n const minX = 0;\n const maxX = containerBounds.width - elementBounds.width + borderFix;\n const minY = 0;\n const maxY = containerBounds.height - elementBounds.height + borderFix;\n\n const outOfBoundsLeft =\n mouseX < containerLeft ||\n (lastX === 0 &&\n mouseDeltaX > 0 &&\n mouseX < containerLeft + mouseElementOffsetX);\n const outOfBoundsRight =\n mouseX > containerRight ||\n mouseDeltaX + lastX + elementBounds.width - borderFix >\n containerBounds.width ||\n (lastX === maxX &&\n mouseDeltaX < 0 &&\n mouseX > containerLeft + maxX + mouseElementOffsetX);\n const outOfBoundsTop =\n mouseY < containerTop ||\n (lastY === 0 &&\n mouseDeltaY > 0 &&\n mouseY < containerTop + mouseElementOffsetY);\n const outOfBoundsBottom =\n mouseY > containerBottom ||\n mouseDeltaY + lastY + elementBounds.height - borderFix >\n containerBounds.height ||\n (lastY === maxY &&\n mouseDeltaY < 0 &&\n mouseY > containerTop + maxY + mouseElementOffsetY);\n\n if (outOfBoundsLeft) x = minX;\n else if (outOfBoundsRight) x = maxX;\n else x = mouseDeltaX + lastX;\n\n if (outOfBoundsTop) y = minY;\n else if (outOfBoundsBottom) y = maxY;\n else y = mouseDeltaY + lastY;\n\n if (x < 0) x = minX;\n if (y < 0) y = minY;\n\n // Store the last mouse coordinates.\n lastMouseX = mouseX;\n lastMouseY = mouseY;\n\n if (x === lastX && y === lastY) return;\n\n // Run the movement events.\n throttledMovement(x, y);\n debouncedMovement(x, y);\n\n // Store the coordinates of the element.\n lastX = x;\n lastY = y;\n };\n const handleEnd = () => {\n // Reset the positions.\n lastX = 0;\n lastY = 0;\n lastMouseX = 0;\n lastMouseY = 0;\n // Remove the move event.\n document.removeEventListener(\"mousemove\", handleMove);\n // Clean itself.\n document.removeEventListener(\"mouseup\", handleEnd);\n // Reset the draggable property to its initial state.\n element.draggable = isDraggable;\n // Reset the body selection property to a default state.\n document.body.style.userSelect = \"auto\";\n };\n const handleStart = (e: MouseEvent) => {\n // Avoid starting the movement on right click.\n if (e.button === 2) return;\n\n e.stopPropagation();\n\n // Disable the drag temporarily.\n element.draggable = false;\n\n // Fix for Firefox browser.\n element.setAttribute(\"ondragstart\", \"return false;\");\n element.setAttribute(\"draggable\", \"false\");\n\n // Store the difference between the cursor and\n // the initial coordinates of the element.\n const elementOffset = getOffset(element, container);\n lastX = elementOffset.left;\n lastY = elementOffset.top;\n\n // Store the mouse position.\n lastMouseX = e.pageX;\n lastMouseY = e.pageY;\n // Store the relative position between the mouse and the element.\n mouseElementOffsetX = e.offsetX;\n mouseElementOffsetY = e.offsetY;\n\n // Initialize the bounds.\n containerBounds = container.getBoundingClientRect();\n containerOffset = getOffset(container);\n containerTop = containerOffset.top;\n containerBottom = containerTop + containerBounds.height;\n containerLeft = containerOffset.left;\n containerRight = containerLeft + containerBounds.width;\n elementBounds = element.getBoundingClientRect();\n borderWidth = window.getComputedStyle(element).borderWidth || \"0\";\n borderFix = Number.parseInt(borderWidth) * 2;\n\n // Listen to the mouse movement.\n document.addEventListener(\"mousemove\", handleMove);\n // Listen to the moment when the mouse click is not pressed anymore.\n document.addEventListener(\"mouseup\", handleEnd);\n // Limit the mouse selection of the body.\n document.body.style.userSelect = \"none\";\n };\n\n // Event to listen the init of the movement.\n element.addEventListener(\"mousedown\", handleStart);\n\n // Returns a function to clean the event listeners.\n return () => {\n element.removeEventListener(\"mousedown\", handleStart);\n handleEnd();\n };\n}\n\n/**\n * Add the grab & resize functionality to a certain element.\n *\n * @param element Element to move.\n * @param onResized Function to execute when the element is resized.\n *\n * @return A function which will clean the event handlers when executed.\n */\nexport function addResizementListener(\n element: HTMLElement,\n onResized: (x: Position[\"x\"], y: Position[\"y\"]) => void\n): Function {\n const minWidth = 15;\n const minHeight = 15;\n\n const resizeDraggable = document.createElement(\"div\");\n resizeDraggable.className = \"resize-draggable\";\n element.appendChild(resizeDraggable);\n\n // Container of the resizable element.\n const container = element.parentElement as HTMLElement;\n // Store the initial draggable state.\n const isDraggable = element.draggable;\n // Init the coordinates.\n let lastWidth: Size[\"width\"] = 0;\n let lastHeight: Size[\"height\"] = 0;\n let lastMouseX: Position[\"x\"] = 0;\n let lastMouseY: Position[\"y\"] = 0;\n let mouseElementOffsetX: Position[\"x\"] = 0;\n let mouseElementOffsetY: Position[\"y\"] = 0;\n // Init the bounds.\n let containerBounds = container.getBoundingClientRect();\n let containerOffset = getOffset(container);\n let containerTop = containerOffset.top;\n let containerBottom = containerTop + containerBounds.height;\n let containerLeft = containerOffset.left;\n let containerRight = containerLeft + containerBounds.width;\n let elementOffset = getOffset(element);\n let elementTop = elementOffset.top;\n let elementLeft = elementOffset.left;\n let borderWidth = window.getComputedStyle(element).borderWidth || \"0\";\n let borderFix = Number.parseInt(borderWidth);\n\n // Will run onResized 32ms after its last execution.\n const debouncedResizement = debounce(32, onResized);\n // Will run onResized one time max every 16ms.\n const throttledResizement = throttle(16, onResized);\n\n const handleResize = (e: MouseEvent) => {\n // Calculate the new element coordinates.\n let width = lastWidth + (e.pageX - lastMouseX);\n let height = lastHeight + (e.pageY - lastMouseY);\n\n if (width === lastWidth && height === lastHeight) return;\n\n if (\n width < lastWidth &&\n e.pageX > elementLeft + (lastWidth - mouseElementOffsetX)\n )\n return;\n\n if (width < minWidth) {\n // Minimum value.\n width = minWidth;\n } else if (width + elementLeft - borderFix / 2 >= containerRight) {\n // Limit the size to the container.\n width = containerRight - elementLeft;\n }\n if (height < minHeight) {\n // Minimum value.\n height = minHeight;\n } else if (height + elementTop - borderFix / 2 >= containerBottom) {\n // Limit the size to the container.\n height = containerBottom - elementTop;\n }\n\n // Run the movement events.\n throttledResizement(width, height);\n debouncedResizement(width, height);\n\n // Store the coordinates of the element.\n lastWidth = width;\n lastHeight = height;\n // Store the last mouse coordinates.\n lastMouseX = e.pageX;\n lastMouseY = e.pageY;\n };\n const handleEnd = () => {\n // Reset the positions.\n lastWidth = 0;\n lastHeight = 0;\n lastMouseX = 0;\n lastMouseY = 0;\n mouseElementOffsetX = 0;\n mouseElementOffsetY = 0;\n // Remove the move event.\n document.removeEventListener(\"mousemove\", handleResize);\n // Clean itself.\n document.removeEventListener(\"mouseup\", handleEnd);\n // Reset the draggable property to its initial state.\n element.draggable = isDraggable;\n // Reset the body selection property to a default state.\n document.body.style.userSelect = \"auto\";\n };\n const handleStart = (e: MouseEvent) => {\n e.stopPropagation();\n\n // Disable the drag temporarily.\n element.draggable = false;\n\n // Store the difference between the cursor and\n // the initial coordinates of the element.\n const { width, height } = element.getBoundingClientRect();\n lastWidth = width;\n lastHeight = height;\n // Store the mouse position.\n lastMouseX = e.pageX;\n lastMouseY = e.pageY;\n // Store the relative position between the mouse and the element.\n mouseElementOffsetX = e.offsetX;\n mouseElementOffsetY = e.offsetY;\n\n // Initialize the bounds.\n containerBounds = container.getBoundingClientRect();\n containerOffset = getOffset(container);\n containerTop = containerOffset.top;\n containerBottom = containerTop + containerBounds.height;\n containerLeft = containerOffset.left;\n containerRight = containerLeft + containerBounds.width;\n elementOffset = getOffset(element);\n elementTop = elementOffset.top;\n elementLeft = elementOffset.left;\n\n // Listen to the mouse movement.\n document.addEventListener(\"mousemove\", handleResize);\n // Listen to the moment when the mouse click is not pressed anymore.\n document.addEventListener(\"mouseup\", handleEnd);\n // Limit the mouse selection of the body.\n document.body.style.userSelect = \"none\";\n };\n\n // Event to listen the init of the movement.\n resizeDraggable.addEventListener(\"mousedown\", handleStart);\n\n // Returns a function to clean the event listeners.\n return () => {\n resizeDraggable.remove();\n handleEnd();\n };\n}\n\n// TODO: Document and code\nexport function t(text: string): string {\n return text;\n}\n\nexport function helpTip(text: string): HTMLElement {\n const container = document.createElement(\"a\");\n container.className = \"tip\";\n const icon = document.createElement(\"img\");\n icon.src = helpTipIcon;\n icon.className = \"forced_title\";\n icon.setAttribute(\"alt\", text);\n icon.setAttribute(\"data-title\", text);\n icon.setAttribute(\"data-use_title_for_force_title\", \"1\");\n\n container.appendChild(icon);\n\n return container;\n}\n\ninterface PeriodSelectorOption {\n value: number;\n text: string;\n}\nexport function periodSelector(\n selectedValue: PeriodSelectorOption[\"value\"] | null,\n emptyOption: PeriodSelectorOption | null,\n options: PeriodSelectorOption[],\n onChange: (value: PeriodSelectorOption[\"value\"]) => void\n): HTMLElement {\n if (selectedValue === null) selectedValue = 0;\n const initialValue = emptyOption ? emptyOption.value : 0;\n let currentValue: number =\n selectedValue != null ? selectedValue : initialValue;\n // Main container.\n const container = document.createElement(\"div\");\n // Container for the period selector.\n const periodsContainer = document.createElement(\"div\");\n const selectPeriods = document.createElement(\"select\");\n const useManualPeriodsBtn = document.createElement(\"a\");\n // Container for the custom period input.\n const manualPeriodsContainer = document.createElement(\"div\");\n const inputTimeValue = document.createElement(\"input\");\n const unitsSelect = document.createElement(\"select\");\n const usePeriodsBtn = document.createElement(\"a\");\n // Units to multiply the custom period input.\n const unitOptions: { value: string; text: string }[] = [\n { value: \"1\", text: t(\"Seconds\").toLowerCase() },\n { value: \"60\", text: t(\"Minutes\").toLowerCase() },\n { value: \"3600\", text: t(\"Hours\").toLowerCase() },\n { value: \"86400\", text: t(\"Days\").toLowerCase() },\n { value: \"604800\", text: t(\"Weeks\").toLowerCase() },\n { value: `${86400 * 30}`, text: t(\"Months\").toLowerCase() },\n { value: `${86400 * 30 * 12}`, text: t(\"Years\").toLowerCase() }\n ];\n\n // Will be executed every time the value changes.\n const handleChange = (value: number) => {\n currentValue = value;\n onChange(currentValue);\n };\n // Will return the first period option smaller than the value.\n const findPeriodsOption = (value: number) =>\n options\n .sort((a, b) => (a.value < b.value ? 1 : -1))\n .find(optionVal => value >= optionVal.value);\n // Will return the first multiple of the value using the custom input multipliers.\n const findManualPeriodsOptionValue = (value: number) =>\n unitOptions\n .map(unitOption => Number.parseInt(unitOption.value))\n .sort((a, b) => (a < b ? 1 : -1))\n .find(optionVal => value % optionVal === 0);\n // Will find and set a valid option for the period selector.\n const setPeriodsValue = (value: number) => {\n let option = findPeriodsOption(value);\n selectPeriods.value = `${option ? option.value : initialValue}`;\n };\n // Will transform the value to show the perfect fit for the custom input period.\n const setManualPeriodsValue = (value: number) => {\n const optionVal = findManualPeriodsOptionValue(value);\n if (optionVal) {\n inputTimeValue.value = `${value / optionVal}`;\n unitsSelect.value = `${optionVal}`;\n } else {\n inputTimeValue.value = `${value}`;\n unitsSelect.value = \"1\";\n }\n };\n\n // Will modify the value to show the perfect fit for this element and show its container.\n const showPeriods = () => {\n let option = findPeriodsOption(currentValue);\n const newValue = option ? option.value : initialValue;\n selectPeriods.value = `${newValue}`;\n\n if (newValue !== currentValue) handleChange(newValue);\n\n container.replaceChild(periodsContainer, manualPeriodsContainer);\n };\n // Will modify the value to show the perfect fit for this element and show its container.\n const showManualPeriods = () => {\n const optionVal = findManualPeriodsOptionValue(currentValue);\n\n if (optionVal) {\n inputTimeValue.value = `${currentValue / optionVal}`;\n unitsSelect.value = `${optionVal}`;\n } else {\n inputTimeValue.value = `${currentValue}`;\n unitsSelect.value = \"1\";\n }\n\n container.replaceChild(manualPeriodsContainer, periodsContainer);\n };\n\n // Append the elements\n\n periodsContainer.appendChild(selectPeriods);\n periodsContainer.appendChild(useManualPeriodsBtn);\n\n manualPeriodsContainer.appendChild(inputTimeValue);\n manualPeriodsContainer.appendChild(unitsSelect);\n manualPeriodsContainer.appendChild(usePeriodsBtn);\n\n if (\n options.find(option => option.value === selectedValue) ||\n (emptyOption && emptyOption.value === selectedValue)\n ) {\n // Start with the custom periods select.\n container.appendChild(periodsContainer);\n } else {\n // Start with the manual time input\n container.appendChild(manualPeriodsContainer);\n }\n\n // Set and fill the elements.\n\n // Periods selector.\n\n selectPeriods.addEventListener(\"change\", (e: Event) =>\n handleChange(\n parseIntOr((e.target as HTMLSelectElement).value, initialValue)\n )\n );\n if (emptyOption) {\n const optionElem = document.createElement(\"option\");\n optionElem.value = `${emptyOption.value}`;\n optionElem.text = emptyOption.text;\n selectPeriods.appendChild(optionElem);\n }\n options.forEach(option => {\n const optionElem = document.createElement(\"option\");\n optionElem.value = `${option.value}`;\n optionElem.text = option.text;\n selectPeriods.appendChild(optionElem);\n });\n\n setPeriodsValue(selectedValue);\n\n useManualPeriodsBtn.appendChild(\n fontAwesomeIcon(faPencilAlt, t(\"Show manual period input\"), {\n size: \"small\"\n })\n );\n useManualPeriodsBtn.addEventListener(\"click\", e => {\n e.preventDefault();\n showManualPeriods();\n });\n\n // Manual periods input.\n\n inputTimeValue.type = \"number\";\n inputTimeValue.min = \"0\";\n inputTimeValue.required = true;\n inputTimeValue.addEventListener(\"change\", (e: Event) =>\n handleChange(\n parseIntOr((e.target as HTMLSelectElement).value, 0) *\n parseIntOr(unitsSelect.value, 1)\n )\n );\n // Select for time units.\n unitsSelect.addEventListener(\"change\", (e: Event) =>\n handleChange(\n parseIntOr(inputTimeValue.value, 0) *\n parseIntOr((e.target as HTMLSelectElement).value, 1)\n )\n );\n unitOptions.forEach(option => {\n const optionElem = document.createElement(\"option\");\n optionElem.value = `${option.value}`;\n optionElem.text = option.text;\n unitsSelect.appendChild(optionElem);\n });\n\n setManualPeriodsValue(selectedValue);\n\n usePeriodsBtn.appendChild(\n fontAwesomeIcon(faListAlt, t(\"Show periods selector\"), { size: \"small\" })\n );\n usePeriodsBtn.addEventListener(\"click\", e => {\n e.preventDefault();\n showPeriods();\n });\n\n return container;\n}\n\n/**\n * Cuts the text if their length is greater than the selected max length\n * and applies the selected ellipse to the result text.\n * @param str Text to cut\n * @param max Maximum length after cutting the text\n * @param ellipse String to be added to the cutted text\n * @returns Full text or text cutted with the ellipse\n */\nexport function ellipsize(\n str: string,\n max: number = 140,\n ellipse: string = \"…\"\n): string {\n return str.trim().length > max ? str.substr(0, max).trim() + ellipse : str;\n}\n\n// TODO: Document\nexport function autocompleteInput(\n initialValue: string | null,\n onDataRequested: (value: string, done: (data: T[]) => void) => void,\n renderListElement: (data: T) => HTMLElement,\n onSelected: (data: T) => string\n): HTMLElement {\n const container = document.createElement(\"div\");\n container.classList.add(\"autocomplete\");\n\n const input = document.createElement(\"input\");\n input.type = \"text\";\n input.required = true;\n if (initialValue !== null) input.value = initialValue;\n\n const list = document.createElement(\"div\");\n list.classList.add(\"autocomplete-items\");\n\n const cleanList = () => {\n list.innerHTML = \"\";\n };\n\n input.addEventListener(\"keyup\", e => {\n const value = (e.target as HTMLInputElement).value;\n if (value) {\n onDataRequested(value, data => {\n cleanList();\n if (data instanceof Array) {\n data.forEach(item => {\n const listElement = renderListElement(item);\n listElement.addEventListener(\"click\", () => {\n input.value = onSelected(item);\n cleanList();\n });\n list.appendChild(listElement);\n });\n }\n });\n } else {\n cleanList();\n }\n });\n\n container.appendChild(input);\n container.appendChild(list);\n\n return container;\n}\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// define __esModule on exports\n__webpack_require__.r = function(exports) {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","import {\n WithModuleProps,\n LinkedVisualConsoleProps,\n AnyObject\n} from \"../lib/types\";\n\nimport {\n modulePropsDecoder,\n linkedVCPropsDecoder,\n notEmptyStringOr\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type StaticGraphProps = {\n type: ItemType.STATIC_GRAPH;\n imageSrc: string; // URL?\n showLastValueTooltip: \"default\" | \"enabled\" | \"disabled\";\n statusImageSrc: string | null; // URL?\n lastValue: string | null;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param showLastValueTooltip Raw value.\n */\nconst parseShowLastValueTooltip = (\n showLastValueTooltip: unknown\n): StaticGraphProps[\"showLastValueTooltip\"] => {\n switch (showLastValueTooltip) {\n case \"default\":\n case \"enabled\":\n case \"disabled\":\n return showLastValueTooltip;\n default:\n return \"default\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the static graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function staticGraphPropsDecoder(\n data: AnyObject\n): StaticGraphProps | never {\n if (typeof data.imageSrc !== \"string\" || data.imageSrc.length === 0) {\n throw new TypeError(\"invalid image src.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.STATIC_GRAPH,\n imageSrc: data.imageSrc,\n showLastValueTooltip: parseShowLastValueTooltip(data.showLastValueTooltip),\n statusImageSrc: notEmptyStringOr(data.statusImageSrc, null),\n lastValue: notEmptyStringOr(data.lastValue, null),\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class StaticGraph extends Item {\n protected createDomElement(): HTMLElement {\n const imgSrc = this.props.statusImageSrc || this.props.imageSrc;\n const element = document.createElement(\"div\");\n element.className = \"static-graph\";\n element.setAttribute(\"ondragstart\", \"return false;\");\n element.setAttribute(\"draggable\", \"false\");\n element.style.backgroundImage = `url(${imgSrc})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Show last value in a tooltip.\n if (\n this.props.lastValue !== null &&\n this.props.showLastValueTooltip !== \"disabled\"\n ) {\n element.className = \"static-graph image forced_title\";\n element.setAttribute(\"data-use_title_for_force_title\", \"1\");\n element.setAttribute(\"data-title\", this.props.lastValue);\n }\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n const imgSrc = this.props.statusImageSrc || this.props.imageSrc;\n element.style.backgroundImage = `url(${imgSrc})`;\n }\n}\n","import { LinkedVisualConsoleProps, AnyObject } from \"../lib/types\";\nimport { linkedVCPropsDecoder } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type IconProps = {\n type: ItemType.ICON;\n image: string;\n imageSrc: string; // URL?\n} & ItemProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the icon props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function iconPropsDecoder(data: AnyObject): IconProps | never {\n if (typeof data.imageSrc !== \"string\" || data.imageSrc.length === 0) {\n throw new TypeError(\"invalid image src.\");\n }\n\n if (typeof data.image !== \"string\" || data.image.length === 0) {\n throw new TypeError(\"invalid image.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.ICON,\n image: data.image,\n imageSrc: data.imageSrc,\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class Icon extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"icon \" + this.props.image;\n element.style.backgroundImage = `url(${this.props.imageSrc})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n element.style.backgroundImage = `url(${this.props.imageSrc})`;\n }\n}\n","/*!\n * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */\nvar prefix = \"fas\";\nvar faAd = {\n prefix: 'fas',\n iconName: 'ad',\n icon: [512, 512, [], \"f641\", \"M157.52 272h36.96L176 218.78 157.52 272zM352 256c-13.23 0-24 10.77-24 24s10.77 24 24 24 24-10.77 24-24-10.77-24-24-24zM464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM250.58 352h-16.94c-6.81 0-12.88-4.32-15.12-10.75L211.15 320h-70.29l-7.38 21.25A16 16 0 0 1 118.36 352h-16.94c-11.01 0-18.73-10.85-15.12-21.25L140 176.12A23.995 23.995 0 0 1 162.67 160h26.66A23.99 23.99 0 0 1 212 176.13l53.69 154.62c3.61 10.4-4.11 21.25-15.11 21.25zM424 336c0 8.84-7.16 16-16 16h-16c-4.85 0-9.04-2.27-11.98-5.68-8.62 3.66-18.09 5.68-28.02 5.68-39.7 0-72-32.3-72-72s32.3-72 72-72c8.46 0 16.46 1.73 24 4.42V176c0-8.84 7.16-16 16-16h16c8.84 0 16 7.16 16 16v160z\"]\n};\nvar faAddressBook = {\n prefix: 'fas',\n iconName: 'address-book',\n icon: [448, 512, [], \"f2b9\", \"M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z\"]\n};\nvar faAddressCard = {\n prefix: 'fas',\n iconName: 'address-card',\n icon: [576, 512, [], \"f2bb\", \"M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faAdjust = {\n prefix: 'fas',\n iconName: 'adjust',\n icon: [512, 512, [], \"f042\", \"M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z\"]\n};\nvar faAirFreshener = {\n prefix: 'fas',\n iconName: 'air-freshener',\n icon: [512, 512, [], \"f5d0\", \"M224 160H96C43 160 0 203 0 256V480C0 497.625 14.375 512 32 512H288C305.625 512 320 497.625 320 480V256C320 203 277 160 224 160ZM160 416C115.875 416 80 380.125 80 336S115.875 256 160 256S240 291.875 240 336S204.125 416 160 416ZM224 32C224 14.375 209.625 0 192 0H128C110.375 0 96 14.375 96 32V128H224V32ZM381.781 51.578C383 50.969 384 49.359 384 48C384 46.625 383 45.031 381.781 44.422L352 32L339.562 2.219C338.969 1 337.375 0 336 0S333.031 1 332.406 2.219L320 32L290.219 44.422C289 45.031 288 46.625 288 48C288 49.359 289 50.969 290.219 51.578L320 64L332.406 93.781C333.031 95 334.625 96 336 96S338.969 95 339.562 93.781L352 64L381.781 51.578ZM448 64L460.406 93.781C461.031 95 462.625 96 464 96S466.969 95 467.562 93.781L480 64L509.781 51.578C511 50.969 512 49.359 512 48C512 46.625 511 45.031 509.781 44.422L480 32L467.562 2.219C466.969 1 465.375 0 464 0S461.031 1 460.406 2.219L448 32L418.219 44.422C417 45.031 416 46.625 416 48C416 49.359 417 50.969 418.219 51.578L448 64ZM480 224L467.562 194.219C466.969 193 465.375 192 464 192S461.031 193 460.406 194.219L448 224L418.219 236.422C417 237.031 416 238.625 416 240C416 241.359 417 242.969 418.219 243.578L448 256L460.406 285.781C461.031 287 462.625 288 464 288S466.969 287 467.562 285.781L480 256L509.781 243.578C511 242.969 512 241.359 512 240C512 238.625 511 237.031 509.781 236.422L480 224ZM445.781 147.578C447 146.969 448 145.359 448 144C448 142.625 447 141.031 445.781 140.422L416 128L403.562 98.219C402.969 97 401.375 96 400 96S397.031 97 396.406 98.219L384 128L354.219 140.422C353 141.031 352 142.625 352 144C352 145.359 353 146.969 354.219 147.578L384 160L396.406 189.781C397.031 191 398.625 192 400 192S402.969 191 403.562 189.781L416 160L445.781 147.578Z\"]\n};\nvar faAlignCenter = {\n prefix: 'fas',\n iconName: 'align-center',\n icon: [448, 512, [], \"f037\", \"M432 160H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 256H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM108.1 96h231.81A12.09 12.09 0 0 0 352 83.9V44.09A12.09 12.09 0 0 0 339.91 32H108.1A12.09 12.09 0 0 0 96 44.09V83.9A12.1 12.1 0 0 0 108.1 96zm231.81 256A12.09 12.09 0 0 0 352 339.9v-39.81A12.09 12.09 0 0 0 339.91 288H108.1A12.09 12.09 0 0 0 96 300.09v39.81a12.1 12.1 0 0 0 12.1 12.1z\"]\n};\nvar faAlignJustify = {\n prefix: 'fas',\n iconName: 'align-justify',\n icon: [448, 512, [], \"f039\", \"M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faAlignLeft = {\n prefix: 'fas',\n iconName: 'align-left',\n icon: [448, 512, [], \"f036\", \"M12.83 352h262.34A12.82 12.82 0 0 0 288 339.17v-38.34A12.82 12.82 0 0 0 275.17 288H12.83A12.82 12.82 0 0 0 0 300.83v38.34A12.82 12.82 0 0 0 12.83 352zm0-256h262.34A12.82 12.82 0 0 0 288 83.17V44.83A12.82 12.82 0 0 0 275.17 32H12.83A12.82 12.82 0 0 0 0 44.83v38.34A12.82 12.82 0 0 0 12.83 96zM432 160H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 256H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faAlignRight = {\n prefix: 'fas',\n iconName: 'align-right',\n icon: [448, 512, [], \"f038\", \"M16 224h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm416 192H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm3.17-384H172.83A12.82 12.82 0 0 0 160 44.83v38.34A12.82 12.82 0 0 0 172.83 96h262.34A12.82 12.82 0 0 0 448 83.17V44.83A12.82 12.82 0 0 0 435.17 32zm0 256H172.83A12.82 12.82 0 0 0 160 300.83v38.34A12.82 12.82 0 0 0 172.83 352h262.34A12.82 12.82 0 0 0 448 339.17v-38.34A12.82 12.82 0 0 0 435.17 288z\"]\n};\nvar faAllergies = {\n prefix: 'fas',\n iconName: 'allergies',\n icon: [448, 512, [], \"f461\", \"M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z\"]\n};\nvar faAmbulance = {\n prefix: 'fas',\n iconName: 'ambulance',\n icon: [640, 512, [], \"f0f9\", \"M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z\"]\n};\nvar faAmericanSignLanguageInterpreting = {\n prefix: 'fas',\n iconName: 'american-sign-language-interpreting',\n icon: [640, 512, [], \"f2a3\", \"M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z\"]\n};\nvar faAnchor = {\n prefix: 'fas',\n iconName: 'anchor',\n icon: [576, 512, [], \"f13d\", \"M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z\"]\n};\nvar faAngleDoubleDown = {\n prefix: 'fas',\n iconName: 'angle-double-down',\n icon: [320, 512, [], \"f103\", \"M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z\"]\n};\nvar faAngleDoubleLeft = {\n prefix: 'fas',\n iconName: 'angle-double-left',\n icon: [448, 512, [], \"f100\", \"M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z\"]\n};\nvar faAngleDoubleRight = {\n prefix: 'fas',\n iconName: 'angle-double-right',\n icon: [448, 512, [], \"f101\", \"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"]\n};\nvar faAngleDoubleUp = {\n prefix: 'fas',\n iconName: 'angle-double-up',\n icon: [320, 512, [], \"f102\", \"M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z\"]\n};\nvar faAngleDown = {\n prefix: 'fas',\n iconName: 'angle-down',\n icon: [320, 512, [], \"f107\", \"M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z\"]\n};\nvar faAngleLeft = {\n prefix: 'fas',\n iconName: 'angle-left',\n icon: [256, 512, [], \"f104\", \"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z\"]\n};\nvar faAngleRight = {\n prefix: 'fas',\n iconName: 'angle-right',\n icon: [256, 512, [], \"f105\", \"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z\"]\n};\nvar faAngleUp = {\n prefix: 'fas',\n iconName: 'angle-up',\n icon: [320, 512, [], \"f106\", \"M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z\"]\n};\nvar faAngry = {\n prefix: 'fas',\n iconName: 'angry',\n icon: [496, 512, [], \"f556\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z\"]\n};\nvar faAnkh = {\n prefix: 'fas',\n iconName: 'ankh',\n icon: [320, 512, [], \"f644\", \"M296 256h-44.62C272.46 222.01 288 181.65 288 144 288 55.63 230.69 0 160 0S32 55.63 32 144c0 37.65 15.54 78.01 36.62 112H24c-13.25 0-24 10.74-24 24v32c0 13.25 10.75 24 24 24h96v152c0 13.25 10.75 24 24 24h32c13.25 0 24-10.75 24-24V336h96c13.25 0 24-10.75 24-24v-32c0-13.26-10.75-24-24-24zM160 80c29.61 0 48 24.52 48 64 0 34.66-27.14 78.14-48 100.87-20.86-22.72-48-66.21-48-100.87 0-39.48 18.39-64 48-64z\"]\n};\nvar faAppleAlt = {\n prefix: 'fas',\n iconName: 'apple-alt',\n icon: [448, 512, [], \"f5d1\", \"M350.85 129c25.97 4.67 47.27 18.67 63.92 42 14.65 20.67 24.64 46.67 29.96 78 4.67 28.67 4.32 57.33-1 86-7.99 47.33-23.97 87-47.94 119-28.64 38.67-64.59 58-107.87 58-10.66 0-22.3-3.33-34.96-10-8.66-5.33-18.31-8-28.97-8s-20.3 2.67-28.97 8c-12.66 6.67-24.3 10-34.96 10-43.28 0-79.23-19.33-107.87-58-23.97-32-39.95-71.67-47.94-119-5.32-28.67-5.67-57.33-1-86 5.32-31.33 15.31-57.33 29.96-78 16.65-23.33 37.95-37.33 63.92-42 15.98-2.67 37.95-.33 65.92 7 23.97 6.67 44.28 14.67 60.93 24 16.65-9.33 36.96-17.33 60.93-24 27.98-7.33 49.96-9.67 65.94-7zm-54.94-41c-9.32 8.67-21.65 15-36.96 19-10.66 3.33-22.3 5-34.96 5l-14.98-1c-1.33-9.33-1.33-20 0-32 2.67-24 10.32-42.33 22.97-55 9.32-8.67 21.65-15 36.96-19 10.66-3.33 22.3-5 34.96-5l14.98 1 1 15c0 12.67-1.67 24.33-4.99 35-3.99 15.33-10.31 27.67-18.98 37z\"]\n};\nvar faArchive = {\n prefix: 'fas',\n iconName: 'archive',\n icon: [512, 512, [], \"f187\", \"M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z\"]\n};\nvar faArchway = {\n prefix: 'fas',\n iconName: 'archway',\n icon: [576, 512, [], \"f557\", \"M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z\"]\n};\nvar faArrowAltCircleDown = {\n prefix: 'fas',\n iconName: 'arrow-alt-circle-down',\n icon: [512, 512, [], \"f358\", \"M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z\"]\n};\nvar faArrowAltCircleLeft = {\n prefix: 'fas',\n iconName: 'arrow-alt-circle-left',\n icon: [512, 512, [], \"f359\", \"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z\"]\n};\nvar faArrowAltCircleRight = {\n prefix: 'fas',\n iconName: 'arrow-alt-circle-right',\n icon: [512, 512, [], \"f35a\", \"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\"]\n};\nvar faArrowAltCircleUp = {\n prefix: 'fas',\n iconName: 'arrow-alt-circle-up',\n icon: [512, 512, [], \"f35b\", \"M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z\"]\n};\nvar faArrowCircleDown = {\n prefix: 'fas',\n iconName: 'arrow-circle-down',\n icon: [512, 512, [], \"f0ab\", \"M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z\"]\n};\nvar faArrowCircleLeft = {\n prefix: 'fas',\n iconName: 'arrow-circle-left',\n icon: [512, 512, [], \"f0a8\", \"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z\"]\n};\nvar faArrowCircleRight = {\n prefix: 'fas',\n iconName: 'arrow-circle-right',\n icon: [512, 512, [], \"f0a9\", \"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z\"]\n};\nvar faArrowCircleUp = {\n prefix: 'fas',\n iconName: 'arrow-circle-up',\n icon: [512, 512, [], \"f0aa\", \"M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z\"]\n};\nvar faArrowDown = {\n prefix: 'fas',\n iconName: 'arrow-down',\n icon: [448, 512, [], \"f063\", \"M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z\"]\n};\nvar faArrowLeft = {\n prefix: 'fas',\n iconName: 'arrow-left',\n icon: [448, 512, [], \"f060\", \"M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z\"]\n};\nvar faArrowRight = {\n prefix: 'fas',\n iconName: 'arrow-right',\n icon: [448, 512, [], \"f061\", \"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"]\n};\nvar faArrowUp = {\n prefix: 'fas',\n iconName: 'arrow-up',\n icon: [448, 512, [], \"f062\", \"M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z\"]\n};\nvar faArrowsAlt = {\n prefix: 'fas',\n iconName: 'arrows-alt',\n icon: [512, 512, [], \"f0b2\", \"M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z\"]\n};\nvar faArrowsAltH = {\n prefix: 'fas',\n iconName: 'arrows-alt-h',\n icon: [512, 512, [], \"f337\", \"M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z\"]\n};\nvar faArrowsAltV = {\n prefix: 'fas',\n iconName: 'arrows-alt-v',\n icon: [256, 512, [], \"f338\", \"M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z\"]\n};\nvar faAssistiveListeningSystems = {\n prefix: 'fas',\n iconName: 'assistive-listening-systems',\n icon: [512, 512, [], \"f2a2\", \"M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z\"]\n};\nvar faAsterisk = {\n prefix: 'fas',\n iconName: 'asterisk',\n icon: [512, 512, [], \"f069\", \"M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z\"]\n};\nvar faAt = {\n prefix: 'fas',\n iconName: 'at',\n icon: [512, 512, [], \"f1fa\", \"M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z\"]\n};\nvar faAtlas = {\n prefix: 'fas',\n iconName: 'atlas',\n icon: [448, 512, [], \"f558\", \"M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z\"]\n};\nvar faAtom = {\n prefix: 'fas',\n iconName: 'atom',\n icon: [448, 512, [], \"f5d2\", \"M223.99908,224a32,32,0,1,0,32.00782,32A32.06431,32.06431,0,0,0,223.99908,224Zm214.172-96c-10.877-19.5-40.50979-50.75-116.27544-41.875C300.39168,34.875,267.63386,0,223.99908,0s-76.39066,34.875-97.89653,86.125C50.3369,77.375,20.706,108.5,9.82907,128-6.54984,157.375-5.17484,201.125,34.958,256-5.17484,310.875-6.54984,354.625,9.82907,384c29.13087,52.375,101.64652,43.625,116.27348,41.875C147.60842,477.125,180.36429,512,223.99908,512s76.3926-34.875,97.89652-86.125c14.62891,1.75,87.14456,10.5,116.27544-41.875C454.55,354.625,453.175,310.875,413.04017,256,453.175,201.125,454.55,157.375,438.171,128ZM63.33886,352c-4-7.25-.125-24.75,15.00391-48.25,6.87695,6.5,14.12891,12.875,21.88087,19.125,1.625,13.75,4,27.125,6.75,40.125C82.34472,363.875,67.09081,358.625,63.33886,352Zm36.88478-162.875c-7.752,6.25-15.00392,12.625-21.88087,19.125-15.12891-23.5-19.00392-41-15.00391-48.25,3.377-6.125,16.37891-11.5,37.88478-11.5,1.75,0,3.875.375,5.75.375C104.09864,162.25,101.84864,175.625,100.22364,189.125ZM223.99908,64c9.50195,0,22.25586,13.5,33.88282,37.25-11.252,3.75-22.50391,8-33.88282,12.875-11.377-4.875-22.62892-9.125-33.88283-12.875C201.74516,77.5,214.49712,64,223.99908,64Zm0,384c-9.502,0-22.25392-13.5-33.88283-37.25,11.25391-3.75,22.50587-8,33.88283-12.875C235.378,402.75,246.62994,407,257.8819,410.75,246.25494,434.5,233.501,448,223.99908,448Zm0-112a80,80,0,1,1,80-80A80.00023,80.00023,0,0,1,223.99908,336ZM384.6593,352c-3.625,6.625-19.00392,11.875-43.63479,11,2.752-13,5.127-26.375,6.752-40.125,7.75195-6.25,15.00391-12.625,21.87891-19.125C384.7843,327.25,388.6593,344.75,384.6593,352ZM369.65538,208.25c-6.875-6.5-14.127-12.875-21.87891-19.125-1.625-13.5-3.875-26.875-6.752-40.25,1.875,0,4.002-.375,5.752-.375,21.50391,0,34.50782,5.375,37.88283,11.5C388.6593,167.25,384.7843,184.75,369.65538,208.25Z\"]\n};\nvar faAudioDescription = {\n prefix: 'fas',\n iconName: 'audio-description',\n icon: [512, 512, [], \"f29e\", \"M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z\"]\n};\nvar faAward = {\n prefix: 'fas',\n iconName: 'award',\n icon: [384, 512, [], \"f559\", \"M97.12 362.63c-8.69-8.69-4.16-6.24-25.12-11.85-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32-21.07 5.64-16.45 3.18-25.12 11.85-13.79 13.78-32.12 21.37-51.62 21.37-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340c15.28-15.55 17.03-14.21 38.79-20.14 13.89-3.79 24.75-14.84 28.47-28.98 7.48-28.4 5.54-24.97 25.95-45.75 10.17-10.35 14.14-25.44 10.42-39.58-7.47-28.38-7.48-24.42 0-52.83 3.72-14.14-.25-29.23-10.42-39.58-20.41-20.78-18.47-17.36-25.95-45.75-3.72-14.14-14.58-25.19-28.47-28.98-27.88-7.61-24.52-5.62-44.95-26.41-10.17-10.35-25-14.4-38.89-10.61-27.87 7.6-23.98 7.61-51.9 0-13.89-3.79-28.72.25-38.89 10.61-20.41 20.78-17.05 18.8-44.94 26.41-13.89 3.79-24.75 14.84-28.47 28.98-7.47 28.39-5.54 24.97-25.95 45.75-10.17 10.35-14.15 25.44-10.42 39.58 7.47 28.36 7.48 24.4 0 52.82-3.72 14.14.25 29.23 10.42 39.59 20.41 20.78 18.47 17.35 25.95 45.75 3.72 14.14 14.58 25.19 28.47 28.98C104.6 325.96 106.27 325 121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z\"]\n};\nvar faBaby = {\n prefix: 'fas',\n iconName: 'baby',\n icon: [384, 512, [], \"f77c\", \"M192 160c44.2 0 80-35.8 80-80S236.2 0 192 0s-80 35.8-80 80 35.8 80 80 80zm-53.4 248.8l25.6-32-61.5-51.2L56.8 383c-11.4 14.2-11.7 34.4-.8 49l48 64c7.9 10.5 19.9 16 32 16 8.3 0 16.8-2.6 24-8 17.7-13.2 21.2-38.3 8-56l-29.4-39.2zm142.7-83.2l-61.5 51.2 25.6 32L216 448c-13.2 17.7-9.7 42.8 8 56 7.2 5.4 15.6 8 24 8 12.2 0 24.2-5.5 32-16l48-64c10.9-14.6 10.6-34.8-.8-49l-45.9-57.4zM376.7 145c-12.7-18.1-37.6-22.4-55.7-9.8l-40.6 28.5c-52.7 37-124.2 37-176.8 0L63 135.3C44.9 122.6 20 127 7.3 145-5.4 163.1-1 188 17 200.7l40.6 28.5c17 11.9 35.4 20.9 54.4 27.9V288h160v-30.8c19-7 37.4-16 54.4-27.9l40.6-28.5c18.1-12.8 22.4-37.7 9.7-55.8z\"]\n};\nvar faBabyCarriage = {\n prefix: 'fas',\n iconName: 'baby-carriage',\n icon: [512, 512, [], \"f77d\", \"M144.8 17c-11.3-17.8-37.2-22.8-54-9.4C35.3 51.9 0 118 0 192h256L144.8 17zM496 96h-48c-35.3 0-64 28.7-64 64v64H0c0 50.6 23 96.4 60.3 130.7C25.7 363.6 0 394.7 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-8.9-1.8-17.2-4.4-25.2 21.6 5.9 44.6 9.2 68.4 9.2s46.9-3.3 68.4-9.2c-2.7 8-4.4 16.3-4.4 25.2 0 44.2 35.8 80 80 80s80-35.8 80-80c0-37.3-25.7-68.4-60.3-77.3C425 320.4 448 274.6 448 224v-64h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM80 464c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm320-32c0 17.6-14.4 32-32 32s-32-14.4-32-32 14.4-32 32-32 32 14.4 32 32z\"]\n};\nvar faBackspace = {\n prefix: 'fas',\n iconName: 'backspace',\n icon: [640, 512, [], \"f55a\", \"M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z\"]\n};\nvar faBackward = {\n prefix: 'fas',\n iconName: 'backward',\n icon: [512, 512, [], \"f04a\", \"M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z\"]\n};\nvar faBacon = {\n prefix: 'fas',\n iconName: 'bacon',\n icon: [576, 512, [], \"f7e5\", \"M218.92 336.39c34.89-34.89 44.2-59.7 54.05-86 10.61-28.29 21.59-57.54 61.37-97.34s69.05-50.77 97.35-61.38c23.88-9 46.64-17.68 76.79-45.37L470.81 8.91a31 31 0 0 0-40.18-2.83c-13.64 10.1-25.15 14.39-41 20.3C247 79.52 209.26 191.29 200.65 214.1c-29.75 78.83-89.55 94.68-98.72 98.09-24.86 9.26-54.73 20.38-91.07 50.36C-3 374-3.63 395 9.07 407.61l35.76 35.51C80 410.52 107 400.15 133 390.39c26.27-9.84 51.06-19.12 85.92-54zm348-232l-35.75-35.51c-35.19 32.63-62.18 43-88.25 52.79-26.26 9.85-51.06 19.16-85.95 54s-44.19 59.69-54 86C292.33 290 281.34 319.22 241.55 359s-69 50.73-97.3 61.32c-23.86 9-46.61 17.66-76.72 45.33l37.68 37.43a31 31 0 0 0 40.18 2.82c13.6-10.06 25.09-14.34 40.94-20.24 142.2-53 180-164.1 188.94-187.69C405 219.18 464.8 203.3 474 199.86c24.87-9.27 54.74-20.4 91.11-50.41 13.89-11.4 14.52-32.45 1.82-45.05z\"]\n};\nvar faBacteria = {\n prefix: 'fas',\n iconName: 'bacteria',\n icon: [640, 512, [], \"e059\", \"M272.35,226.4A17.71,17.71,0,0,0,281.46,203l-4-9.08a121.29,121.29,0,0,1,12.36-3.08A83.34,83.34,0,0,0,323.57,177l10,9a17.76,17.76,0,1,0,23.92-26.27l-9.72-8.76a83.12,83.12,0,0,0,11.65-48.18l11.85-3.51a17.73,17.73,0,1,0-10.15-34l-11.34,3.36a84,84,0,0,0-36.38-35.57l2.84-10.85a17.8,17.8,0,0,0-34.47-8.93l-2.82,10.78a83.25,83.25,0,0,0-16.74,1.1C250.83,27,240,30.22,229.1,33.39l-3.38-9.46a17.8,17.8,0,0,0-33.56,11.89l3.49,9.8a286.74,286.74,0,0,0-43.94,23.57l-6.32-8.43a17.9,17.9,0,0,0-24.94-3.6A17.69,17.69,0,0,0,116.84,82l6.45,8.61a286.59,286.59,0,0,0-34.95,35.33l-8.82-6.42a17.84,17.84,0,0,0-24.89,3.86,17.66,17.66,0,0,0,3.88,24.77l8.88,6.47a286.6,286.6,0,0,0-23,43.91l-10.48-3.59a17.73,17.73,0,1,0-11.59,33.52L32.67,232c-2.79,10-5.79,19.84-7.52,30.22a83.16,83.16,0,0,0-.82,19l-11.58,3.43a17.73,17.73,0,1,0,10.13,34l11.27-3.33a83.51,83.51,0,0,0,36.39,35.43l-2.88,11.06a17.81,17.81,0,0,0,34.48,8.92l2.87-11c1,0,2.07.26,3.1.26a83.39,83.39,0,0,0,45.65-13.88l8.59,8.8a17.77,17.77,0,0,0,25.56-24.7l-9.14-9.37a83.41,83.41,0,0,0,12.08-31.05,119.08,119.08,0,0,1,3.87-15.53l9,4.22a17.74,17.74,0,1,0,15.15-32.09l-8.8-4.11c.67-1,1.2-2.08,1.9-3.05a119.89,119.89,0,0,1,7.87-9.41,121.73,121.73,0,0,1,11.65-11.4,119.49,119.49,0,0,1,9.94-7.82c1.12-.77,2.32-1.42,3.47-2.15l3.92,8.85a17.86,17.86,0,0,0,16.32,10.58A18.14,18.14,0,0,0,272.35,226.4ZM128,256a32,32,0,1,1,32-32A32,32,0,0,1,128,256Zm80-96a16,16,0,1,1,16-16A16,16,0,0,1,208,160Zm431.26,45.3a17.79,17.79,0,0,0-17.06-12.69,17.55,17.55,0,0,0-5.08.74l-11.27,3.33a83.61,83.61,0,0,0-36.39-35.43l2.88-11.06a17.81,17.81,0,0,0-34.48-8.91l-2.87,11c-1,0-2.07-.26-3.1-.26a83.32,83.32,0,0,0-45.65,13.89l-8.59-8.81a17.77,17.77,0,0,0-25.56,24.7l9.14,9.37a83.28,83.28,0,0,0-12.08,31.06,119.34,119.34,0,0,1-3.87,15.52l-9-4.22a17.74,17.74,0,1,0-15.15,32.09l8.8,4.11c-.67,1-1.2,2.08-1.89,3.05a117.71,117.71,0,0,1-7.94,9.47,119,119,0,0,1-11.57,11.33,121.59,121.59,0,0,1-10,7.83c-1.12.77-2.32,1.42-3.47,2.15l-3.92-8.85a17.86,17.86,0,0,0-16.32-10.58,18.14,18.14,0,0,0-7.18,1.5A17.71,17.71,0,0,0,358.54,309l4,9.08a118.71,118.71,0,0,1-12.36,3.08,83.34,83.34,0,0,0-33.77,13.9l-10-9a17.77,17.77,0,1,0-23.92,26.28l9.72,8.75a83.12,83.12,0,0,0-11.65,48.18l-11.86,3.51a17.73,17.73,0,1,0,10.16,34l11.34-3.36A84,84,0,0,0,326.61,479l-2.84,10.85a17.8,17.8,0,0,0,34.47,8.93L361.06,488a83.3,83.3,0,0,0,16.74-1.1c11.37-1.89,22.24-5.07,33.1-8.24l3.38,9.46a17.8,17.8,0,0,0,33.56-11.89l-3.49-9.79a287.66,287.66,0,0,0,43.94-23.58l6.32,8.43a17.88,17.88,0,0,0,24.93,3.6A17.67,17.67,0,0,0,523.16,430l-6.45-8.61a287.37,287.37,0,0,0,34.95-35.34l8.82,6.42a17.76,17.76,0,1,0,21-28.63l-8.88-6.46a287.17,287.17,0,0,0,23-43.92l10.48,3.59a17.73,17.73,0,1,0,11.59-33.52L607.33,280c2.79-10,5.79-19.84,7.52-30.21a83.27,83.27,0,0,0,.82-19.05l11.58-3.43A17.7,17.7,0,0,0,639.26,205.3ZM416,416a32,32,0,1,1,32-32A32,32,0,0,1,416,416Z\"]\n};\nvar faBacterium = {\n prefix: 'fas',\n iconName: 'bacterium',\n icon: [512, 512, [], \"e05a\", \"M511,102.93A23.76,23.76,0,0,0,481.47,87l-15.12,4.48a111.85,111.85,0,0,0-48.5-47.42l3.79-14.47a23.74,23.74,0,0,0-46-11.91l-3.76,14.37a111.94,111.94,0,0,0-22.33,1.47,386.74,386.74,0,0,0-44.33,10.41l-4.3-12a23.74,23.74,0,0,0-44.75,15.85l4.3,12.05a383.4,383.4,0,0,0-58.69,31.83l-8-10.63a23.85,23.85,0,0,0-33.24-4.8,23.57,23.57,0,0,0-4.83,33.09l8,10.63a386.14,386.14,0,0,0-46.7,47.44l-11-8a23.68,23.68,0,1,0-28,38.17l11.09,8.06a383.45,383.45,0,0,0-30.92,58.75l-12.93-4.43a23.65,23.65,0,1,0-15.47,44.69l13,4.48a385.81,385.81,0,0,0-9.3,40.53A111.58,111.58,0,0,0,32.44,375L17,379.56a23.64,23.64,0,0,0,13.51,45.31l15-4.44a111.49,111.49,0,0,0,48.53,47.24l-3.85,14.75a23.66,23.66,0,0,0,17,28.83,24.7,24.7,0,0,0,6,.75,23.73,23.73,0,0,0,23-17.7L140,479.67c1.37.05,2.77.35,4.13.35A111.22,111.22,0,0,0,205,461.5l11.45,11.74a23.7,23.7,0,0,0,34.08-32.93l-12.19-12.5a111,111,0,0,0,16.11-41.4,158.69,158.69,0,0,1,5.16-20.71l12,5.64a23.66,23.66,0,1,0,20.19-42.79l-11.72-5.49c.89-1.32,1.59-2.77,2.52-4.06a157.86,157.86,0,0,1,10.46-12.49,159.5,159.5,0,0,1,15.59-15.28,162.18,162.18,0,0,1,13.23-10.4c1.5-1,3.1-1.89,4.63-2.87l5.23,11.8a23.74,23.74,0,0,0,43.48-19.08l-5.36-12.11a158.87,158.87,0,0,1,16.49-4.1,111,111,0,0,0,45-18.54l13.33,12a23.69,23.69,0,1,0,31.88-35l-12.94-11.67A110.83,110.83,0,0,0,479.21,137L495,132.32A23.61,23.61,0,0,0,511,102.93ZM160,368a48,48,0,1,1,48-48A48,48,0,0,1,160,368Zm80-136a24,24,0,1,1,24-24A24,24,0,0,1,240,232Z\"]\n};\nvar faBahai = {\n prefix: 'fas',\n iconName: 'bahai',\n icon: [512, 512, [], \"f666\", \"M496.25 202.52l-110-15.44 41.82-104.34c6.67-16.64-11.6-32.18-26.59-22.63L307.44 120 273.35 12.82C270.64 4.27 263.32 0 256 0c-7.32 0-14.64 4.27-17.35 12.82l-34.09 107.19-94.04-59.89c-14.99-9.55-33.25 5.99-26.59 22.63l41.82 104.34-110 15.43c-17.54 2.46-21.68 26.27-6.03 34.67l98.16 52.66-74.48 83.54c-10.92 12.25-1.72 30.93 13.29 30.93 1.31 0 2.67-.14 4.07-.45l108.57-23.65-4.11 112.55c-.43 11.65 8.87 19.22 18.41 19.22 5.15 0 10.39-2.21 14.2-7.18l68.18-88.9 68.18 88.9c3.81 4.97 9.04 7.18 14.2 7.18 9.54 0 18.84-7.57 18.41-19.22l-4.11-112.55 108.57 23.65c17.36 3.76 29.21-17.2 17.35-30.49l-74.48-83.54 98.16-52.66c15.64-8.39 11.5-32.2-6.04-34.66zM338.51 311.68l-51.89-11.3 1.97 53.79L256 311.68l-32.59 42.49 1.96-53.79-51.89 11.3 35.6-39.93-46.92-25.17 52.57-7.38-19.99-49.87 44.95 28.62L256 166.72l16.29 51.23 44.95-28.62-19.99 49.87 52.57 7.38-46.92 25.17 35.61 39.93z\"]\n};\nvar faBalanceScale = {\n prefix: 'fas',\n iconName: 'balance-scale',\n icon: [640, 512, [], \"f24e\", \"M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faBalanceScaleLeft = {\n prefix: 'fas',\n iconName: 'balance-scale-left',\n icon: [640, 512, [], \"f515\", \"M528 448H352V153.25c20.42-8.94 36.1-26.22 43.38-47.47l132-44.26c8.38-2.81 12.89-11.88 10.08-20.26l-10.17-30.34C524.48 2.54 515.41-1.97 507.03.84L389.11 40.37C375.3 16.36 349.69 0 320 0c-44.18 0-80 35.82-80 80 0 3.43.59 6.71 1.01 10.03l-128.39 43.05c-8.38 2.81-12.89 11.88-10.08 20.26l10.17 30.34c2.81 8.38 11.88 12.89 20.26 10.08l142.05-47.63c4.07 2.77 8.43 5.12 12.99 7.12V496c0 8.84 7.16 16 16 16h224c8.84 0 16-7.16 16-16v-32c-.01-8.84-7.17-16-16.01-16zm111.98-144c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 288l72-144 72 144H440zm-269.07-37.51c-17.65-35.29-68.19-35.36-85.87 0C-2.06 424.75.02 416.33.02 432H0c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02c0-16.18 1.34-8.73-85.05-181.51zM56 416l72-144 72 144H56z\"]\n};\nvar faBalanceScaleRight = {\n prefix: 'fas',\n iconName: 'balance-scale-right',\n icon: [640, 512, [], \"f516\", \"M96 464v32c0 8.84 7.16 16 16 16h224c8.84 0 16-7.16 16-16V153.25c4.56-2 8.92-4.35 12.99-7.12l142.05 47.63c8.38 2.81 17.45-1.71 20.26-10.08l10.17-30.34c2.81-8.38-1.71-17.45-10.08-20.26l-128.4-43.05c.42-3.32 1.01-6.6 1.01-10.03 0-44.18-35.82-80-80-80-29.69 0-55.3 16.36-69.11 40.37L132.96.83c-8.38-2.81-17.45 1.71-20.26 10.08l-10.17 30.34c-2.81 8.38 1.71 17.45 10.08 20.26l132 44.26c7.28 21.25 22.96 38.54 43.38 47.47V448H112c-8.84 0-16 7.16-16 16zM0 304c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02c0-15.67 2.08-7.25-85.05-181.51-17.68-35.36-68.22-35.29-85.87 0C-1.32 295.27.02 287.82.02 304H0zm56-16l72-144 72 144H56zm328.02 144H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02c0-15.67 2.08-7.25-85.05-181.51-17.68-35.36-68.22-35.29-85.87 0-86.38 172.78-85.04 165.33-85.04 181.51zM440 416l72-144 72 144H440z\"]\n};\nvar faBan = {\n prefix: 'fas',\n iconName: 'ban',\n icon: [512, 512, [], \"f05e\", \"M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z\"]\n};\nvar faBandAid = {\n prefix: 'fas',\n iconName: 'band-aid',\n icon: [640, 512, [], \"f462\", \"M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z\"]\n};\nvar faBarcode = {\n prefix: 'fas',\n iconName: 'barcode',\n icon: [512, 512, [], \"f02a\", \"M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z\"]\n};\nvar faBars = {\n prefix: 'fas',\n iconName: 'bars',\n icon: [448, 512, [], \"f0c9\", \"M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z\"]\n};\nvar faBaseballBall = {\n prefix: 'fas',\n iconName: 'baseball-ball',\n icon: [496, 512, [], \"f433\", \"M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z\"]\n};\nvar faBasketballBall = {\n prefix: 'fas',\n iconName: 'basketball-ball',\n icon: [496, 512, [], \"f434\", \"M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z\"]\n};\nvar faBath = {\n prefix: 'fas',\n iconName: 'bath',\n icon: [512, 512, [], \"f2cd\", \"M32,384a95.4,95.4,0,0,0,32,71.09V496a16,16,0,0,0,16,16h32a16,16,0,0,0,16-16V480H384v16a16,16,0,0,0,16,16h32a16,16,0,0,0,16-16V455.09A95.4,95.4,0,0,0,480,384V336H32ZM496,256H80V69.25a21.26,21.26,0,0,1,36.28-15l19.27,19.26c-13.13,29.88-7.61,59.11,8.62,79.73l-.17.17A16,16,0,0,0,144,176l11.31,11.31a16,16,0,0,0,22.63,0L283.31,81.94a16,16,0,0,0,0-22.63L272,48a16,16,0,0,0-22.62,0l-.17.17c-20.62-16.23-49.83-21.75-79.73-8.62L150.22,20.28A69.25,69.25,0,0,0,32,69.25V256H16A16,16,0,0,0,0,272v16a16,16,0,0,0,16,16H496a16,16,0,0,0,16-16V272A16,16,0,0,0,496,256Z\"]\n};\nvar faBatteryEmpty = {\n prefix: 'fas',\n iconName: 'battery-empty',\n icon: [640, 512, [], \"f244\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z\"]\n};\nvar faBatteryFull = {\n prefix: 'fas',\n iconName: 'battery-full',\n icon: [640, 512, [], \"f240\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z\"]\n};\nvar faBatteryHalf = {\n prefix: 'fas',\n iconName: 'battery-half',\n icon: [640, 512, [], \"f242\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z\"]\n};\nvar faBatteryQuarter = {\n prefix: 'fas',\n iconName: 'battery-quarter',\n icon: [640, 512, [], \"f243\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z\"]\n};\nvar faBatteryThreeQuarters = {\n prefix: 'fas',\n iconName: 'battery-three-quarters',\n icon: [640, 512, [], \"f241\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z\"]\n};\nvar faBed = {\n prefix: 'fas',\n iconName: 'bed',\n icon: [640, 512, [], \"f236\", \"M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z\"]\n};\nvar faBeer = {\n prefix: 'fas',\n iconName: 'beer',\n icon: [448, 512, [], \"f0fc\", \"M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z\"]\n};\nvar faBell = {\n prefix: 'fas',\n iconName: 'bell',\n icon: [448, 512, [], \"f0f3\", \"M224 512c35.32 0 63.97-28.65 63.97-64H160.03c0 35.35 28.65 64 63.97 64zm215.39-149.71c-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84C118.56 68.1 64.08 130.3 64.08 208c0 102.3-36.15 133.53-55.47 154.29-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h383.8c19.12 0 32-15.6 32.1-32 .05-7.55-2.61-15.27-8.61-21.71z\"]\n};\nvar faBellSlash = {\n prefix: 'fas',\n iconName: 'bell-slash',\n icon: [640, 512, [], \"f1f6\", \"M633.82 458.1l-90.62-70.05c.19-1.38.8-2.66.8-4.06.05-7.55-2.61-15.27-8.61-21.71-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84c-40.33 8.38-74.66 31.07-97.59 62.57L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.35 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.42-6.97 4.17-17.02-2.81-22.45zM157.23 251.54c-8.61 67.96-36.41 93.33-52.62 110.75-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h241.92L157.23 251.54zM320 512c35.32 0 63.97-28.65 63.97-64H256.03c0 35.35 28.65 64 63.97 64z\"]\n};\nvar faBezierCurve = {\n prefix: 'fas',\n iconName: 'bezier-curve',\n icon: [640, 512, [], \"f55b\", \"M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z\"]\n};\nvar faBible = {\n prefix: 'fas',\n iconName: 'bible',\n icon: [448, 512, [], \"f647\", \"M448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM144 144c0-8.84 7.16-16 16-16h48V80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v48h48c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-48v112c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16V192h-48c-8.84 0-16-7.16-16-16v-32zm236.8 304H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8v64z\"]\n};\nvar faBicycle = {\n prefix: 'fas',\n iconName: 'bicycle',\n icon: [640, 512, [], \"f206\", \"M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z\"]\n};\nvar faBiking = {\n prefix: 'fas',\n iconName: 'biking',\n icon: [640, 512, [], \"f84a\", \"M400 96a48 48 0 1 0-48-48 48 48 0 0 0 48 48zm-4 121a31.9 31.9 0 0 0 20 7h64a32 32 0 0 0 0-64h-52.78L356 103a31.94 31.94 0 0 0-40.81.68l-112 96a32 32 0 0 0 3.08 50.92L288 305.12V416a32 32 0 0 0 64 0V288a32 32 0 0 0-14.25-26.62l-41.36-27.57 58.25-49.92zm116 39a128 128 0 1 0 128 128 128 128 0 0 0-128-128zm0 192a64 64 0 1 1 64-64 64 64 0 0 1-64 64zM128 256a128 128 0 1 0 128 128 128 128 0 0 0-128-128zm0 192a64 64 0 1 1 64-64 64 64 0 0 1-64 64z\"]\n};\nvar faBinoculars = {\n prefix: 'fas',\n iconName: 'binoculars',\n icon: [512, 512, [], \"f1e5\", \"M416 48c0-8.84-7.16-16-16-16h-64c-8.84 0-16 7.16-16 16v48h96V48zM63.91 159.99C61.4 253.84 3.46 274.22 0 404v44c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V288h32V128H95.84c-17.63 0-31.45 14.37-31.93 31.99zm384.18 0c-.48-17.62-14.3-31.99-31.93-31.99H320v160h32v160c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-44c-3.46-129.78-61.4-150.16-63.91-244.01zM176 32h-64c-8.84 0-16 7.16-16 16v48h96V48c0-8.84-7.16-16-16-16zm48 256h64V128h-64v160z\"]\n};\nvar faBiohazard = {\n prefix: 'fas',\n iconName: 'biohazard',\n icon: [576, 512, [], \"f780\", \"M287.9 112c18.6 0 36.2 3.8 52.8 9.6 13.3-10.3 23.6-24.3 29.5-40.7-25.2-10.9-53-17-82.2-17-29.1 0-56.9 6-82.1 16.9 5.9 16.4 16.2 30.4 29.5 40.7 16.5-5.7 34-9.5 52.5-9.5zM163.6 438.7c12-11.8 20.4-26.4 24.5-42.4-32.9-26.4-54.8-65.3-58.9-109.6-8.5-2.8-17.2-4.6-26.4-4.6-7.6 0-15.2 1-22.5 3.1 4.1 62.8 35.8 118 83.3 153.5zm224.2-42.6c4.1 16 12.5 30.7 24.5 42.5 47.4-35.5 79.1-90.7 83-153.5-7.2-2-14.7-3-22.2-3-9.2 0-18 1.9-26.6 4.7-4.1 44.2-26 82.9-58.7 109.3zm113.5-205c-17.6-10.4-36.3-16.6-55.3-19.9 6-17.7 10-36.4 10-56.2 0-41-14.5-80.8-41-112.2-2.5-3-6.6-3.7-10-1.8-3.3 1.9-4.8 6-3.6 9.7 4.5 13.8 6.6 26.3 6.6 38.5 0 67.8-53.8 122.9-120 122.9S168 117 168 49.2c0-12.1 2.2-24.7 6.6-38.5 1.2-3.7-.3-7.8-3.6-9.7-3.4-1.9-7.5-1.2-10 1.8C134.6 34.2 120 74 120 115c0 19.8 3.9 38.5 10 56.2-18.9 3.3-37.7 9.5-55.3 19.9-34.6 20.5-61 53.3-74.3 92.4-1.3 3.7.2 7.7 3.5 9.8 3.3 2 7.5 1.3 10-1.6 9.4-10.8 19-19.1 29.2-25.1 57.3-33.9 130.8-13.7 163.9 45 33.1 58.7 13.4 134-43.9 167.9-10.2 6.1-22 10.4-35.8 13.4-3.7.8-6.4 4.2-6.4 8.1.1 4 2.7 7.3 6.5 8 39.7 7.8 80.6.8 115.2-19.7 18-10.6 32.9-24.5 45.3-40.1 12.4 15.6 27.3 29.5 45.3 40.1 34.6 20.5 75.5 27.5 115.2 19.7 3.8-.7 6.4-4 6.5-8 0-3.9-2.6-7.3-6.4-8.1-13.9-2.9-25.6-7.3-35.8-13.4-57.3-33.9-77-109.2-43.9-167.9s106.6-78.9 163.9-45c10.2 6.1 19.8 14.3 29.2 25.1 2.5 2.9 6.7 3.6 10 1.6s4.8-6.1 3.5-9.8c-13.1-39.1-39.5-72-74.1-92.4zm-213.4 129c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z\"]\n};\nvar faBirthdayCake = {\n prefix: 'fas',\n iconName: 'birthday-cake',\n icon: [448, 512, [], \"f1fd\", \"M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z\"]\n};\nvar faBlender = {\n prefix: 'fas',\n iconName: 'blender',\n icon: [512, 512, [], \"f517\", \"M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z\"]\n};\nvar faBlenderPhone = {\n prefix: 'fas',\n iconName: 'blender-phone',\n icon: [576, 512, [], \"f6b6\", \"M392 64h166.54L576 0H192v352h288l17.46-64H392c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H392c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H392c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM158.8 335.01l-25.78-63.26c-2.78-6.81-9.8-10.99-17.24-10.26l-45.03 4.42c-17.28-46.94-17.65-99.78 0-147.72l45.03 4.42c7.43.73 14.46-3.46 17.24-10.26l25.78-63.26c3.02-7.39.2-15.85-6.68-20.07l-39.28-24.1C98.51-3.87 80.09-.5 68.95 11.97c-92.57 103.6-92 259.55 2.1 362.49 9.87 10.8 29.12 12.48 41.65 4.8l39.41-24.18c6.89-4.22 9.7-12.67 6.69-20.07zM480 384H192c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-144 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faBlind = {\n prefix: 'fas',\n iconName: 'blind',\n icon: [384, 512, [], \"f29d\", \"M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z\"]\n};\nvar faBlog = {\n prefix: 'fas',\n iconName: 'blog',\n icon: [512, 512, [], \"f781\", \"M172.2 226.8c-14.6-2.9-28.2 8.9-28.2 23.8V301c0 10.2 7.1 18.4 16.7 22 18.2 6.8 31.3 24.4 31.3 45 0 26.5-21.5 48-48 48s-48-21.5-48-48V120c0-13.3-10.7-24-24-24H24c-13.3 0-24 10.7-24 24v248c0 89.5 82.1 160.2 175 140.7 54.4-11.4 98.3-55.4 109.7-109.7 17.4-82.9-37-157.2-112.5-172.2zM209 0c-9.2-.5-17 6.8-17 16v31.6c0 8.5 6.6 15.5 15 15.9 129.4 7 233.4 112 240.9 241.5.5 8.4 7.5 15 15.9 15h32.1c9.2 0 16.5-7.8 16-17C503.4 139.8 372.2 8.6 209 0zm.3 96c-9.3-.7-17.3 6.7-17.3 16.1v32.1c0 8.4 6.5 15.3 14.8 15.9 76.8 6.3 138 68.2 144.9 145.2.8 8.3 7.6 14.7 15.9 14.7h32.2c9.3 0 16.8-8 16.1-17.3-8.4-110.1-96.5-198.2-206.6-206.7z\"]\n};\nvar faBold = {\n prefix: 'fas',\n iconName: 'bold',\n icon: [384, 512, [], \"f032\", \"M333.49 238a122 122 0 0 0 27-65.21C367.87 96.49 308 32 233.42 32H34a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h31.87v288H34a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h209.32c70.8 0 134.14-51.75 141-122.4 4.74-48.45-16.39-92.06-50.83-119.6zM145.66 112h87.76a48 48 0 0 1 0 96h-87.76zm87.76 288h-87.76V288h87.76a56 56 0 0 1 0 112z\"]\n};\nvar faBolt = {\n prefix: 'fas',\n iconName: 'bolt',\n icon: [320, 512, [], \"f0e7\", \"M296 160H180.6l42.6-129.8C227.2 15 215.7 0 200 0H56C44 0 33.8 8.9 32.2 20.8l-32 240C-1.7 275.2 9.5 288 24 288h118.7L96.6 482.5c-3.6 15.2 8 29.5 23.3 29.5 8.4 0 16.4-4.4 20.8-12l176-304c9.3-15.9-2.2-36-20.7-36z\"]\n};\nvar faBomb = {\n prefix: 'fas',\n iconName: 'bomb',\n icon: [512, 512, [], \"f1e2\", \"M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z\"]\n};\nvar faBone = {\n prefix: 'fas',\n iconName: 'bone',\n icon: [640, 512, [], \"f5d7\", \"M598.88 244.56c25.2-12.6 41.12-38.36 41.12-66.53v-7.64C640 129.3 606.7 96 565.61 96c-32.02 0-60.44 20.49-70.57 50.86-7.68 23.03-11.6 45.14-38.11 45.14H183.06c-27.38 0-31.58-25.54-38.11-45.14C134.83 116.49 106.4 96 74.39 96 33.3 96 0 129.3 0 170.39v7.64c0 28.17 15.92 53.93 41.12 66.53 9.43 4.71 9.43 18.17 0 22.88C15.92 280.04 0 305.8 0 333.97v7.64C0 382.7 33.3 416 74.38 416c32.02 0 60.44-20.49 70.57-50.86 7.68-23.03 11.6-45.14 38.11-45.14h273.87c27.38 0 31.58 25.54 38.11 45.14C505.17 395.51 533.6 416 565.61 416c41.08 0 74.38-33.3 74.38-74.39v-7.64c0-28.18-15.92-53.93-41.12-66.53-9.42-4.71-9.42-18.17.01-22.88z\"]\n};\nvar faBong = {\n prefix: 'fas',\n iconName: 'bong',\n icon: [448, 512, [], \"f55c\", \"M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z\"]\n};\nvar faBook = {\n prefix: 'fas',\n iconName: 'book',\n icon: [448, 512, [], \"f02d\", \"M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z\"]\n};\nvar faBookDead = {\n prefix: 'fas',\n iconName: 'book-dead',\n icon: [448, 512, [], \"f6b7\", \"M272 136c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm176 222.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM240 56c44.2 0 80 28.7 80 64 0 20.9-12.7 39.2-32 50.9V184c0 8.8-7.2 16-16 16h-64c-8.8 0-16-7.2-16-16v-13.1c-19.3-11.7-32-30-32-50.9 0-35.3 35.8-64 80-64zM124.8 223.3l6.3-14.7c1.7-4.1 6.4-5.9 10.5-4.2l98.3 42.1 98.4-42.1c4.1-1.7 8.8.1 10.5 4.2l6.3 14.7c1.7 4.1-.1 8.8-4.2 10.5L280.6 264l70.3 30.1c4.1 1.7 5.9 6.4 4.2 10.5l-6.3 14.7c-1.7 4.1-6.4 5.9-10.5 4.2L240 281.4l-98.3 42.2c-4.1 1.7-8.8-.1-10.5-4.2l-6.3-14.7c-1.7-4.1.1-8.8 4.2-10.5l70.4-30.1-70.5-30.3c-4.1-1.7-5.9-6.4-4.2-10.5zm256 224.7H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8zM208 136c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16z\"]\n};\nvar faBookMedical = {\n prefix: 'fas',\n iconName: 'book-medical',\n icon: [448, 512, [], \"f7e6\", \"M448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16q0-9.6-9.6-19.2c-3.2-16-3.2-60.8 0-73.6q9.6-4.8 9.6-19.2zM144 168a8 8 0 0 1 8-8h56v-56a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v56h56a8 8 0 0 1 8 8v48a8 8 0 0 1-8 8h-56v56a8 8 0 0 1-8 8h-48a8 8 0 0 1-8-8v-56h-56a8 8 0 0 1-8-8zm236.8 280H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8z\"]\n};\nvar faBookOpen = {\n prefix: 'fas',\n iconName: 'book-open',\n icon: [576, 512, [], \"f518\", \"M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z\"]\n};\nvar faBookReader = {\n prefix: 'fas',\n iconName: 'book-reader',\n icon: [512, 512, [], \"f5da\", \"M352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM233.59 241.1c-59.33-36.32-155.43-46.3-203.79-49.05C13.55 191.13 0 203.51 0 219.14v222.8c0 14.33 11.59 26.28 26.49 27.05 43.66 2.29 131.99 10.68 193.04 41.43 9.37 4.72 20.48-1.71 20.48-11.87V252.56c-.01-4.67-2.32-8.95-6.42-11.46zm248.61-49.05c-48.35 2.74-144.46 12.73-203.78 49.05-4.1 2.51-6.41 6.96-6.41 11.63v245.79c0 10.19 11.14 16.63 20.54 11.9 61.04-30.72 149.32-39.11 192.97-41.4 14.9-.78 26.49-12.73 26.49-27.06V219.14c-.01-15.63-13.56-28.01-29.81-27.09z\"]\n};\nvar faBookmark = {\n prefix: 'fas',\n iconName: 'bookmark',\n icon: [384, 512, [], \"f02e\", \"M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z\"]\n};\nvar faBorderAll = {\n prefix: 'fas',\n iconName: 'border-all',\n icon: [448, 512, [], \"f84c\", \"M416 32H32A32 32 0 0 0 0 64v384a32 32 0 0 0 32 32h384a32 32 0 0 0 32-32V64a32 32 0 0 0-32-32zm-32 64v128H256V96zm-192 0v128H64V96zM64 416V288h128v128zm192 0V288h128v128z\"]\n};\nvar faBorderNone = {\n prefix: 'fas',\n iconName: 'border-none',\n icon: [448, 512, [], \"f850\", \"M240 224h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-288 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM240 320h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-96 288h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96-384h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM48 224H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 192H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-192H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faBorderStyle = {\n prefix: 'fas',\n iconName: 'border-style',\n icon: [448, 512, [], \"f853\", \"M240 416h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm192 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96-192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 96h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 96h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-288h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96H32A32 32 0 0 0 0 64v400a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V96h368a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faBowlingBall = {\n prefix: 'fas',\n iconName: 'bowling-ball',\n icon: [496, 512, [], \"f436\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faBox = {\n prefix: 'fas',\n iconName: 'box',\n icon: [512, 512, [], \"f466\", \"M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z\"]\n};\nvar faBoxOpen = {\n prefix: 'fas',\n iconName: 'box-open',\n icon: [640, 512, [], \"f49e\", \"M425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9zm212.6-112.2L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9z\"]\n};\nvar faBoxTissue = {\n prefix: 'fas',\n iconName: 'box-tissue',\n icon: [512, 512, [], \"e05b\", \"M383.88,287.82l64-192H338.47a70.2,70.2,0,0,1-66.59-48,70.21,70.21,0,0,0-66.6-48H63.88l64,288Zm-384,192a32,32,0,0,0,32,32h448a32,32,0,0,0,32-32v-64H-.12Zm480-256H438.94l-21.33,64h14.27a16,16,0,0,1,0,32h-352a16,16,0,1,1,0-32H95.09l-14.22-64h-49a32,32,0,0,0-32,32v128h512v-128A32,32,0,0,0,479.88,223.82Z\"]\n};\nvar faBoxes = {\n prefix: 'fas',\n iconName: 'boxes',\n icon: [576, 512, [], \"f468\", \"M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z\"]\n};\nvar faBraille = {\n prefix: 'fas',\n iconName: 'braille',\n icon: [640, 512, [], \"f2a1\", \"M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z\"]\n};\nvar faBrain = {\n prefix: 'fas',\n iconName: 'brain',\n icon: [576, 512, [], \"f5dc\", \"M208 0c-29.9 0-54.7 20.5-61.8 48.2-.8 0-1.4-.2-2.2-.2-35.3 0-64 28.7-64 64 0 4.8.6 9.5 1.7 14C52.5 138 32 166.6 32 200c0 12.6 3.2 24.3 8.3 34.9C16.3 248.7 0 274.3 0 304c0 33.3 20.4 61.9 49.4 73.9-.9 4.6-1.4 9.3-1.4 14.1 0 39.8 32.2 72 72 72 4.1 0 8.1-.5 12-1.2 9.6 28.5 36.2 49.2 68 49.2 39.8 0 72-32.2 72-72V64c0-35.3-28.7-64-64-64zm368 304c0-29.7-16.3-55.3-40.3-69.1 5.2-10.6 8.3-22.3 8.3-34.9 0-33.4-20.5-62-49.7-74 1-4.5 1.7-9.2 1.7-14 0-35.3-28.7-64-64-64-.8 0-1.5.2-2.2.2C422.7 20.5 397.9 0 368 0c-35.3 0-64 28.6-64 64v376c0 39.8 32.2 72 72 72 31.8 0 58.4-20.7 68-49.2 3.9.7 7.9 1.2 12 1.2 39.8 0 72-32.2 72-72 0-4.8-.5-9.5-1.4-14.1 29-12 49.4-40.6 49.4-73.9z\"]\n};\nvar faBreadSlice = {\n prefix: 'fas',\n iconName: 'bread-slice',\n icon: [576, 512, [], \"f7ec\", \"M288 0C108 0 0 93.4 0 169.14 0 199.44 24.24 224 64 224v256c0 17.67 16.12 32 36 32h376c19.88 0 36-14.33 36-32V224c39.76 0 64-24.56 64-54.86C576 93.4 468 0 288 0z\"]\n};\nvar faBriefcase = {\n prefix: 'fas',\n iconName: 'briefcase',\n icon: [512, 512, [], \"f0b1\", \"M320 336c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-48H0v144c0 25.6 22.4 48 48 48h416c25.6 0 48-22.4 48-48V288H320v48zm144-208h-80V80c0-25.6-22.4-48-48-48H176c-25.6 0-48 22.4-48 48v48H48c-25.6 0-48 22.4-48 48v80h512v-80c0-25.6-22.4-48-48-48zm-144 0H192V96h128v32z\"]\n};\nvar faBriefcaseMedical = {\n prefix: 'fas',\n iconName: 'briefcase-medical',\n icon: [512, 512, [], \"f469\", \"M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z\"]\n};\nvar faBroadcastTower = {\n prefix: 'fas',\n iconName: 'broadcast-tower',\n icon: [640, 512, [], \"f519\", \"M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z\"]\n};\nvar faBroom = {\n prefix: 'fas',\n iconName: 'broom',\n icon: [640, 512, [], \"f51a\", \"M256.47 216.77l86.73 109.18s-16.6 102.36-76.57 150.12C206.66 523.85 0 510.19 0 510.19s3.8-23.14 11-55.43l94.62-112.17c3.97-4.7-.87-11.62-6.65-9.5l-60.4 22.09c14.44-41.66 32.72-80.04 54.6-97.47 59.97-47.76 163.3-40.94 163.3-40.94zM636.53 31.03l-19.86-25c-5.49-6.9-15.52-8.05-22.41-2.56l-232.48 177.8-34.14-42.97c-5.09-6.41-15.14-5.21-18.59 2.21l-25.33 54.55 86.73 109.18 58.8-12.45c8-1.69 11.42-11.2 6.34-17.6l-34.09-42.92 232.48-177.8c6.89-5.48 8.04-15.53 2.55-22.44z\"]\n};\nvar faBrush = {\n prefix: 'fas',\n iconName: 'brush',\n icon: [384, 512, [], \"f55d\", \"M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z\"]\n};\nvar faBug = {\n prefix: 'fas',\n iconName: 'bug',\n icon: [512, 512, [], \"f188\", \"M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z\"]\n};\nvar faBuilding = {\n prefix: 'fas',\n iconName: 'building',\n icon: [448, 512, [], \"f1ad\", \"M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z\"]\n};\nvar faBullhorn = {\n prefix: 'fas',\n iconName: 'bullhorn',\n icon: [576, 512, [], \"f0a1\", \"M576 240c0-23.63-12.95-44.04-32-55.12V32.01C544 23.26 537.02 0 512 0c-7.12 0-14.19 2.38-19.98 7.02l-85.03 68.03C364.28 109.19 310.66 128 256 128H64c-35.35 0-64 28.65-64 64v96c0 35.35 28.65 64 64 64h33.7c-1.39 10.48-2.18 21.14-2.18 32 0 39.77 9.26 77.35 25.56 110.94 5.19 10.69 16.52 17.06 28.4 17.06h74.28c26.05 0 41.69-29.84 25.9-50.56-16.4-21.52-26.15-48.36-26.15-77.44 0-11.11 1.62-21.79 4.41-32H256c54.66 0 108.28 18.81 150.98 52.95l85.03 68.03a32.023 32.023 0 0 0 19.98 7.02c24.92 0 32-22.78 32-32V295.13C563.05 284.04 576 263.63 576 240zm-96 141.42l-33.05-26.44C392.95 311.78 325.12 288 256 288v-96c69.12 0 136.95-23.78 190.95-66.98L480 98.58v282.84z\"]\n};\nvar faBullseye = {\n prefix: 'fas',\n iconName: 'bullseye',\n icon: [496, 512, [], \"f140\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 432c-101.69 0-184-82.29-184-184 0-101.69 82.29-184 184-184 101.69 0 184 82.29 184 184 0 101.69-82.29 184-184 184zm0-312c-70.69 0-128 57.31-128 128s57.31 128 128 128 128-57.31 128-128-57.31-128-128-128zm0 192c-35.29 0-64-28.71-64-64s28.71-64 64-64 64 28.71 64 64-28.71 64-64 64z\"]\n};\nvar faBurn = {\n prefix: 'fas',\n iconName: 'burn',\n icon: [384, 512, [], \"f46a\", \"M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z\"]\n};\nvar faBus = {\n prefix: 'fas',\n iconName: 'bus',\n icon: [512, 512, [], \"f207\", \"M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faBusAlt = {\n prefix: 'fas',\n iconName: 'bus-alt',\n icon: [512, 512, [], \"f55e\", \"M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faBusinessTime = {\n prefix: 'fas',\n iconName: 'business-time',\n icon: [640, 512, [], \"f64a\", \"M496 224c-79.59 0-144 64.41-144 144s64.41 144 144 144 144-64.41 144-144-64.41-144-144-144zm64 150.29c0 5.34-4.37 9.71-9.71 9.71h-60.57c-5.34 0-9.71-4.37-9.71-9.71v-76.57c0-5.34 4.37-9.71 9.71-9.71h12.57c5.34 0 9.71 4.37 9.71 9.71V352h38.29c5.34 0 9.71 4.37 9.71 9.71v12.58zM496 192c5.4 0 10.72.33 16 .81V144c0-25.6-22.4-48-48-48h-80V48c0-25.6-22.4-48-48-48H176c-25.6 0-48 22.4-48 48v48H48c-25.6 0-48 22.4-48 48v80h395.12c28.6-20.09 63.35-32 100.88-32zM320 96H192V64h128v32zm6.82 224H208c-8.84 0-16-7.16-16-16v-48H0v144c0 25.6 22.4 48 48 48h291.43C327.1 423.96 320 396.82 320 368c0-16.66 2.48-32.72 6.82-48z\"]\n};\nvar faCalculator = {\n prefix: 'fas',\n iconName: 'calculator',\n icon: [448, 512, [], \"f1ec\", \"M400 0H48C22.4 0 0 22.4 0 48v416c0 25.6 22.4 48 48 48h352c25.6 0 48-22.4 48-48V48c0-25.6-22.4-48-48-48zM128 435.2c0 6.4-6.4 12.8-12.8 12.8H76.8c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-128c0 6.4-6.4 12.8-12.8 12.8H76.8c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm128 128c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-128c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm128 128c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8V268.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v166.4zm0-256c0 6.4-6.4 12.8-12.8 12.8H76.8c-6.4 0-12.8-6.4-12.8-12.8V76.8C64 70.4 70.4 64 76.8 64h294.4c6.4 0 12.8 6.4 12.8 12.8v102.4z\"]\n};\nvar faCalendar = {\n prefix: 'fas',\n iconName: 'calendar',\n icon: [448, 512, [], \"f133\", \"M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z\"]\n};\nvar faCalendarAlt = {\n prefix: 'fas',\n iconName: 'calendar-alt',\n icon: [448, 512, [], \"f073\", \"M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm320-196c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM192 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM64 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z\"]\n};\nvar faCalendarCheck = {\n prefix: 'fas',\n iconName: 'calendar-check',\n icon: [448, 512, [], \"f274\", \"M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z\"]\n};\nvar faCalendarDay = {\n prefix: 'fas',\n iconName: 'calendar-day',\n icon: [448, 512, [], \"f783\", \"M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm64-192c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-96zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z\"]\n};\nvar faCalendarMinus = {\n prefix: 'fas',\n iconName: 'calendar-minus',\n icon: [448, 512, [], \"f272\", \"M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z\"]\n};\nvar faCalendarPlus = {\n prefix: 'fas',\n iconName: 'calendar-plus',\n icon: [448, 512, [], \"f271\", \"M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z\"]\n};\nvar faCalendarTimes = {\n prefix: 'fas',\n iconName: 'calendar-times',\n icon: [448, 512, [], \"f273\", \"M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z\"]\n};\nvar faCalendarWeek = {\n prefix: 'fas',\n iconName: 'calendar-week',\n icon: [448, 512, [], \"f784\", \"M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm64-192c0-8.8 7.2-16 16-16h288c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-64zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z\"]\n};\nvar faCamera = {\n prefix: 'fas',\n iconName: 'camera',\n icon: [512, 512, [], \"f030\", \"M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z\"]\n};\nvar faCameraRetro = {\n prefix: 'fas',\n iconName: 'camera-retro',\n icon: [512, 512, [], \"f083\", \"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z\"]\n};\nvar faCampground = {\n prefix: 'fas',\n iconName: 'campground',\n icon: [640, 512, [], \"f6bb\", \"M624 448h-24.68L359.54 117.75l53.41-73.55c5.19-7.15 3.61-17.16-3.54-22.35l-25.9-18.79c-7.15-5.19-17.15-3.61-22.35 3.55L320 63.3 278.83 6.6c-5.19-7.15-15.2-8.74-22.35-3.55l-25.88 18.8c-7.15 5.19-8.74 15.2-3.54 22.35l53.41 73.55L40.68 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM320 288l116.36 160H203.64L320 288z\"]\n};\nvar faCandyCane = {\n prefix: 'fas',\n iconName: 'candy-cane',\n icon: [512, 512, [], \"f786\", \"M497.5 92C469.6 33.1 411.8 0 352.4 0c-27.9 0-56.2 7.3-81.8 22.6L243.1 39c-15.2 9.1-20.1 28.7-11 43.9l32.8 54.9c6 10 16.6 15.6 27.5 15.6 5.6 0 11.2-1.5 16.4-4.5l27.5-16.4c5.1-3.1 10.8-4.5 16.4-4.5 10.9 0 21.5 5.6 27.5 15.6 9.1 15.1 4.1 34.8-11 43.9L15.6 397.6c-15.2 9.1-20.1 28.7-11 43.9l32.8 54.9c6 10 16.6 15.6 27.5 15.6 5.6 0 11.2-1.5 16.4-4.5L428.6 301c71.7-42.9 104.6-133.5 68.9-209zm-177.7 13l-2.5 1.5L296.8 45c9.7-4.7 19.8-8.1 30.3-10.2l20.6 61.8c-9.8.8-19.4 3.3-27.9 8.4zM145.9 431.8l-60.5-38.5 30.8-18.3 60.5 38.5-30.8 18.3zm107.5-63.9l-60.5-38.5 30.8-18.3 60.5 38.5-30.8 18.3zM364.3 302l-60.5-38.5 30.8-18.3 60.5 38.5-30.8 18.3zm20.4-197.3l46-46c8.4 6.5 16 14.1 22.6 22.6L407.6 127c-5.7-9.3-13.7-16.9-22.9-22.3zm82.1 107.8l-59.5-19.8c3.2-5.3 5.8-10.9 7.4-17.1 1.1-4.5 1.7-9.1 1.8-13.6l60.4 20.1c-2.1 10.4-5.5 20.6-10.1 30.4z\"]\n};\nvar faCannabis = {\n prefix: 'fas',\n iconName: 'cannabis',\n icon: [512, 512, [], \"f55f\", \"M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z\"]\n};\nvar faCapsules = {\n prefix: 'fas',\n iconName: 'capsules',\n icon: [576, 512, [], \"f46b\", \"M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z\"]\n};\nvar faCar = {\n prefix: 'fas',\n iconName: 'car',\n icon: [512, 512, [], \"f1b9\", \"M499.99 176h-59.87l-16.64-41.6C406.38 91.63 365.57 64 319.5 64h-127c-46.06 0-86.88 27.63-103.99 70.4L71.87 176H12.01C4.2 176-1.53 183.34.37 190.91l6 24C7.7 220.25 12.5 224 18.01 224h20.07C24.65 235.73 16 252.78 16 272v48c0 16.12 6.16 30.67 16 41.93V416c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-54.07c9.84-11.25 16-25.8 16-41.93v-48c0-19.22-8.65-36.27-22.07-48H494c5.51 0 10.31-3.75 11.64-9.09l6-24c1.89-7.57-3.84-14.91-11.65-14.91zm-352.06-17.83c7.29-18.22 24.94-30.17 44.57-30.17h127c19.63 0 37.28 11.95 44.57 30.17L384 208H128l19.93-49.83zM96 319.8c-19.2 0-32-12.76-32-31.9S76.8 256 96 256s48 28.71 48 47.85-28.8 15.95-48 15.95zm320 0c-19.2 0-48 3.19-48-15.95S396.8 256 416 256s32 12.76 32 31.9-12.8 31.9-32 31.9z\"]\n};\nvar faCarAlt = {\n prefix: 'fas',\n iconName: 'car-alt',\n icon: [480, 512, [], \"f5de\", \"M438.66 212.33l-11.24-28.1-19.93-49.83C390.38 91.63 349.57 64 303.5 64h-127c-46.06 0-86.88 27.63-103.99 70.4l-19.93 49.83-11.24 28.1C17.22 221.5 0 244.66 0 272v48c0 16.12 6.16 30.67 16 41.93V416c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-54.07c9.84-11.25 16-25.8 16-41.93v-48c0-27.34-17.22-50.5-41.34-59.67zm-306.73-54.16c7.29-18.22 24.94-30.17 44.57-30.17h127c19.63 0 37.28 11.95 44.57 30.17L368 208H112l19.93-49.83zM80 319.8c-19.2 0-32-12.76-32-31.9S60.8 256 80 256s48 28.71 48 47.85-28.8 15.95-48 15.95zm320 0c-19.2 0-48 3.19-48-15.95S380.8 256 400 256s32 12.76 32 31.9-12.8 31.9-32 31.9z\"]\n};\nvar faCarBattery = {\n prefix: 'fas',\n iconName: 'car-battery',\n icon: [512, 512, [], \"f5df\", \"M480 128h-32V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v48H192V80c0-8.84-7.16-16-16-16H80c-8.84 0-16 7.16-16 16v48H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32zM192 264c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm256 0c0 4.42-3.58 8-8 8h-40v40c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-40h-40c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h40v-40c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v40h40c4.42 0 8 3.58 8 8v16z\"]\n};\nvar faCarCrash = {\n prefix: 'fas',\n iconName: 'car-crash',\n icon: [640, 512, [], \"f5e1\", \"M143.25 220.81l-12.42 46.37c-3.01 11.25-3.63 22.89-2.41 34.39l-35.2 28.98c-6.57 5.41-16.31-.43-14.62-8.77l15.44-76.68c1.06-5.26-2.66-10.28-8-10.79l-77.86-7.55c-8.47-.82-11.23-11.83-4.14-16.54l65.15-43.3c4.46-2.97 5.38-9.15 1.98-13.29L21.46 93.22c-5.41-6.57.43-16.3 8.78-14.62l76.68 15.44c5.26 1.06 10.28-2.66 10.8-8l7.55-77.86c.82-8.48 11.83-11.23 16.55-4.14l43.3 65.14c2.97 4.46 9.15 5.38 13.29 1.98l60.4-49.71c6.57-5.41 16.3.43 14.62 8.77L262.1 86.38c-2.71 3.05-5.43 6.09-7.91 9.4l-32.15 42.97-10.71 14.32c-32.73 8.76-59.18 34.53-68.08 67.74zm494.57 132.51l-12.42 46.36c-3.13 11.68-9.38 21.61-17.55 29.36a66.876 66.876 0 0 1-8.76 7l-13.99 52.23c-1.14 4.27-3.1 8.1-5.65 11.38-7.67 9.84-20.74 14.68-33.54 11.25L515 502.62c-17.07-4.57-27.2-22.12-22.63-39.19l8.28-30.91-247.28-66.26-8.28 30.91c-4.57 17.07-22.12 27.2-39.19 22.63l-30.91-8.28c-12.8-3.43-21.7-14.16-23.42-26.51-.57-4.12-.35-8.42.79-12.68l13.99-52.23a66.62 66.62 0 0 1-4.09-10.45c-3.2-10.79-3.65-22.52-.52-34.2l12.42-46.37c5.31-19.8 19.36-34.83 36.89-42.21a64.336 64.336 0 0 1 18.49-4.72l18.13-24.23 32.15-42.97c3.45-4.61 7.19-8.9 11.2-12.84 8-7.89 17.03-14.44 26.74-19.51 4.86-2.54 9.89-4.71 15.05-6.49 10.33-3.58 21.19-5.63 32.24-6.04 11.05-.41 22.31.82 33.43 3.8l122.68 32.87c11.12 2.98 21.48 7.54 30.85 13.43a111.11 111.11 0 0 1 34.69 34.5c8.82 13.88 14.64 29.84 16.68 46.99l6.36 53.29 3.59 30.05a64.49 64.49 0 0 1 22.74 29.93c4.39 11.88 5.29 25.19 1.75 38.39zM255.58 234.34c-18.55-4.97-34.21 4.04-39.17 22.53-4.96 18.49 4.11 34.12 22.65 39.09 18.55 4.97 45.54 15.51 50.49-2.98 4.96-18.49-15.43-53.67-33.97-58.64zm290.61 28.17l-6.36-53.29c-.58-4.87-1.89-9.53-3.82-13.86-5.8-12.99-17.2-23.01-31.42-26.82l-122.68-32.87a48.008 48.008 0 0 0-50.86 17.61l-32.15 42.97 172 46.08 75.29 20.18zm18.49 54.65c-18.55-4.97-53.8 15.31-58.75 33.79-4.95 18.49 23.69 22.86 42.24 27.83 18.55 4.97 34.21-4.04 39.17-22.53 4.95-18.48-4.11-34.12-22.66-39.09z\"]\n};\nvar faCarSide = {\n prefix: 'fas',\n iconName: 'car-side',\n icon: [640, 512, [], \"f5e4\", \"M544 192h-16L419.22 56.02A64.025 64.025 0 0 0 369.24 32H155.33c-26.17 0-49.7 15.93-59.42 40.23L48 194.26C20.44 201.4 0 226.21 0 256v112c0 8.84 7.16 16 16 16h48c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h48c8.84 0 16-7.16 16-16v-80c0-53.02-42.98-96-96-96zM160 432c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48zm72-240H116.93l38.4-96H232v96zm48 0V96h89.24l76.8 96H280zm200 240c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48z\"]\n};\nvar faCaravan = {\n prefix: 'fas',\n iconName: 'caravan',\n icon: [640, 512, [], \"f8ff\", \"M416,208a16,16,0,1,0,16,16A16,16,0,0,0,416,208ZM624,320H576V160A160,160,0,0,0,416,0H64A64,64,0,0,0,0,64V320a64,64,0,0,0,64,64H96a96,96,0,0,0,192,0H624a16,16,0,0,0,16-16V336A16,16,0,0,0,624,320ZM192,432a48,48,0,1,1,48-48A48.05,48.05,0,0,1,192,432Zm64-240a32,32,0,0,1-32,32H96a32,32,0,0,1-32-32V128A32,32,0,0,1,96,96H224a32,32,0,0,1,32,32ZM448,320H320V128a32,32,0,0,1,32-32h64a32,32,0,0,1,32,32Z\"]\n};\nvar faCaretDown = {\n prefix: 'fas',\n iconName: 'caret-down',\n icon: [320, 512, [], \"f0d7\", \"M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\"]\n};\nvar faCaretLeft = {\n prefix: 'fas',\n iconName: 'caret-left',\n icon: [192, 512, [], \"f0d9\", \"M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z\"]\n};\nvar faCaretRight = {\n prefix: 'fas',\n iconName: 'caret-right',\n icon: [192, 512, [], \"f0da\", \"M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z\"]\n};\nvar faCaretSquareDown = {\n prefix: 'fas',\n iconName: 'caret-square-down',\n icon: [448, 512, [], \"f150\", \"M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z\"]\n};\nvar faCaretSquareLeft = {\n prefix: 'fas',\n iconName: 'caret-square-left',\n icon: [448, 512, [], \"f191\", \"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z\"]\n};\nvar faCaretSquareRight = {\n prefix: 'fas',\n iconName: 'caret-square-right',\n icon: [448, 512, [], \"f152\", \"M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z\"]\n};\nvar faCaretSquareUp = {\n prefix: 'fas',\n iconName: 'caret-square-up',\n icon: [448, 512, [], \"f151\", \"M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z\"]\n};\nvar faCaretUp = {\n prefix: 'fas',\n iconName: 'caret-up',\n icon: [320, 512, [], \"f0d8\", \"M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z\"]\n};\nvar faCarrot = {\n prefix: 'fas',\n iconName: 'carrot',\n icon: [512, 512, [], \"f787\", \"M298.2 156.6c-52.7-25.7-114.5-10.5-150.2 32.8l55.2 55.2c6.3 6.3 6.3 16.4 0 22.6-3.1 3.1-7.2 4.7-11.3 4.7s-8.2-1.6-11.3-4.7L130.4 217 2.3 479.7c-2.9 6-3.1 13.3 0 19.7 5.4 11.1 18.9 15.7 30 10.3l133.6-65.2-49.2-49.2c-6.3-6.2-6.3-16.4 0-22.6 6.3-6.2 16.4-6.2 22.6 0l57 57 102-49.8c24-11.7 44.5-31.3 57.1-57.1 30.1-61.7 4.5-136.1-57.2-166.2zm92.1-34.9C409.8 81 399.7 32.9 360 0c-50.3 41.7-52.5 107.5-7.9 151.9l8 8c44.4 44.6 110.3 42.4 151.9-7.9-32.9-39.7-81-49.8-121.7-30.3z\"]\n};\nvar faCartArrowDown = {\n prefix: 'fas',\n iconName: 'cart-arrow-down',\n icon: [576, 512, [], \"f218\", \"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"]\n};\nvar faCartPlus = {\n prefix: 'fas',\n iconName: 'cart-plus',\n icon: [576, 512, [], \"f217\", \"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z\"]\n};\nvar faCashRegister = {\n prefix: 'fas',\n iconName: 'cash-register',\n icon: [512, 512, [], \"f788\", \"M511.1 378.8l-26.7-160c-2.6-15.4-15.9-26.7-31.6-26.7H208v-64h96c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96v64H59.1c-15.6 0-29 11.3-31.6 26.7L.8 378.7c-.6 3.5-.9 7-.9 10.5V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-90.7c.1-3.5-.2-7-.8-10.5zM280 248c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16zm-32 64h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16zm-32-80c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16zM80 80V48h192v32H80zm40 200h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16zm16 64v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16zm216 112c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16zm24-112c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16zm48-80c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16z\"]\n};\nvar faCat = {\n prefix: 'fas',\n iconName: 'cat',\n icon: [512, 512, [], \"f6be\", \"M290.59 192c-20.18 0-106.82 1.98-162.59 85.95V192c0-52.94-43.06-96-96-96-17.67 0-32 14.33-32 32s14.33 32 32 32c17.64 0 32 14.36 32 32v256c0 35.3 28.7 64 64 64h176c8.84 0 16-7.16 16-16v-16c0-17.67-14.33-32-32-32h-32l128-96v144c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V289.86c-10.29 2.67-20.89 4.54-32 4.54-61.81 0-113.52-44.05-125.41-102.4zM448 96h-64l-64-64v134.4c0 53.02 42.98 96 96 96s96-42.98 96-96V32l-64 64zm-72 80c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm80 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z\"]\n};\nvar faCertificate = {\n prefix: 'fas',\n iconName: 'certificate',\n icon: [512, 512, [], \"f0a3\", \"M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z\"]\n};\nvar faChair = {\n prefix: 'fas',\n iconName: 'chair',\n icon: [448, 512, [], \"f6c0\", \"M112 128c0-29.5 16.2-55 40-68.9V256h48V48h48v208h48V59.1c23.8 13.9 40 39.4 40 68.9v128h48V128C384 57.3 326.7 0 256 0h-64C121.3 0 64 57.3 64 128v128h48zm334.3 213.9l-10.7-32c-4.4-13.1-16.6-21.9-30.4-21.9H42.7c-13.8 0-26 8.8-30.4 21.9l-10.7 32C-5.2 362.6 10.2 384 32 384v112c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V384h256v112c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V384c21.8 0 37.2-21.4 30.3-42.1z\"]\n};\nvar faChalkboard = {\n prefix: 'fas',\n iconName: 'chalkboard',\n icon: [640, 512, [], \"f51b\", \"M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faChalkboardTeacher = {\n prefix: 'fas',\n iconName: 'chalkboard-teacher',\n icon: [640, 512, [], \"f51c\", \"M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z\"]\n};\nvar faChargingStation = {\n prefix: 'fas',\n iconName: 'charging-station',\n icon: [576, 512, [], \"f5e7\", \"M336 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h320c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm208-320V80c0-8.84-7.16-16-16-16s-16 7.16-16 16v48h-32V80c0-8.84-7.16-16-16-16s-16 7.16-16 16v48h-16c-8.84 0-16 7.16-16 16v32c0 35.76 23.62 65.69 56 75.93v118.49c0 13.95-9.5 26.92-23.26 29.19C431.22 402.5 416 388.99 416 372v-28c0-48.6-39.4-88-88-88h-8V64c0-35.35-28.65-64-64-64H96C60.65 0 32 28.65 32 64v352h288V304h8c22.09 0 40 17.91 40 40v24.61c0 39.67 28.92 75.16 68.41 79.01C481.71 452.05 520 416.41 520 372V251.93c32.38-10.24 56-40.17 56-75.93v-32c0-8.84-7.16-16-16-16h-16zm-283.91 47.76l-93.7 139c-2.2 3.33-6.21 5.24-10.39 5.24-7.67 0-13.47-6.28-11.67-12.92L167.35 224H108c-7.25 0-12.85-5.59-11.89-11.89l16-107C112.9 99.9 117.98 96 124 96h68c7.88 0 13.62 6.54 11.6 13.21L192 160h57.7c9.24 0 15.01 8.78 10.39 15.76z\"]\n};\nvar faChartArea = {\n prefix: 'fas',\n iconName: 'chart-area',\n icon: [512, 512, [], \"f1fe\", \"M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z\"]\n};\nvar faChartBar = {\n prefix: 'fas',\n iconName: 'chart-bar',\n icon: [512, 512, [], \"f080\", \"M332.8 320h38.4c6.4 0 12.8-6.4 12.8-12.8V172.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h38.4c6.4 0 12.8-6.4 12.8-12.8V76.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-288 0h38.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h38.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zM496 384H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faChartLine = {\n prefix: 'fas',\n iconName: 'chart-line',\n icon: [512, 512, [], \"f201\", \"M496 384H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM464 96H345.94c-21.38 0-32.09 25.85-16.97 40.97l32.4 32.4L288 242.75l-73.37-73.37c-12.5-12.5-32.76-12.5-45.25 0l-68.69 68.69c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0L192 237.25l73.37 73.37c12.5 12.5 32.76 12.5 45.25 0l96-96 32.4 32.4c15.12 15.12 40.97 4.41 40.97-16.97V112c.01-8.84-7.15-16-15.99-16z\"]\n};\nvar faChartPie = {\n prefix: 'fas',\n iconName: 'chart-pie',\n icon: [544, 512, [], \"f200\", \"M527.79 288H290.5l158.03 158.03c6.04 6.04 15.98 6.53 22.19.68 38.7-36.46 65.32-85.61 73.13-140.86 1.34-9.46-6.51-17.85-16.06-17.85zm-15.83-64.8C503.72 103.74 408.26 8.28 288.8.04 279.68-.59 272 7.1 272 16.24V240h223.77c9.14 0 16.82-7.68 16.19-16.8zM224 288V50.71c0-9.55-8.39-17.4-17.84-16.06C86.99 51.49-4.1 155.6.14 280.37 4.5 408.51 114.83 513.59 243.03 511.98c50.4-.63 96.97-16.87 135.26-44.03 7.9-5.6 8.42-17.23 1.57-24.08L224 288z\"]\n};\nvar faCheck = {\n prefix: 'fas',\n iconName: 'check',\n icon: [512, 512, [], \"f00c\", \"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"]\n};\nvar faCheckCircle = {\n prefix: 'fas',\n iconName: 'check-circle',\n icon: [512, 512, [], \"f058\", \"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"]\n};\nvar faCheckDouble = {\n prefix: 'fas',\n iconName: 'check-double',\n icon: [512, 512, [], \"f560\", \"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"]\n};\nvar faCheckSquare = {\n prefix: 'fas',\n iconName: 'check-square',\n icon: [448, 512, [], \"f14a\", \"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\"]\n};\nvar faCheese = {\n prefix: 'fas',\n iconName: 'cheese',\n icon: [512, 512, [], \"f7ef\", \"M0 288v160a32 32 0 0 0 32 32h448a32 32 0 0 0 32-32V288zM299.83 32a32 32 0 0 0-21.13 7L0 256h512c0-119.89-94-217.8-212.17-224z\"]\n};\nvar faChess = {\n prefix: 'fas',\n iconName: 'chess',\n icon: [512, 512, [], \"f439\", \"M74 208H64a16 16 0 0 0-16 16v16a16 16 0 0 0 16 16h15.94A535.78 535.78 0 0 1 64 384h128a535.78 535.78 0 0 1-15.94-128H192a16 16 0 0 0 16-16v-16a16 16 0 0 0-16-16h-10l33.89-90.38a16 16 0 0 0-15-21.62H144V64h24a8 8 0 0 0 8-8V40a8 8 0 0 0-8-8h-24V8a8 8 0 0 0-8-8h-16a8 8 0 0 0-8 8v24H88a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8h24v32H55.09a16 16 0 0 0-15 21.62zm173.16 251.58L224 448v-16a16 16 0 0 0-16-16H48a16 16 0 0 0-16 16v16L8.85 459.58A16 16 0 0 0 0 473.89V496a16 16 0 0 0 16 16h224a16 16 0 0 0 16-16v-22.11a16 16 0 0 0-8.84-14.31zm92.77-157.78l-3.29 82.2h126.72l-3.29-82.21 24.6-20.79A32 32 0 0 0 496 256.54V198a6 6 0 0 0-6-6h-26.38a6 6 0 0 0-6 6v26h-24.71v-26a6 6 0 0 0-6-6H373.1a6 6 0 0 0-6 6v26h-24.71v-26a6 6 0 0 0-6-6H310a6 6 0 0 0-6 6v58.6a32 32 0 0 0 11.36 24.4zM384 304a16 16 0 0 1 32 0v32h-32zm119.16 155.58L480 448v-16a16 16 0 0 0-16-16H336a16 16 0 0 0-16 16v16l-23.15 11.58a16 16 0 0 0-8.85 14.31V496a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16v-22.11a16 16 0 0 0-8.84-14.31z\"]\n};\nvar faChessBishop = {\n prefix: 'fas',\n iconName: 'chess-bishop',\n icon: [320, 512, [], \"f43a\", \"M8 287.88c0 51.64 22.14 73.83 56 84.6V416h192v-43.52c33.86-10.77 56-33 56-84.6 0-30.61-10.73-67.1-26.69-102.56L185 285.65a8 8 0 0 1-11.31 0l-11.31-11.31a8 8 0 0 1 0-11.31L270.27 155.1c-20.8-37.91-46.47-72.1-70.87-92.59C213.4 59.09 224 47.05 224 32a32 32 0 0 0-32-32h-64a32 32 0 0 0-32 32c0 15 10.6 27.09 24.6 30.51C67.81 106.8 8 214.5 8 287.88zM304 448H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faChessBoard = {\n prefix: 'fas',\n iconName: 'chess-board',\n icon: [512, 512, [], \"f43c\", \"M255.9.2h-64v64h64zM0 64.17v64h64v-64zM128 .2H64v64h64zm64 255.9v64h64v-64zM0 192.12v64h64v-64zM383.85.2h-64v64h64zm128 0h-64v64h64zM128 256.1H64v64h64zM511.8 448v-64h-64v64zm0-128v-64h-64v64zM383.85 512h64v-64h-64zm128-319.88v-64h-64v64zM128 512h64v-64h-64zM0 512h64v-64H0zm255.9 0h64v-64h-64zM0 320.07v64h64v-64zm319.88-191.92v-64h-64v64zm-64 128h64v-64h-64zm-64 128v64h64v-64zm128-64h64v-64h-64zm0-127.95h64v-64h-64zm0 191.93v64h64v-64zM64 384.05v64h64v-64zm128-255.9v-64h-64v64zm191.92 255.9h64v-64h-64zm-128-191.93v-64h-64v64zm128-127.95v64h64v-64zm-128 255.9v64h64v-64zm-64-127.95H128v64h64zm191.92 64h64v-64h-64zM128 128.15H64v64h64zm0 191.92v64h64v-64z\"]\n};\nvar faChessKing = {\n prefix: 'fas',\n iconName: 'chess-king',\n icon: [448, 512, [], \"f43f\", \"M400 448H48a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm16-288H256v-48h40a8 8 0 0 0 8-8V56a8 8 0 0 0-8-8h-40V8a8 8 0 0 0-8-8h-48a8 8 0 0 0-8 8v40h-40a8 8 0 0 0-8 8v48a8 8 0 0 0 8 8h40v48H32a32 32 0 0 0-30.52 41.54L74.56 416h298.88l73.08-214.46A32 32 0 0 0 416 160z\"]\n};\nvar faChessKnight = {\n prefix: 'fas',\n iconName: 'chess-knight',\n icon: [384, 512, [], \"f441\", \"M19 272.47l40.63 18.06a32 32 0 0 0 24.88.47l12.78-5.12a32 32 0 0 0 18.76-20.5l9.22-30.65a24 24 0 0 1 12.55-15.65L159.94 208v50.33a48 48 0 0 1-26.53 42.94l-57.22 28.65A80 80 0 0 0 32 401.48V416h319.86V224c0-106-85.92-192-191.92-192H12A12 12 0 0 0 0 44a16.9 16.9 0 0 0 1.79 7.58L16 80l-9 9a24 24 0 0 0-7 17v137.21a32 32 0 0 0 19 29.26zM52 128a20 20 0 1 1-20 20 20 20 0 0 1 20-20zm316 320H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faChessPawn = {\n prefix: 'fas',\n iconName: 'chess-pawn',\n icon: [320, 512, [], \"f443\", \"M105.1 224H80a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h16v5.49c0 44-4.14 86.6-24 122.51h176c-19.89-35.91-24-78.51-24-122.51V288h16a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-25.1c29.39-18.38 49.1-50.78 49.1-88a104 104 0 0 0-208 0c0 37.22 19.71 69.62 49.1 88zM304 448H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faChessQueen = {\n prefix: 'fas',\n iconName: 'chess-queen',\n icon: [512, 512, [], \"f445\", \"M256 112a56 56 0 1 0-56-56 56 56 0 0 0 56 56zm176 336H80a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm72.87-263.84l-28.51-15.92c-7.44-5-16.91-2.46-22.29 4.68a47.59 47.59 0 0 1-47.23 18.23C383.7 186.86 368 164.93 368 141.4a13.4 13.4 0 0 0-13.4-13.4h-38.77c-6 0-11.61 4-12.86 9.91a48 48 0 0 1-93.94 0c-1.25-5.92-6.82-9.91-12.86-9.91H157.4a13.4 13.4 0 0 0-13.4 13.4c0 25.69-19 48.75-44.67 50.49a47.5 47.5 0 0 1-41.54-19.15c-5.28-7.09-14.73-9.45-22.09-4.54l-28.57 16a16 16 0 0 0-5.44 20.47L104.24 416h303.52l102.55-211.37a16 16 0 0 0-5.44-20.47z\"]\n};\nvar faChessRook = {\n prefix: 'fas',\n iconName: 'chess-rook',\n icon: [384, 512, [], \"f447\", \"M368 32h-56a16 16 0 0 0-16 16v48h-48V48a16 16 0 0 0-16-16h-80a16 16 0 0 0-16 16v48H88.1V48a16 16 0 0 0-16-16H16A16 16 0 0 0 0 48v176l64 32c0 48.33-1.54 95-13.21 160h282.42C321.54 351 320 303.72 320 256l64-32V48a16 16 0 0 0-16-16zM224 320h-64v-64a32 32 0 0 1 64 0zm144 128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faChevronCircleDown = {\n prefix: 'fas',\n iconName: 'chevron-circle-down',\n icon: [512, 512, [], \"f13a\", \"M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z\"]\n};\nvar faChevronCircleLeft = {\n prefix: 'fas',\n iconName: 'chevron-circle-left',\n icon: [512, 512, [], \"f137\", \"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z\"]\n};\nvar faChevronCircleRight = {\n prefix: 'fas',\n iconName: 'chevron-circle-right',\n icon: [512, 512, [], \"f138\", \"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"]\n};\nvar faChevronCircleUp = {\n prefix: 'fas',\n iconName: 'chevron-circle-up',\n icon: [512, 512, [], \"f139\", \"M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z\"]\n};\nvar faChevronDown = {\n prefix: 'fas',\n iconName: 'chevron-down',\n icon: [448, 512, [], \"f078\", \"M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z\"]\n};\nvar faChevronLeft = {\n prefix: 'fas',\n iconName: 'chevron-left',\n icon: [320, 512, [], \"f053\", \"M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z\"]\n};\nvar faChevronRight = {\n prefix: 'fas',\n iconName: 'chevron-right',\n icon: [320, 512, [], \"f054\", \"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"]\n};\nvar faChevronUp = {\n prefix: 'fas',\n iconName: 'chevron-up',\n icon: [448, 512, [], \"f077\", \"M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z\"]\n};\nvar faChild = {\n prefix: 'fas',\n iconName: 'child',\n icon: [384, 512, [], \"f1ae\", \"M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z\"]\n};\nvar faChurch = {\n prefix: 'fas',\n iconName: 'church',\n icon: [640, 512, [], \"f51d\", \"M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z\"]\n};\nvar faCircle = {\n prefix: 'fas',\n iconName: 'circle',\n icon: [512, 512, [], \"f111\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"]\n};\nvar faCircleNotch = {\n prefix: 'fas',\n iconName: 'circle-notch',\n icon: [512, 512, [], \"f1ce\", \"M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z\"]\n};\nvar faCity = {\n prefix: 'fas',\n iconName: 'city',\n icon: [640, 512, [], \"f64f\", \"M616 192H480V24c0-13.26-10.74-24-24-24H312c-13.26 0-24 10.74-24 24v72h-64V16c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v80h-64V16c0-8.84-7.16-16-16-16H80c-8.84 0-16 7.16-16 16v80H24c-13.26 0-24 10.74-24 24v360c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V216c0-13.26-10.75-24-24-24zM128 404c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm128 192c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm160 96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12V76c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm160 288c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40z\"]\n};\nvar faClinicMedical = {\n prefix: 'fas',\n iconName: 'clinic-medical',\n icon: [576, 512, [], \"f7f2\", \"M288 115L69.47 307.71c-1.62 1.46-3.69 2.14-5.47 3.35V496a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V311.1c-1.7-1.16-3.72-1.82-5.26-3.2zm96 261a8 8 0 0 1-8 8h-56v56a8 8 0 0 1-8 8h-48a8 8 0 0 1-8-8v-56h-56a8 8 0 0 1-8-8v-48a8 8 0 0 1 8-8h56v-56a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v56h56a8 8 0 0 1 8 8zm186.69-139.72l-255.94-226a39.85 39.85 0 0 0-53.45 0l-256 226a16 16 0 0 0-1.21 22.6L25.5 282.7a16 16 0 0 0 22.6 1.21L277.42 81.63a16 16 0 0 1 21.17 0L527.91 283.9a16 16 0 0 0 22.6-1.21l21.4-23.82a16 16 0 0 0-1.22-22.59z\"]\n};\nvar faClipboard = {\n prefix: 'fas',\n iconName: 'clipboard',\n icon: [384, 512, [], \"f328\", \"M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z\"]\n};\nvar faClipboardCheck = {\n prefix: 'fas',\n iconName: 'clipboard-check',\n icon: [384, 512, [], \"f46c\", \"M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z\"]\n};\nvar faClipboardList = {\n prefix: 'fas',\n iconName: 'clipboard-list',\n icon: [384, 512, [], \"f46d\", \"M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faClock = {\n prefix: 'fas',\n iconName: 'clock',\n icon: [512, 512, [], \"f017\", \"M256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8Zm92.49,313h0l-20,25a16,16,0,0,1-22.49,2.5h0l-67-49.72a40,40,0,0,1-15-31.23V112a16,16,0,0,1,16-16h32a16,16,0,0,1,16,16V256l58,42.5A16,16,0,0,1,348.49,321Z\"]\n};\nvar faClone = {\n prefix: 'fas',\n iconName: 'clone',\n icon: [512, 512, [], \"f24d\", \"M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z\"]\n};\nvar faClosedCaptioning = {\n prefix: 'fas',\n iconName: 'closed-captioning',\n icon: [512, 512, [], \"f20a\", \"M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z\"]\n};\nvar faCloud = {\n prefix: 'fas',\n iconName: 'cloud',\n icon: [640, 512, [], \"f0c2\", \"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z\"]\n};\nvar faCloudDownloadAlt = {\n prefix: 'fas',\n iconName: 'cloud-download-alt',\n icon: [640, 512, [], \"f381\", \"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z\"]\n};\nvar faCloudMeatball = {\n prefix: 'fas',\n iconName: 'cloud-meatball',\n icon: [512, 512, [], \"f73b\", \"M48 352c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm416 0c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm-119 11.1c4.6-14.5 1.6-30.8-9.8-42.3-11.5-11.5-27.8-14.4-42.3-9.9-7-13.5-20.7-23-36.9-23s-29.9 9.5-36.9 23c-14.5-4.6-30.8-1.6-42.3 9.9-11.5 11.5-14.4 27.8-9.9 42.3-13.5 7-23 20.7-23 36.9s9.5 29.9 23 36.9c-4.6 14.5-1.6 30.8 9.9 42.3 8.2 8.2 18.9 12.3 29.7 12.3 4.3 0 8.5-1.1 12.6-2.5 7 13.5 20.7 23 36.9 23s29.9-9.5 36.9-23c4.1 1.3 8.3 2.5 12.6 2.5 10.8 0 21.5-4.1 29.7-12.3 11.5-11.5 14.4-27.8 9.8-42.3 13.5-7 23-20.7 23-36.9s-9.5-29.9-23-36.9zM512 224c0-53-43-96-96-96-.6 0-1.1.2-1.6.2 1.1-5.2 1.6-10.6 1.6-16.2 0-44.2-35.8-80-80-80-24.6 0-46.3 11.3-61 28.8C256.4 24.8 219.3 0 176 0 114.1 0 64 50.1 64 112c0 7.3.8 14.3 2.1 21.2C27.8 145.8 0 181.5 0 224c0 53 43 96 96 96h43.4c3.6-8 8.4-15.4 14.8-21.8 13.5-13.5 31.5-21.1 50.8-21.3 13.5-13.2 31.7-20.9 51-20.9s37.5 7.7 51 20.9c19.3.2 37.3 7.8 50.8 21.3 6.4 6.4 11.3 13.8 14.8 21.8H416c53 0 96-43 96-96z\"]\n};\nvar faCloudMoon = {\n prefix: 'fas',\n iconName: 'cloud-moon',\n icon: [576, 512, [], \"f6c3\", \"M342.8 352.7c5.7-9.6 9.2-20.7 9.2-32.7 0-35.3-28.7-64-64-64-17.2 0-32.8 6.9-44.3 17.9-16.3-29.6-47.5-49.9-83.7-49.9-53 0-96 43-96 96 0 2 .5 3.8.6 5.7C27.1 338.8 0 374.1 0 416c0 53 43 96 96 96h240c44.2 0 80-35.8 80-80 0-41.9-32.3-75.8-73.2-79.3zm222.5-54.3c-93.1 17.7-178.5-53.7-178.5-147.7 0-54.2 29-104 76.1-130.8 7.3-4.1 5.4-15.1-2.8-16.7C448.4 1.1 436.7 0 425 0 319.1 0 233.1 85.9 233.1 192c0 8.5.7 16.8 1.8 25 5.9 4.3 11.6 8.9 16.7 14.2 11.4-4.7 23.7-7.2 36.4-7.2 52.9 0 96 43.1 96 96 0 3.6-.2 7.2-.6 10.7 23.6 10.8 42.4 29.5 53.5 52.6 54.4-3.4 103.7-29.3 137.1-70.4 5.3-6.5-.5-16.1-8.7-14.5z\"]\n};\nvar faCloudMoonRain = {\n prefix: 'fas',\n iconName: 'cloud-moon-rain',\n icon: [576, 512, [], \"f73c\", \"M350.5 225.5c-6.9-37.2-39.3-65.5-78.5-65.5-12.3 0-23.9 3-34.3 8-17.4-24.1-45.6-40-77.7-40-53 0-96 43-96 96 0 .5.2 1.1.2 1.6C27.6 232.9 0 265.2 0 304c0 44.2 35.8 80 80 80h256c44.2 0 80-35.8 80-80 0-39.2-28.2-71.7-65.5-78.5zm217.4-1.7c-70.4 13.3-135-40.3-135-110.8 0-40.6 21.9-78 57.5-98.1 5.5-3.1 4.1-11.4-2.1-12.5C479.6.8 470.7 0 461.8 0c-77.9 0-141.1 61.2-144.4 137.9 26.7 11.9 48.2 33.8 58.9 61.7 37.1 14.3 64 47.4 70.2 86.8 5.1.5 10 1.5 15.2 1.5 44.7 0 85.6-20.2 112.6-53.3 4.2-4.8-.2-12-6.4-10.8zM364.5 418.1c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8z\"]\n};\nvar faCloudRain = {\n prefix: 'fas',\n iconName: 'cloud-rain',\n icon: [512, 512, [], \"f73d\", \"M416 128c-.6 0-1.1.2-1.6.2 1.1-5.2 1.6-10.6 1.6-16.2 0-44.2-35.8-80-80-80-24.6 0-46.3 11.3-61 28.8C256.4 24.8 219.3 0 176 0 114.1 0 64 50.1 64 112c0 7.3.8 14.3 2.1 21.2C27.8 145.8 0 181.5 0 224c0 53 43 96 96 96h320c53 0 96-43 96-96s-43-96-96-96zM88 374.2c-12.8 44.4-40 56.4-40 87.7 0 27.7 21.5 50.1 48 50.1s48-22.4 48-50.1c0-31.4-27.2-43.1-40-87.7-2.2-8.1-13.5-8.5-16 0zm160 0c-12.8 44.4-40 56.4-40 87.7 0 27.7 21.5 50.1 48 50.1s48-22.4 48-50.1c0-31.4-27.2-43.1-40-87.7-2.2-8.1-13.5-8.5-16 0zm160 0c-12.8 44.4-40 56.4-40 87.7 0 27.7 21.5 50.1 48 50.1s48-22.4 48-50.1c0-31.4-27.2-43.1-40-87.7-2.2-8.1-13.5-8.5-16 0z\"]\n};\nvar faCloudShowersHeavy = {\n prefix: 'fas',\n iconName: 'cloud-showers-heavy',\n icon: [512, 512, [], \"f740\", \"M183.9 370.1c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm96 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm-192 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm384 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm-96 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zM416 128c-.6 0-1.1.2-1.6.2 1.1-5.2 1.6-10.6 1.6-16.2 0-44.2-35.8-80-80-80-24.6 0-46.3 11.3-61 28.8C256.4 24.8 219.3 0 176 0 114.2 0 64 50.1 64 112c0 7.3.8 14.3 2.1 21.2C27.8 145.8 0 181.5 0 224c0 53 43 96 96 96h320c53 0 96-43 96-96s-43-96-96-96z\"]\n};\nvar faCloudSun = {\n prefix: 'fas',\n iconName: 'cloud-sun',\n icon: [640, 512, [], \"f6c4\", \"M575.2 325.7c.2-1.9.8-3.7.8-5.6 0-35.3-28.7-64-64-64-12.6 0-24.2 3.8-34.1 10-17.6-38.8-56.5-66-101.9-66-61.8 0-112 50.1-112 112 0 3 .7 5.8.9 8.7-49.6 3.7-88.9 44.7-88.9 95.3 0 53 43 96 96 96h272c53 0 96-43 96-96 0-42.1-27.2-77.4-64.8-90.4zm-430.4-22.6c-43.7-43.7-43.7-114.7 0-158.3 43.7-43.7 114.7-43.7 158.4 0 9.7 9.7 16.9 20.9 22.3 32.7 9.8-3.7 20.1-6 30.7-7.5L386 81.1c4-11.9-7.3-23.1-19.2-19.2L279 91.2 237.5 8.4C232-2.8 216-2.8 210.4 8.4L169 91.2 81.1 61.9C69.3 58 58 69.3 61.9 81.1l29.3 87.8-82.8 41.5c-11.2 5.6-11.2 21.5 0 27.1l82.8 41.4-29.3 87.8c-4 11.9 7.3 23.1 19.2 19.2l76.1-25.3c6.1-12.4 14-23.7 23.6-33.5-13.1-5.4-25.4-13.4-36-24zm-4.8-79.2c0 40.8 29.3 74.8 67.9 82.3 8-4.7 16.3-8.8 25.2-11.7 5.4-44.3 31-82.5 67.4-105C287.3 160.4 258 140 224 140c-46.3 0-84 37.6-84 83.9z\"]\n};\nvar faCloudSunRain = {\n prefix: 'fas',\n iconName: 'cloud-sun-rain',\n icon: [576, 512, [], \"f743\", \"M510.5 225.5c-6.9-37.2-39.3-65.5-78.5-65.5-12.3 0-23.9 3-34.3 8-17.4-24.1-45.6-40-77.7-40-53 0-96 43-96 96 0 .5.2 1.1.2 1.6C187.6 233 160 265.2 160 304c0 44.2 35.8 80 80 80h256c44.2 0 80-35.8 80-80 0-39.2-28.2-71.7-65.5-78.5zm-386.4 34.4c-37.4-37.4-37.4-98.3 0-135.8 34.6-34.6 89.1-36.8 126.7-7.4 20-12.9 43.6-20.7 69.2-20.7.7 0 1.3.2 2 .2l8.9-26.7c3.4-10.2-6.3-19.8-16.5-16.4l-75.3 25.1-35.5-71c-4.8-9.6-18.5-9.6-23.3 0l-35.5 71-75.3-25.1c-10.2-3.4-19.8 6.3-16.4 16.5l25.1 75.3-71 35.5c-9.6 4.8-9.6 18.5 0 23.3l71 35.5-25.1 75.3c-3.4 10.2 6.3 19.8 16.5 16.5l59.2-19.7c-.2-2.4-.7-4.7-.7-7.2 0-12.5 2.3-24.5 6.2-35.9-3.6-2.7-7.1-5.2-10.2-8.3zm69.8-58c4.3-24.5 15.8-46.4 31.9-64-9.8-6.2-21.4-9.9-33.8-9.9-35.3 0-64 28.7-64 64 0 18.7 8.2 35.4 21.1 47.1 11.3-15.9 26.6-28.9 44.8-37.2zm330.6 216.2c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8z\"]\n};\nvar faCloudUploadAlt = {\n prefix: 'fas',\n iconName: 'cloud-upload-alt',\n icon: [640, 512, [], \"f382\", \"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z\"]\n};\nvar faCocktail = {\n prefix: 'fas',\n iconName: 'cocktail',\n icon: [576, 512, [], \"f561\", \"M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z\"]\n};\nvar faCode = {\n prefix: 'fas',\n iconName: 'code',\n icon: [640, 512, [], \"f121\", \"M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z\"]\n};\nvar faCodeBranch = {\n prefix: 'fas',\n iconName: 'code-branch',\n icon: [384, 512, [], \"f126\", \"M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z\"]\n};\nvar faCoffee = {\n prefix: 'fas',\n iconName: 'coffee',\n icon: [640, 512, [], \"f0f4\", \"M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z\"]\n};\nvar faCog = {\n prefix: 'fas',\n iconName: 'cog',\n icon: [512, 512, [], \"f013\", \"M487.4 315.7l-42.6-24.6c4.3-23.2 4.3-47 0-70.2l42.6-24.6c4.9-2.8 7.1-8.6 5.5-14-11.1-35.6-30-67.8-54.7-94.6-3.8-4.1-10-5.1-14.8-2.3L380.8 110c-17.9-15.4-38.5-27.3-60.8-35.1V25.8c0-5.6-3.9-10.5-9.4-11.7-36.7-8.2-74.3-7.8-109.2 0-5.5 1.2-9.4 6.1-9.4 11.7V75c-22.2 7.9-42.8 19.8-60.8 35.1L88.7 85.5c-4.9-2.8-11-1.9-14.8 2.3-24.7 26.7-43.6 58.9-54.7 94.6-1.7 5.4.6 11.2 5.5 14L67.3 221c-4.3 23.2-4.3 47 0 70.2l-42.6 24.6c-4.9 2.8-7.1 8.6-5.5 14 11.1 35.6 30 67.8 54.7 94.6 3.8 4.1 10 5.1 14.8 2.3l42.6-24.6c17.9 15.4 38.5 27.3 60.8 35.1v49.2c0 5.6 3.9 10.5 9.4 11.7 36.7 8.2 74.3 7.8 109.2 0 5.5-1.2 9.4-6.1 9.4-11.7v-49.2c22.2-7.9 42.8-19.8 60.8-35.1l42.6 24.6c4.9 2.8 11 1.9 14.8-2.3 24.7-26.7 43.6-58.9 54.7-94.6 1.5-5.5-.7-11.3-5.6-14.1zM256 336c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faCogs = {\n prefix: 'fas',\n iconName: 'cogs',\n icon: [640, 512, [], \"f085\", \"M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z\"]\n};\nvar faCoins = {\n prefix: 'fas',\n iconName: 'coins',\n icon: [512, 512, [], \"f51e\", \"M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z\"]\n};\nvar faColumns = {\n prefix: 'fas',\n iconName: 'columns',\n icon: [512, 512, [], \"f0db\", \"M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z\"]\n};\nvar faComment = {\n prefix: 'fas',\n iconName: 'comment',\n icon: [512, 512, [], \"f075\", \"M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z\"]\n};\nvar faCommentAlt = {\n prefix: 'fas',\n iconName: 'comment-alt',\n icon: [512, 512, [], \"f27a\", \"M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z\"]\n};\nvar faCommentDollar = {\n prefix: 'fas',\n iconName: 'comment-dollar',\n icon: [512, 512, [], \"f651\", \"M256 32C114.62 32 0 125.12 0 240c0 49.56 21.41 95.01 57.02 130.74C44.46 421.05 2.7 465.97 2.2 466.5A7.995 7.995 0 0 0 8 480c66.26 0 115.99-31.75 140.6-51.38C181.29 440.93 217.59 448 256 448c141.38 0 256-93.12 256-208S397.38 32 256 32zm24 302.44V352c0 8.84-7.16 16-16 16h-16c-8.84 0-16-7.16-16-16v-17.73c-11.42-1.35-22.28-5.19-31.78-11.46-6.22-4.11-6.82-13.11-1.55-18.38l17.52-17.52c3.74-3.74 9.31-4.24 14.11-2.03 3.18 1.46 6.66 2.22 10.26 2.22h32.78c4.66 0 8.44-3.78 8.44-8.42 0-3.75-2.52-7.08-6.12-8.11l-50.07-14.3c-22.25-6.35-40.01-24.71-42.91-47.67-4.05-32.07 19.03-59.43 49.32-63.05V128c0-8.84 7.16-16 16-16h16c8.84 0 16 7.16 16 16v17.73c11.42 1.35 22.28 5.19 31.78 11.46 6.22 4.11 6.82 13.11 1.55 18.38l-17.52 17.52c-3.74 3.74-9.31 4.24-14.11 2.03a24.516 24.516 0 0 0-10.26-2.22h-32.78c-4.66 0-8.44 3.78-8.44 8.42 0 3.75 2.52 7.08 6.12 8.11l50.07 14.3c22.25 6.36 40.01 24.71 42.91 47.67 4.05 32.06-19.03 59.42-49.32 63.04z\"]\n};\nvar faCommentDots = {\n prefix: 'fas',\n iconName: 'comment-dots',\n icon: [512, 512, [], \"f4ad\", \"M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faCommentMedical = {\n prefix: 'fas',\n iconName: 'comment-medical',\n icon: [512, 512, [], \"f7f5\", \"M256 32C114.62 32 0 125.12 0 240c0 49.56 21.41 95 57 130.74C44.46 421.05 2.7 466 2.2 466.5A8 8 0 0 0 8 480c66.26 0 116-31.75 140.6-51.38A304.66 304.66 0 0 0 256 448c141.39 0 256-93.12 256-208S397.39 32 256 32zm96 232a8 8 0 0 1-8 8h-56v56a8 8 0 0 1-8 8h-48a8 8 0 0 1-8-8v-56h-56a8 8 0 0 1-8-8v-48a8 8 0 0 1 8-8h56v-56a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v56h56a8 8 0 0 1 8 8z\"]\n};\nvar faCommentSlash = {\n prefix: 'fas',\n iconName: 'comment-slash',\n icon: [640, 512, [], \"f4b3\", \"M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z\"]\n};\nvar faComments = {\n prefix: 'fas',\n iconName: 'comments',\n icon: [576, 512, [], \"f086\", \"M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z\"]\n};\nvar faCommentsDollar = {\n prefix: 'fas',\n iconName: 'comments-dollar',\n icon: [576, 512, [], \"f653\", \"M416 192c0-88.37-93.12-160-208-160S0 103.63 0 192c0 34.27 14.13 65.95 37.97 91.98C24.61 314.22 2.52 338.16 2.2 338.5A7.995 7.995 0 0 0 8 352c36.58 0 66.93-12.25 88.73-24.98C128.93 342.76 167.02 352 208 352c114.88 0 208-71.63 208-160zm-224 96v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V96c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07V288c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm346.01 123.99C561.87 385.96 576 354.27 576 320c0-66.94-53.49-124.2-129.33-148.07.86 6.6 1.33 13.29 1.33 20.07 0 105.87-107.66 192-240 192-10.78 0-21.32-.77-31.73-1.88C207.8 439.63 281.77 480 368 480c40.98 0 79.07-9.24 111.27-24.98C501.07 467.75 531.42 480 568 480c3.2 0 6.09-1.91 7.34-4.84 1.27-2.94.66-6.34-1.55-8.67-.31-.33-22.42-24.24-35.78-54.5z\"]\n};\nvar faCompactDisc = {\n prefix: 'fas',\n iconName: 'compact-disc',\n icon: [496, 512, [], \"f51f\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z\"]\n};\nvar faCompass = {\n prefix: 'fas',\n iconName: 'compass',\n icon: [496, 512, [], \"f14e\", \"M225.38 233.37c-12.5 12.5-12.5 32.76 0 45.25 12.49 12.5 32.76 12.5 45.25 0 12.5-12.5 12.5-32.76 0-45.25-12.5-12.49-32.76-12.49-45.25 0zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm126.14 148.05L308.17 300.4a31.938 31.938 0 0 1-15.77 15.77l-144.34 65.97c-16.65 7.61-33.81-9.55-26.2-26.2l65.98-144.35a31.938 31.938 0 0 1 15.77-15.77l144.34-65.97c16.65-7.6 33.8 9.55 26.19 26.2z\"]\n};\nvar faCompress = {\n prefix: 'fas',\n iconName: 'compress',\n icon: [448, 512, [], \"f066\", \"M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z\"]\n};\nvar faCompressAlt = {\n prefix: 'fas',\n iconName: 'compress-alt',\n icon: [448, 512, [], \"f422\", \"M4.686 427.314L104 328l-32.922-31.029C55.958 281.851 66.666 256 88.048 256h112C213.303 256 224 266.745 224 280v112c0 21.382-25.803 32.09-40.922 16.971L152 376l-99.314 99.314c-6.248 6.248-16.379 6.248-22.627 0L4.686 449.941c-6.248-6.248-6.248-16.379 0-22.627zM443.314 84.686L344 184l32.922 31.029c15.12 15.12 4.412 40.971-16.97 40.971h-112C234.697 256 224 245.255 224 232V120c0-21.382 25.803-32.09 40.922-16.971L296 136l99.314-99.314c6.248-6.248 16.379-6.248 22.627 0l25.373 25.373c6.248 6.248 6.248 16.379 0 22.627z\"]\n};\nvar faCompressArrowsAlt = {\n prefix: 'fas',\n iconName: 'compress-arrows-alt',\n icon: [512, 512, [], \"f78c\", \"M200 288H88c-21.4 0-32.1 25.8-17 41l32.9 31-99.2 99.3c-6.2 6.2-6.2 16.4 0 22.6l25.4 25.4c6.2 6.2 16.4 6.2 22.6 0L152 408l31.1 33c15.1 15.1 40.9 4.4 40.9-17V312c0-13.3-10.7-24-24-24zm112-64h112c21.4 0 32.1-25.9 17-41l-33-31 99.3-99.3c6.2-6.2 6.2-16.4 0-22.6L481.9 4.7c-6.2-6.2-16.4-6.2-22.6 0L360 104l-31.1-33C313.8 55.9 288 66.6 288 88v112c0 13.3 10.7 24 24 24zm96 136l33-31.1c15.1-15.1 4.4-40.9-17-40.9H312c-13.3 0-24 10.7-24 24v112c0 21.4 25.9 32.1 41 17l31-32.9 99.3 99.3c6.2 6.2 16.4 6.2 22.6 0l25.4-25.4c6.2-6.2 6.2-16.4 0-22.6L408 360zM183 71.1L152 104 52.7 4.7c-6.2-6.2-16.4-6.2-22.6 0L4.7 30.1c-6.2 6.2-6.2 16.4 0 22.6L104 152l-33 31.1C55.9 198.2 66.6 224 88 224h112c13.3 0 24-10.7 24-24V88c0-21.3-25.9-32-41-16.9z\"]\n};\nvar faConciergeBell = {\n prefix: 'fas',\n iconName: 'concierge-bell',\n icon: [512, 512, [], \"f562\", \"M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faCookie = {\n prefix: 'fas',\n iconName: 'cookie',\n icon: [512, 512, [], \"f563\", \"M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faCookieBite = {\n prefix: 'fas',\n iconName: 'cookie-bite',\n icon: [512, 512, [], \"f564\", \"M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faCopy = {\n prefix: 'fas',\n iconName: 'copy',\n icon: [448, 512, [], \"f0c5\", \"M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z\"]\n};\nvar faCopyright = {\n prefix: 'fas',\n iconName: 'copyright',\n icon: [512, 512, [], \"f1f9\", \"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z\"]\n};\nvar faCouch = {\n prefix: 'fas',\n iconName: 'couch',\n icon: [640, 512, [], \"f4b8\", \"M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z\"]\n};\nvar faCreditCard = {\n prefix: 'fas',\n iconName: 'credit-card',\n icon: [576, 512, [], \"f09d\", \"M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z\"]\n};\nvar faCrop = {\n prefix: 'fas',\n iconName: 'crop',\n icon: [512, 512, [], \"f125\", \"M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z\"]\n};\nvar faCropAlt = {\n prefix: 'fas',\n iconName: 'crop-alt',\n icon: [512, 512, [], \"f565\", \"M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z\"]\n};\nvar faCross = {\n prefix: 'fas',\n iconName: 'cross',\n icon: [384, 512, [], \"f654\", \"M352 128h-96V32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h96v224c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V256h96c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z\"]\n};\nvar faCrosshairs = {\n prefix: 'fas',\n iconName: 'crosshairs',\n icon: [512, 512, [], \"f05b\", \"M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z\"]\n};\nvar faCrow = {\n prefix: 'fas',\n iconName: 'crow',\n icon: [640, 512, [], \"f520\", \"M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faCrown = {\n prefix: 'fas',\n iconName: 'crown',\n icon: [640, 512, [], \"f521\", \"M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z\"]\n};\nvar faCrutch = {\n prefix: 'fas',\n iconName: 'crutch',\n icon: [512, 512, [], \"f7f7\", \"M507.31 185.71l-181-181a16 16 0 0 0-22.62 0L281 27.31a16 16 0 0 0 0 22.63l181 181a16 16 0 0 0 22.63 0l22.62-22.63a16 16 0 0 0 .06-22.6zm-179.54 66.41l-67.89-67.89 55.1-55.1-45.25-45.25-109.67 109.67a96.08 96.08 0 0 0-25.67 46.29L106.65 360.1l-102 102a16 16 0 0 0 0 22.63l22.62 22.62a16 16 0 0 0 22.63 0l102-102 120.25-27.75a95.88 95.88 0 0 0 46.29-25.65l109.68-109.68L382.87 197zm-54.57 54.57a32 32 0 0 1-15.45 8.54l-79.3 18.32 18.3-79.3a32.22 32.22 0 0 1 8.56-15.45l9.31-9.31 67.89 67.89z\"]\n};\nvar faCube = {\n prefix: 'fas',\n iconName: 'cube',\n icon: [512, 512, [], \"f1b2\", \"M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z\"]\n};\nvar faCubes = {\n prefix: 'fas',\n iconName: 'cubes',\n icon: [512, 512, [], \"f1b3\", \"M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z\"]\n};\nvar faCut = {\n prefix: 'fas',\n iconName: 'cut',\n icon: [448, 512, [], \"f0c4\", \"M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z\"]\n};\nvar faDatabase = {\n prefix: 'fas',\n iconName: 'database',\n icon: [448, 512, [], \"f1c0\", \"M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z\"]\n};\nvar faDeaf = {\n prefix: 'fas',\n iconName: 'deaf',\n icon: [512, 512, [], \"f2a4\", \"M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z\"]\n};\nvar faDemocrat = {\n prefix: 'fas',\n iconName: 'democrat',\n icon: [640, 512, [], \"f747\", \"M637.3 256.9l-19.6-29.4c-28.2-42.3-75.3-67.5-126.1-67.5H256l-81.2-81.2c20.1-20.1 22.6-51.1 7.5-73.9-3.4-5.2-10.8-5.9-15.2-1.5l-41.8 41.8L82.4 2.4c-3.6-3.6-9.6-3-12.4 1.2-12.3 18.6-10.3 44 6.1 60.4 3.3 3.3 7.3 5.3 11.3 7.5-2.2 1.7-4.7 3.1-6.4 5.4L6.4 176.2c-7.3 9.7-8.4 22.7-3 33.5l14.3 28.6c5.4 10.8 16.5 17.7 28.6 17.7h31c8.5 0 16.6-3.4 22.6-9.4L138 212l54 108h352v-77.8c16.2 12.2 18.3 17.6 40.1 50.3 4.9 7.4 14.8 9.3 22.2 4.4l26.6-17.7c7.3-5 9.3-14.9 4.4-22.3zm-341.1-13.6l-16.5 16.1 3.9 22.7c.7 4.1-3.6 7.2-7.2 5.3L256 276.7l-20.4 10.7c-3.6 1.9-7.9-1.2-7.2-5.3l3.9-22.7-16.5-16.1c-3-2.9-1.3-7.9 2.8-8.5l22.8-3.3 10.2-20.7c1.8-3.7 7.1-3.7 9 0l10.2 20.7 22.8 3.3c4 .6 5.6 5.6 2.6 8.5zm112 0l-16.5 16.1 3.9 22.7c.7 4.1-3.6 7.2-7.2 5.3L368 276.7l-20.4 10.7c-3.6 1.9-7.9-1.2-7.2-5.3l3.9-22.7-16.5-16.1c-3-2.9-1.3-7.9 2.8-8.5l22.8-3.3 10.2-20.7c1.8-3.7 7.1-3.7 9 0l10.2 20.7 22.8 3.3c4 .6 5.6 5.6 2.6 8.5zm112 0l-16.5 16.1 3.9 22.7c.7 4.1-3.6 7.2-7.2 5.3L480 276.7l-20.4 10.7c-3.6 1.9-7.9-1.2-7.2-5.3l3.9-22.7-16.5-16.1c-3-2.9-1.3-7.9 2.8-8.5l22.8-3.3 10.2-20.7c1.8-3.7 7.1-3.7 9 0l10.2 20.7 22.8 3.3c4 .6 5.6 5.6 2.6 8.5zM192 496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80h160v80c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V352H192v144z\"]\n};\nvar faDesktop = {\n prefix: 'fas',\n iconName: 'desktop',\n icon: [576, 512, [], \"f108\", \"M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z\"]\n};\nvar faDharmachakra = {\n prefix: 'fas',\n iconName: 'dharmachakra',\n icon: [512, 512, [], \"f655\", \"M495 225.06l-17.22 1.08c-5.27-39.49-20.79-75.64-43.86-105.84l12.95-11.43c6.92-6.11 7.25-16.79.73-23.31L426.44 64.4c-6.53-6.53-17.21-6.19-23.31.73L391.7 78.07c-30.2-23.06-66.35-38.58-105.83-43.86L286.94 17c.58-9.21-6.74-17-15.97-17h-29.94c-9.23 0-16.54 7.79-15.97 17l1.08 17.22c-39.49 5.27-75.64 20.79-105.83 43.86l-11.43-12.95c-6.11-6.92-16.79-7.25-23.31-.73L64.4 85.56c-6.53 6.53-6.19 17.21.73 23.31l12.95 11.43c-23.06 30.2-38.58 66.35-43.86 105.84L17 225.06c-9.21-.58-17 6.74-17 15.97v29.94c0 9.23 7.79 16.54 17 15.97l17.22-1.08c5.27 39.49 20.79 75.64 43.86 105.83l-12.95 11.43c-6.92 6.11-7.25 16.79-.73 23.31l21.17 21.17c6.53 6.53 17.21 6.19 23.31-.73l11.43-12.95c30.2 23.06 66.35 38.58 105.84 43.86L225.06 495c-.58 9.21 6.74 17 15.97 17h29.94c9.23 0 16.54-7.79 15.97-17l-1.08-17.22c39.49-5.27 75.64-20.79 105.84-43.86l11.43 12.95c6.11 6.92 16.79 7.25 23.31.73l21.17-21.17c6.53-6.53 6.19-17.21-.73-23.31l-12.95-11.43c23.06-30.2 38.58-66.35 43.86-105.83l17.22 1.08c9.21.58 17-6.74 17-15.97v-29.94c-.01-9.23-7.8-16.54-17.01-15.97zM281.84 98.61c24.81 4.07 47.63 13.66 67.23 27.78l-42.62 48.29c-8.73-5.44-18.32-9.54-28.62-11.95l4.01-64.12zm-51.68 0l4.01 64.12c-10.29 2.41-19.89 6.52-28.62 11.95l-42.62-48.29c19.6-14.12 42.42-23.71 67.23-27.78zm-103.77 64.33l48.3 42.61c-5.44 8.73-9.54 18.33-11.96 28.62l-64.12-4.01c4.07-24.81 13.66-47.62 27.78-67.22zm-27.78 118.9l64.12-4.01c2.41 10.29 6.52 19.89 11.95 28.62l-48.29 42.62c-14.12-19.6-23.71-42.42-27.78-67.23zm131.55 131.55c-24.81-4.07-47.63-13.66-67.23-27.78l42.61-48.3c8.73 5.44 18.33 9.54 28.62 11.96l-4 64.12zM256 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm25.84 125.39l-4.01-64.12c10.29-2.41 19.89-6.52 28.62-11.96l42.61 48.3c-19.6 14.12-42.41 23.71-67.22 27.78zm103.77-64.33l-48.29-42.62c5.44-8.73 9.54-18.32 11.95-28.62l64.12 4.01c-4.07 24.82-13.66 47.64-27.78 67.23zm-36.34-114.89c-2.41-10.29-6.52-19.89-11.96-28.62l48.3-42.61c14.12 19.6 23.71 42.42 27.78 67.23l-64.12 4z\"]\n};\nvar faDiagnoses = {\n prefix: 'fas',\n iconName: 'diagnoses',\n icon: [640, 512, [], \"f470\", \"M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z\"]\n};\nvar faDice = {\n prefix: 'fas',\n iconName: 'dice',\n icon: [640, 512, [], \"f522\", \"M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faDiceD20 = {\n prefix: 'fas',\n iconName: 'dice-d20',\n icon: [480, 512, [], \"f6cf\", \"M106.75 215.06L1.2 370.95c-3.08 5 .1 11.5 5.93 12.14l208.26 22.07-108.64-190.1zM7.41 315.43L82.7 193.08 6.06 147.1c-2.67-1.6-6.06.32-6.06 3.43v162.81c0 4.03 5.29 5.53 7.41 2.09zM18.25 423.6l194.4 87.66c5.3 2.45 11.35-1.43 11.35-7.26v-65.67l-203.55-22.3c-4.45-.5-6.23 5.59-2.2 7.57zm81.22-257.78L179.4 22.88c4.34-7.06-3.59-15.25-10.78-11.14L17.81 110.35c-2.47 1.62-2.39 5.26.13 6.78l81.53 48.69zM240 176h109.21L253.63 7.62C250.5 2.54 245.25 0 240 0s-10.5 2.54-13.63 7.62L130.79 176H240zm233.94-28.9l-76.64 45.99 75.29 122.35c2.11 3.44 7.41 1.94 7.41-2.1V150.53c0-3.11-3.39-5.03-6.06-3.43zm-93.41 18.72l81.53-48.7c2.53-1.52 2.6-5.16.13-6.78l-150.81-98.6c-7.19-4.11-15.12 4.08-10.78 11.14l79.93 142.94zm79.02 250.21L256 438.32v65.67c0 5.84 6.05 9.71 11.35 7.26l194.4-87.66c4.03-1.97 2.25-8.06-2.2-7.56zm-86.3-200.97l-108.63 190.1 208.26-22.07c5.83-.65 9.01-7.14 5.93-12.14L373.25 215.06zM240 208H139.57L240 383.75 340.43 208H240z\"]\n};\nvar faDiceD6 = {\n prefix: 'fas',\n iconName: 'dice-d6',\n icon: [448, 512, [], \"f6d1\", \"M422.19 109.95L256.21 9.07c-19.91-12.1-44.52-12.1-64.43 0L25.81 109.95c-5.32 3.23-5.29 11.27.06 14.46L224 242.55l198.14-118.14c5.35-3.19 5.38-11.22.05-14.46zm13.84 44.63L240 271.46v223.82c0 12.88 13.39 20.91 24.05 14.43l152.16-92.48c19.68-11.96 31.79-33.94 31.79-57.7v-197.7c0-6.41-6.64-10.43-11.97-7.25zM0 161.83v197.7c0 23.77 12.11 45.74 31.79 57.7l152.16 92.47c10.67 6.48 24.05-1.54 24.05-14.43V271.46L11.97 154.58C6.64 151.4 0 155.42 0 161.83z\"]\n};\nvar faDiceFive = {\n prefix: 'fas',\n iconName: 'dice-five',\n icon: [448, 512, [], \"f523\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceFour = {\n prefix: 'fas',\n iconName: 'dice-four',\n icon: [448, 512, [], \"f524\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceOne = {\n prefix: 'fas',\n iconName: 'dice-one',\n icon: [448, 512, [], \"f525\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceSix = {\n prefix: 'fas',\n iconName: 'dice-six',\n icon: [448, 512, [], \"f526\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceThree = {\n prefix: 'fas',\n iconName: 'dice-three',\n icon: [448, 512, [], \"f527\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceTwo = {\n prefix: 'fas',\n iconName: 'dice-two',\n icon: [448, 512, [], \"f528\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDigitalTachograph = {\n prefix: 'fas',\n iconName: 'digital-tachograph',\n icon: [640, 512, [], \"f566\", \"M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z\"]\n};\nvar faDirections = {\n prefix: 'fas',\n iconName: 'directions',\n icon: [512, 512, [], \"f5eb\", \"M502.61 233.32L278.68 9.39c-12.52-12.52-32.83-12.52-45.36 0L9.39 233.32c-12.52 12.53-12.52 32.83 0 45.36l223.93 223.93c12.52 12.53 32.83 12.53 45.36 0l223.93-223.93c12.52-12.53 12.52-32.83 0-45.36zm-100.98 12.56l-84.21 77.73c-5.12 4.73-13.43 1.1-13.43-5.88V264h-96v64c0 4.42-3.58 8-8 8h-32c-4.42 0-8-3.58-8-8v-80c0-17.67 14.33-32 32-32h112v-53.73c0-6.97 8.3-10.61 13.43-5.88l84.21 77.73c3.43 3.17 3.43 8.59 0 11.76z\"]\n};\nvar faDisease = {\n prefix: 'fas',\n iconName: 'disease',\n icon: [512, 512, [], \"f7fa\", \"M472.29 195.9l-67.06-23c-19.28-6.6-33.54-20.92-38.14-38.31l-16-60.45c-11.58-43.77-76.57-57.13-110-22.62L195 99.24c-13.26 13.71-33.54 20.93-54.2 19.31l-71.9-5.62c-52-4.07-86.93 44.89-59 82.84l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24l-28.43 57C4 396.67 47.46 440.29 98.11 429.23l70-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101 7.57 104.45-37.22l4.7-61.86c1.35-17.8 12.8-33.87 30.63-43l62-31.74c44.84-22.96 39.55-80.17-8.99-96.79zM160 256a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm128 96a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm16-128a16 16 0 1 1 16-16 16 16 0 0 1-16 16z\"]\n};\nvar faDivide = {\n prefix: 'fas',\n iconName: 'divide',\n icon: [448, 512, [], \"f529\", \"M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"]\n};\nvar faDizzy = {\n prefix: 'fas',\n iconName: 'dizzy',\n icon: [496, 512, [], \"f567\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z\"]\n};\nvar faDna = {\n prefix: 'fas',\n iconName: 'dna',\n icon: [448, 512, [], \"f471\", \"M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z\"]\n};\nvar faDog = {\n prefix: 'fas',\n iconName: 'dog',\n icon: [576, 512, [], \"f6d3\", \"M298.06,224,448,277.55V496a16,16,0,0,1-16,16H368a16,16,0,0,1-16-16V384H192V496a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V282.09C58.84,268.84,32,233.66,32,192a32,32,0,0,1,64,0,32.06,32.06,0,0,0,32,32ZM544,112v32a64,64,0,0,1-64,64H448v35.58L320,197.87V48c0-14.25,17.22-21.39,27.31-11.31L374.59,64h53.63c10.91,0,23.75,7.92,28.62,17.69L464,96h64A16,16,0,0,1,544,112Zm-112,0a16,16,0,1,0-16,16A16,16,0,0,0,432,112Z\"]\n};\nvar faDollarSign = {\n prefix: 'fas',\n iconName: 'dollar-sign',\n icon: [288, 512, [], \"f155\", \"M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z\"]\n};\nvar faDolly = {\n prefix: 'fas',\n iconName: 'dolly',\n icon: [576, 512, [], \"f472\", \"M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z\"]\n};\nvar faDollyFlatbed = {\n prefix: 'fas',\n iconName: 'dolly-flatbed',\n icon: [640, 512, [], \"f474\", \"M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z\"]\n};\nvar faDonate = {\n prefix: 'fas',\n iconName: 'donate',\n icon: [512, 512, [], \"f4b9\", \"M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z\"]\n};\nvar faDoorClosed = {\n prefix: 'fas',\n iconName: 'door-closed',\n icon: [640, 512, [], \"f52a\", \"M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z\"]\n};\nvar faDoorOpen = {\n prefix: 'fas',\n iconName: 'door-open',\n icon: [640, 512, [], \"f52b\", \"M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z\"]\n};\nvar faDotCircle = {\n prefix: 'fas',\n iconName: 'dot-circle',\n icon: [512, 512, [], \"f192\", \"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z\"]\n};\nvar faDove = {\n prefix: 'fas',\n iconName: 'dove',\n icon: [512, 512, [], \"f4ba\", \"M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z\"]\n};\nvar faDownload = {\n prefix: 'fas',\n iconName: 'download',\n icon: [512, 512, [], \"f019\", \"M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z\"]\n};\nvar faDraftingCompass = {\n prefix: 'fas',\n iconName: 'drafting-compass',\n icon: [512, 512, [], \"f568\", \"M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z\"]\n};\nvar faDragon = {\n prefix: 'fas',\n iconName: 'dragon',\n icon: [640, 512, [], \"f6d5\", \"M18.32 255.78L192 223.96l-91.28 68.69c-10.08 10.08-2.94 27.31 11.31 27.31h222.7c-9.44-26.4-14.73-54.47-14.73-83.38v-42.27l-119.73-87.6c-23.82-15.88-55.29-14.01-77.06 4.59L5.81 227.64c-12.38 10.33-3.45 30.42 12.51 28.14zm556.87 34.1l-100.66-50.31A47.992 47.992 0 0 1 448 196.65v-36.69h64l28.09 22.63c6 6 14.14 9.37 22.63 9.37h30.97a32 32 0 0 0 28.62-17.69l14.31-28.62a32.005 32.005 0 0 0-3.02-33.51l-74.53-99.38C553.02 4.7 543.54 0 533.47 0H296.02c-7.13 0-10.7 8.57-5.66 13.61L352 63.96 292.42 88.8c-5.9 2.95-5.9 11.36 0 14.31L352 127.96v108.62c0 72.08 36.03 139.39 96 179.38-195.59 6.81-344.56 41.01-434.1 60.91C5.78 478.67 0 485.88 0 494.2 0 504 7.95 512 17.76 512h499.08c63.29.01 119.61-47.56 122.99-110.76 2.52-47.28-22.73-90.4-64.64-111.36zM489.18 66.25l45.65 11.41c-2.75 10.91-12.47 18.89-24.13 18.26-12.96-.71-25.85-12.53-21.52-29.67z\"]\n};\nvar faDrawPolygon = {\n prefix: 'fas',\n iconName: 'draw-polygon',\n icon: [448, 512, [], \"f5ee\", \"M384 352c-.35 0-.67.1-1.02.1l-39.2-65.32c5.07-9.17 8.22-19.56 8.22-30.78s-3.14-21.61-8.22-30.78l39.2-65.32c.35.01.67.1 1.02.1 35.35 0 64-28.65 64-64s-28.65-64-64-64c-23.63 0-44.04 12.95-55.12 32H119.12C108.04 44.95 87.63 32 64 32 28.65 32 0 60.65 0 96c0 23.63 12.95 44.04 32 55.12v209.75C12.95 371.96 0 392.37 0 416c0 35.35 28.65 64 64 64 23.63 0 44.04-12.95 55.12-32h209.75c11.09 19.05 31.49 32 55.12 32 35.35 0 64-28.65 64-64 .01-35.35-28.64-64-63.99-64zm-288 8.88V151.12A63.825 63.825 0 0 0 119.12 128h208.36l-38.46 64.1c-.35-.01-.67-.1-1.02-.1-35.35 0-64 28.65-64 64s28.65 64 64 64c.35 0 .67-.1 1.02-.1l38.46 64.1H119.12A63.748 63.748 0 0 0 96 360.88zM272 256c0-8.82 7.18-16 16-16s16 7.18 16 16-7.18 16-16 16-16-7.18-16-16zM400 96c0 8.82-7.18 16-16 16s-16-7.18-16-16 7.18-16 16-16 16 7.18 16 16zM64 80c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16zM48 416c0-8.82 7.18-16 16-16s16 7.18 16 16-7.18 16-16 16-16-7.18-16-16zm336 16c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16z\"]\n};\nvar faDrum = {\n prefix: 'fas',\n iconName: 'drum',\n icon: [512, 512, [], \"f569\", \"M431.34 122.05l73.53-47.42a16 16 0 0 0 4.44-22.19l-8.87-13.31a16 16 0 0 0-22.19-4.44l-110.06 71C318.43 96.91 271.22 96 256 96 219.55 96 0 100.55 0 208.15v160.23c0 30.27 27.5 57.68 72 77.86v-101.9a24 24 0 1 1 48 0v118.93c33.05 9.11 71.07 15.06 112 16.73V376.39a24 24 0 1 1 48 0V480c40.93-1.67 78.95-7.62 112-16.73V344.34a24 24 0 1 1 48 0v101.9c44.5-20.18 72-47.59 72-77.86V208.15c0-43.32-35.76-69.76-80.66-86.1zM256 272.24c-114.88 0-208-28.69-208-64.09s93.12-64.08 208-64.08c17.15 0 33.73.71 49.68 1.91l-72.81 47a16 16 0 0 0-4.43 22.19l8.87 13.31a16 16 0 0 0 22.19 4.44l118.64-76.52C430.09 168 464 186.84 464 208.15c0 35.4-93.13 64.09-208 64.09z\"]\n};\nvar faDrumSteelpan = {\n prefix: 'fas',\n iconName: 'drum-steelpan',\n icon: [576, 512, [], \"f56a\", \"M288 32C128.94 32 0 89.31 0 160v192c0 70.69 128.94 128 288 128s288-57.31 288-128V160c0-70.69-128.94-128-288-128zm-82.99 158.36c-4.45 16.61-14.54 30.57-28.31 40.48C100.23 217.46 48 190.78 48 160c0-30.16 50.11-56.39 124.04-70.03l25.6 44.34c9.86 17.09 12.48 36.99 7.37 56.05zM288 240c-21.08 0-41.41-1-60.89-2.7 8.06-26.13 32.15-45.3 60.89-45.3s52.83 19.17 60.89 45.3C329.41 239 309.08 240 288 240zm64-144c0 35.29-28.71 64-64 64s-64-28.71-64-64V82.96c20.4-1.88 41.8-2.96 64-2.96s43.6 1.08 64 2.96V96zm46.93 134.9c-13.81-9.91-23.94-23.9-28.4-40.54-5.11-19.06-2.49-38.96 7.38-56.04l25.65-44.42C477.72 103.5 528 129.79 528 160c0 30.83-52.4 57.54-129.07 70.9z\"]\n};\nvar faDrumstickBite = {\n prefix: 'fas',\n iconName: 'drumstick-bite',\n icon: [512, 512, [], \"f6d7\", \"M462.8 49.57a169.44 169.44 0 0 0-239.5 0C187.82 85 160.13 128 160.13 192v85.83l-40.62 40.59c-9.7 9.69-24 11.07-36.78 6a60.33 60.33 0 0 0-65 98.72C33 438.39 54.24 442.7 73.85 438.21c-4.5 19.6-.18 40.83 15.1 56.1a60.35 60.35 0 0 0 98.8-65c-5.09-12.73-3.72-27 6-36.75L234.36 352h85.89a187.87 187.87 0 0 0 61.89-10c-39.64-43.89-39.83-110.23 1.05-151.07 34.38-34.36 86.76-39.46 128.74-16.8 1.3-44.96-14.81-90.28-49.13-124.56z\"]\n};\nvar faDumbbell = {\n prefix: 'fas',\n iconName: 'dumbbell',\n icon: [640, 512, [], \"f44b\", \"M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z\"]\n};\nvar faDumpster = {\n prefix: 'fas',\n iconName: 'dumpster',\n icon: [576, 512, [], \"f793\", \"M560 160c10.4 0 18-9.8 15.5-19.9l-24-96C549.7 37 543.3 32 536 32h-98.9l25.6 128H560zM272 32H171.5l-25.6 128H272V32zm132.5 0H304v128h126.1L404.5 32zM16 160h97.3l25.6-128H40c-7.3 0-13.7 5-15.5 12.1l-24 96C-2 150.2 5.6 160 16 160zm544 64h-20l4-32H32l4 32H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h28l20 160v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h320v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16l20-160h28c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z\"]\n};\nvar faDumpsterFire = {\n prefix: 'fas',\n iconName: 'dumpster-fire',\n icon: [640, 512, [], \"f794\", \"M418.7 104.1l.2-.2-14.4-72H304v128h60.8c16.2-19.3 34.2-38.2 53.9-55.8zM272 32H171.5l-25.6 128H272V32zm189.3 72.1c18.2 16.3 35.5 33.7 51.1 51.5 5.7-5.6 11.4-11.1 17.3-16.3l21.3-19 21.3 19c1.1.9 2.1 2.1 3.1 3.1-.1-.8.2-1.5 0-2.3l-24-96C549.7 37 543.3 32 536 32h-98.9l12.3 61.5 11.9 10.6zM16 160h97.3l25.6-128H40c-7.3 0-13.7 5-15.5 12.1l-24 96C-2 150.2 5.6 160 16 160zm324.6 32H32l4 32H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h28l20 160v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208.8c-30.2-33.7-48.8-77.9-48.8-126.4 0-35.9 19.9-82.9 52.6-129.6zm210.5-28.8c-14.9 13.3-28.3 27.2-40.2 41.2-19.5-25.8-43.6-52-71-76.4-70.2 62.7-120 144.3-120 193.6 0 87.5 71.6 158.4 160 158.4s160-70.9 160-158.4c.1-36.6-37-112.2-88.8-158.4zm-18.6 229.4c-14.7 10.7-32.9 17-52.5 17-49 0-88.9-33.5-88.9-88 0-27.1 16.5-51 49.4-91.9 4.7 5.6 67.1 88.1 67.1 88.1l39.8-47c2.8 4.8 5.4 9.5 7.7 14 18.6 36.7 10.8 83.6-22.6 107.8z\"]\n};\nvar faDungeon = {\n prefix: 'fas',\n iconName: 'dungeon',\n icon: [512, 512, [], \"f6d9\", \"M128.73 195.32l-82.81-51.76c-8.04-5.02-18.99-2.17-22.93 6.45A254.19 254.19 0 0 0 .54 239.28C-.05 248.37 7.59 256 16.69 256h97.13c7.96 0 14.08-6.25 15.01-14.16 1.09-9.33 3.24-18.33 6.24-26.94 2.56-7.34.25-15.46-6.34-19.58zM319.03 8C298.86 2.82 277.77 0 256 0s-42.86 2.82-63.03 8c-9.17 2.35-13.91 12.6-10.39 21.39l37.47 104.03A16.003 16.003 0 0 0 235.1 144h41.8c6.75 0 12.77-4.23 15.05-10.58l37.47-104.03c3.52-8.79-1.22-19.03-10.39-21.39zM112 288H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm0 128H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm77.31-283.67l-36.32-90.8c-3.53-8.83-14.13-12.99-22.42-8.31a257.308 257.308 0 0 0-71.61 59.89c-6.06 7.32-3.85 18.48 4.22 23.52l82.93 51.83c6.51 4.07 14.66 2.62 20.11-2.79 5.18-5.15 10.79-9.85 16.79-14.05 6.28-4.41 9.15-12.17 6.3-19.29zM398.18 256h97.13c9.1 0 16.74-7.63 16.15-16.72a254.135 254.135 0 0 0-22.45-89.27c-3.94-8.62-14.89-11.47-22.93-6.45l-82.81 51.76c-6.59 4.12-8.9 12.24-6.34 19.58 3.01 8.61 5.15 17.62 6.24 26.94.93 7.91 7.05 14.16 15.01 14.16zm54.85-162.89a257.308 257.308 0 0 0-71.61-59.89c-8.28-4.68-18.88-.52-22.42 8.31l-36.32 90.8c-2.85 7.12.02 14.88 6.3 19.28 6 4.2 11.61 8.9 16.79 14.05 5.44 5.41 13.6 6.86 20.11 2.79l82.93-51.83c8.07-5.03 10.29-16.19 4.22-23.51zM496 288h-96c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm0 128h-96c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zM240 177.62V472c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8V177.62c-5.23-.89-10.52-1.62-16-1.62s-10.77.73-16 1.62zm-64 41.51V472c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8V189.36c-12.78 7.45-23.84 17.47-32 29.77zm128-29.77V472c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8V219.13c-8.16-12.3-19.22-22.32-32-29.77z\"]\n};\nvar faEdit = {\n prefix: 'fas',\n iconName: 'edit',\n icon: [576, 512, [], \"f044\", \"M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z\"]\n};\nvar faEgg = {\n prefix: 'fas',\n iconName: 'egg',\n icon: [384, 512, [], \"f7fb\", \"M192 0C86 0 0 214 0 320s86 192 192 192 192-86 192-192S298 0 192 0z\"]\n};\nvar faEject = {\n prefix: 'fas',\n iconName: 'eject',\n icon: [448, 512, [], \"f052\", \"M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z\"]\n};\nvar faEllipsisH = {\n prefix: 'fas',\n iconName: 'ellipsis-h',\n icon: [512, 512, [], \"f141\", \"M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z\"]\n};\nvar faEllipsisV = {\n prefix: 'fas',\n iconName: 'ellipsis-v',\n icon: [192, 512, [], \"f142\", \"M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z\"]\n};\nvar faEnvelope = {\n prefix: 'fas',\n iconName: 'envelope',\n icon: [512, 512, [], \"f0e0\", \"M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z\"]\n};\nvar faEnvelopeOpen = {\n prefix: 'fas',\n iconName: 'envelope-open',\n icon: [512, 512, [], \"f2b6\", \"M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z\"]\n};\nvar faEnvelopeOpenText = {\n prefix: 'fas',\n iconName: 'envelope-open-text',\n icon: [512, 512, [], \"f658\", \"M176 216h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16H176c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16zm-16 80c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16H176c-8.84 0-16 7.16-16 16v16zm96 121.13c-16.42 0-32.84-5.06-46.86-15.19L0 250.86V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V250.86L302.86 401.94c-14.02 10.12-30.44 15.19-46.86 15.19zm237.61-254.18c-8.85-6.94-17.24-13.47-29.61-22.81V96c0-26.51-21.49-48-48-48h-77.55c-3.04-2.2-5.87-4.26-9.04-6.56C312.6 29.17 279.2-.35 256 0c-23.2-.35-56.59 29.17-73.41 41.44-3.17 2.3-6 4.36-9.04 6.56H96c-26.51 0-48 21.49-48 48v44.14c-12.37 9.33-20.76 15.87-29.61 22.81A47.995 47.995 0 0 0 0 200.72v10.65l96 69.35V96h320v184.72l96-69.35v-10.65c0-14.74-6.78-28.67-18.39-37.77z\"]\n};\nvar faEnvelopeSquare = {\n prefix: 'fas',\n iconName: 'envelope-square',\n icon: [448, 512, [], \"f199\", \"M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z\"]\n};\nvar faEquals = {\n prefix: 'fas',\n iconName: 'equals',\n icon: [448, 512, [], \"f52c\", \"M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"]\n};\nvar faEraser = {\n prefix: 'fas',\n iconName: 'eraser',\n icon: [512, 512, [], \"f12d\", \"M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z\"]\n};\nvar faEthernet = {\n prefix: 'fas',\n iconName: 'ethernet',\n icon: [512, 512, [], \"f796\", \"M496 192h-48v-48c0-8.8-7.2-16-16-16h-48V80c0-8.8-7.2-16-16-16H144c-8.8 0-16 7.2-16 16v48H80c-8.8 0-16 7.2-16 16v48H16c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16h80V320h32v128h64V320h32v128h64V320h32v128h64V320h32v128h80c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16z\"]\n};\nvar faEuroSign = {\n prefix: 'fas',\n iconName: 'euro-sign',\n icon: [320, 512, [], \"f153\", \"M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z\"]\n};\nvar faExchangeAlt = {\n prefix: 'fas',\n iconName: 'exchange-alt',\n icon: [512, 512, [], \"f362\", \"M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z\"]\n};\nvar faExclamation = {\n prefix: 'fas',\n iconName: 'exclamation',\n icon: [192, 512, [], \"f12a\", \"M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z\"]\n};\nvar faExclamationCircle = {\n prefix: 'fas',\n iconName: 'exclamation-circle',\n icon: [512, 512, [], \"f06a\", \"M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z\"]\n};\nvar faExclamationTriangle = {\n prefix: 'fas',\n iconName: 'exclamation-triangle',\n icon: [576, 512, [], \"f071\", \"M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z\"]\n};\nvar faExpand = {\n prefix: 'fas',\n iconName: 'expand',\n icon: [448, 512, [], \"f065\", \"M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z\"]\n};\nvar faExpandAlt = {\n prefix: 'fas',\n iconName: 'expand-alt',\n icon: [448, 512, [], \"f424\", \"M212.686 315.314L120 408l32.922 31.029c15.12 15.12 4.412 40.971-16.97 40.971h-112C10.697 480 0 469.255 0 456V344c0-21.382 25.803-32.09 40.922-16.971L72 360l92.686-92.686c6.248-6.248 16.379-6.248 22.627 0l25.373 25.373c6.249 6.248 6.249 16.378 0 22.627zm22.628-118.628L328 104l-32.922-31.029C279.958 57.851 290.666 32 312.048 32h112C437.303 32 448 42.745 448 56v112c0 21.382-25.803 32.09-40.922 16.971L376 152l-92.686 92.686c-6.248 6.248-16.379 6.248-22.627 0l-25.373-25.373c-6.249-6.248-6.249-16.378 0-22.627z\"]\n};\nvar faExpandArrowsAlt = {\n prefix: 'fas',\n iconName: 'expand-arrows-alt',\n icon: [448, 512, [], \"f31e\", \"M448 344v112a23.94 23.94 0 0 1-24 24H312c-21.39 0-32.09-25.9-17-41l36.2-36.2L224 295.6 116.77 402.9 153 439c15.09 15.1 4.39 41-17 41H24a23.94 23.94 0 0 1-24-24V344c0-21.4 25.89-32.1 41-17l36.19 36.2L184.46 256 77.18 148.7 41 185c-15.1 15.1-41 4.4-41-17V56a23.94 23.94 0 0 1 24-24h112c21.39 0 32.09 25.9 17 41l-36.2 36.2L224 216.4l107.23-107.3L295 73c-15.09-15.1-4.39-41 17-41h112a23.94 23.94 0 0 1 24 24v112c0 21.4-25.89 32.1-41 17l-36.19-36.2L263.54 256l107.28 107.3L407 327.1c15.1-15.2 41-4.5 41 16.9z\"]\n};\nvar faExternalLinkAlt = {\n prefix: 'fas',\n iconName: 'external-link-alt',\n icon: [512, 512, [], \"f35d\", \"M432,320H400a16,16,0,0,0-16,16V448H64V128H208a16,16,0,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V336A16,16,0,0,0,432,320ZM488,0h-128c-21.37,0-32.05,25.91-17,41l35.73,35.73L135,320.37a24,24,0,0,0,0,34L157.67,377a24,24,0,0,0,34,0L435.28,133.32,471,169c15,15,41,4.5,41-17V24A24,24,0,0,0,488,0Z\"]\n};\nvar faExternalLinkSquareAlt = {\n prefix: 'fas',\n iconName: 'external-link-square-alt',\n icon: [448, 512, [], \"f360\", \"M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z\"]\n};\nvar faEye = {\n prefix: 'fas',\n iconName: 'eye',\n icon: [576, 512, [], \"f06e\", \"M572.52 241.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400a144 144 0 1 1 144-144 143.93 143.93 0 0 1-144 144zm0-240a95.31 95.31 0 0 0-25.31 3.79 47.85 47.85 0 0 1-66.9 66.9A95.78 95.78 0 1 0 288 160z\"]\n};\nvar faEyeDropper = {\n prefix: 'fas',\n iconName: 'eye-dropper',\n icon: [512, 512, [], \"f1fb\", \"M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z\"]\n};\nvar faEyeSlash = {\n prefix: 'fas',\n iconName: 'eye-slash',\n icon: [640, 512, [], \"f070\", \"M320 400c-75.85 0-137.25-58.71-142.9-133.11L72.2 185.82c-13.79 17.3-26.48 35.59-36.72 55.59a32.35 32.35 0 0 0 0 29.19C89.71 376.41 197.07 448 320 448c26.91 0 52.87-4 77.89-10.46L346 397.39a144.13 144.13 0 0 1-26 2.61zm313.82 58.1l-110.55-85.44a331.25 331.25 0 0 0 81.25-102.07 32.35 32.35 0 0 0 0-29.19C550.29 135.59 442.93 64 320 64a308.15 308.15 0 0 0-147.32 37.7L45.46 3.37A16 16 0 0 0 23 6.18L3.37 31.45A16 16 0 0 0 6.18 53.9l588.36 454.73a16 16 0 0 0 22.46-2.81l19.64-25.27a16 16 0 0 0-2.82-22.45zm-183.72-142l-39.3-30.38A94.75 94.75 0 0 0 416 256a94.76 94.76 0 0 0-121.31-92.21A47.65 47.65 0 0 1 304 192a46.64 46.64 0 0 1-1.54 10l-73.61-56.89A142.31 142.31 0 0 1 320 112a143.92 143.92 0 0 1 144 144c0 21.63-5.29 41.79-13.9 60.11z\"]\n};\nvar faFan = {\n prefix: 'fas',\n iconName: 'fan',\n icon: [512, 512, [], \"f863\", \"M352.57 128c-28.09 0-54.09 4.52-77.06 12.86l12.41-123.11C289 7.31 279.81-1.18 269.33.13 189.63 10.13 128 77.64 128 159.43c0 28.09 4.52 54.09 12.86 77.06L17.75 224.08C7.31 223-1.18 232.19.13 242.67c10 79.7 77.51 141.33 159.3 141.33 28.09 0 54.09-4.52 77.06-12.86l-12.41 123.11c-1.05 10.43 8.11 18.93 18.59 17.62 79.7-10 141.33-77.51 141.33-159.3 0-28.09-4.52-54.09-12.86-77.06l123.11 12.41c10.44 1.05 18.93-8.11 17.62-18.59-10-79.7-77.51-141.33-159.3-141.33zM256 288a32 32 0 1 1 32-32 32 32 0 0 1-32 32z\"]\n};\nvar faFastBackward = {\n prefix: 'fas',\n iconName: 'fast-backward',\n icon: [512, 512, [], \"f049\", \"M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z\"]\n};\nvar faFastForward = {\n prefix: 'fas',\n iconName: 'fast-forward',\n icon: [512, 512, [], \"f050\", \"M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z\"]\n};\nvar faFaucet = {\n prefix: 'fas',\n iconName: 'faucet',\n icon: [512, 512, [], \"e005\", \"M352,256H313.39c-15.71-13.44-35.46-23.07-57.39-28V180.44l-32-3.38-32,3.38V228c-21.93,5-41.68,14.6-57.39,28H16A16,16,0,0,0,0,272v96a16,16,0,0,0,16,16h92.79C129.38,421.73,173,448,224,448s94.62-26.27,115.21-64H352a32,32,0,0,1,32,32,32,32,0,0,0,32,32h64a32,32,0,0,0,32-32A160,160,0,0,0,352,256ZM81.59,159.91l142.41-15,142.41,15c9.42,1,17.59-6.81,17.59-16.8V112.89c0-10-8.17-17.8-17.59-16.81L256,107.74V80a16,16,0,0,0-16-16H208a16,16,0,0,0-16,16v27.74L81.59,96.08C72.17,95.09,64,102.9,64,112.89v30.22C64,153.1,72.17,160.91,81.59,159.91Z\"]\n};\nvar faFax = {\n prefix: 'fas',\n iconName: 'fax',\n icon: [512, 512, [], \"f1ac\", \"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"]\n};\nvar faFeather = {\n prefix: 'fas',\n iconName: 'feather',\n icon: [512, 512, [], \"f52d\", \"M467.14 44.84c-62.55-62.48-161.67-64.78-252.28 25.73-78.61 78.52-60.98 60.92-85.75 85.66-60.46 60.39-70.39 150.83-63.64 211.17l178.44-178.25c6.26-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.6 9.37 33.98 0l66.1-66.03C159.42 454.65 279 457.11 353.95 384h-98.19l147.57-49.14c49.99-49.93 36.38-36.18 46.31-46.86h-97.78l131.54-43.8c45.44-74.46 34.31-148.84-16.26-199.36z\"]\n};\nvar faFeatherAlt = {\n prefix: 'fas',\n iconName: 'feather-alt',\n icon: [512, 512, [], \"f56b\", \"M512 0C460.22 3.56 96.44 38.2 71.01 287.61c-3.09 26.66-4.84 53.44-5.99 80.24l178.87-178.69c6.25-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.59 9.37 33.98 0l57.13-57.07c42.09-.14 84.15-2.53 125.96-7.36 53.48-5.44 97.02-26.47 132.58-56.54H255.74l146.79-48.88c11.25-14.89 21.37-30.71 30.45-47.12h-81.14l106.54-53.21C500.29 132.86 510.19 26.26 512 0z\"]\n};\nvar faFemale = {\n prefix: 'fas',\n iconName: 'female',\n icon: [256, 512, [], \"f182\", \"M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z\"]\n};\nvar faFighterJet = {\n prefix: 'fas',\n iconName: 'fighter-jet',\n icon: [640, 512, [], \"f0fb\", \"M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z\"]\n};\nvar faFile = {\n prefix: 'fas',\n iconName: 'file',\n icon: [384, 512, [], \"f15b\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileAlt = {\n prefix: 'fas',\n iconName: 'file-alt',\n icon: [384, 512, [], \"f15c\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileArchive = {\n prefix: 'fas',\n iconName: 'file-archive',\n icon: [384, 512, [], \"f1c6\", \"M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zM128.4 336c-17.9 0-32.4 12.1-32.4 27 0 15 14.6 27 32.5 27s32.4-12.1 32.4-27-14.6-27-32.5-27zM224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6z\"]\n};\nvar faFileAudio = {\n prefix: 'fas',\n iconName: 'file-audio',\n icon: [384, 512, [], \"f1c7\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileCode = {\n prefix: 'fas',\n iconName: 'file-code',\n icon: [384, 512, [], \"f1c9\", \"M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z\"]\n};\nvar faFileContract = {\n prefix: 'fas',\n iconName: 'file-contract',\n icon: [384, 512, [], \"f56c\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm192.81 248H304c8.84 0 16 7.16 16 16s-7.16 16-16 16h-47.19c-16.45 0-31.27-9.14-38.64-23.86-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34a15.986 15.986 0 0 1-14.31 8.84c-.38 0-.75-.02-1.14-.05-6.45-.45-12-4.75-14.03-10.89L144 354.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.77-16.19 54.05-9.7 66 14.16 2.02 4.06 5.96 6.5 10.16 6.5zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFileCsv = {\n prefix: 'fas',\n iconName: 'file-csv',\n icon: [384, 512, [], \"f6dd\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-96 144c0 4.42-3.58 8-8 8h-8c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h8c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-8c-26.51 0-48-21.49-48-48v-32c0-26.51 21.49-48 48-48h8c4.42 0 8 3.58 8 8v16zm44.27 104H160c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h12.27c5.95 0 10.41-3.5 10.41-6.62 0-1.3-.75-2.66-2.12-3.84l-21.89-18.77c-8.47-7.22-13.33-17.48-13.33-28.14 0-21.3 19.02-38.62 42.41-38.62H200c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-12.27c-5.95 0-10.41 3.5-10.41 6.62 0 1.3.75 2.66 2.12 3.84l21.89 18.77c8.47 7.22 13.33 17.48 13.33 28.14.01 21.29-19 38.62-42.39 38.62zM256 264v20.8c0 20.27 5.7 40.17 16 56.88 10.3-16.7 16-36.61 16-56.88V264c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v20.8c0 35.48-12.88 68.89-36.28 94.09-3.02 3.25-7.27 5.11-11.72 5.11s-8.7-1.86-11.72-5.11c-23.4-25.2-36.28-58.61-36.28-94.09V264c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8zm121-159L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFileDownload = {\n prefix: 'fas',\n iconName: 'file-download',\n icon: [384, 512, [], \"f56d\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm76.45 211.36l-96.42 95.7c-6.65 6.61-17.39 6.61-24.04 0l-96.42-95.7C73.42 337.29 80.54 320 94.82 320H160v-80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v80h65.18c14.28 0 21.4 17.29 11.27 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFileExcel = {\n prefix: 'fas',\n iconName: 'file-excel',\n icon: [384, 512, [], \"f1c3\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileExport = {\n prefix: 'fas',\n iconName: 'file-export',\n icon: [576, 512, [], \"f56e\", \"M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128zM571 308l-95.7-96.4c-10.1-10.1-27.4-3-27.4 11.3V288h-64v64h64v65.2c0 14.3 17.3 21.4 27.4 11.3L571 332c6.6-6.6 6.6-17.4 0-24zm-379 28v-32c0-8.8 7.2-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.8 0-16-7.2-16-16z\"]\n};\nvar faFileImage = {\n prefix: 'fas',\n iconName: 'file-image',\n icon: [384, 512, [], \"f1c5\", \"M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z\"]\n};\nvar faFileImport = {\n prefix: 'fas',\n iconName: 'file-import',\n icon: [512, 512, [], \"f56f\", \"M16 288c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h112v-64zm489-183L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H152c-13.3 0-24 10.7-24 24v264h128v-65.2c0-14.3 17.3-21.4 27.4-11.3L379 308c6.6 6.7 6.6 17.4 0 24l-95.7 96.4c-10.1 10.1-27.4 3-27.4-11.3V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24z\"]\n};\nvar faFileInvoice = {\n prefix: 'fas',\n iconName: 'file-invoice',\n icon: [384, 512, [], \"f570\", \"M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z\"]\n};\nvar faFileInvoiceDollar = {\n prefix: 'fas',\n iconName: 'file-invoice-dollar',\n icon: [384, 512, [], \"f571\", \"M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 80v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8zm144 263.88V440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-24.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V232c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v24.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07z\"]\n};\nvar faFileMedical = {\n prefix: 'fas',\n iconName: 'file-medical',\n icon: [384, 512, [], \"f477\", \"M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z\"]\n};\nvar faFileMedicalAlt = {\n prefix: 'fas',\n iconName: 'file-medical-alt',\n icon: [448, 512, [], \"f478\", \"M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFilePdf = {\n prefix: 'fas',\n iconName: 'file-pdf',\n icon: [384, 512, [], \"f1c1\", \"M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z\"]\n};\nvar faFilePowerpoint = {\n prefix: 'fas',\n iconName: 'file-powerpoint',\n icon: [384, 512, [], \"f1c4\", \"M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z\"]\n};\nvar faFilePrescription = {\n prefix: 'fas',\n iconName: 'file-prescription',\n icon: [384, 512, [], \"f572\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm68.53 179.48l11.31 11.31c6.25 6.25 6.25 16.38 0 22.63l-29.9 29.9L304 409.38c6.25 6.25 6.25 16.38 0 22.63l-11.31 11.31c-6.25 6.25-16.38 6.25-22.63 0L240 413.25l-30.06 30.06c-6.25 6.25-16.38 6.25-22.63 0L176 432c-6.25-6.25-6.25-16.38 0-22.63l30.06-30.06L146.74 320H128v48c0 8.84-7.16 16-16 16H96c-8.84 0-16-7.16-16-16V208c0-8.84 7.16-16 16-16h80c35.35 0 64 28.65 64 64 0 24.22-13.62 45.05-33.46 55.92L240 345.38l29.9-29.9c6.25-6.25 16.38-6.25 22.63 0zM176 272h-48v-32h48c8.82 0 16 7.18 16 16s-7.18 16-16 16zm208-150.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileSignature = {\n prefix: 'fas',\n iconName: 'file-signature',\n icon: [576, 512, [], \"f573\", \"M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z\"]\n};\nvar faFileUpload = {\n prefix: 'fas',\n iconName: 'file-upload',\n icon: [384, 512, [], \"f574\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFileVideo = {\n prefix: 'fas',\n iconName: 'file-video',\n icon: [384, 512, [], \"f1c8\", \"M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z\"]\n};\nvar faFileWord = {\n prefix: 'fas',\n iconName: 'file-word',\n icon: [384, 512, [], \"f1c2\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFill = {\n prefix: 'fas',\n iconName: 'fill',\n icon: [512, 512, [], \"f575\", \"M502.63 217.06L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.77c-6.24-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.63l86.19 86.18-94.76 94.76c-37.49 37.49-37.49 98.26 0 135.75l117.19 117.19c18.75 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.88-28.12l221.57-221.57c12.49-12.5 12.49-32.76 0-45.26zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.61 58.6c12.49 12.49 32.75 12.49 45.24 0 12.49-12.49 12.49-32.75 0-45.24l-58.61-58.6 58.95-58.95 162.45 162.44-48.35 48.34z\"]\n};\nvar faFillDrip = {\n prefix: 'fas',\n iconName: 'fill-drip',\n icon: [576, 512, [], \"f576\", \"M512 320s-64 92.65-64 128c0 35.35 28.66 64 64 64s64-28.65 64-64-64-128-64-128zm-9.37-102.94L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.76c-6.25-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.62l86.19 86.18-94.76 94.76c-37.49 37.48-37.49 98.26 0 135.75l117.19 117.19c18.74 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.87-28.12l221.57-221.57c12.5-12.5 12.5-32.75.01-45.25zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.6 58.6c12.49 12.49 32.75 12.49 45.24 0s12.49-32.75 0-45.24l-58.6-58.6 58.95-58.95 162.44 162.44-48.34 48.34z\"]\n};\nvar faFilm = {\n prefix: 'fas',\n iconName: 'film',\n icon: [512, 512, [], \"f008\", \"M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z\"]\n};\nvar faFilter = {\n prefix: 'fas',\n iconName: 'filter',\n icon: [512, 512, [], \"f0b0\", \"M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z\"]\n};\nvar faFingerprint = {\n prefix: 'fas',\n iconName: 'fingerprint',\n icon: [512, 512, [], \"f577\", \"M256.12 245.96c-13.25 0-24 10.74-24 24 1.14 72.25-8.14 141.9-27.7 211.55-2.73 9.72 2.15 30.49 23.12 30.49 10.48 0 20.11-6.92 23.09-17.52 13.53-47.91 31.04-125.41 29.48-224.52.01-13.25-10.73-24-23.99-24zm-.86-81.73C194 164.16 151.25 211.3 152.1 265.32c.75 47.94-3.75 95.91-13.37 142.55-2.69 12.98 5.67 25.69 18.64 28.36 13.05 2.67 25.67-5.66 28.36-18.64 10.34-50.09 15.17-101.58 14.37-153.02-.41-25.95 19.92-52.49 54.45-52.34 31.31.47 57.15 25.34 57.62 55.47.77 48.05-2.81 96.33-10.61 143.55-2.17 13.06 6.69 25.42 19.76 27.58 19.97 3.33 26.81-15.1 27.58-19.77 8.28-50.03 12.06-101.21 11.27-152.11-.88-55.8-47.94-101.88-104.91-102.72zm-110.69-19.78c-10.3-8.34-25.37-6.8-33.76 3.48-25.62 31.5-39.39 71.28-38.75 112 .59 37.58-2.47 75.27-9.11 112.05-2.34 13.05 6.31 25.53 19.36 27.89 20.11 3.5 27.07-14.81 27.89-19.36 7.19-39.84 10.5-80.66 9.86-121.33-.47-29.88 9.2-57.88 28-80.97 8.35-10.28 6.79-25.39-3.49-33.76zm109.47-62.33c-15.41-.41-30.87 1.44-45.78 4.97-12.89 3.06-20.87 15.98-17.83 28.89 3.06 12.89 16 20.83 28.89 17.83 11.05-2.61 22.47-3.77 34-3.69 75.43 1.13 137.73 61.5 138.88 134.58.59 37.88-1.28 76.11-5.58 113.63-1.5 13.17 7.95 25.08 21.11 26.58 16.72 1.95 25.51-11.88 26.58-21.11a929.06 929.06 0 0 0 5.89-119.85c-1.56-98.75-85.07-180.33-186.16-181.83zm252.07 121.45c-2.86-12.92-15.51-21.2-28.61-18.27-12.94 2.86-21.12 15.66-18.26 28.61 4.71 21.41 4.91 37.41 4.7 61.6-.11 13.27 10.55 24.09 23.8 24.2h.2c13.17 0 23.89-10.61 24-23.8.18-22.18.4-44.11-5.83-72.34zm-40.12-90.72C417.29 43.46 337.6 1.29 252.81.02 183.02-.82 118.47 24.91 70.46 72.94 24.09 119.37-.9 181.04.14 246.65l-.12 21.47c-.39 13.25 10.03 24.31 23.28 24.69.23.02.48.02.72.02 12.92 0 23.59-10.3 23.97-23.3l.16-23.64c-.83-52.5 19.16-101.86 56.28-139 38.76-38.8 91.34-59.67 147.68-58.86 69.45 1.03 134.73 35.56 174.62 92.39 7.61 10.86 22.56 13.45 33.42 5.86 10.84-7.62 13.46-22.59 5.84-33.43z\"]\n};\nvar faFire = {\n prefix: 'fas',\n iconName: 'fire',\n icon: [384, 512, [], \"f06d\", \"M216 23.86c0-23.8-30.65-32.77-44.15-13.04C48 191.85 224 200 224 288c0 35.63-29.11 64.46-64.85 63.99-35.17-.45-63.15-29.77-63.15-64.94v-85.51c0-21.7-26.47-32.23-41.43-16.5C27.8 213.16 0 261.33 0 320c0 105.87 86.13 192 192 192s192-86.13 192-192c0-170.29-168-193-168-296.14z\"]\n};\nvar faFireAlt = {\n prefix: 'fas',\n iconName: 'fire-alt',\n icon: [448, 512, [], \"f7e4\", \"M323.56 51.2c-20.8 19.3-39.58 39.59-56.22 59.97C240.08 73.62 206.28 35.53 168 0 69.74 91.17 0 209.96 0 281.6 0 408.85 100.29 512 224 512s224-103.15 224-230.4c0-53.27-51.98-163.14-124.44-230.4zm-19.47 340.65C282.43 407.01 255.72 416 226.86 416 154.71 416 96 368.26 96 290.75c0-38.61 24.31-72.63 72.79-130.75 6.93 7.98 98.83 125.34 98.83 125.34l58.63-66.88c4.14 6.85 7.91 13.55 11.27 19.97 27.35 52.19 15.81 118.97-33.43 153.42z\"]\n};\nvar faFireExtinguisher = {\n prefix: 'fas',\n iconName: 'fire-extinguisher',\n icon: [448, 512, [], \"f134\", \"M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z\"]\n};\nvar faFirstAid = {\n prefix: 'fas',\n iconName: 'first-aid',\n icon: [576, 512, [], \"f479\", \"M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z\"]\n};\nvar faFish = {\n prefix: 'fas',\n iconName: 'fish',\n icon: [576, 512, [], \"f578\", \"M327.1 96c-89.97 0-168.54 54.77-212.27 101.63L27.5 131.58c-12.13-9.18-30.24.6-27.14 14.66L24.54 256 .35 365.77c-3.1 14.06 15.01 23.83 27.14 14.66l87.33-66.05C158.55 361.23 237.13 416 327.1 416 464.56 416 576 288 576 256S464.56 96 327.1 96zm87.43 184c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24 13.26 0 24 10.74 24 24 0 13.25-10.75 24-24 24z\"]\n};\nvar faFistRaised = {\n prefix: 'fas',\n iconName: 'fist-raised',\n icon: [384, 512, [], \"f6de\", \"M255.98 160V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v146.93c5.02-1.78 10.34-2.93 15.97-2.93h48.03zm128 95.99c-.01-35.34-28.66-63.99-63.99-63.99H207.85c-8.78 0-15.9 7.07-15.9 15.85v.56c0 26.27 21.3 47.59 47.57 47.59h35.26c9.68 0 13.2 3.58 13.2 8v16.2c0 4.29-3.59 7.78-7.88 8-44.52 2.28-64.16 24.71-96.05 72.55l-6.31 9.47a7.994 7.994 0 0 1-11.09 2.22l-13.31-8.88a7.994 7.994 0 0 1-2.22-11.09l6.31-9.47c15.73-23.6 30.2-43.26 47.31-58.08-17.27-5.51-31.4-18.12-38.87-34.45-6.59 3.41-13.96 5.52-21.87 5.52h-32c-12.34 0-23.49-4.81-32-12.48C71.48 251.19 60.33 256 48 256H16c-5.64 0-10.97-1.15-16-2.95v77.93c0 33.95 13.48 66.5 37.49 90.51L63.99 448v64h255.98v-63.96l35.91-35.92A96.035 96.035 0 0 0 384 344.21l-.02-88.22zm-32.01-90.09V48c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v112h32c11.28 0 21.94 2.31 32 5.9zM16 224h32c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v128c0 8.84 7.16 16 16 16zm95.99 0h32c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v160c0 8.84 7.16 16 16 16z\"]\n};\nvar faFlag = {\n prefix: 'fas',\n iconName: 'flag',\n icon: [512, 512, [], \"f024\", \"M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z\"]\n};\nvar faFlagCheckered = {\n prefix: 'fas',\n iconName: 'flag-checkered',\n icon: [512, 512, [], \"f11e\", \"M243.2 189.9V258c26.1 5.9 49.3 15.6 73.6 22.3v-68.2c-26-5.8-49.4-15.5-73.6-22.2zm223.3-123c-34.3 15.9-76.5 31.9-117 31.9C296 98.8 251.7 64 184.3 64c-25 0-47.3 4.4-68 12 2.8-7.3 4.1-15.2 3.6-23.6C118.1 24 94.8 1.2 66.3 0 34.3-1.3 8 24.3 8 56c0 19 9.5 35.8 24 45.9V488c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24v-94.4c28.3-12.1 63.6-22.1 114.4-22.1 53.6 0 97.8 34.8 165.2 34.8 48.2 0 86.7-16.3 122.5-40.9 8.7-6 13.8-15.8 13.8-26.4V95.9c.1-23.3-24.2-38.8-45.4-29zM169.6 325.5c-25.8 2.7-50 8.2-73.6 16.6v-70.5c26.2-9.3 47.5-15 73.6-17.4zM464 191c-23.6 9.8-46.3 19.5-73.6 23.9V286c24.8-3.4 51.4-11.8 73.6-26v70.5c-25.1 16.1-48.5 24.7-73.6 27.1V286c-27 3.7-47.9 1.5-73.6-5.6v67.4c-23.9-7.4-47.3-16.7-73.6-21.3V258c-19.7-4.4-40.8-6.8-73.6-3.8v-70c-22.4 3.1-44.6 10.2-73.6 20.9v-70.5c33.2-12.2 50.1-19.8 73.6-22v71.6c27-3.7 48.4-1.3 73.6 5.7v-67.4c23.7 7.4 47.2 16.7 73.6 21.3v68.4c23.7 5.3 47.6 6.9 73.6 2.7V143c27-4.8 52.3-13.6 73.6-22.5z\"]\n};\nvar faFlagUsa = {\n prefix: 'fas',\n iconName: 'flag-usa',\n icon: [512, 512, [], \"f74d\", \"M32 0C14.3 0 0 14.3 0 32v464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V32C64 14.3 49.7 0 32 0zm267.9 303.6c-57.2-15.1-111.7-28.8-203.9 11.1V384c185.7-92.2 221.7 53.3 397.5-23.1 11.4-5 18.5-16.5 18.5-28.8v-36c-43.6 17.3-80.2 24.1-112.1 24.1-37.4-.1-68.9-8.4-100-16.6zm0-96c-57.2-15.1-111.7-28.8-203.9 11.1v61.5c94.8-37.6 154.6-22.7 212.1-7.6 57.2 15.1 111.7 28.8 203.9-11.1V200c-43.6 17.3-80.2 24.1-112.1 24.1-37.4 0-68.9-8.3-100-16.5zm9.5-125.9c51.8 15.6 97.4 29 202.6-20.1V30.8c0-25.1-26.8-38.1-49.4-26.6C291.3 91.5 305.4-62.2 96 32.4v151.9c94.8-37.5 154.6-22.7 212.1-7.6 57.2 15 111.7 28.7 203.9-11.1V96.7c-53.6 23.5-93.3 31.4-126.1 31.4s-59-7.8-85.7-15.9c-4-1.2-8.1-2.4-12.1-3.5V75.5c7.2 2 14.3 4.1 21.3 6.2zM160 128.1c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16-7.2 16-16 16zm0-55.8c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16c0 8.8-7.2 16-16 16zm64 47.9c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16c0 8.8-7.2 16-16 16zm0-55.9c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16c0 8.8-7.2 16-16 16z\"]\n};\nvar faFlask = {\n prefix: 'fas',\n iconName: 'flask',\n icon: [448, 512, [], \"f0c3\", \"M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z\"]\n};\nvar faFlushed = {\n prefix: 'fas',\n iconName: 'flushed',\n icon: [496, 512, [], \"f579\", \"M344 200c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-192 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM80 224c0-39.8 32.2-72 72-72s72 32.2 72 72-32.2 72-72 72-72-32.2-72-72zm232 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-104c-39.8 0-72-32.2-72-72s32.2-72 72-72 72 32.2 72 72-32.2 72-72 72z\"]\n};\nvar faFolder = {\n prefix: 'fas',\n iconName: 'folder',\n icon: [512, 512, [], \"f07b\", \"M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z\"]\n};\nvar faFolderMinus = {\n prefix: 'fas',\n iconName: 'folder-minus',\n icon: [512, 512, [], \"f65d\", \"M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-96 168c0 8.84-7.16 16-16 16H160c-8.84 0-16-7.16-16-16v-16c0-8.84 7.16-16 16-16h192c8.84 0 16 7.16 16 16v16z\"]\n};\nvar faFolderOpen = {\n prefix: 'fas',\n iconName: 'folder-open',\n icon: [576, 512, [], \"f07c\", \"M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z\"]\n};\nvar faFolderPlus = {\n prefix: 'fas',\n iconName: 'folder-plus',\n icon: [512, 512, [], \"f65e\", \"M464,128H272L208,64H48A48,48,0,0,0,0,112V400a48,48,0,0,0,48,48H464a48,48,0,0,0,48-48V176A48,48,0,0,0,464,128ZM359.5,296a16,16,0,0,1-16,16h-64v64a16,16,0,0,1-16,16h-16a16,16,0,0,1-16-16V312h-64a16,16,0,0,1-16-16V280a16,16,0,0,1,16-16h64V200a16,16,0,0,1,16-16h16a16,16,0,0,1,16,16v64h64a16,16,0,0,1,16,16Z\"]\n};\nvar faFont = {\n prefix: 'fas',\n iconName: 'font',\n icon: [448, 512, [], \"f031\", \"M432 416h-23.41L277.88 53.69A32 32 0 0 0 247.58 32h-47.16a32 32 0 0 0-30.3 21.69L39.41 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-19.58l23.3-64h152.56l23.3 64H304a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM176.85 272L224 142.51 271.15 272z\"]\n};\nvar faFontAwesomeLogoFull = {\n prefix: 'fas',\n iconName: 'font-awesome-logo-full',\n icon: [3992, 512, [\"Font Awesome\"], \"f4e6\", \"M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z\"]\n};\nvar faFootballBall = {\n prefix: 'fas',\n iconName: 'football-ball',\n icon: [496, 512, [], \"f44e\", \"M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z\"]\n};\nvar faForward = {\n prefix: 'fas',\n iconName: 'forward',\n icon: [512, 512, [], \"f04e\", \"M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z\"]\n};\nvar faFrog = {\n prefix: 'fas',\n iconName: 'frog',\n icon: [576, 512, [], \"f52e\", \"M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z\"]\n};\nvar faFrown = {\n prefix: 'fas',\n iconName: 'frown',\n icon: [496, 512, [], \"f119\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm170.2 218.2C315.8 367.4 282.9 352 248 352s-67.8 15.4-90.2 42.2c-13.5 16.3-38.1-4.2-24.6-20.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c13.6 16.2-11 36.7-24.5 20.4z\"]\n};\nvar faFrownOpen = {\n prefix: 'fas',\n iconName: 'frown-open',\n icon: [496, 512, [], \"f57a\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm187.3 183.3c-31.2-9.6-59.4-15.3-75.3-15.3s-44.1 5.7-75.3 15.3c-11.5 3.5-22.5-6.3-20.5-18.1 7-40 60.1-61.2 95.8-61.2s88.8 21.3 95.8 61.2c2 11.9-9.1 21.6-20.5 18.1zM328 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faFunnelDollar = {\n prefix: 'fas',\n iconName: 'funnel-dollar',\n icon: [640, 512, [], \"f662\", \"M433.46 165.94l101.2-111.87C554.61 34.12 540.48 0 512.26 0H31.74C3.52 0-10.61 34.12 9.34 54.07L192 256v155.92c0 12.59 5.93 24.44 16 32l79.99 60c20.86 15.64 48.47 6.97 59.22-13.57C310.8 455.38 288 406.35 288 352c0-89.79 62.05-165.17 145.46-186.06zM480 192c-88.37 0-160 71.63-160 160s71.63 160 160 160 160-71.63 160-160-71.63-160-160-160zm16 239.88V448c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V256c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.04 44.44-42.67 45.07z\"]\n};\nvar faFutbol = {\n prefix: 'fas',\n iconName: 'futbol',\n icon: [512, 512, [], \"f1e3\", \"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z\"]\n};\nvar faGamepad = {\n prefix: 'fas',\n iconName: 'gamepad',\n icon: [640, 512, [], \"f11b\", \"M480.07 96H160a160 160 0 1 0 114.24 272h91.52A160 160 0 1 0 480.07 96zM248 268a12 12 0 0 1-12 12h-52v52a12 12 0 0 1-12 12h-24a12 12 0 0 1-12-12v-52H84a12 12 0 0 1-12-12v-24a12 12 0 0 1 12-12h52v-52a12 12 0 0 1 12-12h24a12 12 0 0 1 12 12v52h52a12 12 0 0 1 12 12zm216 76a40 40 0 1 1 40-40 40 40 0 0 1-40 40zm64-96a40 40 0 1 1 40-40 40 40 0 0 1-40 40z\"]\n};\nvar faGasPump = {\n prefix: 'fas',\n iconName: 'gas-pump',\n icon: [512, 512, [], \"f52f\", \"M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z\"]\n};\nvar faGavel = {\n prefix: 'fas',\n iconName: 'gavel',\n icon: [512, 512, [], \"f0e3\", \"M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z\"]\n};\nvar faGem = {\n prefix: 'fas',\n iconName: 'gem',\n icon: [576, 512, [], \"f3a5\", \"M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z\"]\n};\nvar faGenderless = {\n prefix: 'fas',\n iconName: 'genderless',\n icon: [288, 512, [], \"f22d\", \"M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z\"]\n};\nvar faGhost = {\n prefix: 'fas',\n iconName: 'ghost',\n icon: [384, 512, [], \"f6e2\", \"M186.1.09C81.01 3.24 0 94.92 0 200.05v263.92c0 14.26 17.23 21.39 27.31 11.31l24.92-18.53c6.66-4.95 16-3.99 21.51 2.21l42.95 48.35c6.25 6.25 16.38 6.25 22.63 0l40.72-45.85c6.37-7.17 17.56-7.17 23.92 0l40.72 45.85c6.25 6.25 16.38 6.25 22.63 0l42.95-48.35c5.51-6.2 14.85-7.17 21.51-2.21l24.92 18.53c10.08 10.08 27.31 2.94 27.31-11.31V192C384 84 294.83-3.17 186.1.09zM128 224c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128 0c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faGift = {\n prefix: 'fas',\n iconName: 'gift',\n icon: [512, 512, [], \"f06b\", \"M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm256 32h160c17.7 0 32-14.3 32-32V320H288v160zm192-320h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40z\"]\n};\nvar faGifts = {\n prefix: 'fas',\n iconName: 'gifts',\n icon: [640, 512, [], \"f79c\", \"M240.6 194.1c1.9-30.8 17.3-61.2 44-79.8C279.4 103.5 268.7 96 256 96h-29.4l30.7-22c7.2-5.1 8.9-15.1 3.7-22.3l-9.3-13c-5.1-7.2-15.1-8.9-22.3-3.7l-32 22.9 11.5-30.6c3.1-8.3-1.1-17.5-9.4-20.6l-15-5.6c-8.3-3.1-17.5 1.1-20.6 9.4l-19.9 53-19.9-53.1C121 2.1 111.8-2.1 103.5 1l-15 5.6C80.2 9.7 76 19 79.2 27.2l11.5 30.6L58.6 35c-7.2-5.1-17.2-3.5-22.3 3.7l-9.3 13c-5.1 7.2-3.5 17.2 3.7 22.3l30.7 22H32c-17.7 0-32 14.3-32 32v352c0 17.7 14.3 32 32 32h168.9c-5.5-9.5-8.9-20.3-8.9-32V256c0-29.9 20.8-55 48.6-61.9zM224 480c0 17.7 14.3 32 32 32h160V384H224v96zm224 32h160c17.7 0 32-14.3 32-32v-96H448v128zm160-288h-20.4c2.6-7.6 4.4-15.5 4.4-23.8 0-35.5-27-72.2-72.1-72.2-48.1 0-75.9 47.7-87.9 75.3-12.1-27.6-39.9-75.3-87.9-75.3-45.1 0-72.1 36.7-72.1 72.2 0 8.3 1.7 16.2 4.4 23.8H256c-17.7 0-32 14.3-32 32v96h192V224h15.3l.7-.2.7.2H448v128h192v-96c0-17.7-14.3-32-32-32zm-272 0c-2.7-1.4-5.1-3-7.2-4.8-7.3-6.4-8.8-13.8-8.8-19 0-9.7 6.4-24.2 24.1-24.2 18.7 0 35.6 27.4 44.5 48H336zm199.2-4.8c-2.1 1.8-4.5 3.4-7.2 4.8h-52.6c8.8-20.3 25.8-48 44.5-48 17.7 0 24.1 14.5 24.1 24.2 0 5.2-1.5 12.6-8.8 19z\"]\n};\nvar faGlassCheers = {\n prefix: 'fas',\n iconName: 'glass-cheers',\n icon: [640, 512, [], \"f79f\", \"M639.4 433.6c-8.4-20.4-31.8-30.1-52.2-21.6l-22.1 9.2-38.7-101.9c47.9-35 64.8-100.3 34.5-152.8L474.3 16c-8-13.9-25.1-19.7-40-13.6L320 49.8 205.7 2.4c-14.9-6.2-32-.3-40 13.6L79.1 166.5C48.9 219 65.7 284.3 113.6 319.2L74.9 421.1l-22.1-9.2c-20.4-8.5-43.7 1.2-52.2 21.6-1.7 4.1.2 8.8 4.3 10.5l162.3 67.4c4.1 1.7 8.7-.2 10.4-4.3 8.4-20.4-1.2-43.8-21.6-52.3l-22.1-9.2L173.3 342c4.4.5 8.8 1.3 13.1 1.3 51.7 0 99.4-33.1 113.4-85.3l20.2-75.4 20.2 75.4c14 52.2 61.7 85.3 113.4 85.3 4.3 0 8.7-.8 13.1-1.3L506 445.6l-22.1 9.2c-20.4 8.5-30.1 31.9-21.6 52.3 1.7 4.1 6.4 6 10.4 4.3L635.1 444c4-1.7 6-6.3 4.3-10.4zM275.9 162.1l-112.1-46.5 36.5-63.4 94.5 39.2-18.9 70.7zm88.2 0l-18.9-70.7 94.5-39.2 36.5 63.4-112.1 46.5z\"]\n};\nvar faGlassMartini = {\n prefix: 'fas',\n iconName: 'glass-martini',\n icon: [512, 512, [], \"f000\", \"M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6z\"]\n};\nvar faGlassMartiniAlt = {\n prefix: 'fas',\n iconName: 'glass-martini-alt',\n icon: [512, 512, [], \"f57b\", \"M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6zM443.77 48l-48 48H116.24l-48-48h375.53z\"]\n};\nvar faGlassWhiskey = {\n prefix: 'fas',\n iconName: 'glass-whiskey',\n icon: [512, 512, [], \"f7a0\", \"M480 32H32C12.5 32-2.4 49.2.3 68.5l56 356.5c4.5 31.5 31.5 54.9 63.4 54.9h273c31.8 0 58.9-23.4 63.4-54.9l55.6-356.5C514.4 49.2 499.5 32 480 32zm-37.4 64l-30 192h-313L69.4 96h373.2z\"]\n};\nvar faGlasses = {\n prefix: 'fas',\n iconName: 'glasses',\n icon: [576, 512, [], \"f530\", \"M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z\"]\n};\nvar faGlobe = {\n prefix: 'fas',\n iconName: 'globe',\n icon: [496, 512, [], \"f0ac\", \"M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z\"]\n};\nvar faGlobeAfrica = {\n prefix: 'fas',\n iconName: 'globe-africa',\n icon: [496, 512, [], \"f57c\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm160 215.5v6.93c0 5.87-3.32 11.24-8.57 13.86l-15.39 7.7a15.485 15.485 0 0 1-15.53-.97l-18.21-12.14a15.52 15.52 0 0 0-13.5-1.81l-2.65.88c-9.7 3.23-13.66 14.79-7.99 23.3l13.24 19.86c2.87 4.31 7.71 6.9 12.89 6.9h8.21c8.56 0 15.5 6.94 15.5 15.5v11.34c0 3.35-1.09 6.62-3.1 9.3l-18.74 24.98c-1.42 1.9-2.39 4.1-2.83 6.43l-4.3 22.83c-.62 3.29-2.29 6.29-4.76 8.56a159.608 159.608 0 0 0-25 29.16l-13.03 19.55a27.756 27.756 0 0 1-23.09 12.36c-10.51 0-20.12-5.94-24.82-15.34a78.902 78.902 0 0 1-8.33-35.29V367.5c0-8.56-6.94-15.5-15.5-15.5h-25.88c-14.49 0-28.38-5.76-38.63-16a54.659 54.659 0 0 1-16-38.63v-14.06c0-17.19 8.1-33.38 21.85-43.7l27.58-20.69a54.663 54.663 0 0 1 32.78-10.93h.89c8.48 0 16.85 1.97 24.43 5.77l14.72 7.36c3.68 1.84 7.93 2.14 11.83.84l47.31-15.77c6.33-2.11 10.6-8.03 10.6-14.7 0-8.56-6.94-15.5-15.5-15.5h-10.09c-4.11 0-8.05-1.63-10.96-4.54l-6.92-6.92a15.493 15.493 0 0 0-10.96-4.54H199.5c-8.56 0-15.5-6.94-15.5-15.5v-4.4c0-7.11 4.84-13.31 11.74-15.04l14.45-3.61c3.74-.94 7-3.23 9.14-6.44l8.08-12.11c2.87-4.31 7.71-6.9 12.89-6.9h24.21c8.56 0 15.5-6.94 15.5-15.5v-21.7C359.23 71.63 422.86 131.02 441.93 208H423.5c-8.56 0-15.5 6.94-15.5 15.5z\"]\n};\nvar faGlobeAmericas = {\n prefix: 'fas',\n iconName: 'globe-americas',\n icon: [496, 512, [], \"f57d\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z\"]\n};\nvar faGlobeAsia = {\n prefix: 'fas',\n iconName: 'globe-asia',\n icon: [496, 512, [], \"f57e\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm-11.34 240.23c-2.89 4.82-8.1 7.77-13.72 7.77h-.31c-4.24 0-8.31 1.69-11.31 4.69l-5.66 5.66c-3.12 3.12-3.12 8.19 0 11.31l5.66 5.66c3 3 4.69 7.07 4.69 11.31V304c0 8.84-7.16 16-16 16h-6.11c-6.06 0-11.6-3.42-14.31-8.85l-22.62-45.23c-2.44-4.88-8.95-5.94-12.81-2.08l-19.47 19.46c-3 3-7.07 4.69-11.31 4.69H50.81C49.12 277.55 48 266.92 48 256c0-110.28 89.72-200 200-200 21.51 0 42.2 3.51 61.63 9.82l-50.16 38.53c-5.11 3.41-4.63 11.06.86 13.81l10.83 5.41c5.42 2.71 8.84 8.25 8.84 14.31V216c0 4.42-3.58 8-8 8h-3.06c-3.03 0-5.8-1.71-7.15-4.42-1.56-3.12-5.96-3.29-7.76-.3l-17.37 28.95zM408 358.43c0 4.24-1.69 8.31-4.69 11.31l-9.57 9.57c-3 3-7.07 4.69-11.31 4.69h-15.16c-4.24 0-8.31-1.69-11.31-4.69l-13.01-13.01a26.767 26.767 0 0 0-25.42-7.04l-21.27 5.32c-1.27.32-2.57.48-3.88.48h-10.34c-4.24 0-8.31-1.69-11.31-4.69l-11.91-11.91a8.008 8.008 0 0 1-2.34-5.66v-10.2c0-3.27 1.99-6.21 5.03-7.43l39.34-15.74c1.98-.79 3.86-1.82 5.59-3.05l23.71-16.89a7.978 7.978 0 0 1 4.64-1.48h12.09c3.23 0 6.15 1.94 7.39 4.93l5.35 12.85a4 4 0 0 0 3.69 2.46h3.8c1.78 0 3.35-1.18 3.84-2.88l4.2-14.47c.5-1.71 2.06-2.88 3.84-2.88h6.06c2.21 0 4 1.79 4 4v12.93c0 2.12.84 4.16 2.34 5.66l11.91 11.91c3 3 4.69 7.07 4.69 11.31v24.6z\"]\n};\nvar faGlobeEurope = {\n prefix: 'fas',\n iconName: 'globe-europe',\n icon: [496, 512, [], \"f7a2\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm200 248c0 22.5-3.9 44.2-10.8 64.4h-20.3c-4.3 0-8.4-1.7-11.4-4.8l-32-32.6c-4.5-4.6-4.5-12.1.1-16.7l12.5-12.5v-8.7c0-3-1.2-5.9-3.3-8l-9.4-9.4c-2.1-2.1-5-3.3-8-3.3h-16c-6.2 0-11.3-5.1-11.3-11.3 0-3 1.2-5.9 3.3-8l9.4-9.4c2.1-2.1 5-3.3 8-3.3h32c6.2 0 11.3-5.1 11.3-11.3v-9.4c0-6.2-5.1-11.3-11.3-11.3h-36.7c-8.8 0-16 7.2-16 16v4.5c0 6.9-4.4 13-10.9 15.2l-31.6 10.5c-3.3 1.1-5.5 4.1-5.5 7.6v2.2c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8s-3.6-8-8-8H247c-3 0-5.8 1.7-7.2 4.4l-9.4 18.7c-2.7 5.4-8.2 8.8-14.3 8.8H194c-8.8 0-16-7.2-16-16V199c0-4.2 1.7-8.3 4.7-11.3l20.1-20.1c4.6-4.6 7.2-10.9 7.2-17.5 0-3.4 2.2-6.5 5.5-7.6l40-13.3c1.7-.6 3.2-1.5 4.4-2.7l26.8-26.8c2.1-2.1 3.3-5 3.3-8 0-6.2-5.1-11.3-11.3-11.3H258l-16 16v8c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8v-20c0-2.5 1.2-4.9 3.2-6.4l28.9-21.7c1.9-.1 3.8-.3 5.7-.3C358.3 56 448 145.7 448 256zM130.1 149.1c0-3 1.2-5.9 3.3-8l25.4-25.4c2.1-2.1 5-3.3 8-3.3 6.2 0 11.3 5.1 11.3 11.3v16c0 3-1.2 5.9-3.3 8l-9.4 9.4c-2.1 2.1-5 3.3-8 3.3h-16c-6.2 0-11.3-5.1-11.3-11.3zm128 306.4v-7.1c0-8.8-7.2-16-16-16h-20.2c-10.8 0-26.7-5.3-35.4-11.8l-22.2-16.7c-11.5-8.6-18.2-22.1-18.2-36.4v-23.9c0-16 8.4-30.8 22.1-39l42.9-25.7c7.1-4.2 15.2-6.5 23.4-6.5h31.2c10.9 0 21.4 3.9 29.6 10.9l43.2 37.1h18.3c8.5 0 16.6 3.4 22.6 9.4l17.3 17.3c3.4 3.4 8.1 5.3 12.9 5.3H423c-32.4 58.9-93.8 99.5-164.9 103.1z\"]\n};\nvar faGolfBall = {\n prefix: 'fas',\n iconName: 'golf-ball',\n icon: [416, 512, [], \"f450\", \"M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z\"]\n};\nvar faGopuram = {\n prefix: 'fas',\n iconName: 'gopuram',\n icon: [512, 512, [], \"f664\", \"M496 352h-16V240c0-8.8-7.2-16-16-16h-16v-80c0-8.8-7.2-16-16-16h-16V16c0-8.8-7.2-16-16-16s-16 7.2-16 16v16h-64V16c0-8.8-7.2-16-16-16s-16 7.2-16 16v16h-64V16c0-8.8-7.2-16-16-16s-16 7.2-16 16v16h-64V16c0-8.8-7.2-16-16-16S96 7.2 96 16v112H80c-8.8 0-16 7.2-16 16v80H48c-8.8 0-16 7.2-16 16v112H16c-8.8 0-16 7.2-16 16v128c0 8.8 7.2 16 16 16h80V352h32V224h32v-96h32v96h-32v128h-32v160h80v-80c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16v80h80V352h-32V224h-32v-96h32v96h32v128h32v160h80c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zM232 176c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v48h-48zm56 176h-64v-64c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16z\"]\n};\nvar faGraduationCap = {\n prefix: 'fas',\n iconName: 'graduation-cap',\n icon: [640, 512, [], \"f19d\", \"M622.34 153.2L343.4 67.5c-15.2-4.67-31.6-4.67-46.79 0L17.66 153.2c-23.54 7.23-23.54 38.36 0 45.59l48.63 14.94c-10.67 13.19-17.23 29.28-17.88 46.9C38.78 266.15 32 276.11 32 288c0 10.78 5.68 19.85 13.86 25.65L20.33 428.53C18.11 438.52 25.71 448 35.94 448h56.11c10.24 0 17.84-9.48 15.62-19.47L82.14 313.65C90.32 307.85 96 298.78 96 288c0-11.57-6.47-21.25-15.66-26.87.76-15.02 8.44-28.3 20.69-36.72L296.6 284.5c9.06 2.78 26.44 6.25 46.79 0l278.95-85.7c23.55-7.24 23.55-38.36 0-45.6zM352.79 315.09c-28.53 8.76-52.84 3.92-65.59 0l-145.02-44.55L128 384c0 35.35 85.96 64 192 64s192-28.65 192-64l-14.18-113.47-145.03 44.56z\"]\n};\nvar faGreaterThan = {\n prefix: 'fas',\n iconName: 'greater-than',\n icon: [384, 512, [], \"f531\", \"M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z\"]\n};\nvar faGreaterThanEqual = {\n prefix: 'fas',\n iconName: 'greater-than-equal',\n icon: [448, 512, [], \"f532\", \"M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z\"]\n};\nvar faGrimace = {\n prefix: 'fas',\n iconName: 'grimace',\n icon: [496, 512, [], \"f57f\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM144 400h-8c-17.7 0-32-14.3-32-32v-8h40v40zm0-56h-40v-8c0-17.7 14.3-32 32-32h8v40zm-8-136c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm72 192h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm-8-104c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64 128c0 17.7-14.3 32-32 32h-8v-40h40v8zm0-24h-40v-40h8c17.7 0 32 14.3 32 32v8z\"]\n};\nvar faGrin = {\n prefix: 'fas',\n iconName: 'grin',\n icon: [496, 512, [], \"f580\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm80 256c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinAlt = {\n prefix: 'fas',\n iconName: 'grin-alt',\n icon: [496, 512, [], \"f581\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm63.7 128.7c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zm-160 0c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinBeam = {\n prefix: 'fas',\n iconName: 'grin-beam',\n icon: [496, 512, [], \"f582\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 144c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinBeamSweat = {\n prefix: 'fas',\n iconName: 'grin-beam-sweat',\n icon: [504, 512, [], \"f583\", \"M456 128c26.5 0 48-21 48-47 0-20-28.5-60.4-41.6-77.8-3.2-4.3-9.6-4.3-12.8 0C436.5 20.6 408 61 408 81c0 26 21.5 47 48 47zm0 32c-44.1 0-80-35.4-80-79 0-4.4.3-14.2 8.1-32.2C345 23.1 298.3 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-35.1-7.4-68.4-20.5-98.6-6.3 1.5-12.7 2.6-19.5 2.6zm-128-8c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinHearts = {\n prefix: 'fas',\n iconName: 'grin-hearts',\n icon: [496, 512, [], \"f584\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM90.4 183.6c6.7-17.6 26.7-26.7 44.9-21.9l7.1 1.9 2-7.1c5-18.1 22.8-30.9 41.5-27.9 21.4 3.4 34.4 24.2 28.8 44.5L195.3 243c-1.2 4.5-5.9 7.2-10.5 6l-70.2-18.2c-20.4-5.4-31.9-27-24.2-47.2zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm133.4-201.3l-70.2 18.2c-4.5 1.2-9.2-1.5-10.5-6L281.3 173c-5.6-20.3 7.4-41.1 28.8-44.5 18.6-3 36.4 9.8 41.5 27.9l2 7.1 7.1-1.9c18.2-4.7 38.2 4.3 44.9 21.9 7.7 20.3-3.8 41.9-24.2 47.2z\"]\n};\nvar faGrinSquint = {\n prefix: 'fas',\n iconName: 'grin-squint',\n icon: [496, 512, [], \"f585\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinSquintTears = {\n prefix: 'fas',\n iconName: 'grin-squint-tears',\n icon: [512, 512, [], \"f586\", \"M409.6 111.9c22.6-3.2 73.5-12 88.3-26.8 19.2-19.2 18.9-50.6-.7-70.2S446-5 426.9 14.2c-14.8 14.8-23.5 65.7-26.8 88.3-.8 5.5 3.9 10.2 9.5 9.4zM102.4 400.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm311.7-256.5c-33 3.9-48.6-25.1-45.7-45.7 3.4-24 7.4-42.1 11.5-56.5C285.1-13.4 161.8-.5 80.6 80.6-.5 161.7-13.4 285 41.4 379.9c14.4-4.1 32.4-8 56.5-11.5 33.2-3.9 48.6 25.2 45.7 45.7-3.4 24-7.4 42.1-11.5 56.5 94.8 54.8 218.1 41.9 299.3-39.2s94-204.4 39.2-299.3c-14.4 4.1-32.5 8-56.5 11.5zM255.7 106c3.3-13.2 22.4-11.5 23.6 1.8l4.8 52.3 52.3 4.8c13.4 1.2 14.9 20.3 1.8 23.6l-90.5 22.6c-8.9 2.2-16.7-5.9-14.5-14.5l22.5-90.6zm-90.9 230.3L160 284l-52.3-4.8c-13.4-1.2-14.9-20.3-1.8-23.6l90.5-22.6c8.8-2.2 16.7 5.8 14.5 14.5L188.3 338c-3.1 13.2-22.2 11.7-23.5-1.7zm215.7 44.2c-29.3 29.3-75.7 50.4-116.7 50.4-18.9 0-36.6-4.5-51-14.7-9.8-6.9-8.7-21.8 2-27.2 28.3-14.6 63.9-42.4 97.8-76.3s61.7-69.6 76.3-97.8c5.4-10.5 20.2-11.9 27.3-2 32.3 45.3 7.1 124.7-35.7 167.6z\"]\n};\nvar faGrinStars = {\n prefix: 'fas',\n iconName: 'grin-stars',\n icon: [496, 512, [], \"f587\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z\"]\n};\nvar faGrinTears = {\n prefix: 'fas',\n iconName: 'grin-tears',\n icon: [640, 512, [], \"f588\", \"M102.4 256.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm523.4 26.8c-14.8-14.8-65.7-23.5-88.3-26.8-5.5-.8-10.3 3.9-9.5 9.5 3.2 22.6 12 73.5 26.8 88.3 19.2 19.2 50.6 18.9 70.2-.7s20-51.2.8-70.3zm-129.4-12.8c-3.8-26.6 19.1-49.5 45.7-45.7 8.9 1.3 16.8 2.7 24.3 4.1C552.7 104.5 447.7 8 320 8S87.3 104.5 73.6 228.5c7.5-1.4 15.4-2.8 24.3-4.1 33.2-3.9 48.6 25.3 45.7 45.7-11.8 82.3-29.9 100.4-35.8 106.4-.9.9-2 1.6-3 2.5 42.7 74.6 123 125 215.2 125s172.5-50.4 215.2-125.1c-1-.9-2.1-1.5-3-2.5-5.9-5.9-24-24-35.8-106.3zM400 152c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.7 9.2-21.6 20.7-17.9C227.1 330.5 272 336 320 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinTongue = {\n prefix: 'fas',\n iconName: 'grin-tongue',\n icon: [496, 512, [], \"f589\", \"M248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-34.9 134.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z\"]\n};\nvar faGrinTongueSquint = {\n prefix: 'fas',\n iconName: 'grin-tongue-squint',\n icon: [496, 512, [], \"f58a\", \"M293.1 374.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-33.8 210.3l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.7 4.7 7.7 15.9 0 20.6zm163 30c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.8-4.7-7.8-15.9 0-20.6l80-48c11.7-6.9 23.9 7.7 15.4 18L343.6 208l33.6 40.3z\"]\n};\nvar faGrinTongueWink = {\n prefix: 'fas',\n iconName: 'grin-tongue-wink',\n icon: [496, 512, [], \"f58b\", \"M344 184c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-56 225l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L112 233c-8.5 7.4-21.6.3-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c1.6 11.1-11.6 18.2-20 10.8zm152 39c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm-50.9 102.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z\"]\n};\nvar faGrinWink = {\n prefix: 'fas',\n iconName: 'grin-wink',\n icon: [496, 512, [], \"f58c\", \"M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm168 25l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.6 11-11.5 18.2-20 10.8zm-243.1 87.8C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6 20.7 17.9-9.2 55-83.2 93.3-143.8 93.3s-134.5-38.3-143.8-93.3c-2-11.9 9.3-21.6 20.7-17.9z\"]\n};\nvar faGripHorizontal = {\n prefix: 'fas',\n iconName: 'grip-horizontal',\n icon: [448, 512, [], \"f58d\", \"M96 288H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM96 96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z\"]\n};\nvar faGripLines = {\n prefix: 'fas',\n iconName: 'grip-lines',\n icon: [512, 512, [], \"f7a4\", \"M496 288H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-128H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z\"]\n};\nvar faGripLinesVertical = {\n prefix: 'fas',\n iconName: 'grip-lines-vertical',\n icon: [256, 512, [], \"f7a5\", \"M96 496V16c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16v480c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zm128 0V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v480c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16z\"]\n};\nvar faGripVertical = {\n prefix: 'fas',\n iconName: 'grip-vertical',\n icon: [320, 512, [], \"f58e\", \"M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z\"]\n};\nvar faGuitar = {\n prefix: 'fas',\n iconName: 'guitar',\n icon: [512, 512, [], \"f7a6\", \"M502.63 39L473 9.37a32 32 0 0 0-45.26 0L381.46 55.7a35.14 35.14 0 0 0-8.53 13.79L360.77 106l-76.26 76.26c-12.16-8.76-25.5-15.74-40.1-19.14-33.45-7.78-67-.88-89.88 22a82.45 82.45 0 0 0-20.24 33.47c-6 18.56-23.21 32.69-42.15 34.46-23.7 2.27-45.73 11.45-62.61 28.44C-16.11 327-7.9 409 47.58 464.45S185 528 230.56 482.52c17-16.88 26.16-38.9 28.45-62.71 1.76-18.85 15.89-36.13 34.43-42.14a82.6 82.6 0 0 0 33.48-20.25c22.87-22.88 29.74-56.36 22-89.75-3.39-14.64-10.37-28-19.16-40.2L406 151.23l36.48-12.16a35.14 35.14 0 0 0 13.79-8.53l46.33-46.32a32 32 0 0 0 .03-45.22zM208 352a48 48 0 1 1 48-48 48 48 0 0 1-48 48z\"]\n};\nvar faHSquare = {\n prefix: 'fas',\n iconName: 'h-square',\n icon: [448, 512, [], \"f0fd\", \"M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z\"]\n};\nvar faHamburger = {\n prefix: 'fas',\n iconName: 'hamburger',\n icon: [512, 512, [], \"f805\", \"M464 256H48a48 48 0 0 0 0 96h416a48 48 0 0 0 0-96zm16 128H32a16 16 0 0 0-16 16v16a64 64 0 0 0 64 64h352a64 64 0 0 0 64-64v-16a16 16 0 0 0-16-16zM58.64 224h394.72c34.57 0 54.62-43.9 34.82-75.88C448 83.2 359.55 32.1 256 32c-103.54.1-192 51.2-232.18 116.11C4 180.09 24.07 224 58.64 224zM384 112a16 16 0 1 1-16 16 16 16 0 0 1 16-16zM256 80a16 16 0 1 1-16 16 16 16 0 0 1 16-16zm-128 32a16 16 0 1 1-16 16 16 16 0 0 1 16-16z\"]\n};\nvar faHammer = {\n prefix: 'fas',\n iconName: 'hammer',\n icon: [576, 512, [], \"f6e3\", \"M571.31 193.94l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31-28.9-28.9c5.63-21.31.36-44.9-16.35-61.61l-45.25-45.25c-62.48-62.48-163.79-62.48-226.28 0l90.51 45.25v18.75c0 16.97 6.74 33.25 18.75 45.25l49.14 49.14c16.71 16.71 40.3 21.98 61.61 16.35l28.9 28.9-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l90.51-90.51c6.23-6.24 6.23-16.37-.02-22.62zm-286.72-15.2c-3.7-3.7-6.84-7.79-9.85-11.95L19.64 404.96c-25.57 23.88-26.26 64.19-1.53 88.93s65.05 24.05 88.93-1.53l238.13-255.07c-3.96-2.91-7.9-5.87-11.44-9.41l-49.14-49.14z\"]\n};\nvar faHamsa = {\n prefix: 'fas',\n iconName: 'hamsa',\n icon: [512, 512, [], \"f665\", \"M509.34 307.25C504.28 295.56 492.75 288 480 288h-64V80c0-22-18-40-40-40s-40 18-40 40v134c0 5.52-4.48 10-10 10h-20c-5.52 0-10-4.48-10-10V40c0-22-18-40-40-40s-40 18-40 40v174c0 5.52-4.48 10-10 10h-20c-5.52 0-10-4.48-10-10V80c0-22-18-40-40-40S96 58 96 80v208H32c-12.75 0-24.28 7.56-29.34 19.25a31.966 31.966 0 0 0 5.94 34.58l102.69 110.03C146.97 490.08 199.69 512 256 512s109.03-21.92 144.72-60.14L503.4 341.83a31.966 31.966 0 0 0 5.94-34.58zM256 416c-53.02 0-96-64-96-64s42.98-64 96-64 96 64 96 64-42.98 64-96 64zm0-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z\"]\n};\nvar faHandHolding = {\n prefix: 'fas',\n iconName: 'hand-holding',\n icon: [576, 512, [], \"f4bd\", \"M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z\"]\n};\nvar faHandHoldingHeart = {\n prefix: 'fas',\n iconName: 'hand-holding-heart',\n icon: [576, 512, [], \"f4be\", \"M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z\"]\n};\nvar faHandHoldingMedical = {\n prefix: 'fas',\n iconName: 'hand-holding-medical',\n icon: [576, 512, [], \"e05c\", \"M159.88,175.82h64v64a16,16,0,0,0,16,16h64a16,16,0,0,0,16-16v-64h64a16,16,0,0,0,16-16v-64a16,16,0,0,0-16-16h-64v-64a16,16,0,0,0-16-16h-64a16,16,0,0,0-16,16v64h-64a16,16,0,0,0-16,16v64A16,16,0,0,0,159.88,175.82ZM568.07,336.13a39.91,39.91,0,0,0-55.93-8.47L392.47,415.84H271.86a16,16,0,0,1,0-32H350.1c16,0,30.75-10.87,33.37-26.61a32.06,32.06,0,0,0-31.62-37.38h-160a117.7,117.7,0,0,0-74.12,26.25l-46.5,37.74H15.87a16.11,16.11,0,0,0-16,16v96a16.11,16.11,0,0,0,16,16h347a104.8,104.8,0,0,0,61.7-20.27L559.6,392A40,40,0,0,0,568.07,336.13Z\"]\n};\nvar faHandHoldingUsd = {\n prefix: 'fas',\n iconName: 'hand-holding-usd',\n icon: [576, 512, [], \"f4c0\", \"M271.06,144.3l54.27,14.3a8.59,8.59,0,0,1,6.63,8.1c0,4.6-4.09,8.4-9.12,8.4h-35.6a30,30,0,0,1-11.19-2.2c-5.24-2.2-11.28-1.7-15.3,2l-19,17.5a11.68,11.68,0,0,0-2.25,2.66,11.42,11.42,0,0,0,3.88,15.74,83.77,83.77,0,0,0,34.51,11.5V240c0,8.8,7.83,16,17.37,16h17.37c9.55,0,17.38-7.2,17.38-16V222.4c32.93-3.6,57.84-31,53.5-63-3.15-23-22.46-41.3-46.56-47.7L282.68,97.4a8.59,8.59,0,0,1-6.63-8.1c0-4.6,4.09-8.4,9.12-8.4h35.6A30,30,0,0,1,332,83.1c5.23,2.2,11.28,1.7,15.3-2l19-17.5A11.31,11.31,0,0,0,368.47,61a11.43,11.43,0,0,0-3.84-15.78,83.82,83.82,0,0,0-34.52-11.5V16c0-8.8-7.82-16-17.37-16H295.37C285.82,0,278,7.2,278,16V33.6c-32.89,3.6-57.85,31-53.51,63C227.63,119.6,247,137.9,271.06,144.3ZM565.27,328.1c-11.8-10.7-30.2-10-42.6,0L430.27,402a63.64,63.64,0,0,1-40,14H272a16,16,0,0,1,0-32h78.29c15.9,0,30.71-10.9,33.25-26.6a31.2,31.2,0,0,0,.46-5.46A32,32,0,0,0,352,320H192a117.66,117.66,0,0,0-74.1,26.29L71.4,384H16A16,16,0,0,0,0,400v96a16,16,0,0,0,16,16H372.77a64,64,0,0,0,40-14L564,377a32,32,0,0,0,1.28-48.9Z\"]\n};\nvar faHandHoldingWater = {\n prefix: 'fas',\n iconName: 'hand-holding-water',\n icon: [576, 512, [], \"f4c1\", \"M288 256c53 0 96-42.1 96-94 0-40-57.1-120.7-83.2-155.6-6.4-8.5-19.2-8.5-25.6 0C249.1 41.3 192 122 192 162c0 51.9 43 94 96 94zm277.3 72.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z\"]\n};\nvar faHandLizard = {\n prefix: 'fas',\n iconName: 'hand-lizard',\n icon: [576, 512, [], \"f258\", \"M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z\"]\n};\nvar faHandMiddleFinger = {\n prefix: 'fas',\n iconName: 'hand-middle-finger',\n icon: [512, 512, [], \"f806\", \"M479.93 317.12a37.33 37.33 0 0 0-28.28-36.19L416 272v-49.59c0-11.44-9.69-21.29-23.15-23.54l-38.4-6.4C336.63 189.5 320 200.86 320 216v32a8 8 0 0 1-16 0V50c0-26.28-20.25-49.2-46.52-50A48 48 0 0 0 208 48v200a8 8 0 0 1-16 0v-32c0-15.15-16.63-26.51-34.45-23.54l-30.68 5.12c-18 3-30.87 16.12-30.87 31.38V376a8 8 0 0 1-16 0v-76l-27.36 15A37.34 37.34 0 0 0 32 348.4v73.47a37.31 37.31 0 0 0 10.93 26.39l30.93 30.93A112 112 0 0 0 153.05 512h215A112 112 0 0 0 480 400z\"]\n};\nvar faHandPaper = {\n prefix: 'fas',\n iconName: 'hand-paper',\n icon: [448, 512, [], \"f256\", \"M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z\"]\n};\nvar faHandPeace = {\n prefix: 'fas',\n iconName: 'hand-peace',\n icon: [448, 512, [], \"f25b\", \"M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z\"]\n};\nvar faHandPointDown = {\n prefix: 'fas',\n iconName: 'hand-point-down',\n icon: [384, 512, [], \"f0a7\", \"M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"]\n};\nvar faHandPointLeft = {\n prefix: 'fas',\n iconName: 'hand-point-left',\n icon: [512, 512, [], \"f0a5\", \"M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z\"]\n};\nvar faHandPointRight = {\n prefix: 'fas',\n iconName: 'hand-point-right',\n icon: [512, 512, [], \"f0a4\", \"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"]\n};\nvar faHandPointUp = {\n prefix: 'fas',\n iconName: 'hand-point-up',\n icon: [384, 512, [], \"f0a6\", \"M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z\"]\n};\nvar faHandPointer = {\n prefix: 'fas',\n iconName: 'hand-pointer',\n icon: [448, 512, [], \"f25a\", \"M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z\"]\n};\nvar faHandRock = {\n prefix: 'fas',\n iconName: 'hand-rock',\n icon: [512, 512, [], \"f255\", \"M464.8 80c-26.9-.4-48.8 21.2-48.8 48h-8V96.8c0-26.3-20.9-48.3-47.2-48.8-26.9-.4-48.8 21.2-48.8 48v32h-8V80.8c0-26.3-20.9-48.3-47.2-48.8-26.9-.4-48.8 21.2-48.8 48v48h-8V96.8c0-26.3-20.9-48.3-47.2-48.8-26.9-.4-48.8 21.2-48.8 48v136l-8-7.1v-48.1c0-26.3-20.9-48.3-47.2-48.8C21.9 127.6 0 149.2 0 176v66.4c0 27.4 11.7 53.5 32.2 71.8l111.7 99.3c10.2 9.1 16.1 22.2 16.1 35.9v6.7c0 13.3 10.7 24 24 24h240c13.3 0 24-10.7 24-24v-2.9c0-12.8 2.6-25.5 7.5-37.3l49-116.3c5-11.8 7.5-24.5 7.5-37.3V128.8c0-26.3-20.9-48.4-47.2-48.8z\"]\n};\nvar faHandScissors = {\n prefix: 'fas',\n iconName: 'hand-scissors',\n icon: [512, 512, [], \"f257\", \"M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z\"]\n};\nvar faHandSparkles = {\n prefix: 'fas',\n iconName: 'hand-sparkles',\n icon: [640, 512, [], \"e05d\", \"M106.66,170.64l.09,0,49.55-20.65a7.32,7.32,0,0,0,3.68-6h0a7.29,7.29,0,0,0-3.68-6l-49.57-20.67-.07,0L86,67.68a6.66,6.66,0,0,0-11.92,0l-20.7,49.63-.05,0L3.7,138A7.29,7.29,0,0,0,0,144H0a7.32,7.32,0,0,0,3.68,6L53.27,170.6l.07,0L74,220.26a6.65,6.65,0,0,0,11.92,0l20.69-49.62ZM471.38,467.41l-1-.42-1-.5a38.67,38.67,0,0,1,0-69.14l1-.49,1-.43,37.49-15.63,15.63-37.48.41-1,.47-.95c3.85-7.74,10.58-13.63,18.35-17.34,0-1.33.25-2.69.27-4V144a32,32,0,0,0-64,0v72a8,8,0,0,1-8,8H456a8,8,0,0,1-8-8V64a32,32,0,0,0-64,0V216a8,8,0,0,1-8,8H360a8,8,0,0,1-8-8V32a32,32,0,0,0-64,0V216a8,8,0,0,1-8,8H264a8,8,0,0,1-8-8V64a32,32,0,0,0-64,0v241l-23.59-32.49a40,40,0,0,0-64.71,47.09L229.3,492.21A48.07,48.07,0,0,0,268.09,512H465.7c19.24,0,35.65-11.73,43.24-28.79l-.07-.17ZM349.79,339.52,320,351.93l-12.42,29.78a4,4,0,0,1-7.15,0L288,351.93l-29.79-12.41a4,4,0,0,1,0-7.16L288,319.94l12.42-29.78a4,4,0,0,1,7.15,0L320,319.94l29.79,12.42a4,4,0,0,1,0,7.16ZM640,431.91a7.28,7.28,0,0,0-3.68-6l-49.57-20.67-.07,0L566,355.63a6.66,6.66,0,0,0-11.92,0l-20.7,49.63-.05,0L483.7,426a7.28,7.28,0,0,0-3.68,6h0a7.29,7.29,0,0,0,3.68,5.95l49.57,20.67.07,0L554,508.21a6.65,6.65,0,0,0,11.92,0l20.69-49.62h0l.09,0,49.55-20.66a7.29,7.29,0,0,0,3.68-5.95h0Z\"]\n};\nvar faHandSpock = {\n prefix: 'fas',\n iconName: 'hand-spock',\n icon: [512, 512, [], \"f259\", \"M510.9005,145.27027,442.604,432.09391A103.99507,103.99507,0,0,1,341.43745,512H214.074a135.96968,135.96968,0,0,1-93.18489-36.95291L12.59072,373.12723a39.992,39.992,0,0,1,54.8122-58.24988l60.59342,57.02528v0a283.24849,283.24849,0,0,0-11.6703-80.46734L73.63726,147.36011a40.00575,40.00575,0,1,1,76.71833-22.7187l37.15458,125.39477a8.33113,8.33113,0,0,0,16.05656-4.4414L153.26183,49.95406A39.99638,39.99638,0,1,1,230.73015,30.0166l56.09491,218.15825a10.42047,10.42047,0,0,0,20.30018-.501L344.80766,63.96966a40.052,40.052,0,0,1,51.30245-30.0893c19.86073,6.2998,30.86262,27.67378,26.67564,48.08487l-33.83869,164.966a7.55172,7.55172,0,0,0,14.74406,3.2666l29.3973-123.45874a39.99414,39.99414,0,1,1,77.81208,18.53121Z\"]\n};\nvar faHands = {\n prefix: 'fas',\n iconName: 'hands',\n icon: [640, 512, [], \"f4c2\", \"M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z\"]\n};\nvar faHandsHelping = {\n prefix: 'fas',\n iconName: 'hands-helping',\n icon: [640, 512, [], \"f4c4\", \"M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z\"]\n};\nvar faHandsWash = {\n prefix: 'fas',\n iconName: 'hands-wash',\n icon: [576, 512, [], \"e05e\", \"M496,224a48,48,0,1,0-48-48A48,48,0,0,0,496,224ZM311.47,178.45A56.77,56.77,0,0,1,328,176a56,56,0,0,1,19,3.49l15.35-48.61A24,24,0,0,0,342,99.74c-11.53-1.35-22.21,6.44-25.71,17.51l-20.9,66.17ZM93.65,386.33c.8-.19,1.54-.54,2.35-.71V359.93a156,156,0,0,1,107.06-148l73.7-22.76L310.92,81.05a24,24,0,0,0-20.33-31.11c-11.53-1.34-22.22,6.45-25.72,17.52L231.42,173.88a8,8,0,0,1-15.26-4.83L259.53,31.26A24,24,0,0,0,239.2.15C227.67-1.19,217,6.6,213.49,17.66L165.56,169.37a8,8,0,1,1-15.26-4.82l38.56-122a24,24,0,0,0-20.33-31.11C157,10,146.32,17.83,142.82,28.9l-60,189.85L80.76,168.7A24,24,0,0,0,56.9,144.55c-13.23-.05-24.72,10.54-24.9,23.86V281.14A123.69,123.69,0,0,0,93.65,386.33ZM519.1,336H360a8,8,0,0,1,0-16H488a24,24,0,0,0,23.54-28.76C509.35,279.84,498.71,272,487.1,272H288l47.09-17.06a24,24,0,0,0-14.18-45.88L213.19,242.31A123.88,123.88,0,0,0,128,360v25.65a79.78,79.78,0,0,1,58,108.63A118.9,118.9,0,0,0,248,512H456a24,24,0,0,0,23.54-28.76C477.35,471.84,466.71,464,455.1,464H360a8,8,0,0,1,0-16H488a24,24,0,0,0,23.54-28.76C509.35,407.84,498.71,400,487.1,400H360a8,8,0,0,1,0-16H520a24,24,0,0,0,23.54-28.76C541.35,343.84,530.71,336,519.1,336ZM416,64a32,32,0,1,0-32-32A32,32,0,0,0,416,64ZM112,416a48,48,0,1,0,48,48A48,48,0,0,0,112,416Z\"]\n};\nvar faHandshake = {\n prefix: 'fas',\n iconName: 'handshake',\n icon: [640, 512, [], \"f2b5\", \"M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z\"]\n};\nvar faHandshakeAltSlash = {\n prefix: 'fas',\n iconName: 'handshake-alt-slash',\n icon: [640, 512, [], \"e05f\", \"M358.59,195.6,504.2,313.8a63.4,63.4,0,0,1,22.21,37.91H624a16.05,16.05,0,0,0,16-16V143.91A16,16,0,0,0,624,128H512L457.41,73.41A32,32,0,0,0,434.8,64H348.91a32,32,0,0,0-21.61,8.41l-88.12,80.68-25.69-19.85L289.09,64H205.3a32,32,0,0,0-22.6,9.41l-20.34,20.3L45.47,3.38A16,16,0,0,0,23,6.19L3.38,31.46A16,16,0,0,0,6.19,53.91L594.54,508.63A16,16,0,0,0,617,505.82l19.64-25.27a16,16,0,0,0-2.81-22.45L303.4,202.72l32.69-29.92,27-24.7a16,16,0,0,1,21.61,23.61ZM16,128A16.05,16.05,0,0,0,0,144V335.91a16,16,0,0,0,16,16H146.3l90.5,81.89a64,64,0,0,0,90-9.3l.2-.2,17.91,15.5a37.16,37.16,0,0,0,52.29-5.39l8.8-10.82L23.56,128Z\"]\n};\nvar faHandshakeSlash = {\n prefix: 'fas',\n iconName: 'handshake-slash',\n icon: [640, 512, [], \"e060\", \"M0,128.21V384H64a32,32,0,0,0,32-32V184L23.83,128.21ZM48,320.1a16,16,0,1,1-16,16A16,16,0,0,1,48,320.1Zm80,31.81h18.3l90.5,81.89a64,64,0,0,0,90-9.3l.2-.2,17.91,15.5a37.16,37.16,0,0,0,52.29-5.39l8.8-10.82L128,208.72Zm416-223.7V352.1a32,32,0,0,0,32,32h64V128.21ZM592,352.1a16,16,0,1,1,16-16A16,16,0,0,1,592,352.1ZM303.33,202.67l59.58-54.57a16,16,0,0,1,21.59,23.61L358.41,195.6,504,313.8a73.08,73.08,0,0,1,7.91,7.7V128L457.3,73.41A31.76,31.76,0,0,0,434.7,64H348.8a31.93,31.93,0,0,0-21.6,8.41l-88.07,80.64-25.64-19.81L289.09,64H205.3a32,32,0,0,0-22.6,9.41L162.36,93.72,45.47,3.38A16,16,0,0,0,23,6.19L3.38,31.46A16,16,0,0,0,6.19,53.91L594.53,508.63A16,16,0,0,0,617,505.82l19.65-25.27a16,16,0,0,0-2.82-22.45Z\"]\n};\nvar faHanukiah = {\n prefix: 'fas',\n iconName: 'hanukiah',\n icon: [640, 512, [], \"f6e6\", \"M232 160c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm-64 0c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm224 0c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm64 0c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm88 8c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v120h32V168zm-440-8c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm520 0h-32c-8.84 0-16 7.16-16 16v112c0 17.67-14.33 32-32 32H352V128c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v192H96c-17.67 0-32-14.33-32-32V176c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v112c0 53.02 42.98 96 96 96h192v64H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16H352v-64h192c53.02 0 96-42.98 96-96V176c0-8.84-7.16-16-16-16zm-16-32c13.25 0 24-11.94 24-26.67S608 48 608 48s-24 38.61-24 53.33S594.75 128 608 128zm-576 0c13.25 0 24-11.94 24-26.67S32 48 32 48 8 86.61 8 101.33 18.75 128 32 128zm288-48c13.25 0 24-11.94 24-26.67S320 0 320 0s-24 38.61-24 53.33S306.75 80 320 80zm-208 48c13.25 0 24-11.94 24-26.67S112 48 112 48s-24 38.61-24 53.33S98.75 128 112 128zm64 0c13.25 0 24-11.94 24-26.67S176 48 176 48s-24 38.61-24 53.33S162.75 128 176 128zm64 0c13.25 0 24-11.94 24-26.67S240 48 240 48s-24 38.61-24 53.33S226.75 128 240 128zm160 0c13.25 0 24-11.94 24-26.67S400 48 400 48s-24 38.61-24 53.33S386.75 128 400 128zm64 0c13.25 0 24-11.94 24-26.67S464 48 464 48s-24 38.61-24 53.33S450.75 128 464 128zm64 0c13.25 0 24-11.94 24-26.67S528 48 528 48s-24 38.61-24 53.33S514.75 128 528 128z\"]\n};\nvar faHardHat = {\n prefix: 'fas',\n iconName: 'hard-hat',\n icon: [512, 512, [], \"f807\", \"M480 288c0-80.25-49.28-148.92-119.19-177.62L320 192V80a16 16 0 0 0-16-16h-96a16 16 0 0 0-16 16v112l-40.81-81.62C81.28 139.08 32 207.75 32 288v64h448zm16 96H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h480a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faHashtag = {\n prefix: 'fas',\n iconName: 'hashtag',\n icon: [448, 512, [], \"f292\", \"M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z\"]\n};\nvar faHatCowboy = {\n prefix: 'fas',\n iconName: 'hat-cowboy',\n icon: [640, 512, [], \"f8c0\", \"M490 296.9C480.51 239.51 450.51 64 392.3 64c-14 0-26.49 5.93-37 14a58.21 58.21 0 0 1-70.58 0c-10.51-8-23-14-37-14-58.2 0-88.2 175.47-97.71 232.88C188.81 309.47 243.73 320 320 320s131.23-10.51 170-23.1zm142.9-37.18a16 16 0 0 0-19.75 1.5c-1 .9-101.27 90.78-293.16 90.78-190.82 0-292.22-89.94-293.24-90.84A16 16 0 0 0 1 278.53C1.73 280.55 78.32 480 320 480s318.27-199.45 319-201.47a16 16 0 0 0-6.09-18.81z\"]\n};\nvar faHatCowboySide = {\n prefix: 'fas',\n iconName: 'hat-cowboy-side',\n icon: [640, 512, [], \"f8c1\", \"M260.8 291.06c-28.63-22.94-62-35.06-96.4-35.06C87 256 21.47 318.72 1.43 412.06c-3.55 16.6-.43 33.83 8.57 47.3C18.75 472.47 31.83 480 45.88 480H592c-103.21 0-155-37.07-233.19-104.46zm234.65-18.29L468.4 116.2A64 64 0 0 0 392 64.41L200.85 105a64 64 0 0 0-50.35 55.79L143.61 226c6.9-.83 13.7-2 20.79-2 41.79 0 82 14.55 117.29 42.82l98 84.48C450.76 412.54 494.9 448 592 448a48 48 0 0 0 48-48c0-25.39-29.6-119.33-144.55-127.23z\"]\n};\nvar faHatWizard = {\n prefix: 'fas',\n iconName: 'hat-wizard',\n icon: [512, 512, [], \"f6e8\", \"M496 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-304-64l-64-32 64-32 32-64 32 64 64 32-64 32-16 32h208l-86.41-201.63a63.955 63.955 0 0 1-1.89-45.45L416 0 228.42 107.19a127.989 127.989 0 0 0-53.46 59.15L64 416h144l-16-32zm64-224l16-32 16 32 32 16-32 16-16 32-16-32-32-16 32-16z\"]\n};\nvar faHdd = {\n prefix: 'fas',\n iconName: 'hdd',\n icon: [576, 512, [], \"f0a0\", \"M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z\"]\n};\nvar faHeadSideCough = {\n prefix: 'fas',\n iconName: 'head-side-cough',\n icon: [640, 512, [], \"e061\", \"M616,304a24,24,0,1,0-24-24A24,24,0,0,0,616,304ZM552,416a24,24,0,1,0,24,24A24,24,0,0,0,552,416Zm-64-56a24,24,0,1,0,24,24A24,24,0,0,0,488,360ZM616,464a24,24,0,1,0,24,24A24,24,0,0,0,616,464Zm0-104a24,24,0,1,0,24,24A24,24,0,0,0,616,360Zm-64-40a24,24,0,1,0,24,24A24,24,0,0,0,552,320Zm-74.78-45c-21-47.12-48.5-151.75-73.12-186.75A208.13,208.13,0,0,0,234.1,0H192C86,0,0,86,0,192c0,56.75,24.75,107.62,64,142.88V512H288V480h64a64,64,0,0,0,64-64H320a32,32,0,0,1,0-64h96V320h32A32,32,0,0,0,477.22,275ZM288,224a32,32,0,1,1,32-32A32.07,32.07,0,0,1,288,224Z\"]\n};\nvar faHeadSideCoughSlash = {\n prefix: 'fas',\n iconName: 'head-side-cough-slash',\n icon: [640, 512, [], \"e062\", \"M454.11,319.21c19.56-3.81,31.62-25,23.11-44.21-21-47.12-48.5-151.75-73.12-186.75A208.13,208.13,0,0,0,234.1,0H192A190.64,190.64,0,0,0,84.18,33.3L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.46A16,16,0,0,0,6.18,53.91L594.53,508.63A16,16,0,0,0,617,505.82l19.64-25.27a16,16,0,0,0-2.81-22.45ZM313.39,210.45,263.61,172c5.88-7.14,14.43-12,24.36-12a32.06,32.06,0,0,1,32,32C320,199,317.24,205.17,313.39,210.45ZM616,304a24,24,0,1,0-24-24A24,24,0,0,0,616,304Zm-64,64a24,24,0,1,0-24-24A24,24,0,0,0,552,368ZM288,384a32,32,0,0,1,32-32h19.54L20.73,105.59A190.86,190.86,0,0,0,0,192c0,56.75,24.75,107.62,64,142.88V512H288V480h64a64,64,0,0,0,64-64H320A32,32,0,0,1,288,384Zm328-24a24,24,0,1,0,24,24A24,24,0,0,0,616,360Z\"]\n};\nvar faHeadSideMask = {\n prefix: 'fas',\n iconName: 'head-side-mask',\n icon: [512, 512, [], \"e063\", \"M.15,184.42C-2.17,244.21,23,298.06,64,334.88V512H224V316.51L3.67,156.25A182.28,182.28,0,0,0,.15,184.42ZM509.22,275c-21-47.12-48.5-151.75-73.12-186.75A208.11,208.11,0,0,0,266.11,0H200C117,0,42.48,50.57,13.25,123.65L239.21,288H511.76A31.35,31.35,0,0,0,509.22,275ZM320,224a32,32,0,1,1,32-32A32.07,32.07,0,0,1,320,224Zm16,144H496l16-48H256V512H401.88a64,64,0,0,0,60.71-43.76L464,464H336a16,16,0,0,1,0-32H474.67l10.67-32H336a16,16,0,0,1,0-32Z\"]\n};\nvar faHeadSideVirus = {\n prefix: 'fas',\n iconName: 'head-side-virus',\n icon: [512, 512, [], \"e064\", \"M272,240a16,16,0,1,0,16,16A16,16,0,0,0,272,240Zm-64-64a16,16,0,1,0,16,16A16,16,0,0,0,208,176Zm301.2,99c-20.93-47.12-48.43-151.73-73.07-186.75A207.9,207.9,0,0,0,266.09,0H192C86,0,0,86,0,192A191.23,191.23,0,0,0,64,334.81V512H320V448h64a64,64,0,0,0,64-64V320H480A32,32,0,0,0,509.2,275ZM368,240H355.88c-28.51,0-42.79,34.47-22.63,54.63l8.58,8.57a16,16,0,1,1-22.63,22.63l-8.57-8.58C290.47,297.09,256,311.37,256,339.88V352a16,16,0,0,1-32,0V339.88c0-28.51-34.47-42.79-54.63-22.63l-8.57,8.58a16,16,0,0,1-22.63-22.63l8.58-8.57c20.16-20.16,5.88-54.63-22.63-54.63H112a16,16,0,0,1,0-32h12.12c28.51,0,42.79-34.47,22.63-54.63l-8.58-8.57a16,16,0,0,1,22.63-22.63l8.57,8.58c20.16,20.16,54.63,5.88,54.63-22.63V96a16,16,0,0,1,32,0v12.12c0,28.51,34.47,42.79,54.63,22.63l8.57-8.58a16,16,0,0,1,22.63,22.63l-8.58,8.57C313.09,173.53,327.37,208,355.88,208H368a16,16,0,0,1,0,32Z\"]\n};\nvar faHeading = {\n prefix: 'fas',\n iconName: 'heading',\n icon: [512, 512, [], \"f1dc\", \"M448 96v320h32a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H320a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32V288H160v128h32a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32V96H32a16 16 0 0 1-16-16V48a16 16 0 0 1 16-16h160a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16h-32v128h192V96h-32a16 16 0 0 1-16-16V48a16 16 0 0 1 16-16h160a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16z\"]\n};\nvar faHeadphones = {\n prefix: 'fas',\n iconName: 'headphones',\n icon: [512, 512, [], \"f025\", \"M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z\"]\n};\nvar faHeadphonesAlt = {\n prefix: 'fas',\n iconName: 'headphones-alt',\n icon: [512, 512, [], \"f58f\", \"M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z\"]\n};\nvar faHeadset = {\n prefix: 'fas',\n iconName: 'headset',\n icon: [512, 512, [], \"f590\", \"M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z\"]\n};\nvar faHeart = {\n prefix: 'fas',\n iconName: 'heart',\n icon: [512, 512, [], \"f004\", \"M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z\"]\n};\nvar faHeartBroken = {\n prefix: 'fas',\n iconName: 'heart-broken',\n icon: [512, 512, [], \"f7a9\", \"M473.7 73.8l-2.4-2.5c-46-47-118-51.7-169.6-14.8L336 159.9l-96 64 48 128-144-144 96-64-28.6-86.5C159.7 19.6 87 24 40.7 71.4l-2.4 2.4C-10.4 123.6-12.5 202.9 31 256l212.1 218.6c7.1 7.3 18.6 7.3 25.7 0L481 255.9c43.5-53 41.4-132.3-7.3-182.1z\"]\n};\nvar faHeartbeat = {\n prefix: 'fas',\n iconName: 'heartbeat',\n icon: [512, 512, [], \"f21e\", \"M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z\"]\n};\nvar faHelicopter = {\n prefix: 'fas',\n iconName: 'helicopter',\n icon: [640, 512, [], \"f533\", \"M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z\"]\n};\nvar faHighlighter = {\n prefix: 'fas',\n iconName: 'highlighter',\n icon: [544, 512, [], \"f591\", \"M0 479.98L99.92 512l35.45-35.45-67.04-67.04L0 479.98zm124.61-240.01a36.592 36.592 0 0 0-10.79 38.1l13.05 42.83-50.93 50.94 96.23 96.23 50.86-50.86 42.74 13.08c13.73 4.2 28.65-.01 38.15-10.78l35.55-41.64-173.34-173.34-41.52 35.44zm403.31-160.7l-63.2-63.2c-20.49-20.49-53.38-21.52-75.12-2.35L190.55 183.68l169.77 169.78L530.27 154.4c19.18-21.74 18.15-54.63-2.35-75.13z\"]\n};\nvar faHiking = {\n prefix: 'fas',\n iconName: 'hiking',\n icon: [384, 512, [], \"f6ec\", \"M80.95 472.23c-4.28 17.16 6.14 34.53 23.28 38.81 2.61.66 5.22.95 7.8.95 14.33 0 27.37-9.7 31.02-24.23l25.24-100.97-52.78-52.78-34.56 138.22zm14.89-196.12L137 117c2.19-8.42-3.14-16.95-11.92-19.06-43.88-10.52-88.35 15.07-99.32 57.17L.49 253.24c-2.19 8.42 3.14 16.95 11.92 19.06l63.56 15.25c8.79 2.1 17.68-3.02 19.87-11.44zM368 160h-16c-8.84 0-16 7.16-16 16v16h-34.75l-46.78-46.78C243.38 134.11 228.61 128 212.91 128c-27.02 0-50.47 18.3-57.03 44.52l-26.92 107.72a32.012 32.012 0 0 0 8.42 30.39L224 397.25V480c0 17.67 14.33 32 32 32s32-14.33 32-32v-82.75c0-17.09-6.66-33.16-18.75-45.25l-46.82-46.82c.15-.5.49-.89.62-1.41l19.89-79.57 22.43 22.43c6 6 14.14 9.38 22.62 9.38h48v240c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V176c.01-8.84-7.15-16-15.99-16zM240 96c26.51 0 48-21.49 48-48S266.51 0 240 0s-48 21.49-48 48 21.49 48 48 48z\"]\n};\nvar faHippo = {\n prefix: 'fas',\n iconName: 'hippo',\n icon: [640, 512, [], \"f6ed\", \"M581.12 96.2c-27.67-.15-52.5 17.58-76.6 26.62C489.98 88.27 455.83 64 416 64c-11.28 0-21.95 2.3-32 5.88V56c0-13.26-10.75-24-24-24h-16c-13.25 0-24 10.74-24 24v48.98C286.01 79.58 241.24 64 192 64 85.96 64 0 135.64 0 224v240c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16v-70.79C128.35 407.57 166.72 416 208 416s79.65-8.43 112-22.79V464c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V288h128v32c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-32c17.67 0 32-14.33 32-32v-92.02c0-34.09-24.79-67.59-58.88-67.78zM448 176c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z\"]\n};\nvar faHistory = {\n prefix: 'fas',\n iconName: 'history',\n icon: [512, 512, [], \"f1da\", \"M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z\"]\n};\nvar faHockeyPuck = {\n prefix: 'fas',\n iconName: 'hockey-puck',\n icon: [512, 512, [], \"f453\", \"M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z\"]\n};\nvar faHollyBerry = {\n prefix: 'fas',\n iconName: 'holly-berry',\n icon: [448, 512, [], \"f7aa\", \"M144 192c26.5 0 48-21.5 48-48s-21.5-48-48-48-48 21.5-48 48 21.5 48 48 48zm112-48c0 26.5 21.5 48 48 48s48-21.5 48-48-21.5-48-48-48-48 21.5-48 48zm-32-48c26.5 0 48-21.5 48-48S250.5 0 224 0s-48 21.5-48 48 21.5 48 48 48zm-16.2 139.1c.1-12.4-13.1-20.1-23.8-13.7-34.3 20.3-71.4 32.7-108.7 36.2-9.7.9-15.6 11.3-11.6 20.2 6.2 13.9 11.1 28.6 14.7 43.8 3.6 15.2-5.3 30.6-20.2 35.1-14.9 4.5-30.1 7.6-45.3 9.1-9.7 1-15.7 11.3-11.7 20.2 15 32.8 22.9 69.5 23 107.7.1 14.4 15.2 23.1 27.6 16 33.2-19 68.9-30.5 104.8-33.9 9.7-.9 15.6-11.3 11.6-20.2-6.2-13.9-11.1-28.6-14.7-43.8-3.6-15.2 5.3-30.6 20.2-35.1 14.9-4.5 30.1-7.6 45.3-9.1 9.7-1 15.7-11.3 11.7-20.2-15.5-34.2-23.3-72.5-22.9-112.3zM435 365.6c-15.2-1.6-30.3-4.7-45.3-9.1-14.9-4.5-23.8-19.9-20.2-35.1 3.6-15.2 8.5-29.8 14.7-43.8 4-8.9-1.9-19.3-11.6-20.2-37.3-3.5-74.4-15.9-108.7-36.2-10.7-6.3-23.9 1.4-23.8 13.7 0 1.6-.2 3.2-.2 4.9.2 33.3 7 65.7 19.9 94 5.7 12.4 5.2 26.6-.6 38.9 4.9 1.2 9.9 2.2 14.8 3.7 14.9 4.5 23.8 19.9 20.2 35.1-3.6 15.2-8.5 29.8-14.7 43.8-4 8.9 1.9 19.3 11.6 20.2 35.9 3.4 71.6 14.9 104.8 33.9 12.5 7.1 27.6-1.6 27.6-16 .2-38.2 8-75 23-107.7 4.3-8.7-1.8-19.1-11.5-20.1z\"]\n};\nvar faHome = {\n prefix: 'fas',\n iconName: 'home',\n icon: [576, 512, [], \"f015\", \"M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0zM571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93z\"]\n};\nvar faHorse = {\n prefix: 'fas',\n iconName: 'horse',\n icon: [576, 512, [], \"f6f0\", \"M575.92 76.6c-.01-8.13-3.02-15.87-8.58-21.8-3.78-4.03-8.58-9.12-13.69-14.5 11.06-6.84 19.5-17.49 22.18-30.66C576.85 4.68 572.96 0 567.9 0H447.92c-70.69 0-128 57.31-128 128H160c-28.84 0-54.4 12.98-72 33.11V160c-48.53 0-88 39.47-88 88v56c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-56c0-13.22 6.87-24.39 16.78-31.68-.21 2.58-.78 5.05-.78 7.68 0 27.64 11.84 52.36 30.54 69.88l-25.72 68.6a63.945 63.945 0 0 0-2.16 37.99l24.85 99.41A15.982 15.982 0 0 0 107.02 512h65.96c10.41 0 18.05-9.78 15.52-19.88l-26.31-105.26 23.84-63.59L320 345.6V496c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V318.22c19.74-20.19 32-47.75 32-78.22 0-.22-.07-.42-.08-.64V136.89l16 7.11 18.9 37.7c7.45 14.87 25.05 21.55 40.49 15.37l32.55-13.02a31.997 31.997 0 0 0 20.12-29.74l-.06-77.71zm-64 19.4c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z\"]\n};\nvar faHorseHead = {\n prefix: 'fas',\n iconName: 'horse-head',\n icon: [512, 512, [], \"f7ab\", \"M509.8 332.5l-69.9-164.3c-14.9-41.2-50.4-71-93-79.2 18-10.6 46.3-35.9 34.2-82.3-1.3-5-7.1-7.9-12-6.1L166.9 76.3C35.9 123.4 0 238.9 0 398.8V480c0 17.7 14.3 32 32 32h236.2c23.8 0 39.3-25 28.6-46.3L256 384v-.7c-45.6-3.5-84.6-30.7-104.3-69.6-1.6-3.1-.9-6.9 1.6-9.3l12.1-12.1c3.9-3.9 10.6-2.7 12.9 2.4 14.8 33.7 48.2 57.4 87.4 57.4 17.2 0 33-5.1 46.8-13.2l46 63.9c6 8.4 15.7 13.3 26 13.3h50.3c8.5 0 16.6-3.4 22.6-9.4l45.3-39.8c8.9-9.1 11.7-22.6 7.1-34.4zM328 224c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24z\"]\n};\nvar faHospital = {\n prefix: 'fas',\n iconName: 'hospital',\n icon: [448, 512, [], \"f0f8\", \"M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z\"]\n};\nvar faHospitalAlt = {\n prefix: 'fas',\n iconName: 'hospital-alt',\n icon: [576, 512, [], \"f47d\", \"M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z\"]\n};\nvar faHospitalSymbol = {\n prefix: 'fas',\n iconName: 'hospital-symbol',\n icon: [512, 512, [], \"f47e\", \"M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z\"]\n};\nvar faHospitalUser = {\n prefix: 'fas',\n iconName: 'hospital-user',\n icon: [640, 512, [], \"f80d\", \"M480 320a96 96 0 1 0-96-96 96 96 0 0 0 96 96zm48 32a22.88 22.88 0 0 0-7.06 1.09 124.76 124.76 0 0 1-81.89 0A22.82 22.82 0 0 0 432 352a112 112 0 0 0-112 112.62c.14 26.26 21.73 47.38 48 47.38h224c26.27 0 47.86-21.12 48-47.38A112 112 0 0 0 528 352zm-198.09 10.45A145.19 145.19 0 0 1 352 344.62V128a32 32 0 0 0-32-32h-32V32a32 32 0 0 0-32-32H96a32 32 0 0 0-32 32v64H32a32 32 0 0 0-32 32v368a16 16 0 0 0 16 16h288.31A78.62 78.62 0 0 1 288 464.79a143.06 143.06 0 0 1 41.91-102.34zM144 404a12 12 0 0 1-12 12H92a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12zm0-128a12 12 0 0 1-12 12H92a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12zm48-122a6 6 0 0 1-6 6h-20a6 6 0 0 1-6-6v-26h-26a6 6 0 0 1-6-6v-20a6 6 0 0 1 6-6h26V70a6 6 0 0 1 6-6h20a6 6 0 0 1 6 6v26h26a6 6 0 0 1 6 6v20a6 6 0 0 1-6 6h-26zm80 250a12 12 0 0 1-12 12h-40a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12zm0-128a12 12 0 0 1-12 12h-40a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12z\"]\n};\nvar faHotTub = {\n prefix: 'fas',\n iconName: 'hot-tub',\n icon: [512, 512, [], \"f593\", \"M414.21 177.65c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C378.96 6.14 372.22 0 364.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zm-108 0c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C270.96 6.14 264.22 0 256.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zM480 256H256l-110.93-83.2a63.99 63.99 0 0 0-38.4-12.8H64c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V288c0-17.67-14.33-32-32-32zM128 440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zM64 128c35.35 0 64-28.65 64-64S99.35 0 64 0 0 28.65 0 64s28.65 64 64 64z\"]\n};\nvar faHotdog = {\n prefix: 'fas',\n iconName: 'hotdog',\n icon: [512, 512, [], \"f80f\", \"M488.56 23.44a80 80 0 0 0-113.12 0l-352 352a80 80 0 1 0 113.12 113.12l352-352a80 80 0 0 0 0-113.12zm-49.93 95.19c-19.6 19.59-37.52 22.67-51.93 25.14C373.76 146 364.4 147.6 352 160s-14 21.76-16.23 34.71c-2.48 14.4-5.55 32.33-25.15 51.92s-37.52 22.67-51.92 25.15C245.75 274 236.4 275.6 224 288s-14 21.75-16.23 34.7c-2.47 14.4-5.54 32.33-25.14 51.92s-37.53 22.68-51.93 25.15C117.76 402 108.4 403.6 96 416a16 16 0 0 1-22.63-22.63c19.6-19.59 37.52-22.67 51.92-25.14 13-2.22 22.3-3.82 34.71-16.23s14-21.75 16.22-34.7c2.48-14.4 5.55-32.33 25.15-51.92s37.52-22.67 51.92-25.14c13-2.22 22.3-3.83 34.7-16.23s14-21.76 16.24-34.71c2.47-14.4 5.54-32.33 25.14-51.92s37.52-22.68 51.92-25.15C394.24 110 403.59 108.41 416 96a16 16 0 0 1 22.63 22.63zM31.44 322.18L322.18 31.44l-11.54-11.55c-25-25-63.85-26.66-86.79-3.72L16.17 223.85c-22.94 22.94-21.27 61.79 3.72 86.78zm449.12-132.36L189.82 480.56l11.54 11.55c25 25 63.85 26.66 86.79 3.72l207.68-207.68c22.94-22.94 21.27-61.79-3.72-86.79z\"]\n};\nvar faHotel = {\n prefix: 'fas',\n iconName: 'hotel',\n icon: [576, 512, [], \"f594\", \"M560 64c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h15.98v384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h240v-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v80h240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-16V64h16zm-304 44.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm0 96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm-128-96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zM179.2 256h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8zM192 384c0-53.02 42.98-96 96-96s96 42.98 96 96H192zm256-140.8c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-96c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4z\"]\n};\nvar faHourglass = {\n prefix: 'fas',\n iconName: 'hourglass',\n icon: [384, 512, [], \"f254\", \"M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z\"]\n};\nvar faHourglassEnd = {\n prefix: 'fas',\n iconName: 'hourglass-end',\n icon: [384, 512, [], \"f253\", \"M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z\"]\n};\nvar faHourglassHalf = {\n prefix: 'fas',\n iconName: 'hourglass-half',\n icon: [384, 512, [], \"f252\", \"M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z\"]\n};\nvar faHourglassStart = {\n prefix: 'fas',\n iconName: 'hourglass-start',\n icon: [384, 512, [], \"f251\", \"M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z\"]\n};\nvar faHouseDamage = {\n prefix: 'fas',\n iconName: 'house-damage',\n icon: [576, 512, [], \"f6f1\", \"M288 114.96L69.47 307.71c-1.62 1.46-3.69 2.14-5.47 3.35V496c0 8.84 7.16 16 16 16h149.23L192 439.19l104.11-64-60.16-119.22L384 392.75l-104.11 64L319.81 512H496c8.84 0 16-7.16 16-16V311.1c-1.7-1.16-3.72-1.82-5.26-3.2L288 114.96zm282.69 121.32L512 184.45V48c0-8.84-7.16-16-16-16h-64c-8.84 0-16 7.16-16 16v51.69L314.75 10.31C307.12 3.45 297.56.01 288 0s-19.1 3.41-26.7 10.27L5.31 236.28c-6.57 5.91-7.12 16.02-1.21 22.6l21.4 23.82c5.9 6.57 16.02 7.12 22.6 1.21L277.42 81.63c6.05-5.33 15.12-5.33 21.17 0L527.91 283.9c6.57 5.9 16.69 5.36 22.6-1.21l21.4-23.82c5.9-6.57 5.36-16.69-1.22-22.59z\"]\n};\nvar faHouseUser = {\n prefix: 'fas',\n iconName: 'house-user',\n icon: [576, 512, [], \"e065\", \"M570.69,236.27,512,184.44V48a16,16,0,0,0-16-16H432a16,16,0,0,0-16,16V99.67L314.78,10.3C308.5,4.61,296.53,0,288,0s-20.46,4.61-26.74,10.3l-256,226A18.27,18.27,0,0,0,0,248.2a18.64,18.64,0,0,0,4.09,10.71L25.5,282.7a21.14,21.14,0,0,0,12,5.3,21.67,21.67,0,0,0,10.69-4.11l15.9-14V480a32,32,0,0,0,32,32H480a32,32,0,0,0,32-32V269.88l15.91,14A21.94,21.94,0,0,0,538.63,288a20.89,20.89,0,0,0,11.87-5.31l21.41-23.81A21.64,21.64,0,0,0,576,248.19,21,21,0,0,0,570.69,236.27ZM288,176a64,64,0,1,1-64,64A64,64,0,0,1,288,176ZM400,448H176a16,16,0,0,1-16-16,96,96,0,0,1,96-96h64a96,96,0,0,1,96,96A16,16,0,0,1,400,448Z\"]\n};\nvar faHryvnia = {\n prefix: 'fas',\n iconName: 'hryvnia',\n icon: [384, 512, [], \"f6f2\", \"M368 240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-41.86c13.41-28.63 13.74-63.33-4.13-94.05C303.34 49.84 267.1 32 229.96 32h-78.82c-24.32 0-47.86 8.53-66.54 24.09L72.83 65.9c-10.18 8.49-11.56 23.62-3.07 33.8l20.49 24.59c8.49 10.19 23.62 11.56 33.81 3.07l11.73-9.78c4.32-3.6 9.77-5.57 15.39-5.57h83.62c11.69 0 21.2 9.52 21.2 21.2 0 5.91-2.48 11.58-6.81 15.58L219.7 176H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h134.37l-34.67 32H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h41.86c-13.41 28.63-13.74 63.33 4.13 94.05C80.66 462.15 116.9 480 154.04 480h78.82c24.32 0 47.86-8.53 66.54-24.09l11.77-9.81c10.18-8.49 11.56-23.62 3.07-33.8l-20.49-24.59c-8.49-10.19-23.62-11.56-33.81-3.07l-11.75 9.8a23.992 23.992 0 0 1-15.36 5.56H149.2c-11.69 0-21.2-9.52-21.2-21.2 0-5.91 2.48-11.58 6.81-15.58L164.3 336H368c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16H233.63l34.67-32H368z\"]\n};\nvar faICursor = {\n prefix: 'fas',\n iconName: 'i-cursor',\n icon: [256, 512, [], \"f246\", \"M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z\"]\n};\nvar faIceCream = {\n prefix: 'fas',\n iconName: 'ice-cream',\n icon: [448, 512, [], \"f810\", \"M368 160h-.94a144 144 0 1 0-286.12 0H80a48 48 0 0 0 0 96h288a48 48 0 0 0 0-96zM195.38 493.69a31.52 31.52 0 0 0 57.24 0L352 288H96z\"]\n};\nvar faIcicles = {\n prefix: 'fas',\n iconName: 'icicles',\n icon: [512, 512, [], \"f7ad\", \"M511.4 37.9C515.1 18.2 500 0 480 0H32C10.6 0-4.8 20.7 1.4 41.2l87.1 273.4c2.5 7.2 12.7 7.2 15.1 0L140 190.5l44.2 187.3c1.9 8.3 13.7 8.3 15.6 0l46.5-196.9 34.1 133.4c2.3 7.6 13 7.6 15.3 0l45.8-172.5 66.7 363.8c1.7 8.6 14 8.6 15.7 0l87.5-467.7z\"]\n};\nvar faIcons = {\n prefix: 'fas',\n iconName: 'icons',\n icon: [512, 512, [], \"f86d\", \"M116.65 219.35a15.68 15.68 0 0 0 22.65 0l96.75-99.83c28.15-29 26.5-77.1-4.91-103.88C203.75-7.7 163-3.5 137.86 22.44L128 32.58l-9.85-10.14C93.05-3.5 52.25-7.7 24.86 15.64c-31.41 26.78-33 74.85-5 103.88zm143.92 100.49h-48l-7.08-14.24a27.39 27.39 0 0 0-25.66-17.78h-71.71a27.39 27.39 0 0 0-25.66 17.78l-7 14.24h-48A27.45 27.45 0 0 0 0 347.3v137.25A27.44 27.44 0 0 0 27.43 512h233.14A27.45 27.45 0 0 0 288 484.55V347.3a27.45 27.45 0 0 0-27.43-27.46zM144 468a52 52 0 1 1 52-52 52 52 0 0 1-52 52zm355.4-115.9h-60.58l22.36-50.75c2.1-6.65-3.93-13.21-12.18-13.21h-75.59c-6.3 0-11.66 3.9-12.5 9.1l-16.8 106.93c-1 6.3 4.88 11.89 12.5 11.89h62.31l-24.2 83c-1.89 6.65 4.2 12.9 12.23 12.9a13.26 13.26 0 0 0 10.92-5.25l92.4-138.91c4.88-6.91-1.16-15.7-10.87-15.7zM478.08.33L329.51 23.17C314.87 25.42 304 38.92 304 54.83V161.6a83.25 83.25 0 0 0-16-1.7c-35.35 0-64 21.48-64 48s28.65 48 64 48c35.2 0 63.73-21.32 64-47.66V99.66l112-17.22v47.18a83.25 83.25 0 0 0-16-1.7c-35.35 0-64 21.48-64 48s28.65 48 64 48c35.2 0 63.73-21.32 64-47.66V32c0-19.48-16-34.42-33.92-31.67z\"]\n};\nvar faIdBadge = {\n prefix: 'fas',\n iconName: 'id-badge',\n icon: [384, 512, [], \"f2c1\", \"M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z\"]\n};\nvar faIdCard = {\n prefix: 'fas',\n iconName: 'id-card',\n icon: [576, 512, [], \"f2c2\", \"M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z\"]\n};\nvar faIdCardAlt = {\n prefix: 'fas',\n iconName: 'id-card-alt',\n icon: [576, 512, [], \"f47f\", \"M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z\"]\n};\nvar faIgloo = {\n prefix: 'fas',\n iconName: 'igloo',\n icon: [576, 512, [], \"f7ae\", \"M320 33.9c-10.5-1.2-21.2-1.9-32-1.9-99.8 0-187.8 50.8-239.4 128H320V33.9zM96 192H30.3C11.1 230.6 0 274 0 320h96V192zM352 39.4V160h175.4C487.2 99.9 424.8 55.9 352 39.4zM480 320h96c0-46-11.1-89.4-30.3-128H480v128zm-64 64v96h128c17.7 0 32-14.3 32-32v-96H411.5c2.6 10.3 4.5 20.9 4.5 32zm32-192H128v128h49.8c22.2-38.1 63-64 110.2-64s88 25.9 110.2 64H448V192zM0 448c0 17.7 14.3 32 32 32h128v-96c0-11.1 1.9-21.7 4.5-32H0v96zm288-160c-53 0-96 43-96 96v96h192v-96c0-53-43-96-96-96z\"]\n};\nvar faImage = {\n prefix: 'fas',\n iconName: 'image',\n icon: [512, 512, [], \"f03e\", \"M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z\"]\n};\nvar faImages = {\n prefix: 'fas',\n iconName: 'images',\n icon: [576, 512, [], \"f302\", \"M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z\"]\n};\nvar faInbox = {\n prefix: 'fas',\n iconName: 'inbox',\n icon: [576, 512, [], \"f01c\", \"M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z\"]\n};\nvar faIndent = {\n prefix: 'fas',\n iconName: 'indent',\n icon: [448, 512, [], \"f03c\", \"M27.31 363.3l96-96a16 16 0 0 0 0-22.62l-96-96C17.27 138.66 0 145.78 0 160v192c0 14.31 17.33 21.3 27.31 11.3zM432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm3.17-128H204.83A12.82 12.82 0 0 0 192 300.83v38.34A12.82 12.82 0 0 0 204.83 352h230.34A12.82 12.82 0 0 0 448 339.17v-38.34A12.82 12.82 0 0 0 435.17 288zm0-128H204.83A12.82 12.82 0 0 0 192 172.83v38.34A12.82 12.82 0 0 0 204.83 224h230.34A12.82 12.82 0 0 0 448 211.17v-38.34A12.82 12.82 0 0 0 435.17 160zM432 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faIndustry = {\n prefix: 'fas',\n iconName: 'industry',\n icon: [512, 512, [], \"f275\", \"M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z\"]\n};\nvar faInfinity = {\n prefix: 'fas',\n iconName: 'infinity',\n icon: [640, 512, [], \"f534\", \"M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z\"]\n};\nvar faInfo = {\n prefix: 'fas',\n iconName: 'info',\n icon: [192, 512, [], \"f129\", \"M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z\"]\n};\nvar faInfoCircle = {\n prefix: 'fas',\n iconName: 'info-circle',\n icon: [512, 512, [], \"f05a\", \"M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z\"]\n};\nvar faItalic = {\n prefix: 'fas',\n iconName: 'italic',\n icon: [320, 512, [], \"f033\", \"M320 48v32a16 16 0 0 1-16 16h-62.76l-80 320H208a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H16a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h62.76l80-320H112a16 16 0 0 1-16-16V48a16 16 0 0 1 16-16h192a16 16 0 0 1 16 16z\"]\n};\nvar faJedi = {\n prefix: 'fas',\n iconName: 'jedi',\n icon: [576, 512, [], \"f669\", \"M535.95308,352c-42.64069,94.17188-137.64086,160-247.9848,160q-6.39844,0-12.84377-.29688C171.15558,506.9375,81.26481,442.23438,40.01474,352H79.93668L21.3272,293.40625a264.82522,264.82522,0,0,1-5.10938-39.42187,273.6653,273.6653,0,0,1,.5-29.98438H63.93665L22.546,182.625A269.79782,269.79782,0,0,1,130.51489,20.54688a16.06393,16.06393,0,0,1,9.28127-3,16.36332,16.36332,0,0,1,13.5,7.25,16.02739,16.02739,0,0,1,1.625,15.09374,138.387,138.387,0,0,0-9.84376,51.26563c0,45.10937,21.04691,86.57813,57.71884,113.73437a16.29989,16.29989,0,0,1,1.20313,25.39063c-26.54692,23.98437-41.17194,56.5-41.17194,91.57813,0,60.03124,42.95319,110.28124,99.89079,121.92187l2.5-65.26563L238.062,397a8.33911,8.33911,0,0,1-10-.75,8.025,8.025,0,0,1-1.39063-9.9375l20.125-33.76562-42.06257-8.73438a7.9898,7.9898,0,0,1,0-15.65625l42.06257-8.71875-20.10941-33.73438a7.99122,7.99122,0,0,1,11.35939-10.71874L268.437,295.64062,279.95265,7.67188a7.97138,7.97138,0,0,1,8-7.67188h.04687a8.02064,8.02064,0,0,1,7.95314,7.70312L307.48394,295.625l30.39068-20.67188a8.08327,8.08327,0,0,1,10,.8125,7.99866,7.99866,0,0,1,1.39062,9.90626L329.12461,319.4375l42.07819,8.73438a7.99373,7.99373,0,0,1,0,15.65624l-42.07819,8.71876,20.1094,33.73437a7.97791,7.97791,0,0,1-1.32812,9.92187A8.25739,8.25739,0,0,1,337.87462,397L310.7027,378.53125l2.5,65.34375c48.48446-9.40625,87.57828-48.15625,97.31267-96.5A123.52652,123.52652,0,0,0,371.9528,230.29688a16.30634,16.30634,0,0,1,1.20313-25.42188c36.65631-27.17188,57.6876-68.60938,57.6876-113.73438a138.01689,138.01689,0,0,0-9.85939-51.3125,15.98132,15.98132,0,0,1,1.60937-15.09374,16.36914,16.36914,0,0,1,13.5-7.23438,16.02453,16.02453,0,0,1,9.25,2.98438A271.26947,271.26947,0,0,1,553.25,182.76562L511.99992,224h46.9532C559.3125,229.76562,560,235.45312,560,241.26562a270.092,270.092,0,0,1-5.125,51.85938L495.98427,352Z\"]\n};\nvar faJoint = {\n prefix: 'fas',\n iconName: 'joint',\n icon: [640, 512, [], \"f595\", \"M444.34 181.1c22.38 15.68 35.66 41.16 35.66 68.59V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-43.24-21.01-83.41-56.34-108.06C463.85 125.02 448 99.34 448 70.31V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v66.4c0 43.69 24.56 81.63 60.34 106.7zM194.97 358.98C126.03 370.07 59.69 394.69 0 432c83.65 52.28 180.3 80 278.94 80h88.57L254.79 380.49c-14.74-17.2-37.45-25.11-59.82-21.51zM553.28 87.09c-5.67-3.8-9.28-9.96-9.28-16.78V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v62.31c0 22.02 10.17 43.41 28.64 55.39C550.79 153.04 576 199.54 576 249.69V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-65.44-32.41-126.19-86.72-162.6zM360.89 352.05c-34.4.06-86.81.15-88.21.17l117.8 137.43A63.987 63.987 0 0 0 439.07 512h88.45L409.57 374.4a63.955 63.955 0 0 0-48.68-22.35zM616 352H432l117.99 137.65A63.987 63.987 0 0 0 598.58 512H616c13.25 0 24-10.75 24-24V376c0-13.26-10.75-24-24-24z\"]\n};\nvar faJournalWhills = {\n prefix: 'fas',\n iconName: 'journal-whills',\n icon: [448, 512, [], \"f66a\", \"M438.40625,377.59375c-3.20313,12.8125-3.20313,57.60937,0,73.60937Q447.9922,460.78907,448,470.40625v16c0,16-12.79688,25.59375-25.59375,25.59375H96c-54.40625,0-96-41.59375-96-96V96C0,41.59375,41.59375,0,96,0H422.40625C438.40625,0,448,9.59375,448,25.59375v332.8125Q448,372.79688,438.40625,377.59375ZM380.79688,384H96c-16,0-32,12.79688-32,32s12.79688,32,32,32H380.79688ZM128.01562,176.01562c0,.51563.14063.98438.14063,1.5l37.10937,32.46876A7.99954,7.99954,0,0,1,160,224h-.01562a9.17678,9.17678,0,0,1-5.25-1.98438L131.14062,201.375C142.6875,250.95312,186.90625,288,240,288s97.3125-37.04688,108.875-86.625l-23.59375,20.64062a8.02516,8.02516,0,0,1-5.26563,1.96876H320a9.14641,9.14641,0,0,1-6.01562-2.71876A9.26508,9.26508,0,0,1,312,216a9.097,9.097,0,0,1,2.73438-6.01562l37.10937-32.46876c.01563-.53124.15625-1,.15625-1.51562,0-11.04688-2.09375-21.51562-5.06251-31.59375l-21.26562,21.25a8.00467,8.00467,0,0,1-11.32812-11.3125l26.42187-26.40625a111.81517,111.81517,0,0,0-46.35937-49.26562,63.02336,63.02336,0,0,1-14.0625,82.64062A55.83846,55.83846,0,0,1,251.625,254.73438l-1.42188-34.28126,12.67188,8.625a3.967,3.967,0,0,0,2.25.6875,3.98059,3.98059,0,0,0,3.43749-6.03124l-8.53124-14.3125,17.90625-3.71876a4.00647,4.00647,0,0,0,0-7.84374l-17.90625-3.71876,8.53124-14.3125a3.98059,3.98059,0,0,0-3.43749-6.03124,4.726,4.726,0,0,0-2.25.67187L248.6875,184.125,244,71.82812a4.00386,4.00386,0,0,0-8,0l-4.625,110.8125-12-8.15624a4.003,4.003,0,0,0-5.68751,5.35937l8.53126,14.3125L204.3125,197.875a3.99686,3.99686,0,0,0,0,7.82812l17.90625,3.73438-8.53126,14.29688a4.72469,4.72469,0,0,0-.56249,2.04687,4.59547,4.59547,0,0,0,1.25,2.90625,4.01059,4.01059,0,0,0,2.75,1.09375,4.09016,4.09016,0,0,0,2.25-.6875l10.35937-7.04687L228.375,254.76562a55.86414,55.86414,0,0,1-28.71875-93.45312,63.01119,63.01119,0,0,1-14.04688-82.65625,111.93158,111.93158,0,0,0-46.375,49.26563l26.42187,26.42187a7.99917,7.99917,0,0,1-11.3125,11.3125l-21.26563-21.26563C130.09375,154.48438,128,164.95312,128.01562,176.01562Z\"]\n};\nvar faKaaba = {\n prefix: 'fas',\n iconName: 'kaaba',\n icon: [576, 512, [], \"f66b\", \"M554.12 83.51L318.36 4.93a95.962 95.962 0 0 0-60.71 0L21.88 83.51A32.006 32.006 0 0 0 0 113.87v49.01l265.02-79.51c15.03-4.5 30.92-4.5 45.98 0l265 79.51v-49.01c0-13.77-8.81-26-21.88-30.36zm-279.9 30.52L0 196.3v228.38c0 15 10.42 27.98 25.06 31.24l242.12 53.8a95.937 95.937 0 0 0 41.65 0l242.12-53.8c14.64-3.25 25.06-16.24 25.06-31.24V196.29l-274.2-82.26c-9.04-2.72-18.59-2.72-27.59 0zM128 230.11c0 3.61-2.41 6.77-5.89 7.72l-80 21.82C37.02 261.03 32 257.2 32 251.93v-16.58c0-3.61 2.41-6.77 5.89-7.72l80-21.82c5.09-1.39 10.11 2.44 10.11 7.72v16.58zm144-39.28c0 3.61-2.41 6.77-5.89 7.72l-96 26.18c-5.09 1.39-10.11-2.44-10.11-7.72v-16.58c0-3.61 2.41-6.77 5.89-7.72l96-26.18c5.09-1.39 10.11 2.44 10.11 7.72v16.58zm176 22.7c0-5.28 5.02-9.11 10.11-7.72l80 21.82c3.48.95 5.89 4.11 5.89 7.72v16.58c0 5.28-5.02 9.11-10.11 7.72l-80-21.82a7.997 7.997 0 0 1-5.89-7.72v-16.58zm-144-39.27c0-5.28 5.02-9.11 10.11-7.72l96 26.18c3.48.95 5.89 4.11 5.89 7.72v16.58c0 5.28-5.02 9.11-10.11 7.72l-96-26.18a7.997 7.997 0 0 1-5.89-7.72v-16.58z\"]\n};\nvar faKey = {\n prefix: 'fas',\n iconName: 'key',\n icon: [512, 512, [], \"f084\", \"M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z\"]\n};\nvar faKeyboard = {\n prefix: 'fas',\n iconName: 'keyboard',\n icon: [576, 512, [], \"f11c\", \"M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z\"]\n};\nvar faKhanda = {\n prefix: 'fas',\n iconName: 'khanda',\n icon: [512, 512, [], \"f66d\", \"M415.81 66c-6.37-3.5-14.37-2.33-19.36 3.02a15.974 15.974 0 0 0-1.91 19.52c16.49 26.16 25.2 56.39 25.2 87.41-.19 53.25-26.77 102.69-71.27 132.41l-76.63 53.35v-20.1l44.05-36.09c3.92-4.2 5-10.09 2.81-15.28L310.85 273c33.84-19.26 56.94-55.25 56.94-96.99 0-40.79-22.02-76.13-54.59-95.71l5.22-11.44c2.34-5.53.93-11.83-3.57-16.04L255.86 0l-58.99 52.81c-4.5 4.21-5.9 10.51-3.57 16.04l5.22 11.44c-32.57 19.58-54.59 54.93-54.59 95.72 0 41.75 23.09 77.73 56.94 96.99l-7.85 17.24c-2.19 5.18-1.1 11.07 2.81 15.28l44.05 36.09v19.9l-76.59-53.33C119.02 278.62 92.44 229.19 92.26 176c0-31.08 8.71-61.31 25.2-87.47 3.87-6.16 2.4-13.77-2.59-19.08-5-5.34-13.68-6.2-20.02-2.7C16.32 109.6-22.3 205.3 13.36 295.99c7.07 17.99 17.89 34.38 30.46 49.06l55.97 65.36c4.87 5.69 13.04 7.24 19.65 3.72l79.35-42.23L228 392.23l-47.08 32.78c-1.67-.37-3.23-1.01-5.01-1.01-13.25 0-23.99 10.74-23.99 24 0 13.25 10.74 24 23.99 24 12.1 0 21.69-9.11 23.33-20.76l40.63-28.28v29.95c-9.39 5.57-15.99 15.38-15.99 27.1 0 17.67 14.32 32 31.98 32s31.98-14.33 31.98-32c0-11.71-6.61-21.52-15.99-27.1v-30.15l40.91 28.48C314.41 462.89 324 472 336.09 472c13.25 0 23.99-10.75 23.99-24 0-13.26-10.74-24-23.99-24-1.78 0-3.34.64-5.01 1.01L284 392.23l29.21-20.34 79.35 42.23c6.61 3.52 14.78 1.97 19.65-3.71l52.51-61.31c18.87-22.02 34-47.5 41.25-75.59 21.62-83.66-16.45-167.27-90.16-207.51zm-95.99 110c0 22.3-11.49 41.92-28.83 53.38l-5.65-12.41c-8.75-24.52-8.75-51.04 0-75.56l7.83-17.18c16.07 11.65 26.65 30.45 26.65 51.77zm-127.93 0c0-21.32 10.58-40.12 26.66-51.76l7.83 17.18c8.75 24.52 8.75 51.03 0 75.56l-5.65 12.41c-17.34-11.46-28.84-31.09-28.84-53.39z\"]\n};\nvar faKiss = {\n prefix: 'fas',\n iconName: 'kiss',\n icon: [496, 512, [], \"f596\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm136 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm24-156c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faKissBeam = {\n prefix: 'fas',\n iconName: 'kiss-beam',\n icon: [496, 512, [], \"f597\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-39 219.9l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5zM304 396c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm65-168.1l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5z\"]\n};\nvar faKissWinkHeart = {\n prefix: 'fas',\n iconName: 'kiss-wink-heart',\n icon: [504, 512, [], \"f598\", \"M501.1 402.5c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zm-177.6-4c-5.6-20.3-2.3-42 9-59.7 29.7-46.3 98.7-45.5 127.8 4.3 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-.3-.7-23.9-84.6-23.9-84.6zM168 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm120 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-5.7-12.3 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.8-3.7-4.6-16.6 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C274.6 368.7 288 383 288 396zm16-179c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S400 181 404 206.2c1.7 11.1-11.3 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 217z\"]\n};\nvar faKiwiBird = {\n prefix: 'fas',\n iconName: 'kiwi-bird',\n icon: [576, 512, [], \"f535\", \"M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z\"]\n};\nvar faLandmark = {\n prefix: 'fas',\n iconName: 'landmark',\n icon: [512, 512, [], \"f66f\", \"M501.62 92.11L267.24 2.04a31.958 31.958 0 0 0-22.47 0L10.38 92.11A16.001 16.001 0 0 0 0 107.09V144c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-36.91c0-6.67-4.14-12.64-10.38-14.98zM64 192v160H48c-8.84 0-16 7.16-16 16v48h448v-48c0-8.84-7.16-16-16-16h-16V192h-64v160h-96V192h-64v160h-96V192H64zm432 256H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faLanguage = {\n prefix: 'fas',\n iconName: 'language',\n icon: [640, 512, [], \"f1ab\", \"M152.1 236.2c-3.5-12.1-7.8-33.2-7.8-33.2h-.5s-4.3 21.1-7.8 33.2l-11.1 37.5H163zM616 96H336v320h280c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm-24 120c0 6.6-5.4 12-12 12h-11.4c-6.9 23.6-21.7 47.4-42.7 69.9 8.4 6.4 17.1 12.5 26.1 18 5.5 3.4 7.3 10.5 4.1 16.2l-7.9 13.9c-3.4 5.9-10.9 7.8-16.7 4.3-12.6-7.8-24.5-16.1-35.4-24.9-10.9 8.7-22.7 17.1-35.4 24.9-5.8 3.5-13.3 1.6-16.7-4.3l-7.9-13.9c-3.2-5.6-1.4-12.8 4.2-16.2 9.3-5.7 18-11.7 26.1-18-7.9-8.4-14.9-17-21-25.7-4-5.7-2.2-13.6 3.7-17.1l6.5-3.9 7.3-4.3c5.4-3.2 12.4-1.7 16 3.4 5 7 10.8 14 17.4 20.9 13.5-14.2 23.8-28.9 30-43.2H412c-6.6 0-12-5.4-12-12v-16c0-6.6 5.4-12 12-12h64v-16c0-6.6 5.4-12 12-12h16c6.6 0 12 5.4 12 12v16h64c6.6 0 12 5.4 12 12zM0 120v272c0 13.3 10.7 24 24 24h280V96H24c-13.3 0-24 10.7-24 24zm58.9 216.1L116.4 167c1.7-4.9 6.2-8.1 11.4-8.1h32.5c5.1 0 9.7 3.3 11.4 8.1l57.5 169.1c2.6 7.8-3.1 15.9-11.4 15.9h-22.9a12 12 0 0 1-11.5-8.6l-9.4-31.9h-60.2l-9.1 31.8c-1.5 5.1-6.2 8.7-11.5 8.7H70.3c-8.2 0-14-8.1-11.4-15.9z\"]\n};\nvar faLaptop = {\n prefix: 'fas',\n iconName: 'laptop',\n icon: [640, 512, [], \"f109\", \"M624 416H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33.02-17.47-32.77-32H16c-8.8 0-16 7.2-16 16v16c0 35.2 28.8 64 64 64h512c35.2 0 64-28.8 64-64v-16c0-8.8-7.2-16-16-16zM576 48c0-26.4-21.6-48-48-48H112C85.6 0 64 21.6 64 48v336h512V48zm-64 272H128V64h384v256z\"]\n};\nvar faLaptopCode = {\n prefix: 'fas',\n iconName: 'laptop-code',\n icon: [640, 512, [], \"f5fc\", \"M255.03 261.65c6.25 6.25 16.38 6.25 22.63 0l11.31-11.31c6.25-6.25 6.25-16.38 0-22.63L253.25 192l35.71-35.72c6.25-6.25 6.25-16.38 0-22.63l-11.31-11.31c-6.25-6.25-16.38-6.25-22.63 0l-58.34 58.34c-6.25 6.25-6.25 16.38 0 22.63l58.35 58.34zm96.01-11.3l11.31 11.31c6.25 6.25 16.38 6.25 22.63 0l58.34-58.34c6.25-6.25 6.25-16.38 0-22.63l-58.34-58.34c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63L386.75 192l-35.71 35.72c-6.25 6.25-6.25 16.38 0 22.63zM624 416H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33.02-17.47-32.77-32H16c-8.8 0-16 7.2-16 16v16c0 35.2 28.8 64 64 64h512c35.2 0 64-28.8 64-64v-16c0-8.8-7.2-16-16-16zM576 48c0-26.4-21.6-48-48-48H112C85.6 0 64 21.6 64 48v336h512V48zm-64 272H128V64h384v256z\"]\n};\nvar faLaptopHouse = {\n prefix: 'fas',\n iconName: 'laptop-house',\n icon: [640, 512, [], \"e066\", \"M272,288H208a16,16,0,0,1-16-16V208a16,16,0,0,1,16-16h64a16,16,0,0,1,16,16v37.12C299.11,232.24,315,224,332.8,224H469.74l6.65-7.53A16.51,16.51,0,0,0,480,207a16.31,16.31,0,0,0-4.75-10.61L416,144V48a16,16,0,0,0-16-16H368a16,16,0,0,0-16,16V87.3L263.5,8.92C258,4,247.45,0,240.05,0s-17.93,4-23.47,8.92L4.78,196.42A16.15,16.15,0,0,0,0,207a16.4,16.4,0,0,0,3.55,9.39L22.34,237.7A16.22,16.22,0,0,0,33,242.48,16.51,16.51,0,0,0,42.34,239L64,219.88V384a32,32,0,0,0,32,32H272ZM629.33,448H592V288c0-17.67-12.89-32-28.8-32H332.8c-15.91,0-28.8,14.33-28.8,32V448H266.67A10.67,10.67,0,0,0,256,458.67v10.66A42.82,42.82,0,0,0,298.6,512H597.4A42.82,42.82,0,0,0,640,469.33V458.67A10.67,10.67,0,0,0,629.33,448ZM544,448H352V304H544Z\"]\n};\nvar faLaptopMedical = {\n prefix: 'fas',\n iconName: 'laptop-medical',\n icon: [640, 512, [], \"f812\", \"M232 224h56v56a8 8 0 0 0 8 8h48a8 8 0 0 0 8-8v-56h56a8 8 0 0 0 8-8v-48a8 8 0 0 0-8-8h-56v-56a8 8 0 0 0-8-8h-48a8 8 0 0 0-8 8v56h-56a8 8 0 0 0-8 8v48a8 8 0 0 0 8 8zM576 48a48.14 48.14 0 0 0-48-48H112a48.14 48.14 0 0 0-48 48v336h512zm-64 272H128V64h384zm112 96H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33-17.47-32.77-32H16a16 16 0 0 0-16 16v16a64.19 64.19 0 0 0 64 64h512a64.19 64.19 0 0 0 64-64v-16a16 16 0 0 0-16-16z\"]\n};\nvar faLaugh = {\n prefix: 'fas',\n iconName: 'laugh',\n icon: [496, 512, [], \"f599\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 152c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm88 272h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18-8.9 71-69.5 126-142.9 126z\"]\n};\nvar faLaughBeam = {\n prefix: 'fas',\n iconName: 'laugh-beam',\n icon: [496, 512, [], \"f59a\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm24 199.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.8 4.1-15.1-4.5zm-160 0c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z\"]\n};\nvar faLaughSquint = {\n prefix: 'fas',\n iconName: 'laugh-squint',\n icon: [496, 512, [], \"f59b\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 161.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 180l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z\"]\n};\nvar faLaughWink = {\n prefix: 'fas',\n iconName: 'laugh-wink',\n icon: [496, 512, [], \"f59c\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z\"]\n};\nvar faLayerGroup = {\n prefix: 'fas',\n iconName: 'layer-group',\n icon: [512, 512, [], \"f5fd\", \"M12.41 148.02l232.94 105.67c6.8 3.09 14.49 3.09 21.29 0l232.94-105.67c16.55-7.51 16.55-32.52 0-40.03L266.65 2.31a25.607 25.607 0 0 0-21.29 0L12.41 107.98c-16.55 7.51-16.55 32.53 0 40.04zm487.18 88.28l-58.09-26.33-161.64 73.27c-7.56 3.43-15.59 5.17-23.86 5.17s-16.29-1.74-23.86-5.17L70.51 209.97l-58.1 26.33c-16.55 7.5-16.55 32.5 0 40l232.94 105.59c6.8 3.08 14.49 3.08 21.29 0L499.59 276.3c16.55-7.5 16.55-32.5 0-40zm0 127.8l-57.87-26.23-161.86 73.37c-7.56 3.43-15.59 5.17-23.86 5.17s-16.29-1.74-23.86-5.17L70.29 337.87 12.41 364.1c-16.55 7.5-16.55 32.5 0 40l232.94 105.59c6.8 3.08 14.49 3.08 21.29 0L499.59 404.1c16.55-7.5 16.55-32.5 0-40z\"]\n};\nvar faLeaf = {\n prefix: 'fas',\n iconName: 'leaf',\n icon: [576, 512, [], \"f06c\", \"M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z\"]\n};\nvar faLemon = {\n prefix: 'fas',\n iconName: 'lemon',\n icon: [512, 512, [], \"f094\", \"M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z\"]\n};\nvar faLessThan = {\n prefix: 'fas',\n iconName: 'less-than',\n icon: [384, 512, [], \"f536\", \"M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z\"]\n};\nvar faLessThanEqual = {\n prefix: 'fas',\n iconName: 'less-than-equal',\n icon: [448, 512, [], \"f537\", \"M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z\"]\n};\nvar faLevelDownAlt = {\n prefix: 'fas',\n iconName: 'level-down-alt',\n icon: [320, 512, [], \"f3be\", \"M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z\"]\n};\nvar faLevelUpAlt = {\n prefix: 'fas',\n iconName: 'level-up-alt',\n icon: [320, 512, [], \"f3bf\", \"M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z\"]\n};\nvar faLifeRing = {\n prefix: 'fas',\n iconName: 'life-ring',\n icon: [512, 512, [], \"f1cd\", \"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z\"]\n};\nvar faLightbulb = {\n prefix: 'fas',\n iconName: 'lightbulb',\n icon: [352, 512, [], \"f0eb\", \"M96.06 454.35c.01 6.29 1.87 12.45 5.36 17.69l17.09 25.69a31.99 31.99 0 0 0 26.64 14.28h61.71a31.99 31.99 0 0 0 26.64-14.28l17.09-25.69a31.989 31.989 0 0 0 5.36-17.69l.04-38.35H96.01l.05 38.35zM0 176c0 44.37 16.45 84.85 43.56 115.78 16.52 18.85 42.36 58.23 52.21 91.45.04.26.07.52.11.78h160.24c.04-.26.07-.51.11-.78 9.85-33.22 35.69-72.6 52.21-91.45C335.55 260.85 352 220.37 352 176 352 78.61 272.91-.3 175.45 0 73.44.31 0 82.97 0 176zm176-80c-44.11 0-80 35.89-80 80 0 8.84-7.16 16-16 16s-16-7.16-16-16c0-61.76 50.24-112 112-112 8.84 0 16 7.16 16 16s-7.16 16-16 16z\"]\n};\nvar faLink = {\n prefix: 'fas',\n iconName: 'link',\n icon: [512, 512, [], \"f0c1\", \"M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z\"]\n};\nvar faLiraSign = {\n prefix: 'fas',\n iconName: 'lira-sign',\n icon: [384, 512, [], \"f195\", \"M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z\"]\n};\nvar faList = {\n prefix: 'fas',\n iconName: 'list',\n icon: [512, 512, [], \"f03a\", \"M80 368H16a16 16 0 0 0-16 16v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-64a16 16 0 0 0-16-16zm0-320H16A16 16 0 0 0 0 64v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16V64a16 16 0 0 0-16-16zm0 160H16a16 16 0 0 0-16 16v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-64a16 16 0 0 0-16-16zm416 176H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faListAlt = {\n prefix: 'fas',\n iconName: 'list-alt',\n icon: [512, 512, [], \"f022\", \"M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z\"]\n};\nvar faListOl = {\n prefix: 'fas',\n iconName: 'list-ol',\n icon: [512, 512, [], \"f0cb\", \"M61.77 401l17.5-20.15a19.92 19.92 0 0 0 5.07-14.19v-3.31C84.34 356 80.5 352 73 352H16a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8h22.83a157.41 157.41 0 0 0-11 12.31l-5.61 7c-4 5.07-5.25 10.13-2.8 14.88l1.05 1.93c3 5.76 6.29 7.88 12.25 7.88h4.73c10.33 0 15.94 2.44 15.94 9.09 0 4.72-4.2 8.22-14.36 8.22a41.54 41.54 0 0 1-15.47-3.12c-6.49-3.88-11.74-3.5-15.6 3.12l-5.59 9.31c-3.72 6.13-3.19 11.72 2.63 15.94 7.71 4.69 20.38 9.44 37 9.44 34.16 0 48.5-22.75 48.5-44.12-.03-14.38-9.12-29.76-28.73-34.88zM496 224H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM16 160h64a8 8 0 0 0 8-8v-16a8 8 0 0 0-8-8H64V40a8 8 0 0 0-8-8H32a8 8 0 0 0-7.14 4.42l-8 16A8 8 0 0 0 24 64h8v64H16a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8zm-3.91 160H80a8 8 0 0 0 8-8v-16a8 8 0 0 0-8-8H41.32c3.29-10.29 48.34-18.68 48.34-56.44 0-29.06-25-39.56-44.47-39.56-21.36 0-33.8 10-40.46 18.75-4.37 5.59-3 10.84 2.8 15.37l8.58 6.88c5.61 4.56 11 2.47 16.12-2.44a13.44 13.44 0 0 1 9.46-3.84c3.33 0 9.28 1.56 9.28 8.75C51 248.19 0 257.31 0 304.59v4C0 316 5.08 320 12.09 320z\"]\n};\nvar faListUl = {\n prefix: 'fas',\n iconName: 'list-ul',\n icon: [512, 512, [], \"f0ca\", \"M48 48a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm0 160a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm0 160a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm448 16H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faLocationArrow = {\n prefix: 'fas',\n iconName: 'location-arrow',\n icon: [512, 512, [], \"f124\", \"M444.52 3.52L28.74 195.42c-47.97 22.39-31.98 92.75 19.19 92.75h175.91v175.91c0 51.17 70.36 67.17 92.75 19.19l191.9-415.78c15.99-38.39-25.59-79.97-63.97-63.97z\"]\n};\nvar faLock = {\n prefix: 'fas',\n iconName: 'lock',\n icon: [448, 512, [], \"f023\", \"M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z\"]\n};\nvar faLockOpen = {\n prefix: 'fas',\n iconName: 'lock-open',\n icon: [576, 512, [], \"f3c1\", \"M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z\"]\n};\nvar faLongArrowAltDown = {\n prefix: 'fas',\n iconName: 'long-arrow-alt-down',\n icon: [256, 512, [], \"f309\", \"M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z\"]\n};\nvar faLongArrowAltLeft = {\n prefix: 'fas',\n iconName: 'long-arrow-alt-left',\n icon: [448, 512, [], \"f30a\", \"M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z\"]\n};\nvar faLongArrowAltRight = {\n prefix: 'fas',\n iconName: 'long-arrow-alt-right',\n icon: [448, 512, [], \"f30b\", \"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"]\n};\nvar faLongArrowAltUp = {\n prefix: 'fas',\n iconName: 'long-arrow-alt-up',\n icon: [256, 512, [], \"f30c\", \"M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z\"]\n};\nvar faLowVision = {\n prefix: 'fas',\n iconName: 'low-vision',\n icon: [576, 512, [], \"f2a8\", \"M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z\"]\n};\nvar faLuggageCart = {\n prefix: 'fas',\n iconName: 'luggage-cart',\n icon: [640, 512, [], \"f59d\", \"M224 320h32V96h-32c-17.67 0-32 14.33-32 32v160c0 17.67 14.33 32 32 32zm352-32V128c0-17.67-14.33-32-32-32h-32v224h32c17.67 0 32-14.33 32-32zm48 96H128V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h48v368c0 8.84 7.16 16 16 16h82.94c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16h197.88c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM480 96V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v272h192V96zm-48 0h-96V48h96v48z\"]\n};\nvar faLungs = {\n prefix: 'fas',\n iconName: 'lungs',\n icon: [640, 512, [], \"f604\", \"M636.11 390.15C614.44 308.85 580.07 231 534.1 159.13 511.98 124.56 498.03 96 454.05 96 415.36 96 384 125.42 384 161.71v60.11l-32.88-21.92a15.996 15.996 0 0 1-7.12-13.31V16c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v170.59c0 5.35-2.67 10.34-7.12 13.31L256 221.82v-60.11C256 125.42 224.64 96 185.95 96c-43.98 0-57.93 28.56-80.05 63.13C59.93 231 25.56 308.85 3.89 390.15 1.3 399.84 0 409.79 0 419.78c0 61.23 62.48 105.44 125.24 88.62l59.5-15.95c42.18-11.3 71.26-47.47 71.26-88.62v-87.49l-85.84 57.23a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09L320 235.23l167.59 111.72a7.994 7.994 0 0 1 2.22 11.09l-8.88 13.31a7.994 7.994 0 0 1-11.09 2.22L384 316.34v87.49c0 41.15 29.08 77.31 71.26 88.62l59.5 15.95C577.52 525.22 640 481.01 640 419.78c0-9.99-1.3-19.94-3.89-29.63z\"]\n};\nvar faLungsVirus = {\n prefix: 'fas',\n iconName: 'lungs-virus',\n icon: [640, 512, [], \"e067\", \"M344,150.68V16A16,16,0,0,0,328,0H312a16,16,0,0,0-16,16V150.68a46.45,46.45,0,0,1,48,0ZM195.54,444.46a48.06,48.06,0,0,1,0-67.88l8.58-8.58H192a48,48,0,0,1,0-96h12.12l-8.58-8.57a48,48,0,0,1,60.46-74V161.75C256,125.38,224.62,96,186,96c-44,0-58,28.5-80.12,63.13a819.52,819.52,0,0,0-102,231A113.16,113.16,0,0,0,0,419.75C0,481,62.5,525.26,125.25,508.38l59.5-15.87a98.51,98.51,0,0,0,52.5-34.75,46.49,46.49,0,0,1-41.71-13.3Zm226.29-22.63a16,16,0,0,0,0-22.62l-8.58-8.58C393.09,370.47,407.37,336,435.88,336H448a16,16,0,0,0,0-32H435.88c-28.51,0-42.79-34.47-22.63-54.62l8.58-8.58a16,16,0,0,0-22.63-22.63l-8.57,8.58C370.47,246.91,336,232.63,336,204.12V192a16,16,0,0,0-32,0v12.12c0,28.51-34.47,42.79-54.63,22.63l-8.57-8.58a16,16,0,0,0-22.63,22.63l8.58,8.58c20.16,20.15,5.88,54.62-22.63,54.62H192a16,16,0,0,0,0,32h12.12c28.51,0,42.79,34.47,22.63,54.63l-8.58,8.58a16,16,0,1,0,22.63,22.62l8.57-8.57C269.53,393.1,304,407.38,304,435.88V448a16,16,0,0,0,32,0V435.88c0-28.5,34.47-42.78,54.63-22.62l8.57,8.57a16,16,0,0,0,22.63,0ZM288,304a16,16,0,1,1,16-16A16,16,0,0,1,288,304Zm64,64a16,16,0,1,1,16-16A16,16,0,0,1,352,368Zm284.12,22.13a819.52,819.52,0,0,0-102-231C512,124.5,498,96,454,96c-38.62,0-70,29.38-70,65.75v27.72a48,48,0,0,1,60.46,74L435.88,272H448a48,48,0,0,1,0,96H435.88l8.58,8.58a47.7,47.7,0,0,1-41.71,81.18,98.51,98.51,0,0,0,52.5,34.75l59.5,15.87C577.5,525.26,640,481,640,419.75A113.16,113.16,0,0,0,636.12,390.13Z\"]\n};\nvar faMagic = {\n prefix: 'fas',\n iconName: 'magic',\n icon: [512, 512, [], \"f0d0\", \"M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z\"]\n};\nvar faMagnet = {\n prefix: 'fas',\n iconName: 'magnet',\n icon: [512, 512, [], \"f076\", \"M164.07 148.1H12a12 12 0 0 1-12-12v-80a36 36 0 0 1 36-36h104a36 36 0 0 1 36 36v80a11.89 11.89 0 0 1-11.93 12zm347.93-12V56a36 36 0 0 0-36-36H372a36 36 0 0 0-36 36v80a12 12 0 0 0 12 12h152a11.89 11.89 0 0 0 12-11.9zm-164 44a12 12 0 0 0-12 12v52c0 128.1-160 127.9-160 0v-52a12 12 0 0 0-12-12H12.1a12 12 0 0 0-12 12.1c.1 21.4.6 40.3 0 53.3 0 150.6 136.17 246.6 256.75 246.6s255-96 255-246.7c-.6-12.8-.2-33 0-53.2a12 12 0 0 0-12-12.1z\"]\n};\nvar faMailBulk = {\n prefix: 'fas',\n iconName: 'mail-bulk',\n icon: [576, 512, [], \"f674\", \"M160 448c-25.6 0-51.2-22.4-64-32-64-44.8-83.2-60.8-96-70.4V480c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V345.6c-12.8 9.6-32 25.6-96 70.4-12.8 9.6-38.4 32-64 32zm128-192H32c-17.67 0-32 14.33-32 32v16c25.6 19.2 22.4 19.2 115.2 86.4 9.6 6.4 28.8 25.6 44.8 25.6s35.2-19.2 44.8-22.4c92.8-67.2 89.6-67.2 115.2-86.4V288c0-17.67-14.33-32-32-32zm256-96H224c-17.67 0-32 14.33-32 32v32h96c33.21 0 60.59 25.42 63.71 57.82l.29-.22V416h192c17.67 0 32-14.33 32-32V192c0-17.67-14.33-32-32-32zm-32 128h-64v-64h64v64zm-352-96c0-35.29 28.71-64 64-64h224V32c0-17.67-14.33-32-32-32H96C78.33 0 64 14.33 64 32v192h96v-32z\"]\n};\nvar faMale = {\n prefix: 'fas',\n iconName: 'male',\n icon: [192, 512, [], \"f183\", \"M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z\"]\n};\nvar faMap = {\n prefix: 'fas',\n iconName: 'map',\n icon: [576, 512, [], \"f279\", \"M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z\"]\n};\nvar faMapMarked = {\n prefix: 'fas',\n iconName: 'map-marked',\n icon: [576, 512, [], \"f59f\", \"M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z\"]\n};\nvar faMapMarkedAlt = {\n prefix: 'fas',\n iconName: 'map-marked-alt',\n icon: [576, 512, [], \"f5a0\", \"M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z\"]\n};\nvar faMapMarker = {\n prefix: 'fas',\n iconName: 'map-marker',\n icon: [384, 512, [], \"f041\", \"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z\"]\n};\nvar faMapMarkerAlt = {\n prefix: 'fas',\n iconName: 'map-marker-alt',\n icon: [384, 512, [], \"f3c5\", \"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"]\n};\nvar faMapPin = {\n prefix: 'fas',\n iconName: 'map-pin',\n icon: [288, 512, [], \"f276\", \"M112 316.94v156.69l22.02 33.02c4.75 7.12 15.22 7.12 19.97 0L176 473.63V316.94c-10.39 1.92-21.06 3.06-32 3.06s-21.61-1.14-32-3.06zM144 0C64.47 0 0 64.47 0 144s64.47 144 144 144 144-64.47 144-144S223.53 0 144 0zm0 76c-37.5 0-68 30.5-68 68 0 6.62-5.38 12-12 12s-12-5.38-12-12c0-50.73 41.28-92 92-92 6.62 0 12 5.38 12 12s-5.38 12-12 12z\"]\n};\nvar faMapSigns = {\n prefix: 'fas',\n iconName: 'map-signs',\n icon: [512, 512, [], \"f277\", \"M507.31 84.69L464 41.37c-6-6-14.14-9.37-22.63-9.37H288V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v16H56c-13.25 0-24 10.75-24 24v80c0 13.25 10.75 24 24 24h385.37c8.49 0 16.62-3.37 22.63-9.37l43.31-43.31c6.25-6.26 6.25-16.38 0-22.63zM224 496c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V384h-64v112zm232-272H288v-32h-64v32H70.63c-8.49 0-16.62 3.37-22.63 9.37L4.69 276.69c-6.25 6.25-6.25 16.38 0 22.63L48 342.63c6 6 14.14 9.37 22.63 9.37H456c13.25 0 24-10.75 24-24v-80c0-13.25-10.75-24-24-24z\"]\n};\nvar faMarker = {\n prefix: 'fas',\n iconName: 'marker',\n icon: [512, 512, [], \"f5a1\", \"M93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l75.4-75.4-128.02-128.02-75.4 75.4zM485.49 26.51c-35.35-35.35-92.67-35.35-128.02 0l-21.76 21.76-36.56-36.55c-15.62-15.62-40.95-15.62-56.56 0L138.47 115.84c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0l87.15-87.15 19.59 19.59L191.98 192 320 320.02l165.49-165.49c35.35-35.35 35.35-92.66 0-128.02z\"]\n};\nvar faMars = {\n prefix: 'fas',\n iconName: 'mars',\n icon: [384, 512, [], \"f222\", \"M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faMarsDouble = {\n prefix: 'fas',\n iconName: 'mars-double',\n icon: [512, 512, [], \"f227\", \"M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z\"]\n};\nvar faMarsStroke = {\n prefix: 'fas',\n iconName: 'mars-stroke',\n icon: [384, 512, [], \"f229\", \"M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faMarsStrokeH = {\n prefix: 'fas',\n iconName: 'mars-stroke-h',\n icon: [480, 512, [], \"f22b\", \"M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z\"]\n};\nvar faMarsStrokeV = {\n prefix: 'fas',\n iconName: 'mars-stroke-v',\n icon: [288, 512, [], \"f22a\", \"M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z\"]\n};\nvar faMask = {\n prefix: 'fas',\n iconName: 'mask',\n icon: [640, 512, [], \"f6fa\", \"M320.67 64c-442.6 0-357.57 384-158.46 384 39.9 0 77.47-20.69 101.42-55.86l25.73-37.79c15.66-22.99 46.97-22.99 62.63 0l25.73 37.79C401.66 427.31 439.23 448 479.13 448c189.86 0 290.63-384-158.46-384zM184 308.36c-41.06 0-67.76-25.66-80.08-41.05-5.23-6.53-5.23-16.09 0-22.63 12.32-15.4 39.01-41.05 80.08-41.05s67.76 25.66 80.08 41.05c5.23 6.53 5.23 16.09 0 22.63-12.32 15.4-39.02 41.05-80.08 41.05zm272 0c-41.06 0-67.76-25.66-80.08-41.05-5.23-6.53-5.23-16.09 0-22.63 12.32-15.4 39.01-41.05 80.08-41.05s67.76 25.66 80.08 41.05c5.23 6.53 5.23 16.09 0 22.63-12.32 15.4-39.02 41.05-80.08 41.05z\"]\n};\nvar faMedal = {\n prefix: 'fas',\n iconName: 'medal',\n icon: [512, 512, [], \"f5a2\", \"M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z\"]\n};\nvar faMedkit = {\n prefix: 'fas',\n iconName: 'medkit',\n icon: [512, 512, [], \"f0fa\", \"M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z\"]\n};\nvar faMeh = {\n prefix: 'fas',\n iconName: 'meh',\n icon: [496, 512, [], \"f11a\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-21.2 0-21.2-32 0-32h192c21.2 0 21.2 32 0 32zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faMehBlank = {\n prefix: 'fas',\n iconName: 'meh-blank',\n icon: [496, 512, [], \"f5a4\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faMehRollingEyes = {\n prefix: 'fas',\n iconName: 'meh-rolling-eyes',\n icon: [496, 512, [], \"f5a5\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 224c0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64s-64-28.7-64-64zm224 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112c-35.3 0-64-28.7-64-64 0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64z\"]\n};\nvar faMemory = {\n prefix: 'fas',\n iconName: 'memory',\n icon: [640, 512, [], \"f538\", \"M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z\"]\n};\nvar faMenorah = {\n prefix: 'fas',\n iconName: 'menorah',\n icon: [640, 512, [], \"f676\", \"M144 128h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm96 0h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm192 0h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm96 0h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm80-32c17.67 0 32-14.33 32-32S608 0 608 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S512 0 512 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S416 0 416 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S320 0 320 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S224 0 224 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S128 0 128 0 96 46.33 96 64s14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S32 0 32 0 0 46.33 0 64s14.33 32 32 32zm544 192c0 17.67-14.33 32-32 32H352V144c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v176H96c-17.67 0-32-14.33-32-32V144c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v144c0 53.02 42.98 96 96 96h192v64H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16H352v-64h192c53.02 0 96-42.98 96-96V144c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v144z\"]\n};\nvar faMercury = {\n prefix: 'fas',\n iconName: 'mercury',\n icon: [288, 512, [], \"f223\", \"M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z\"]\n};\nvar faMeteor = {\n prefix: 'fas',\n iconName: 'meteor',\n icon: [512, 512, [], \"f753\", \"M511.328,20.8027c-11.60759,38.70264-34.30724,111.70173-61.30311,187.70077,6.99893,2.09372,13.4042,4,18.60653,5.59368a16.06158,16.06158,0,0,1,9.49854,22.906c-22.106,42.29635-82.69047,152.795-142.47819,214.40356-.99984,1.09373-1.99969,2.5-2.99954,3.49995A194.83046,194.83046,0,1,1,57.085,179.41009c.99985-1,2.40588-2,3.49947-3,61.59994-59.90549,171.97367-120.40473,214.37343-142.4982a16.058,16.058,0,0,1,22.90274,9.49988c1.59351,5.09368,3.49947,11.5936,5.5929,18.59351C379.34818,35.00565,452.43074,12.30281,491.12794.70921A16.18325,16.18325,0,0,1,511.328,20.8027ZM319.951,320.00207A127.98041,127.98041,0,1,0,191.97061,448.00046,127.97573,127.97573,0,0,0,319.951,320.00207Zm-127.98041-31.9996a31.9951,31.9951,0,1,1-31.9951-31.9996A31.959,31.959,0,0,1,191.97061,288.00247Zm31.9951,79.999a15.99755,15.99755,0,1,1-15.99755-15.9998A16.04975,16.04975,0,0,1,223.96571,368.00147Z\"]\n};\nvar faMicrochip = {\n prefix: 'fas',\n iconName: 'microchip',\n icon: [512, 512, [], \"f2db\", \"M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z\"]\n};\nvar faMicrophone = {\n prefix: 'fas',\n iconName: 'microphone',\n icon: [352, 512, [], \"f130\", \"M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z\"]\n};\nvar faMicrophoneAlt = {\n prefix: 'fas',\n iconName: 'microphone-alt',\n icon: [352, 512, [], \"f3c9\", \"M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z\"]\n};\nvar faMicrophoneAltSlash = {\n prefix: 'fas',\n iconName: 'microphone-alt-slash',\n icon: [640, 512, [], \"f539\", \"M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z\"]\n};\nvar faMicrophoneSlash = {\n prefix: 'fas',\n iconName: 'microphone-slash',\n icon: [640, 512, [], \"f131\", \"M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z\"]\n};\nvar faMicroscope = {\n prefix: 'fas',\n iconName: 'microscope',\n icon: [512, 512, [], \"f610\", \"M160 320h12v16c0 8.84 7.16 16 16 16h40c8.84 0 16-7.16 16-16v-16h12c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32V16c0-8.84-7.16-16-16-16h-64c-8.84 0-16 7.16-16 16v16c-17.67 0-32 14.33-32 32v224c0 17.67 14.33 32 32 32zm304 128h-1.29C493.24 413.99 512 369.2 512 320c0-105.88-86.12-192-192-192v64c70.58 0 128 57.42 128 128s-57.42 128-128 128H48c-26.51 0-48 21.49-48 48 0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48zm-360-32h208c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8H104c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8z\"]\n};\nvar faMinus = {\n prefix: 'fas',\n iconName: 'minus',\n icon: [448, 512, [], \"f068\", \"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"]\n};\nvar faMinusCircle = {\n prefix: 'fas',\n iconName: 'minus-circle',\n icon: [512, 512, [], \"f056\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z\"]\n};\nvar faMinusSquare = {\n prefix: 'fas',\n iconName: 'minus-square',\n icon: [448, 512, [], \"f146\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z\"]\n};\nvar faMitten = {\n prefix: 'fas',\n iconName: 'mitten',\n icon: [448, 512, [], \"f7b5\", \"M368 416H48c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16zm57-209.1c-27.2-22.6-67.5-19-90.1 8.2l-20.9 25-29.6-128.4c-18-77.5-95.4-125.9-172.8-108C34.2 21.6-14.2 98.9 3.7 176.4L51.6 384h309l72.5-87c22.7-27.2 19-67.5-8.1-90.1z\"]\n};\nvar faMobile = {\n prefix: 'fas',\n iconName: 'mobile',\n icon: [320, 512, [], \"f10b\", \"M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faMobileAlt = {\n prefix: 'fas',\n iconName: 'mobile-alt',\n icon: [320, 512, [], \"f3cd\", \"M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z\"]\n};\nvar faMoneyBill = {\n prefix: 'fas',\n iconName: 'money-bill',\n icon: [640, 512, [], \"f0d6\", \"M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z\"]\n};\nvar faMoneyBillAlt = {\n prefix: 'fas',\n iconName: 'money-bill-alt',\n icon: [640, 512, [], \"f3d1\", \"M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z\"]\n};\nvar faMoneyBillWave = {\n prefix: 'fas',\n iconName: 'money-bill-wave',\n icon: [640, 512, [], \"f53a\", \"M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z\"]\n};\nvar faMoneyBillWaveAlt = {\n prefix: 'fas',\n iconName: 'money-bill-wave-alt',\n icon: [640, 512, [], \"f53b\", \"M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z\"]\n};\nvar faMoneyCheck = {\n prefix: 'fas',\n iconName: 'money-check',\n icon: [640, 512, [], \"f53c\", \"M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z\"]\n};\nvar faMoneyCheckAlt = {\n prefix: 'fas',\n iconName: 'money-check-alt',\n icon: [640, 512, [], \"f53d\", \"M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z\"]\n};\nvar faMonument = {\n prefix: 'fas',\n iconName: 'monument',\n icon: [384, 512, [], \"f5a6\", \"M368 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-78.86-347.26a31.97 31.97 0 0 0-9.21-19.44L203.31 4.69c-6.25-6.25-16.38-6.25-22.63 0l-76.6 76.61a31.97 31.97 0 0 0-9.21 19.44L64 416h256l-30.86-315.26zM240 307.2c0 6.4-6.4 12.8-12.8 12.8h-70.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h70.4c6.4 0 12.8 6.4 12.8 12.8v38.4z\"]\n};\nvar faMoon = {\n prefix: 'fas',\n iconName: 'moon',\n icon: [512, 512, [], \"f186\", \"M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z\"]\n};\nvar faMortarPestle = {\n prefix: 'fas',\n iconName: 'mortar-pestle',\n icon: [512, 512, [], \"f5a7\", \"M501.54 60.91c17.22-17.22 12.51-46.25-9.27-57.14a35.696 35.696 0 0 0-37.37 3.37L251.09 160h151.37l99.08-99.09zM496 192H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c0 80.98 50.2 150.11 121.13 178.32-12.76 16.87-21.72 36.8-24.95 58.69-1.46 9.92 6.04 18.98 16.07 18.98h223.5c10.03 0 17.53-9.06 16.07-18.98-3.22-21.89-12.18-41.82-24.95-58.69C429.8 406.11 480 336.98 480 256h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faMosque = {\n prefix: 'fas',\n iconName: 'mosque',\n icon: [640, 512, [], \"f678\", \"M0 480c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V160H0v320zm579.16-192c17.86-17.39 28.84-37.34 28.84-58.91 0-52.86-41.79-93.79-87.92-122.9-41.94-26.47-80.63-57.77-111.96-96.22L400 0l-8.12 9.97c-31.33 38.45-70.01 69.76-111.96 96.22C233.79 135.3 192 176.23 192 229.09c0 21.57 10.98 41.52 28.84 58.91h358.32zM608 320H192c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h32v-64c0-17.67 14.33-32 32-32s32 14.33 32 32v64h64v-72c0-48 48-72 48-72s48 24 48 72v72h64v-64c0-17.67 14.33-32 32-32s32 14.33 32 32v64h32c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM64 0S0 32 0 96v32h128V96c0-64-64-96-64-96z\"]\n};\nvar faMotorcycle = {\n prefix: 'fas',\n iconName: 'motorcycle',\n icon: [640, 512, [], \"f21c\", \"M512.9 192c-14.9-.1-29.1 2.3-42.4 6.9L437.6 144H520c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24h-45.3c-6.8 0-13.3 2.9-17.8 7.9l-37.5 41.7-22.8-38C392.2 68.4 384.4 64 376 64h-80c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h66.4l19.2 32H227.9c-17.7-23.1-44.9-40-99.9-40H72.5C59 104 47.7 115 48 128.5c.2 13 10.9 23.5 24 23.5h56c24.5 0 38.7 10.9 47.8 24.8l-11.3 20.5c-13-3.9-26.9-5.7-41.3-5.2C55.9 194.5 1.6 249.6 0 317c-1.6 72.1 56.3 131 128 131 59.6 0 109.7-40.8 124-96h84.2c13.7 0 24.6-11.4 24-25.1-2.1-47.1 17.5-93.7 56.2-125l12.5 20.8c-27.6 23.7-45.1 58.9-44.8 98.2.5 69.6 57.2 126.5 126.8 127.1 71.6.7 129.8-57.5 129.2-129.1-.7-69.6-57.6-126.4-127.2-126.9zM128 400c-44.1 0-80-35.9-80-80s35.9-80 80-80c4.2 0 8.4.3 12.5 1L99 316.4c-8.8 16 2.8 35.6 21 35.6h81.3c-12.4 28.2-40.6 48-73.3 48zm463.9-75.6c-2.2 40.6-35 73.4-75.5 75.5-46.1 2.5-84.4-34.3-84.4-79.9 0-21.4 8.4-40.8 22.1-55.1l49.4 82.4c4.5 7.6 14.4 10 22 5.5l13.7-8.2c7.6-4.5 10-14.4 5.5-22l-48.6-80.9c5.2-1.1 10.5-1.6 15.9-1.6 45.6-.1 82.3 38.2 79.9 84.3z\"]\n};\nvar faMountain = {\n prefix: 'fas',\n iconName: 'mountain',\n icon: [640, 512, [], \"f6fc\", \"M634.92 462.7l-288-448C341.03 5.54 330.89 0 320 0s-21.03 5.54-26.92 14.7l-288 448a32.001 32.001 0 0 0-1.17 32.64A32.004 32.004 0 0 0 32 512h576c11.71 0 22.48-6.39 28.09-16.67a31.983 31.983 0 0 0-1.17-32.63zM320 91.18L405.39 224H320l-64 64-38.06-38.06L320 91.18z\"]\n};\nvar faMouse = {\n prefix: 'fas',\n iconName: 'mouse',\n icon: [384, 512, [], \"f8cc\", \"M0 352a160 160 0 0 0 160 160h64a160 160 0 0 0 160-160V224H0zM176 0h-16A160 160 0 0 0 0 160v32h176zm48 0h-16v192h176v-32A160 160 0 0 0 224 0z\"]\n};\nvar faMousePointer = {\n prefix: 'fas',\n iconName: 'mouse-pointer',\n icon: [320, 512, [], \"f245\", \"M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z\"]\n};\nvar faMugHot = {\n prefix: 'fas',\n iconName: 'mug-hot',\n icon: [512, 512, [], \"f7b6\", \"M127.1 146.5c1.3 7.7 8 13.5 16 13.5h16.5c9.8 0 17.6-8.5 16.3-18-3.8-28.2-16.4-54.2-36.6-74.7-14.4-14.7-23.6-33.3-26.4-53.5C111.8 5.9 105 0 96.8 0H80.4C70.6 0 63 8.5 64.1 18c3.9 31.9 18 61.3 40.6 84.4 12 12.2 19.7 27.5 22.4 44.1zm112 0c1.3 7.7 8 13.5 16 13.5h16.5c9.8 0 17.6-8.5 16.3-18-3.8-28.2-16.4-54.2-36.6-74.7-14.4-14.7-23.6-33.3-26.4-53.5C223.8 5.9 217 0 208.8 0h-16.4c-9.8 0-17.5 8.5-16.3 18 3.9 31.9 18 61.3 40.6 84.4 12 12.2 19.7 27.5 22.4 44.1zM400 192H32c-17.7 0-32 14.3-32 32v192c0 53 43 96 96 96h192c53 0 96-43 96-96h16c61.8 0 112-50.2 112-112s-50.2-112-112-112zm0 160h-16v-96h16c26.5 0 48 21.5 48 48s-21.5 48-48 48z\"]\n};\nvar faMusic = {\n prefix: 'fas',\n iconName: 'music',\n icon: [512, 512, [], \"f001\", \"M470.38 1.51L150.41 96A32 32 0 0 0 128 126.51v261.41A139 139 0 0 0 96 384c-53 0-96 28.66-96 64s43 64 96 64 96-28.66 96-64V214.32l256-75v184.61a138.4 138.4 0 0 0-32-3.93c-53 0-96 28.66-96 64s43 64 96 64 96-28.65 96-64V32a32 32 0 0 0-41.62-30.49z\"]\n};\nvar faNetworkWired = {\n prefix: 'fas',\n iconName: 'network-wired',\n icon: [640, 512, [], \"f6ff\", \"M640 264v-16c0-8.84-7.16-16-16-16H344v-40h72c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H224c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h72v40H16c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h104v40H64c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h160c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32h-56v-40h304v40h-56c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h160c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32h-56v-40h104c8.84 0 16-7.16 16-16zM256 128V64h128v64H256zm-64 320H96v-64h96v64zm352 0h-96v-64h96v64z\"]\n};\nvar faNeuter = {\n prefix: 'fas',\n iconName: 'neuter',\n icon: [288, 512, [], \"f22c\", \"M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faNewspaper = {\n prefix: 'fas',\n iconName: 'newspaper',\n icon: [576, 512, [], \"f1ea\", \"M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z\"]\n};\nvar faNotEqual = {\n prefix: 'fas',\n iconName: 'not-equal',\n icon: [448, 512, [], \"f53e\", \"M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z\"]\n};\nvar faNotesMedical = {\n prefix: 'fas',\n iconName: 'notes-medical',\n icon: [384, 512, [], \"f481\", \"M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faObjectGroup = {\n prefix: 'fas',\n iconName: 'object-group',\n icon: [512, 512, [], \"f247\", \"M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z\"]\n};\nvar faObjectUngroup = {\n prefix: 'fas',\n iconName: 'object-ungroup',\n icon: [576, 512, [], \"f248\", \"M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z\"]\n};\nvar faOilCan = {\n prefix: 'fas',\n iconName: 'oil-can',\n icon: [640, 512, [], \"f613\", \"M629.8 160.31L416 224l-50.49-25.24a64.07 64.07 0 0 0-28.62-6.76H280v-48h56c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16H176c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h56v48h-56L37.72 166.86a31.9 31.9 0 0 0-5.79-.53C14.67 166.33 0 180.36 0 198.34v94.95c0 15.46 11.06 28.72 26.28 31.48L96 337.46V384c0 17.67 14.33 32 32 32h274.63c8.55 0 16.75-3.42 22.76-9.51l212.26-214.75c1.5-1.5 2.34-3.54 2.34-5.66V168c.01-5.31-5.08-9.15-10.19-7.69zM96 288.67l-48-8.73v-62.43l48 8.73v62.43zm453.33 84.66c0 23.56 19.1 42.67 42.67 42.67s42.67-19.1 42.67-42.67S592 288 592 288s-42.67 61.77-42.67 85.33z\"]\n};\nvar faOm = {\n prefix: 'fas',\n iconName: 'om',\n icon: [512, 512, [], \"f679\", \"M360.6 60.94a10.43 10.43 0 0 0 14.76 0l21.57-21.56a10.43 10.43 0 0 0 0-14.76L375.35 3.06c-4.08-4.07-10.68-4.07-14.76 0l-21.57 21.56a10.43 10.43 0 0 0 0 14.76l21.58 21.56zM412.11 192c-26.69 0-51.77 10.39-70.64 29.25l-24.25 24.25c-6.78 6.77-15.78 10.5-25.38 10.5H245c10.54-22.1 14.17-48.11 7.73-75.23-10.1-42.55-46.36-76.11-89.52-83.19-36.15-5.93-70.9 5.04-96.01 28.78-7.36 6.96-6.97 18.85 1.12 24.93l26.15 19.63c5.72 4.3 13.66 4.32 19.2-.21 8.45-6.9 19.02-10.71 30.27-10.71 26.47 0 48.01 21.53 48.01 48s-21.54 48-48.01 48h-31.9c-11.96 0-19.74 12.58-14.39 23.28l16.09 32.17c2.53 5.06 7.6 8.1 13.17 8.55h33.03c35.3 0 64.01 28.7 64.01 64s-28.71 64-64.01 64c-96.02 0-122.35-54.02-145.15-92.03-4.53-7.55-14.77-3.58-14.79 5.22C-.09 416 41.13 512 159.94 512c70.59 0 128.02-57.42 128.02-128 0-23.42-6.78-45.1-17.81-64h21.69c26.69 0 51.77-10.39 70.64-29.25l24.25-24.25c6.78-6.77 15.78-10.5 25.38-10.5 19.78 0 35.88 16.09 35.88 35.88V392c0 13.23-18.77 24-32.01 24-39.4 0-66.67-24.24-81.82-42.89-4.77-5.87-14.2-2.54-14.2 5.02V416s0 64 96.02 64c48.54 0 96.02-39.47 96.02-88V291.88c0-55.08-44.8-99.88-99.89-99.88zm42.18-124.73c-85.55 65.12-169.05 2.75-172.58.05-6.02-4.62-14.44-4.38-20.14.55-5.74 4.92-7.27 13.17-3.66 19.8 1.61 2.95 40.37 72.34 118.8 72.34 79.92 0 98.78-31.36 101.75-37.66 1.02-2.12 1.53-4.47 1.53-6.83V80c0-13.22-15.14-20.69-25.7-12.73z\"]\n};\nvar faOtter = {\n prefix: 'fas',\n iconName: 'otter',\n icon: [640, 512, [], \"f700\", \"M608 32h-32l-13.25-13.25A63.97 63.97 0 0 0 517.49 0H497c-11.14 0-22.08 2.91-31.75 8.43L312 96h-56C149.96 96 64 181.96 64 288v1.61c0 32.75-16 62.14-39.56 84.89-18.19 17.58-28.1 43.68-23.19 71.8 6.76 38.8 42.9 65.7 82.28 65.7H192c17.67 0 32-14.33 32-32s-14.33-32-32-32H80c-8.83 0-16-7.17-16-16s7.17-16 16-16h224c8.84 0 16-7.16 16-16v-16c0-17.67-14.33-32-32-32h-64l149.49-80.5L448 416h80c8.84 0 16-7.16 16-16v-16c0-17.67-14.33-32-32-32h-28.22l-55.11-110.21L521.14 192H544c53.02 0 96-42.98 96-96V64c0-17.67-14.33-32-32-32zm-96 16c8.84 0 16 7.16 16 16s-7.16 16-16 16-16-7.16-16-16 7.16-16 16-16zm32 96h-34.96L407.2 198.84l-13.77-27.55L512 112h77.05c-6.62 18.58-24.22 32-45.05 32z\"]\n};\nvar faOutdent = {\n prefix: 'fas',\n iconName: 'outdent',\n icon: [448, 512, [], \"f03b\", \"M100.69 363.29c10 10 27.31 2.93 27.31-11.31V160c0-14.32-17.33-21.31-27.31-11.31l-96 96a16 16 0 0 0 0 22.62zM432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm3.17-128H204.83A12.82 12.82 0 0 0 192 300.83v38.34A12.82 12.82 0 0 0 204.83 352h230.34A12.82 12.82 0 0 0 448 339.17v-38.34A12.82 12.82 0 0 0 435.17 288zm0-128H204.83A12.82 12.82 0 0 0 192 172.83v38.34A12.82 12.82 0 0 0 204.83 224h230.34A12.82 12.82 0 0 0 448 211.17v-38.34A12.82 12.82 0 0 0 435.17 160zM432 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faPager = {\n prefix: 'fas',\n iconName: 'pager',\n icon: [512, 512, [], \"f815\", \"M448 64H64a64 64 0 0 0-64 64v256a64 64 0 0 0 64 64h384a64 64 0 0 0 64-64V128a64 64 0 0 0-64-64zM160 368H80a16 16 0 0 1-16-16v-16a16 16 0 0 1 16-16h80zm128-16a16 16 0 0 1-16 16h-80v-48h80a16 16 0 0 1 16 16zm160-128a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32v-64a32 32 0 0 1 32-32h320a32 32 0 0 1 32 32z\"]\n};\nvar faPaintBrush = {\n prefix: 'fas',\n iconName: 'paint-brush',\n icon: [512, 512, [], \"f1fc\", \"M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z\"]\n};\nvar faPaintRoller = {\n prefix: 'fas',\n iconName: 'paint-roller',\n icon: [512, 512, [], \"f5aa\", \"M416 128V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32zm32-64v128c0 17.67-14.33 32-32 32H256c-35.35 0-64 28.65-64 64v32c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32v-32h160c53.02 0 96-42.98 96-96v-64c0-35.35-28.65-64-64-64z\"]\n};\nvar faPalette = {\n prefix: 'fas',\n iconName: 'palette',\n icon: [512, 512, [], \"f53f\", \"M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faPallet = {\n prefix: 'fas',\n iconName: 'pallet',\n icon: [640, 512, [], \"f482\", \"M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z\"]\n};\nvar faPaperPlane = {\n prefix: 'fas',\n iconName: 'paper-plane',\n icon: [512, 512, [], \"f1d8\", \"M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z\"]\n};\nvar faPaperclip = {\n prefix: 'fas',\n iconName: 'paperclip',\n icon: [448, 512, [], \"f0c6\", \"M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z\"]\n};\nvar faParachuteBox = {\n prefix: 'fas',\n iconName: 'parachute-box',\n icon: [512, 512, [], \"f4cd\", \"M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z\"]\n};\nvar faParagraph = {\n prefix: 'fas',\n iconName: 'paragraph',\n icon: [448, 512, [], \"f1dd\", \"M448 48v32a16 16 0 0 1-16 16h-48v368a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V96h-32v368a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V352h-32a160 160 0 0 1 0-320h240a16 16 0 0 1 16 16z\"]\n};\nvar faParking = {\n prefix: 'fas',\n iconName: 'parking',\n icon: [448, 512, [], \"f540\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z\"]\n};\nvar faPassport = {\n prefix: 'fas',\n iconName: 'passport',\n icon: [448, 512, [], \"f5ab\", \"M129.62 176h39.09c1.49-27.03 6.54-51.35 14.21-70.41-27.71 13.24-48.02 39.19-53.3 70.41zm0 32c5.29 31.22 25.59 57.17 53.3 70.41-7.68-19.06-12.72-43.38-14.21-70.41h-39.09zM224 286.69c7.69-7.45 20.77-34.42 23.43-78.69h-46.87c2.67 44.26 15.75 71.24 23.44 78.69zM200.57 176h46.87c-2.66-44.26-15.74-71.24-23.43-78.69-7.7 7.45-20.78 34.43-23.44 78.69zm64.51 102.41c27.71-13.24 48.02-39.19 53.3-70.41h-39.09c-1.49 27.03-6.53 51.35-14.21 70.41zM416 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h352c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32zm-80 416H112c-8.8 0-16-7.2-16-16s7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-112-96c-70.69 0-128-57.31-128-128S153.31 64 224 64s128 57.31 128 128-57.31 128-128 128zm41.08-214.41c7.68 19.06 12.72 43.38 14.21 70.41h39.09c-5.28-31.22-25.59-57.17-53.3-70.41z\"]\n};\nvar faPastafarianism = {\n prefix: 'fas',\n iconName: 'pastafarianism',\n icon: [640, 512, [], \"f67b\", \"M624.54 347.67c-32.7-12.52-57.36 4.25-75.37 16.45-17.06 11.53-23.25 14.42-31.41 11.36-8.12-3.09-10.83-9.38-15.89-29.38-3.33-13.15-7.44-29.32-17.95-42.65 2.24-2.91 4.43-5.79 6.38-8.57C500.47 304.45 513.71 312 532 312c33.95 0 50.87-25.78 62.06-42.83 10.59-16.14 15-21.17 21.94-21.17 13.25 0 24-10.75 24-24s-10.75-24-24-24c-33.95 0-50.87 25.78-62.06 42.83-10.6 16.14-15 21.17-21.94 21.17-17.31 0-37.48-61.43-97.26-101.91l17.25-34.5C485.43 125.5 512 97.98 512 64c0-35.35-28.65-64-64-64s-64 28.65-64 64c0 13.02 3.94 25.1 10.62 35.21l-18.15 36.3c-16.98-4.6-35.6-7.51-56.46-7.51s-39.49 2.91-56.46 7.51l-18.15-36.3C252.06 89.1 256 77.02 256 64c0-35.35-28.65-64-64-64s-64 28.65-64 64c0 33.98 26.56 61.5 60.02 63.6l17.25 34.5C145.68 202.44 125.15 264 108 264c-6.94 0-11.34-5.03-21.94-21.17C74.88 225.78 57.96 200 24 200c-13.25 0-24 10.75-24 24s10.75 24 24 24c6.94 0 11.34 5.03 21.94 21.17C57.13 286.22 74.05 312 108 312c18.29 0 31.53-7.55 41.7-17.11 1.95 2.79 4.14 5.66 6.38 8.57-10.51 13.33-14.62 29.5-17.95 42.65-5.06 20-7.77 26.28-15.89 29.38-8.11 3.06-14.33.17-31.41-11.36-18.03-12.2-42.72-28.92-75.37-16.45-12.39 4.72-18.59 18.58-13.87 30.97 4.72 12.41 18.61 18.61 30.97 13.88 8.16-3.09 14.34-.19 31.39 11.36 13.55 9.16 30.83 20.86 52.42 20.84 7.17 0 14.83-1.28 22.97-4.39 32.66-12.44 39.98-41.33 45.33-62.44 2.21-8.72 3.99-14.49 5.95-18.87 16.62 13.61 36.95 25.88 61.64 34.17-9.96 37-32.18 90.8-60.26 90.8-13.25 0-24 10.75-24 24s10.75 24 24 24c66.74 0 97.05-88.63 107.42-129.14 6.69.6 13.42 1.14 20.58 1.14s13.89-.54 20.58-1.14C350.95 423.37 381.26 512 448 512c13.25 0 24-10.75 24-24s-10.75-24-24-24c-27.94 0-50.21-53.81-60.22-90.81 24.69-8.29 45-20.56 61.62-34.16 1.96 4.38 3.74 10.15 5.95 18.87 5.34 21.11 12.67 50 45.33 62.44 8.14 3.11 15.8 4.39 22.97 4.39 21.59 0 38.87-11.69 52.42-20.84 17.05-11.55 23.28-14.45 31.39-11.36 12.39 4.75 26.27-1.47 30.97-13.88 4.71-12.4-1.49-26.26-13.89-30.98zM448 48c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16zm-256 0c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16z\"]\n};\nvar faPaste = {\n prefix: 'fas',\n iconName: 'paste',\n icon: [448, 512, [], \"f0ea\", \"M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z\"]\n};\nvar faPause = {\n prefix: 'fas',\n iconName: 'pause',\n icon: [448, 512, [], \"f04c\", \"M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z\"]\n};\nvar faPauseCircle = {\n prefix: 'fas',\n iconName: 'pause-circle',\n icon: [512, 512, [], \"f28b\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z\"]\n};\nvar faPaw = {\n prefix: 'fas',\n iconName: 'paw',\n icon: [512, 512, [], \"f1b0\", \"M256 224c-79.41 0-192 122.76-192 200.25 0 34.9 26.81 55.75 71.74 55.75 48.84 0 81.09-25.08 120.26-25.08 39.51 0 71.85 25.08 120.26 25.08 44.93 0 71.74-20.85 71.74-55.75C448 346.76 335.41 224 256 224zm-147.28-12.61c-10.4-34.65-42.44-57.09-71.56-50.13-29.12 6.96-44.29 40.69-33.89 75.34 10.4 34.65 42.44 57.09 71.56 50.13 29.12-6.96 44.29-40.69 33.89-75.34zm84.72-20.78c30.94-8.14 46.42-49.94 34.58-93.36s-46.52-72.01-77.46-63.87-46.42 49.94-34.58 93.36c11.84 43.42 46.53 72.02 77.46 63.87zm281.39-29.34c-29.12-6.96-61.15 15.48-71.56 50.13-10.4 34.65 4.77 68.38 33.89 75.34 29.12 6.96 61.15-15.48 71.56-50.13 10.4-34.65-4.77-68.38-33.89-75.34zm-156.27 29.34c30.94 8.14 65.62-20.45 77.46-63.87 11.84-43.42-3.64-85.21-34.58-93.36s-65.62 20.45-77.46 63.87c-11.84 43.42 3.64 85.22 34.58 93.36z\"]\n};\nvar faPeace = {\n prefix: 'fas',\n iconName: 'peace',\n icon: [496, 512, [], \"f67c\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm184 248c0 31.93-8.2 61.97-22.57 88.17L280 240.63V74.97c86.23 15.21 152 90.5 152 181.03zM216 437.03c-33.86-5.97-64.49-21.2-89.29-43.02L216 322.57v114.46zm64-114.46L369.29 394c-24.8 21.82-55.43 37.05-89.29 43.02V322.57zm-64-247.6v165.66L86.57 344.17C72.2 317.97 64 287.93 64 256c0-90.53 65.77-165.82 152-181.03z\"]\n};\nvar faPen = {\n prefix: 'fas',\n iconName: 'pen',\n icon: [512, 512, [], \"f304\", \"M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z\"]\n};\nvar faPenAlt = {\n prefix: 'fas',\n iconName: 'pen-alt',\n icon: [512, 512, [], \"f305\", \"M497.94 74.17l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91zm-246.8-20.53c-15.62-15.62-40.94-15.62-56.56 0L75.8 172.43c-6.25 6.25-6.25 16.38 0 22.62l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l101.82-101.82 22.63 22.62L93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l196.79-196.79-82.77-82.77-84.85-84.85z\"]\n};\nvar faPenFancy = {\n prefix: 'fas',\n iconName: 'pen-fancy',\n icon: [512, 512, [], \"f5ac\", \"M79.18 282.94a32.005 32.005 0 0 0-20.24 20.24L0 480l4.69 4.69 92.89-92.89c-.66-2.56-1.57-5.03-1.57-7.8 0-17.67 14.33-32 32-32s32 14.33 32 32-14.33 32-32 32c-2.77 0-5.24-.91-7.8-1.57l-92.89 92.89L32 512l176.82-58.94a31.983 31.983 0 0 0 20.24-20.24l33.07-84.07-98.88-98.88-84.07 33.07zM369.25 28.32L186.14 227.81l97.85 97.85 199.49-183.11C568.4 67.48 443.73-55.94 369.25 28.32z\"]\n};\nvar faPenNib = {\n prefix: 'fas',\n iconName: 'pen-nib',\n icon: [512, 512, [], \"f5ad\", \"M136.6 138.79a64.003 64.003 0 0 0-43.31 41.35L0 460l14.69 14.69L164.8 324.58c-2.99-6.26-4.8-13.18-4.8-20.58 0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48c-7.4 0-14.32-1.81-20.58-4.8L37.31 497.31 52 512l279.86-93.29a64.003 64.003 0 0 0 41.35-43.31L416 224 288 96l-151.4 42.79zm361.34-64.62l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91z\"]\n};\nvar faPenSquare = {\n prefix: 'fas',\n iconName: 'pen-square',\n icon: [448, 512, [], \"f14b\", \"M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z\"]\n};\nvar faPencilAlt = {\n prefix: 'fas',\n iconName: 'pencil-alt',\n icon: [512, 512, [], \"f303\", \"M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z\"]\n};\nvar faPencilRuler = {\n prefix: 'fas',\n iconName: 'pencil-ruler',\n icon: [512, 512, [], \"f5ae\", \"M109.46 244.04l134.58-134.56-44.12-44.12-61.68 61.68a7.919 7.919 0 0 1-11.21 0l-11.21-11.21c-3.1-3.1-3.1-8.12 0-11.21l61.68-61.68-33.64-33.65C131.47-3.1 111.39-3.1 99 9.29L9.29 99c-12.38 12.39-12.39 32.47 0 44.86l100.17 100.18zm388.47-116.8c18.76-18.76 18.75-49.17 0-67.93l-45.25-45.25c-18.76-18.76-49.18-18.76-67.95 0l-46.02 46.01 113.2 113.2 46.02-46.03zM316.08 82.71l-297 296.96L.32 487.11c-2.53 14.49 10.09 27.11 24.59 24.56l107.45-18.84L429.28 195.9 316.08 82.71zm186.63 285.43l-33.64-33.64-61.68 61.68c-3.1 3.1-8.12 3.1-11.21 0l-11.21-11.21c-3.09-3.1-3.09-8.12 0-11.21l61.68-61.68-44.14-44.14L267.93 402.5l100.21 100.2c12.39 12.39 32.47 12.39 44.86 0l89.71-89.7c12.39-12.39 12.39-32.47 0-44.86z\"]\n};\nvar faPeopleArrows = {\n prefix: 'fas',\n iconName: 'people-arrows',\n icon: [576, 512, [], \"e068\", \"M96,128A64,64,0,1,0,32,64,64,64,0,0,0,96,128Zm0,176.08a44.11,44.11,0,0,1,13.64-32L181.77,204c1.65-1.55,3.77-2.31,5.61-3.57A63.91,63.91,0,0,0,128,160H64A64,64,0,0,0,0,224v96a32,32,0,0,0,32,32V480a32,32,0,0,0,32,32h64a32,32,0,0,0,32-32V383.61l-50.36-47.53A44.08,44.08,0,0,1,96,304.08ZM480,128a64,64,0,1,0-64-64A64,64,0,0,0,480,128Zm32,32H448a63.91,63.91,0,0,0-59.38,40.42c1.84,1.27,4,2,5.62,3.59l72.12,68.06a44.37,44.37,0,0,1,0,64L416,383.62V480a32,32,0,0,0,32,32h64a32,32,0,0,0,32-32V352a32,32,0,0,0,32-32V224A64,64,0,0,0,512,160ZM444.4,295.34l-72.12-68.06A12,12,0,0,0,352,236v36H224V236a12,12,0,0,0-20.28-8.73L131.6,295.34a12.4,12.4,0,0,0,0,17.47l72.12,68.07A12,12,0,0,0,224,372.14V336H352v36.14a12,12,0,0,0,20.28,8.74l72.12-68.07A12.4,12.4,0,0,0,444.4,295.34Z\"]\n};\nvar faPeopleCarry = {\n prefix: 'fas',\n iconName: 'people-carry',\n icon: [640, 512, [], \"f4ce\", \"M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z\"]\n};\nvar faPepperHot = {\n prefix: 'fas',\n iconName: 'pepper-hot',\n icon: [512, 512, [], \"f816\", \"M330.67 263.12V173.4l-52.75-24.22C219.44 218.76 197.58 400 56 400a56 56 0 0 0 0 112c212.64 0 370.65-122.87 419.18-210.34l-37.05-38.54zm131.09-128.37C493.92 74.91 477.18 26.48 458.62 3a8 8 0 0 0-11.93-.59l-22.9 23a8.06 8.06 0 0 0-.89 10.23c6.86 10.36 17.05 35.1-1.4 72.32A142.85 142.85 0 0 0 364.34 96c-28 0-54 8.54-76.34 22.59l74.67 34.29v78.24h89.09L506.44 288c3.26-12.62 5.56-25.63 5.56-39.31a154 154 0 0 0-50.24-113.94z\"]\n};\nvar faPercent = {\n prefix: 'fas',\n iconName: 'percent',\n icon: [448, 512, [], \"f295\", \"M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z\"]\n};\nvar faPercentage = {\n prefix: 'fas',\n iconName: 'percentage',\n icon: [384, 512, [], \"f541\", \"M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z\"]\n};\nvar faPersonBooth = {\n prefix: 'fas',\n iconName: 'person-booth',\n icon: [576, 512, [], \"f756\", \"M192 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320h-64v176zm32-272h-50.9l-45.2-45.3C115.8 166.6 99.7 160 82.7 160H64c-17.1 0-33.2 6.7-45.3 18.8C6.7 190.9 0 207 0 224.1L.2 320 0 480c0 17.7 14.3 32 31.9 32 17.6 0 32-14.3 32-32l.1-100.7c.9.5 1.6 1.3 2.5 1.7l29.1 43v56c0 17.7 14.3 32 32 32s32-14.3 32-32v-56.5c0-9.9-2.3-19.8-6.7-28.6l-41.2-61.3V253l20.9 20.9c9.1 9.1 21.1 14.1 33.9 14.1H224c17.7 0 32-14.3 32-32s-14.3-32-32-32zM64 128c26.5 0 48-21.5 48-48S90.5 32 64 32 16 53.5 16 80s21.5 48 48 48zm224-96l31.5 223.1-30.9 154.6c-4.3 21.6 13 38.3 31.4 38.3 15.2 0 28-9.1 32.3-30.4.9 16.9 14.6 30.4 31.7 30.4 17.7 0 32-14.3 32-32 0 17.7 14.3 32 32 32s32-14.3 32-32V0H288v32zm-96 0v160h64V0h-32c-17.7 0-32 14.3-32 32zM544 0h-32v496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V32c0-17.7-14.3-32-32-32z\"]\n};\nvar faPhone = {\n prefix: 'fas',\n iconName: 'phone',\n icon: [512, 512, [], \"f095\", \"M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z\"]\n};\nvar faPhoneAlt = {\n prefix: 'fas',\n iconName: 'phone-alt',\n icon: [512, 512, [], \"f879\", \"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"]\n};\nvar faPhoneSlash = {\n prefix: 'fas',\n iconName: 'phone-slash',\n icon: [640, 512, [], \"f3dd\", \"M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z\"]\n};\nvar faPhoneSquare = {\n prefix: 'fas',\n iconName: 'phone-square',\n icon: [448, 512, [], \"f098\", \"M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z\"]\n};\nvar faPhoneSquareAlt = {\n prefix: 'fas',\n iconName: 'phone-square-alt',\n icon: [448, 512, [], \"f87b\", \"M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h352a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48zm-16.39 307.37l-15 65A15 15 0 0 1 354 416C194 416 64 286.29 64 126a15.7 15.7 0 0 1 11.63-14.61l65-15A18.23 18.23 0 0 1 144 96a16.27 16.27 0 0 1 13.79 9.09l30 70A17.9 17.9 0 0 1 189 181a17 17 0 0 1-5.5 11.61l-37.89 31a231.91 231.91 0 0 0 110.78 110.78l31-37.89A17 17 0 0 1 299 291a17.85 17.85 0 0 1 5.91 1.21l70 30A16.25 16.25 0 0 1 384 336a17.41 17.41 0 0 1-.39 3.37z\"]\n};\nvar faPhoneVolume = {\n prefix: 'fas',\n iconName: 'phone-volume',\n icon: [384, 512, [], \"f2a0\", \"M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z\"]\n};\nvar faPhotoVideo = {\n prefix: 'fas',\n iconName: 'photo-video',\n icon: [640, 512, [], \"f87c\", \"M608 0H160a32 32 0 0 0-32 32v96h160V64h192v320h128a32 32 0 0 0 32-32V32a32 32 0 0 0-32-32zM232 103a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9V73a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm352 208a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9v-30a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm0-104a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9v-30a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm0-104a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9V73a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm-168 57H32a32 32 0 0 0-32 32v288a32 32 0 0 0 32 32h384a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM96 224a32 32 0 1 1-32 32 32 32 0 0 1 32-32zm288 224H64v-32l64-64 32 32 128-128 96 96z\"]\n};\nvar faPiggyBank = {\n prefix: 'fas',\n iconName: 'piggy-bank',\n icon: [576, 512, [], \"f4d3\", \"M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z\"]\n};\nvar faPills = {\n prefix: 'fas',\n iconName: 'pills',\n icon: [576, 512, [], \"f484\", \"M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z\"]\n};\nvar faPizzaSlice = {\n prefix: 'fas',\n iconName: 'pizza-slice',\n icon: [512, 512, [], \"f818\", \"M158.87.15c-16.16-1.52-31.2 8.42-35.33 24.12l-14.81 56.27c187.62 5.49 314.54 130.61 322.48 317l56.94-15.78c15.72-4.36 25.49-19.68 23.62-35.9C490.89 165.08 340.78 17.32 158.87.15zm-58.47 112L.55 491.64a16.21 16.21 0 0 0 20 19.75l379-105.1c-4.27-174.89-123.08-292.14-299.15-294.1zM128 416a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm48-152a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm104 104a32 32 0 1 1 32-32 32 32 0 0 1-32 32z\"]\n};\nvar faPlaceOfWorship = {\n prefix: 'fas',\n iconName: 'place-of-worship',\n icon: [640, 512, [], \"f67f\", \"M620.61 366.55L512 320v192h112c8.84 0 16-7.16 16-16V395.96a32 32 0 0 0-19.39-29.41zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.55A32 32 0 0 0 0 395.96zm464.46-149.28L416 217.6V102.63c0-8.49-3.37-16.62-9.38-22.63L331.31 4.69c-6.25-6.25-16.38-6.25-22.62 0L233.38 80c-6 6-9.38 14.14-9.38 22.63V217.6l-48.46 29.08A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.66-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44z\"]\n};\nvar faPlane = {\n prefix: 'fas',\n iconName: 'plane',\n icon: [576, 512, [], \"f072\", \"M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z\"]\n};\nvar faPlaneArrival = {\n prefix: 'fas',\n iconName: 'plane-arrival',\n icon: [640, 512, [], \"f5af\", \"M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM44.81 205.66l88.74 80a62.607 62.607 0 0 0 25.47 13.93l287.6 78.35c26.48 7.21 54.56 8.72 81 1.36 29.67-8.27 43.44-21.21 47.25-35.71 3.83-14.5-1.73-32.71-23.37-54.96-19.28-19.82-44.35-32.79-70.83-40l-97.51-26.56L282.8 30.22c-1.51-5.81-5.95-10.35-11.66-11.91L206.05.58c-10.56-2.88-20.9 5.32-20.71 16.44l47.92 164.21-102.2-27.84-27.59-67.88c-1.93-4.89-6.01-8.57-11.02-9.93L52.72 64.75c-10.34-2.82-20.53 5-20.72 15.88l.23 101.78c.19 8.91 6.03 17.34 12.58 23.25z\"]\n};\nvar faPlaneDeparture = {\n prefix: 'fas',\n iconName: 'plane-departure',\n icon: [640, 512, [], \"f5b0\", \"M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM80.55 341.27c6.28 6.84 15.1 10.72 24.33 10.71l130.54-.18a65.62 65.62 0 0 0 29.64-7.12l290.96-147.65c26.74-13.57 50.71-32.94 67.02-58.31 18.31-28.48 20.3-49.09 13.07-63.65-7.21-14.57-24.74-25.27-58.25-27.45-29.85-1.94-59.54 5.92-86.28 19.48l-98.51 49.99-218.7-82.06a17.799 17.799 0 0 0-18-1.11L90.62 67.29c-10.67 5.41-13.25 19.65-5.17 28.53l156.22 98.1-103.21 52.38-72.35-36.47a17.804 17.804 0 0 0-16.07.02L9.91 230.22c-10.44 5.3-13.19 19.12-5.57 28.08l76.21 82.97z\"]\n};\nvar faPlaneSlash = {\n prefix: 'fas',\n iconName: 'plane-slash',\n icon: [640, 512, [], \"e069\", \"M32.48,147.88,64,256,32.48,364.13A16,16,0,0,0,48,384H88a16,16,0,0,0,12.8-6.41L144,320H246.85l-49,171.59A16,16,0,0,0,213.2,512h65.5a16,16,0,0,0,13.89-8.06l66.6-116.54L34.35,136.34A15.47,15.47,0,0,0,32.48,147.88ZM633.82,458.09,455.14,320H512c35.34,0,96-28.66,96-64s-60.66-64-96-64H397.7L292.61,8.06C290.06,3.61,283.84,0,278.71,0H213.2a16,16,0,0,0-15.38,20.39l36.94,129.29L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.45A16,16,0,0,0,6.18,53.91L594.54,508.63A16,16,0,0,0,617,505.81l19.64-25.26A16,16,0,0,0,633.82,458.09Z\"]\n};\nvar faPlay = {\n prefix: 'fas',\n iconName: 'play',\n icon: [448, 512, [], \"f04b\", \"M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z\"]\n};\nvar faPlayCircle = {\n prefix: 'fas',\n iconName: 'play-circle',\n icon: [512, 512, [], \"f144\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z\"]\n};\nvar faPlug = {\n prefix: 'fas',\n iconName: 'plug',\n icon: [384, 512, [], \"f1e6\", \"M320,32a32,32,0,0,0-64,0v96h64Zm48,128H16A16,16,0,0,0,0,176v32a16,16,0,0,0,16,16H32v32A160.07,160.07,0,0,0,160,412.8V512h64V412.8A160.07,160.07,0,0,0,352,256V224h16a16,16,0,0,0,16-16V176A16,16,0,0,0,368,160ZM128,32a32,32,0,0,0-64,0v96h64Z\"]\n};\nvar faPlus = {\n prefix: 'fas',\n iconName: 'plus',\n icon: [448, 512, [], \"f067\", \"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"]\n};\nvar faPlusCircle = {\n prefix: 'fas',\n iconName: 'plus-circle',\n icon: [512, 512, [], \"f055\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z\"]\n};\nvar faPlusSquare = {\n prefix: 'fas',\n iconName: 'plus-square',\n icon: [448, 512, [], \"f0fe\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z\"]\n};\nvar faPodcast = {\n prefix: 'fas',\n iconName: 'podcast',\n icon: [448, 512, [], \"f2ce\", \"M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z\"]\n};\nvar faPoll = {\n prefix: 'fas',\n iconName: 'poll',\n icon: [448, 512, [], \"f681\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM160 368c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16V240c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v128zm96 0c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16V144c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v224zm96 0c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-64c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v64z\"]\n};\nvar faPollH = {\n prefix: 'fas',\n iconName: 'poll-h',\n icon: [448, 512, [], \"f682\", \"M448 432V80c0-26.5-21.5-48-48-48H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48zM112 192c-8.84 0-16-7.16-16-16v-32c0-8.84 7.16-16 16-16h128c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16H112zm0 96c-8.84 0-16-7.16-16-16v-32c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16H112zm0 96c-8.84 0-16-7.16-16-16v-32c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-64z\"]\n};\nvar faPoo = {\n prefix: 'fas',\n iconName: 'poo',\n icon: [512, 512, [], \"f2fe\", \"M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faPooStorm = {\n prefix: 'fas',\n iconName: 'poo-storm',\n icon: [448, 512, [], \"f75a\", \"M308 336h-57.7l17.3-64.9c2-7.6-3.7-15.1-11.6-15.1h-68c-6 0-11.1 4.5-11.9 10.4l-16 120c-1 7.2 4.6 13.6 11.9 13.6h59.3l-23 97.2c-1.8 7.6 4 14.8 11.7 14.8 4.2 0 8.2-2.2 10.4-6l88-152c4.6-8-1.2-18-10.4-18zm66.4-111.3c5.9-9.6 9.6-20.6 9.6-32.7 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C218.3 14.6 224 30.6 224 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 12.1 3.7 23.1 9.6 32.7C32.6 228 0 262.2 0 304c0 44 36 80 80 80h48.3c.1-.6 0-1.2 0-1.8l16-120c3-21.8 21.7-38.2 43.7-38.2h68c13.8 0 26.5 6.3 34.9 17.2s11.2 24.8 7.6 38.1l-6.6 24.7h16c15.7 0 30.3 8.4 38.1 22 7.8 13.6 7.8 30.5 0 44l-8.1 14h30c44 0 80-36 80-80 .1-41.8-32.5-76-73.5-79.3z\"]\n};\nvar faPoop = {\n prefix: 'fas',\n iconName: 'poop',\n icon: [512, 512, [], \"f619\", \"M451.36 369.14C468.66 355.99 480 335.41 480 312c0-39.77-32.24-72-72-72h-14.07c13.42-11.73 22.07-28.78 22.07-48 0-35.35-28.65-64-64-64h-5.88c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96-5.17 0-10.15.74-15.11 1.52C250.31 14.64 256 30.62 256 48c0 44.18-35.82 80-80 80h-16c-35.35 0-64 28.65-64 64 0 19.22 8.65 36.27 22.07 48H104c-39.76 0-72 32.23-72 72 0 23.41 11.34 43.99 28.64 57.14C26.31 374.62 0 404.12 0 440c0 39.76 32.24 72 72 72h368c39.76 0 72-32.24 72-72 0-35.88-26.31-65.38-60.64-70.86z\"]\n};\nvar faPortrait = {\n prefix: 'fas',\n iconName: 'portrait',\n icon: [384, 512, [], \"f3e0\", \"M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z\"]\n};\nvar faPoundSign = {\n prefix: 'fas',\n iconName: 'pound-sign',\n icon: [320, 512, [], \"f154\", \"M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z\"]\n};\nvar faPowerOff = {\n prefix: 'fas',\n iconName: 'power-off',\n icon: [512, 512, [], \"f011\", \"M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z\"]\n};\nvar faPray = {\n prefix: 'fas',\n iconName: 'pray',\n icon: [384, 512, [], \"f683\", \"M256 128c35.35 0 64-28.65 64-64S291.35 0 256 0s-64 28.65-64 64 28.65 64 64 64zm-30.63 169.75c14.06 16.72 39 19.09 55.97 5.22l88-72.02c17.09-13.98 19.59-39.19 5.62-56.28-13.97-17.11-39.19-19.59-56.31-5.62l-57.44 47-38.91-46.31c-15.44-18.39-39.22-27.92-64-25.33-24.19 2.48-45.25 16.27-56.37 36.92l-49.37 92.03c-23.4 43.64-8.69 96.37 34.19 123.75L131.56 432H40c-22.09 0-40 17.91-40 40s17.91 40 40 40h208c34.08 0 53.77-42.79 28.28-68.28L166.42 333.86l34.8-64.87 24.15 28.76z\"]\n};\nvar faPrayingHands = {\n prefix: 'fas',\n iconName: 'praying-hands',\n icon: [640, 512, [], \"f684\", \"M272 191.91c-17.6 0-32 14.4-32 32v80c0 8.84-7.16 16-16 16s-16-7.16-16-16v-76.55c0-17.39 4.72-34.47 13.69-49.39l77.75-129.59c9.09-15.16 4.19-34.81-10.97-43.91-14.45-8.67-32.72-4.3-42.3 9.21-.2.23-.62.21-.79.48l-117.26 175.9C117.56 205.9 112 224.31 112 243.29v80.23l-90.12 30.04A31.974 31.974 0 0 0 0 383.91v96c0 10.82 8.52 32 32 32 2.69 0 5.41-.34 8.06-1.03l179.19-46.62C269.16 449.99 304 403.8 304 351.91v-128c0-17.6-14.4-32-32-32zm346.12 161.73L528 323.6v-80.23c0-18.98-5.56-37.39-16.12-53.23L394.62 14.25c-.18-.27-.59-.24-.79-.48-9.58-13.51-27.85-17.88-42.3-9.21-15.16 9.09-20.06 28.75-10.97 43.91l77.75 129.59c8.97 14.92 13.69 32 13.69 49.39V304c0 8.84-7.16 16-16 16s-16-7.16-16-16v-80c0-17.6-14.4-32-32-32s-32 14.4-32 32v128c0 51.89 34.84 98.08 84.75 112.34l179.19 46.62c2.66.69 5.38 1.03 8.06 1.03 23.48 0 32-21.18 32-32v-96c0-13.77-8.81-25.99-21.88-30.35z\"]\n};\nvar faPrescription = {\n prefix: 'fas',\n iconName: 'prescription',\n icon: [384, 512, [], \"f5b1\", \"M301.26 352l78.06-78.06c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0L256 306.74l-83.96-83.96C219.31 216.8 256 176.89 256 128c0-53.02-42.98-96-96-96H16C7.16 32 0 39.16 0 48v256c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-80h18.75l128 128-78.06 78.06c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0L256 397.25l78.06 78.06c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63L301.26 352zM64 96h96c17.64 0 32 14.36 32 32s-14.36 32-32 32H64V96z\"]\n};\nvar faPrescriptionBottle = {\n prefix: 'fas',\n iconName: 'prescription-bottle',\n icon: [384, 512, [], \"f485\", \"M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z\"]\n};\nvar faPrescriptionBottleAlt = {\n prefix: 'fas',\n iconName: 'prescription-bottle-alt',\n icon: [384, 512, [], \"f486\", \"M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z\"]\n};\nvar faPrint = {\n prefix: 'fas',\n iconName: 'print',\n icon: [512, 512, [], \"f02f\", \"M448 192V77.25c0-8.49-3.37-16.62-9.37-22.63L393.37 9.37c-6-6-14.14-9.37-22.63-9.37H96C78.33 0 64 14.33 64 32v160c-35.35 0-64 28.65-64 64v112c0 8.84 7.16 16 16 16h48v96c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-96h48c8.84 0 16-7.16 16-16V256c0-35.35-28.65-64-64-64zm-64 256H128v-96h256v96zm0-224H128V64h192v48c0 8.84 7.16 16 16 16h48v96zm48 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faProcedures = {\n prefix: 'fas',\n iconName: 'procedures',\n icon: [640, 512, [], \"f487\", \"M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z\"]\n};\nvar faProjectDiagram = {\n prefix: 'fas',\n iconName: 'project-diagram',\n icon: [640, 512, [], \"f542\", \"M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z\"]\n};\nvar faPumpMedical = {\n prefix: 'fas',\n iconName: 'pump-medical',\n icon: [384, 512, [], \"e06a\", \"M235.51,159.82H84.24A64,64,0,0,0,20.51,218L.14,442a64,64,0,0,0,63.74,69.8h192A64,64,0,0,0,319.61,442L299.24,218A64,64,0,0,0,235.51,159.82Zm4.37,173.33a13.35,13.35,0,0,1-13.34,13.34h-40v40a13.33,13.33,0,0,1-13.33,13.33H146.54a13.33,13.33,0,0,1-13.33-13.33v-40h-40a13.34,13.34,0,0,1-13.33-13.34V306.49a13.33,13.33,0,0,1,13.33-13.34h40v-40a13.33,13.33,0,0,1,13.33-13.33h26.67a13.33,13.33,0,0,1,13.33,13.33v40h40a13.34,13.34,0,0,1,13.34,13.34ZM379.19,93.88,335.87,50.56a64,64,0,0,0-45.24-18.74H223.88a32,32,0,0,0-32-32h-64a32,32,0,0,0-32,32v96h128v-32h66.75l43.31,43.31a16,16,0,0,0,22.63,0l22.62-22.62A16,16,0,0,0,379.19,93.88Z\"]\n};\nvar faPumpSoap = {\n prefix: 'fas',\n iconName: 'pump-soap',\n icon: [384, 512, [], \"e06b\", \"M235.63,160H84.37a64,64,0,0,0-63.74,58.21L.27,442.21A64,64,0,0,0,64,512H256a64,64,0,0,0,63.74-69.79l-20.36-224A64,64,0,0,0,235.63,160ZM160,416c-33.12,0-60-26.33-60-58.75,0-25,35.7-75.47,52-97.27A10,10,0,0,1,168,260c16.33,21.8,52,72.27,52,97.27C220,389.67,193.12,416,160,416ZM379.31,94.06,336,50.74A64,64,0,0,0,290.75,32H224A32,32,0,0,0,192,0H128A32,32,0,0,0,96,32v96H224V96h66.75l43.31,43.31a16,16,0,0,0,22.63,0l22.62-22.62A16,16,0,0,0,379.31,94.06Z\"]\n};\nvar faPuzzlePiece = {\n prefix: 'fas',\n iconName: 'puzzle-piece',\n icon: [576, 512, [], \"f12e\", \"M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z\"]\n};\nvar faQrcode = {\n prefix: 'fas',\n iconName: 'qrcode',\n icon: [448, 512, [], \"f029\", \"M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z\"]\n};\nvar faQuestion = {\n prefix: 'fas',\n iconName: 'question',\n icon: [384, 512, [], \"f128\", \"M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z\"]\n};\nvar faQuestionCircle = {\n prefix: 'fas',\n iconName: 'question-circle',\n icon: [512, 512, [], \"f059\", \"M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z\"]\n};\nvar faQuidditch = {\n prefix: 'fas',\n iconName: 'quidditch',\n icon: [640, 512, [], \"f458\", \"M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z\"]\n};\nvar faQuoteLeft = {\n prefix: 'fas',\n iconName: 'quote-left',\n icon: [512, 512, [], \"f10d\", \"M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z\"]\n};\nvar faQuoteRight = {\n prefix: 'fas',\n iconName: 'quote-right',\n icon: [512, 512, [], \"f10e\", \"M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z\"]\n};\nvar faQuran = {\n prefix: 'fas',\n iconName: 'quran',\n icon: [448, 512, [], \"f687\", \"M448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM301.08 145.82c.6-1.21 1.76-1.82 2.92-1.82s2.32.61 2.92 1.82l11.18 22.65 25 3.63c2.67.39 3.74 3.67 1.81 5.56l-18.09 17.63 4.27 24.89c.36 2.11-1.31 3.82-3.21 3.82-.5 0-1.02-.12-1.52-.38L304 211.87l-22.36 11.75c-.5.26-1.02.38-1.52.38-1.9 0-3.57-1.71-3.21-3.82l4.27-24.89-18.09-17.63c-1.94-1.89-.87-5.17 1.81-5.56l24.99-3.63 11.19-22.65zm-57.89-69.01c13.67 0 27.26 2.49 40.38 7.41a6.775 6.775 0 1 1-2.38 13.12c-.67 0-3.09-.21-4.13-.21-52.31 0-94.86 42.55-94.86 94.86 0 52.3 42.55 94.86 94.86 94.86 1.03 0 3.48-.21 4.13-.21 3.93 0 6.8 3.14 6.8 6.78 0 2.98-1.94 5.51-4.62 6.42-13.07 4.87-26.59 7.34-40.19 7.34C179.67 307.19 128 255.51 128 192c0-63.52 51.67-115.19 115.19-115.19zM380.8 448H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8v64z\"]\n};\nvar faRadiation = {\n prefix: 'fas',\n iconName: 'radiation',\n icon: [496, 512, [], \"f7b9\", \"M328.2 255.8h151.6c9.1 0 16.8-7.7 16.2-16.8-5.1-75.8-44.4-142.2-102.5-184.2-7.4-5.3-17.9-2.9-22.7 4.8L290.4 188c22.6 14.3 37.8 39.2 37.8 67.8zm-37.8 67.7c-12.3 7.7-26.8 12.4-42.4 12.4-15.6 0-30-4.7-42.4-12.4L125.2 452c-4.8 7.7-2.4 18.1 5.6 22.4C165.7 493.2 205.6 504 248 504s82.3-10.8 117.2-29.6c8-4.3 10.4-14.8 5.6-22.4l-80.4-128.5zM248 303.8c26.5 0 48-21.5 48-48s-21.5-48-48-48-48 21.5-48 48 21.5 48 48 48zm-231.8-48h151.6c0-28.6 15.2-53.5 37.8-67.7L125.2 59.7c-4.8-7.7-15.3-10.2-22.7-4.8C44.4 96.9 5.1 163.3 0 239.1c-.6 9 7.1 16.7 16.2 16.7z\"]\n};\nvar faRadiationAlt = {\n prefix: 'fas',\n iconName: 'radiation-alt',\n icon: [496, 512, [], \"f7ba\", \"M312 256h79.1c9.2 0 16.9-7.7 16-16.8-4.6-43.6-27-81.8-59.5-107.8-7.6-6.1-18.8-4.5-24 3.8L281.9 202c18 11.2 30.1 31.2 30.1 54zm-97.8 54.1L172.4 377c-4.9 7.8-2.4 18.4 5.8 22.5 21.1 10.4 44.7 16.5 69.8 16.5s48.7-6.1 69.9-16.5c8.2-4.1 10.6-14.7 5.8-22.5l-41.8-66.9c-9.8 6.2-21.4 9.9-33.8 9.9s-24.1-3.7-33.9-9.9zM104.9 256H184c0-22.8 12.1-42.8 30.2-54.1l-41.7-66.8c-5.2-8.3-16.4-9.9-24-3.8-32.6 26-54.9 64.2-59.5 107.8-1.1 9.2 6.7 16.9 15.9 16.9zM248 504c137 0 248-111 248-248S385 8 248 8 0 119 0 256s111 248 248 248zm0-432c101.5 0 184 82.5 184 184s-82.5 184-184 184S64 357.5 64 256 146.5 72 248 72zm0 216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z\"]\n};\nvar faRainbow = {\n prefix: 'fas',\n iconName: 'rainbow',\n icon: [576, 512, [], \"f75b\", \"M268.3 32.7C115.4 42.9 0 176.9 0 330.2V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C64 186.8 180.9 80.3 317.5 97.9 430.4 112.4 512 214 512 327.8V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-165.3-140-298.6-307.7-287.3zm-5.6 96.9C166 142 96 229.1 96 326.7V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-74.8 64.5-134.8 140.8-127.4 66.5 6.5 115.2 66.2 115.2 133.1V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-114.2-100.2-205.4-217.3-190.4zm6.2 96.3c-45.6 8.9-76.9 51.5-76.9 97.9V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-17.6 14.3-32 32-32s32 14.4 32 32v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-59.2-53.8-106-115.1-94.1z\"]\n};\nvar faRandom = {\n prefix: 'fas',\n iconName: 'random',\n icon: [512, 512, [], \"f074\", \"M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z\"]\n};\nvar faReceipt = {\n prefix: 'fas',\n iconName: 'receipt',\n icon: [384, 512, [], \"f543\", \"M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faRecordVinyl = {\n prefix: 'fas',\n iconName: 'record-vinyl',\n icon: [512, 512, [], \"f8d9\", \"M256 152a104 104 0 1 0 104 104 104 104 0 0 0-104-104zm0 128a24 24 0 1 1 24-24 24 24 0 0 1-24 24zm0-272C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 376a128 128 0 1 1 128-128 128 128 0 0 1-128 128z\"]\n};\nvar faRecycle = {\n prefix: 'fas',\n iconName: 'recycle',\n icon: [512, 512, [], \"f1b8\", \"M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z\"]\n};\nvar faRedo = {\n prefix: 'fas',\n iconName: 'redo',\n icon: [512, 512, [], \"f01e\", \"M500.33 0h-47.41a12 12 0 0 0-12 12.57l4 82.76A247.42 247.42 0 0 0 256 8C119.34 8 7.9 119.53 8 256.19 8.1 393.07 119.1 504 256 504a247.1 247.1 0 0 0 166.18-63.91 12 12 0 0 0 .48-17.43l-34-34a12 12 0 0 0-16.38-.55A176 176 0 1 1 402.1 157.8l-101.53-4.87a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12h200.33a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12z\"]\n};\nvar faRedoAlt = {\n prefix: 'fas',\n iconName: 'redo-alt',\n icon: [512, 512, [], \"f2f9\", \"M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z\"]\n};\nvar faRegistered = {\n prefix: 'fas',\n iconName: 'registered',\n icon: [512, 512, [], \"f25d\", \"M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z\"]\n};\nvar faRemoveFormat = {\n prefix: 'fas',\n iconName: 'remove-format',\n icon: [640, 512, [], \"f87d\", \"M336 416h-11.17l9.26-27.77L267 336.4 240.49 416H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm297.82 42.1L377 259.59 426.17 112H544v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16H176a16 16 0 0 0-16 16v43.9L45.46 3.38A16 16 0 0 0 23 6.19L3.37 31.46a16 16 0 0 0 2.81 22.45l588.36 454.72a16 16 0 0 0 22.46-2.81l19.64-25.27a16 16 0 0 0-2.82-22.45zM309.91 207.76L224 141.36V112h117.83z\"]\n};\nvar faReply = {\n prefix: 'fas',\n iconName: 'reply',\n icon: [512, 512, [], \"f3e5\", \"M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z\"]\n};\nvar faReplyAll = {\n prefix: 'fas',\n iconName: 'reply-all',\n icon: [576, 512, [], \"f122\", \"M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z\"]\n};\nvar faRepublican = {\n prefix: 'fas',\n iconName: 'republican',\n icon: [640, 512, [], \"f75e\", \"M544 192c0-88.4-71.6-160-160-160H160C71.6 32 0 103.6 0 192v64h544v-64zm-367.7-21.6l-19.8 19.3 4.7 27.3c.8 4.9-4.3 8.6-8.7 6.3L128 210.4l-24.5 12.9c-4.3 2.3-9.5-1.4-8.7-6.3l4.7-27.3-19.8-19.3c-3.6-3.5-1.6-9.5 3.3-10.2l27.4-4 12.2-24.8c2.2-4.5 8.6-4.4 10.7 0l12.2 24.8 27.4 4c5 .7 6.9 6.7 3.4 10.2zm144 0l-19.8 19.3 4.7 27.3c.8 4.9-4.3 8.6-8.7 6.3L272 210.4l-24.5 12.9c-4.3 2.3-9.5-1.4-8.7-6.3l4.7-27.3-19.8-19.3c-3.6-3.5-1.6-9.5 3.3-10.2l27.4-4 12.2-24.8c2.2-4.5 8.6-4.4 10.7 0l12.2 24.8 27.4 4c5 .7 6.9 6.7 3.4 10.2zm144 0l-19.8 19.3 4.7 27.3c.8 4.9-4.3 8.6-8.7 6.3L416 210.4l-24.5 12.9c-4.3 2.3-9.5-1.4-8.7-6.3l4.7-27.3-19.8-19.3c-3.6-3.5-1.6-9.5 3.3-10.2l27.4-4 12.2-24.8c2.2-4.5 8.6-4.4 10.7 0l12.2 24.8 27.4 4c5 .7 6.9 6.7 3.4 10.2zM624 320h-32c-8.8 0-16 7.2-16 16v64c0 8.8-7.2 16-16 16s-16-7.2-16-16V288H0v176c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16v-80h192v80c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16V352h32v43.3c0 41.8 30 80.1 71.6 84.3 47.8 4.9 88.4-32.7 88.4-79.6v-64c0-8.8-7.2-16-16-16z\"]\n};\nvar faRestroom = {\n prefix: 'fas',\n iconName: 'restroom',\n icon: [640, 512, [], \"f7bd\", \"M128 128c35.3 0 64-28.7 64-64S163.3 0 128 0 64 28.7 64 64s28.7 64 64 64zm384 0c35.3 0 64-28.7 64-64S547.3 0 512 0s-64 28.7-64 64 28.7 64 64 64zm127.3 226.5l-45.6-185.8c-3.3-13.5-15.5-23-29.8-24.2-15 9.7-32.8 15.5-52 15.5-19.2 0-37-5.8-52-15.5-14.3 1.2-26.5 10.7-29.8 24.2l-45.6 185.8C381 369.6 393 384 409.2 384H464v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V384h54.8c16.2 0 28.2-14.4 24.5-29.5zM336 0h-32c-8.8 0-16 7.2-16 16v480c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zM180.1 144.4c-15 9.8-32.9 15.6-52.1 15.6-19.2 0-37.1-5.8-52.1-15.6C51.3 146.5 32 166.9 32 192v136c0 13.3 10.7 24 24 24h8v136c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V352h8c13.3 0 24-10.7 24-24V192c0-25.1-19.3-45.5-43.9-47.6z\"]\n};\nvar faRetweet = {\n prefix: 'fas',\n iconName: 'retweet',\n icon: [640, 512, [], \"f079\", \"M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z\"]\n};\nvar faRibbon = {\n prefix: 'fas',\n iconName: 'ribbon',\n icon: [448, 512, [], \"f4d6\", \"M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z\"]\n};\nvar faRing = {\n prefix: 'fas',\n iconName: 'ring',\n icon: [512, 512, [], \"f70b\", \"M256 64C110.06 64 0 125.91 0 208v98.13C0 384.48 114.62 448 256 448s256-63.52 256-141.87V208c0-82.09-110.06-144-256-144zm0 64c106.04 0 192 35.82 192 80 0 9.26-3.97 18.12-10.91 26.39C392.15 208.21 328.23 192 256 192s-136.15 16.21-181.09 42.39C67.97 226.12 64 217.26 64 208c0-44.18 85.96-80 192-80zM120.43 264.64C155.04 249.93 201.64 240 256 240s100.96 9.93 135.57 24.64C356.84 279.07 308.93 288 256 288s-100.84-8.93-135.57-23.36z\"]\n};\nvar faRoad = {\n prefix: 'fas',\n iconName: 'road',\n icon: [576, 512, [], \"f018\", \"M573.19 402.67l-139.79-320C428.43 71.29 417.6 64 405.68 64h-97.59l2.45 23.16c.5 4.72-3.21 8.84-7.96 8.84h-29.16c-4.75 0-8.46-4.12-7.96-8.84L267.91 64h-97.59c-11.93 0-22.76 7.29-27.73 18.67L2.8 402.67C-6.45 423.86 8.31 448 30.54 448h196.84l10.31-97.68c.86-8.14 7.72-14.32 15.91-14.32h68.8c8.19 0 15.05 6.18 15.91 14.32L348.62 448h196.84c22.23 0 36.99-24.14 27.73-45.33zM260.4 135.16a8 8 0 0 1 7.96-7.16h39.29c4.09 0 7.53 3.09 7.96 7.16l4.6 43.58c.75 7.09-4.81 13.26-11.93 13.26h-40.54c-7.13 0-12.68-6.17-11.93-13.26l4.59-43.58zM315.64 304h-55.29c-9.5 0-16.91-8.23-15.91-17.68l5.07-48c.86-8.14 7.72-14.32 15.91-14.32h45.15c8.19 0 15.05 6.18 15.91 14.32l5.07 48c1 9.45-6.41 17.68-15.91 17.68z\"]\n};\nvar faRobot = {\n prefix: 'fas',\n iconName: 'robot',\n icon: [640, 512, [], \"f544\", \"M32,224H64V416H32A31.96166,31.96166,0,0,1,0,384V256A31.96166,31.96166,0,0,1,32,224Zm512-48V448a64.06328,64.06328,0,0,1-64,64H160a64.06328,64.06328,0,0,1-64-64V176a79.974,79.974,0,0,1,80-80H288V32a32,32,0,0,1,64,0V96H464A79.974,79.974,0,0,1,544,176ZM264,256a40,40,0,1,0-40,40A39.997,39.997,0,0,0,264,256Zm-8,128H192v32h64Zm96,0H288v32h64ZM456,256a40,40,0,1,0-40,40A39.997,39.997,0,0,0,456,256Zm-8,128H384v32h64ZM640,256V384a31.96166,31.96166,0,0,1-32,32H576V224h32A31.96166,31.96166,0,0,1,640,256Z\"]\n};\nvar faRocket = {\n prefix: 'fas',\n iconName: 'rocket',\n icon: [512, 512, [], \"f135\", \"M505.12019,19.09375c-1.18945-5.53125-6.65819-11-12.207-12.1875C460.716,0,435.507,0,410.40747,0,307.17523,0,245.26909,55.20312,199.05238,128H94.83772c-16.34763.01562-35.55658,11.875-42.88664,26.48438L2.51562,253.29688A28.4,28.4,0,0,0,0,264a24.00867,24.00867,0,0,0,24.00582,24H127.81618l-22.47457,22.46875c-11.36521,11.36133-12.99607,32.25781,0,45.25L156.24582,406.625c11.15623,11.1875,32.15619,13.15625,45.27726,0l22.47457-22.46875V488a24.00867,24.00867,0,0,0,24.00581,24,28.55934,28.55934,0,0,0,10.707-2.51562l98.72834-49.39063c14.62888-7.29687,26.50776-26.5,26.50776-42.85937V312.79688c72.59753-46.3125,128.03493-108.40626,128.03493-211.09376C512.07526,76.5,512.07526,51.29688,505.12019,19.09375ZM384.04033,168A40,40,0,1,1,424.05,128,40.02322,40.02322,0,0,1,384.04033,168Z\"]\n};\nvar faRoute = {\n prefix: 'fas',\n iconName: 'route',\n icon: [512, 512, [], \"f4d7\", \"M416 320h-96c-17.6 0-32-14.4-32-32s14.4-32 32-32h96s96-107 96-160-43-96-96-96-96 43-96 96c0 25.5 22.2 63.4 45.3 96H320c-52.9 0-96 43.1-96 96s43.1 96 96 96h96c17.6 0 32 14.4 32 32s-14.4 32-32 32H185.5c-16 24.8-33.8 47.7-47.3 64H416c52.9 0 96-43.1 96-96s-43.1-96-96-96zm0-256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM96 256c-53 0-96 43-96 96s96 160 96 160 96-107 96-160-43-96-96-96zm0 128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faRss = {\n prefix: 'fas',\n iconName: 'rss',\n icon: [448, 512, [], \"f09e\", \"M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z\"]\n};\nvar faRssSquare = {\n prefix: 'fas',\n iconName: 'rss-square',\n icon: [448, 512, [], \"f143\", \"M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z\"]\n};\nvar faRubleSign = {\n prefix: 'fas',\n iconName: 'ruble-sign',\n icon: [384, 512, [], \"f158\", \"M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z\"]\n};\nvar faRuler = {\n prefix: 'fas',\n iconName: 'ruler',\n icon: [640, 512, [], \"f545\", \"M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z\"]\n};\nvar faRulerCombined = {\n prefix: 'fas',\n iconName: 'ruler-combined',\n icon: [512, 512, [], \"f546\", \"M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z\"]\n};\nvar faRulerHorizontal = {\n prefix: 'fas',\n iconName: 'ruler-horizontal',\n icon: [576, 512, [], \"f547\", \"M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z\"]\n};\nvar faRulerVertical = {\n prefix: 'fas',\n iconName: 'ruler-vertical',\n icon: [256, 512, [], \"f548\", \"M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z\"]\n};\nvar faRunning = {\n prefix: 'fas',\n iconName: 'running',\n icon: [416, 512, [], \"f70c\", \"M272 96c26.51 0 48-21.49 48-48S298.51 0 272 0s-48 21.49-48 48 21.49 48 48 48zM113.69 317.47l-14.8 34.52H32c-17.67 0-32 14.33-32 32s14.33 32 32 32h77.45c19.25 0 36.58-11.44 44.11-29.09l8.79-20.52-10.67-6.3c-17.32-10.23-30.06-25.37-37.99-42.61zM384 223.99h-44.03l-26.06-53.25c-12.5-25.55-35.45-44.23-61.78-50.94l-71.08-21.14c-28.3-6.8-57.77-.55-80.84 17.14l-39.67 30.41c-14.03 10.75-16.69 30.83-5.92 44.86s30.84 16.66 44.86 5.92l39.69-30.41c7.67-5.89 17.44-8 25.27-6.14l14.7 4.37-37.46 87.39c-12.62 29.48-1.31 64.01 26.3 80.31l84.98 50.17-27.47 87.73c-5.28 16.86 4.11 34.81 20.97 40.09 3.19 1 6.41 1.48 9.58 1.48 13.61 0 26.23-8.77 30.52-22.45l31.64-101.06c5.91-20.77-2.89-43.08-21.64-54.39l-61.24-36.14 31.31-78.28 20.27 41.43c8 16.34 24.92 26.89 43.11 26.89H384c17.67 0 32-14.33 32-32s-14.33-31.99-32-31.99z\"]\n};\nvar faRupeeSign = {\n prefix: 'fas',\n iconName: 'rupee-sign',\n icon: [320, 512, [], \"f156\", \"M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z\"]\n};\nvar faSadCry = {\n prefix: 'fas',\n iconName: 'sad-cry',\n icon: [496, 512, [], \"f5b3\", \"M248 8C111 8 0 119 0 256c0 90.1 48.2 168.7 120 212.1V288c0-8.8 7.2-16 16-16s16 7.2 16 16v196.7c29.5 12.4 62 19.3 96 19.3s66.5-6.9 96-19.3V288c0-8.8 7.2-16 16-16s16 7.2 16 16v180.1C447.8 424.7 496 346 496 256 496 119 385 8 248 8zm-65.5 216.5c-14.8-13.2-46.2-13.2-61 0L112 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c.8 5-1.7 10-6.1 12.4-5.8 3.1-11.2.7-13.7-1.6l-9.7-8.5zM248 416c-26.5 0-48-28.7-48-64s21.5-64 48-64 48 28.7 48 64-21.5 64-48 64zm149.8-181.5c-5.8 3.1-11.2.7-13.7-1.6l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S400 197 404 222.2c.6 4.9-1.8 9.9-6.2 12.3z\"]\n};\nvar faSadTear = {\n prefix: 'fas',\n iconName: 'sad-tear',\n icon: [496, 512, [], \"f5b4\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM152 416c-26.5 0-48-21-48-47 0-20 28.5-60.4 41.6-77.8 3.2-4.3 9.6-4.3 12.8 0C171.5 308.6 200 349 200 369c0 26-21.5 47-48 47zm16-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm170.2 154.2C315.8 367.4 282.9 352 248 352c-21.2 0-21.2-32 0-32 44.4 0 86.3 19.6 114.7 53.8 13.8 16.4-11.2 36.5-24.5 20.4z\"]\n};\nvar faSatellite = {\n prefix: 'fas',\n iconName: 'satellite',\n icon: [512, 512, [], \"f7bf\", \"M502.60969,310.04206l-96.70393,96.71625a31.88151,31.88151,0,0,1-45.00765,0L280.572,326.34115l-9.89231,9.90759a190.56343,190.56343,0,0,1-5.40716,168.52287c-4.50077,8.50115-16.39342,9.59505-23.20707,2.79725L134.54715,400.05428l-17.7999,17.79929c.70324,2.60972,1.60965,5.00067,1.60965,7.79793a32.00544,32.00544,0,1,1-32.00544-32.00434c2.79735,0,5.18838.90637,7.7982,1.60959l17.7999-17.79929L4.43129,269.94287c-6.798-6.81342-5.70409-18.6119,2.79735-23.20627a190.58161,190.58161,0,0,1,168.52864-5.407l9.79854-9.79821-80.31053-80.41716a32.002,32.002,0,0,1,0-45.09987L201.96474,9.29814A31.62639,31.62639,0,0,1,224.46868,0a31.99951,31.99951,0,0,1,22.59759,9.29814l80.32615,80.30777,47.805-47.89713a33.6075,33.6075,0,0,1,47.50808,0l47.50807,47.50645a33.63308,33.63308,0,0,1,0,47.50644l-47.805,47.89713L502.71908,265.036A31.78938,31.78938,0,0,1,502.60969,310.04206ZM219.56159,197.433l73.82505-73.82252-68.918-68.9-73.80942,73.80689Zm237.74352,90.106-68.90233-68.9156-73.825,73.82252,68.918,68.9Z\"]\n};\nvar faSatelliteDish = {\n prefix: 'fas',\n iconName: 'satellite-dish',\n icon: [512, 512, [], \"f7c0\", \"M305.44954,462.59c7.39157,7.29792,6.18829,20.09661-3.00038,25.00356-77.713,41.80281-176.72559,29.9105-242.34331-35.7082C-5.49624,386.28227-17.404,287.362,24.41381,209.554c4.89125-9.095,17.68975-10.29834,25.00318-3.00043L166.22872,323.36708l27.39411-27.39452c-.68759-2.60974-1.594-5.00071-1.594-7.81361a32.00407,32.00407,0,1,1,32.00407,32.00455c-2.79723,0-5.20378-.89075-7.79786-1.594l-27.40974,27.41015ZM511.9758,303.06732a16.10336,16.10336,0,0,1-16.002,17.00242H463.86031a15.96956,15.96956,0,0,1-15.89265-15.00213C440.46671,175.5492,336.45348,70.53427,207.03078,63.53328a15.84486,15.84486,0,0,1-15.00191-15.90852V16.02652A16.09389,16.09389,0,0,1,209.031.02425C372.25491,8.61922,503.47472,139.841,511.9758,303.06732Zm-96.01221-.29692a16.21093,16.21093,0,0,1-16.11142,17.29934H367.645a16.06862,16.06862,0,0,1-15.89265-14.70522c-6.90712-77.01094-68.118-138.91037-144.92467-145.22376a15.94,15.94,0,0,1-14.79876-15.89289V112.13393a16.134,16.134,0,0,1,17.29908-16.096C319.45132,104.5391,407.55627,192.64538,415.96359,302.7704Z\"]\n};\nvar faSave = {\n prefix: 'fas',\n iconName: 'save',\n icon: [448, 512, [], \"f0c7\", \"M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z\"]\n};\nvar faSchool = {\n prefix: 'fas',\n iconName: 'school',\n icon: [640, 512, [], \"f549\", \"M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z\"]\n};\nvar faScrewdriver = {\n prefix: 'fas',\n iconName: 'screwdriver',\n icon: [512, 512, [], \"f54a\", \"M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z\"]\n};\nvar faScroll = {\n prefix: 'fas',\n iconName: 'scroll',\n icon: [640, 512, [], \"f70e\", \"M48 0C21.53 0 0 21.53 0 48v64c0 8.84 7.16 16 16 16h80V48C96 21.53 74.47 0 48 0zm208 412.57V352h288V96c0-52.94-43.06-96-96-96H111.59C121.74 13.41 128 29.92 128 48v368c0 38.87 34.65 69.65 74.75 63.12C234.22 474 256 444.46 256 412.57zM288 384v32c0 52.93-43.06 96-96 96h336c61.86 0 112-50.14 112-112 0-8.84-7.16-16-16-16H288z\"]\n};\nvar faSdCard = {\n prefix: 'fas',\n iconName: 'sd-card',\n icon: [384, 512, [], \"f7c2\", \"M320 0H128L0 128v320c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zM160 160h-48V64h48v96zm80 0h-48V64h48v96zm80 0h-48V64h48v96z\"]\n};\nvar faSearch = {\n prefix: 'fas',\n iconName: 'search',\n icon: [512, 512, [], \"f002\", \"M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z\"]\n};\nvar faSearchDollar = {\n prefix: 'fas',\n iconName: 'search-dollar',\n icon: [512, 512, [], \"f688\", \"M505.04 442.66l-99.71-99.69c-4.5-4.5-10.6-7-17-7h-16.3c27.6-35.3 44-79.69 44-127.99C416.03 93.09 322.92 0 208.02 0S0 93.09 0 207.98s93.11 207.98 208.02 207.98c48.3 0 92.71-16.4 128.01-44v16.3c0 6.4 2.5 12.5 7 17l99.71 99.69c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.59.1-33.99zm-297.02-90.7c-79.54 0-144-64.34-144-143.98 0-79.53 64.35-143.98 144-143.98 79.54 0 144 64.34 144 143.98 0 79.53-64.35 143.98-144 143.98zm27.11-152.54l-45.01-13.5c-5.16-1.55-8.77-6.78-8.77-12.73 0-7.27 5.3-13.19 11.8-13.19h28.11c4.56 0 8.96 1.29 12.82 3.72 3.24 2.03 7.36 1.91 10.13-.73l11.75-11.21c3.53-3.37 3.33-9.21-.57-12.14-9.1-6.83-20.08-10.77-31.37-11.35V112c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v16.12c-23.63.63-42.68 20.55-42.68 45.07 0 19.97 12.99 37.81 31.58 43.39l45.01 13.5c5.16 1.55 8.77 6.78 8.77 12.73 0 7.27-5.3 13.19-11.8 13.19h-28.1c-4.56 0-8.96-1.29-12.82-3.72-3.24-2.03-7.36-1.91-10.13.73l-11.75 11.21c-3.53 3.37-3.33 9.21.57 12.14 9.1 6.83 20.08 10.77 31.37 11.35V304c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-16.12c23.63-.63 42.68-20.54 42.68-45.07 0-19.97-12.99-37.81-31.59-43.39z\"]\n};\nvar faSearchLocation = {\n prefix: 'fas',\n iconName: 'search-location',\n icon: [512, 512, [], \"f689\", \"M505.04 442.66l-99.71-99.69c-4.5-4.5-10.6-7-17-7h-16.3c27.6-35.3 44-79.69 44-127.99C416.03 93.09 322.92 0 208.02 0S0 93.09 0 207.98s93.11 207.98 208.02 207.98c48.3 0 92.71-16.4 128.01-44v16.3c0 6.4 2.5 12.5 7 17l99.71 99.69c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.59.1-33.99zm-297.02-90.7c-79.54 0-144-64.34-144-143.98 0-79.53 64.35-143.98 144-143.98 79.54 0 144 64.34 144 143.98 0 79.53-64.35 143.98-144 143.98zm.02-239.96c-40.78 0-73.84 33.05-73.84 73.83 0 32.96 48.26 93.05 66.75 114.86a9.24 9.24 0 0 0 14.18 0c18.49-21.81 66.75-81.89 66.75-114.86 0-40.78-33.06-73.83-73.84-73.83zm0 96c-13.26 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faSearchMinus = {\n prefix: 'fas',\n iconName: 'search-minus',\n icon: [512, 512, [], \"f010\", \"M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z\"]\n};\nvar faSearchPlus = {\n prefix: 'fas',\n iconName: 'search-plus',\n icon: [512, 512, [], \"f00e\", \"M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z\"]\n};\nvar faSeedling = {\n prefix: 'fas',\n iconName: 'seedling',\n icon: [512, 512, [], \"f4d8\", \"M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z\"]\n};\nvar faServer = {\n prefix: 'fas',\n iconName: 'server',\n icon: [512, 512, [], \"f233\", \"M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z\"]\n};\nvar faShapes = {\n prefix: 'fas',\n iconName: 'shapes',\n icon: [512, 512, [], \"f61f\", \"M128,256A128,128,0,1,0,256,384,128,128,0,0,0,128,256Zm379-54.86L400.07,18.29a37.26,37.26,0,0,0-64.14,0L229,201.14C214.76,225.52,232.58,256,261.09,256H474.91C503.42,256,521.24,225.52,507,201.14ZM480,288H320a32,32,0,0,0-32,32V480a32,32,0,0,0,32,32H480a32,32,0,0,0,32-32V320A32,32,0,0,0,480,288Z\"]\n};\nvar faShare = {\n prefix: 'fas',\n iconName: 'share',\n icon: [512, 512, [], \"f064\", \"M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z\"]\n};\nvar faShareAlt = {\n prefix: 'fas',\n iconName: 'share-alt',\n icon: [448, 512, [], \"f1e0\", \"M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z\"]\n};\nvar faShareAltSquare = {\n prefix: 'fas',\n iconName: 'share-alt-square',\n icon: [448, 512, [], \"f1e1\", \"M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z\"]\n};\nvar faShareSquare = {\n prefix: 'fas',\n iconName: 'share-square',\n icon: [576, 512, [], \"f14d\", \"M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z\"]\n};\nvar faShekelSign = {\n prefix: 'fas',\n iconName: 'shekel-sign',\n icon: [448, 512, [], \"f20b\", \"M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z\"]\n};\nvar faShieldAlt = {\n prefix: 'fas',\n iconName: 'shield-alt',\n icon: [512, 512, [], \"f3ed\", \"M466.5 83.7l-192-80a48.15 48.15 0 0 0-36.9 0l-192 80C27.7 91.1 16 108.6 16 128c0 198.5 114.5 335.7 221.5 380.3 11.8 4.9 25.1 4.9 36.9 0C360.1 472.6 496 349.3 496 128c0-19.4-11.7-36.9-29.5-44.3zM256.1 446.3l-.1-381 175.9 73.3c-3.3 151.4-82.1 261.1-175.8 307.7z\"]\n};\nvar faShieldVirus = {\n prefix: 'fas',\n iconName: 'shield-virus',\n icon: [512, 512, [], \"e06c\", \"M224,192a16,16,0,1,0,16,16A16,16,0,0,0,224,192ZM466.5,83.68l-192-80A57.4,57.4,0,0,0,256.05,0a57.4,57.4,0,0,0-18.46,3.67l-192,80A47.93,47.93,0,0,0,16,128C16,326.5,130.5,463.72,237.5,508.32a48.09,48.09,0,0,0,36.91,0C360.09,472.61,496,349.3,496,128A48,48,0,0,0,466.5,83.68ZM384,256H371.88c-28.51,0-42.79,34.47-22.63,54.63l8.58,8.57a16,16,0,1,1-22.63,22.63l-8.57-8.58C306.47,313.09,272,327.37,272,355.88V368a16,16,0,0,1-32,0V355.88c0-28.51-34.47-42.79-54.63-22.63l-8.57,8.58a16,16,0,0,1-22.63-22.63l8.58-8.57c20.16-20.16,5.88-54.63-22.63-54.63H128a16,16,0,0,1,0-32h12.12c28.51,0,42.79-34.47,22.63-54.63l-8.58-8.57a16,16,0,0,1,22.63-22.63l8.57,8.58c20.16,20.16,54.63,5.88,54.63-22.63V112a16,16,0,0,1,32,0v12.12c0,28.51,34.47,42.79,54.63,22.63l8.57-8.58a16,16,0,0,1,22.63,22.63l-8.58,8.57C329.09,189.53,343.37,224,371.88,224H384a16,16,0,0,1,0,32Zm-96,0a16,16,0,1,0,16,16A16,16,0,0,0,288,256Z\"]\n};\nvar faShip = {\n prefix: 'fas',\n iconName: 'ship',\n icon: [640, 512, [], \"f21a\", \"M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z\"]\n};\nvar faShippingFast = {\n prefix: 'fas',\n iconName: 'shipping-fast',\n icon: [640, 512, [], \"f48b\", \"M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z\"]\n};\nvar faShoePrints = {\n prefix: 'fas',\n iconName: 'shoe-prints',\n icon: [640, 512, [], \"f54b\", \"M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z\"]\n};\nvar faShoppingBag = {\n prefix: 'fas',\n iconName: 'shopping-bag',\n icon: [448, 512, [], \"f290\", \"M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z\"]\n};\nvar faShoppingBasket = {\n prefix: 'fas',\n iconName: 'shopping-basket',\n icon: [576, 512, [], \"f291\", \"M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z\"]\n};\nvar faShoppingCart = {\n prefix: 'fas',\n iconName: 'shopping-cart',\n icon: [576, 512, [], \"f07a\", \"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\"]\n};\nvar faShower = {\n prefix: 'fas',\n iconName: 'shower',\n icon: [512, 512, [], \"f2cc\", \"M304,320a16,16,0,1,0,16,16A16,16,0,0,0,304,320Zm32-96a16,16,0,1,0,16,16A16,16,0,0,0,336,224Zm32,64a16,16,0,1,0-16-16A16,16,0,0,0,368,288Zm-32,32a16,16,0,1,0-16-16A16,16,0,0,0,336,320Zm-32-64a16,16,0,1,0,16,16A16,16,0,0,0,304,256Zm128-32a16,16,0,1,0-16-16A16,16,0,0,0,432,224Zm-48,16a16,16,0,1,0,16-16A16,16,0,0,0,384,240Zm-16-48a16,16,0,1,0,16,16A16,16,0,0,0,368,192Zm96,32a16,16,0,1,0,16,16A16,16,0,0,0,464,224Zm32-32a16,16,0,1,0,16,16A16,16,0,0,0,496,192Zm-64,64a16,16,0,1,0,16,16A16,16,0,0,0,432,256Zm-32,32a16,16,0,1,0,16,16A16,16,0,0,0,400,288Zm-64,64a16,16,0,1,0,16,16A16,16,0,0,0,336,352Zm-32,32a16,16,0,1,0,16,16A16,16,0,0,0,304,384Zm64-64a16,16,0,1,0,16,16A16,16,0,0,0,368,320Zm21.65-218.35-11.3-11.31a16,16,0,0,0-22.63,0L350.05,96A111.19,111.19,0,0,0,272,64c-19.24,0-37.08,5.3-52.9,13.85l-10-10A121.72,121.72,0,0,0,123.44,32C55.49,31.5,0,92.91,0,160.85V464a16,16,0,0,0,16,16H48a16,16,0,0,0,16-16V158.4c0-30.15,21-58.2,51-61.93a58.38,58.38,0,0,1,48.93,16.67l10,10C165.3,138.92,160,156.76,160,176a111.23,111.23,0,0,0,32,78.05l-5.66,5.67a16,16,0,0,0,0,22.62l11.3,11.31a16,16,0,0,0,22.63,0L389.65,124.28A16,16,0,0,0,389.65,101.65Z\"]\n};\nvar faShuttleVan = {\n prefix: 'fas',\n iconName: 'shuttle-van',\n icon: [640, 512, [], \"f5b6\", \"M628.88 210.65L494.39 49.27A48.01 48.01 0 0 0 457.52 32H32C14.33 32 0 46.33 0 64v288c0 17.67 14.33 32 32 32h32c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h32c17.67 0 32-14.33 32-32V241.38c0-11.23-3.94-22.1-11.12-30.73zM64 192V96h96v96H64zm96 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm160-240h-96V96h96v96zm160 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-96-240V96h66.02l80 96H384z\"]\n};\nvar faSign = {\n prefix: 'fas',\n iconName: 'sign',\n icon: [512, 512, [], \"f4d9\", \"M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z\"]\n};\nvar faSignInAlt = {\n prefix: 'fas',\n iconName: 'sign-in-alt',\n icon: [512, 512, [], \"f2f6\", \"M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z\"]\n};\nvar faSignLanguage = {\n prefix: 'fas',\n iconName: 'sign-language',\n icon: [448, 512, [], \"f2a7\", \"M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z\"]\n};\nvar faSignOutAlt = {\n prefix: 'fas',\n iconName: 'sign-out-alt',\n icon: [512, 512, [], \"f2f5\", \"M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z\"]\n};\nvar faSignal = {\n prefix: 'fas',\n iconName: 'signal',\n icon: [640, 512, [], \"f012\", \"M216 288h-48c-8.84 0-16 7.16-16 16v192c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V304c0-8.84-7.16-16-16-16zM88 384H40c-8.84 0-16 7.16-16 16v96c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16v-96c0-8.84-7.16-16-16-16zm256-192h-48c-8.84 0-16 7.16-16 16v288c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V208c0-8.84-7.16-16-16-16zm128-96h-48c-8.84 0-16 7.16-16 16v384c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112c0-8.84-7.16-16-16-16zM600 0h-48c-8.84 0-16 7.16-16 16v480c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z\"]\n};\nvar faSignature = {\n prefix: 'fas',\n iconName: 'signature',\n icon: [640, 512, [], \"f5b7\", \"M623.2 192c-51.8 3.5-125.7 54.7-163.1 71.5-29.1 13.1-54.2 24.4-76.1 24.4-22.6 0-26-16.2-21.3-51.9 1.1-8 11.7-79.2-42.7-76.1-25.1 1.5-64.3 24.8-169.5 126L192 182.2c30.4-75.9-53.2-151.5-129.7-102.8L7.4 116.3C0 121-2.2 130.9 2.5 138.4l17.2 27c4.7 7.5 14.6 9.7 22.1 4.9l58-38.9c18.4-11.7 40.7 7.2 32.7 27.1L34.3 404.1C27.5 421 37 448 64 448c8.3 0 16.5-3.2 22.6-9.4 42.2-42.2 154.7-150.7 211.2-195.8-2.2 28.5-2.1 58.9 20.6 83.8 15.3 16.8 37.3 25.3 65.5 25.3 35.6 0 68-14.6 102.3-30 33-14.8 99-62.6 138.4-65.8 8.5-.7 15.2-7.3 15.2-15.8v-32.1c.2-9.1-7.5-16.8-16.6-16.2z\"]\n};\nvar faSimCard = {\n prefix: 'fas',\n iconName: 'sim-card',\n icon: [384, 512, [], \"f7c4\", \"M0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V128L256 0H64C28.7 0 0 28.7 0 64zm224 192h-64v-64h64v64zm96 0h-64v-64h32c17.7 0 32 14.3 32 32v32zm-64 128h64v32c0 17.7-14.3 32-32 32h-32v-64zm-96 0h64v64h-64v-64zm-96 0h64v64H96c-17.7 0-32-14.3-32-32v-32zm0-96h256v64H64v-64zm0-64c0-17.7 14.3-32 32-32h32v64H64v-32z\"]\n};\nvar faSink = {\n prefix: 'fas',\n iconName: 'sink',\n icon: [512, 512, [], \"e06d\", \"M32,416a96,96,0,0,0,96,96H384a96,96,0,0,0,96-96V384H32ZM496,288H400V256h64a16,16,0,0,0,16-16V224a16,16,0,0,0-16-16H384a32,32,0,0,0-32,32v48H288V96a32,32,0,0,1,64,0v16a16,16,0,0,0,16,16h32a16,16,0,0,0,16-16V96A96.16,96.16,0,0,0,300.87,1.86C255.29,10.71,224,53.36,224,99.79V288H160V240a32,32,0,0,0-32-32H48a16,16,0,0,0-16,16v16a16,16,0,0,0,16,16h64v32H16A16,16,0,0,0,0,304v32a16,16,0,0,0,16,16H496a16,16,0,0,0,16-16V304A16,16,0,0,0,496,288Z\"]\n};\nvar faSitemap = {\n prefix: 'fas',\n iconName: 'sitemap',\n icon: [640, 512, [], \"f0e8\", \"M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z\"]\n};\nvar faSkating = {\n prefix: 'fas',\n iconName: 'skating',\n icon: [448, 512, [], \"f7c5\", \"M400 0c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm0 448c-8.8 0-16 7.2-16 16s-7.2 16-16 16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c26.5 0 48-21.5 48-48 0-8.8-7.2-16-16-16zm-282.2 8.6c-6.2 6.2-16.4 6.3-22.6 0l-67.9-67.9c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l67.9 67.9c9.4 9.4 21.7 14 34 14s24.6-4.7 33.9-14c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.3-22.7 0zm56.1-179.8l-93.7 93.7c-12.5 12.5-12.5 32.8 0 45.2 6.2 6.2 14.4 9.4 22.6 9.4s16.4-3.1 22.6-9.4l91.9-91.9-30.2-30.2c-5-5-9.4-10.7-13.2-16.8zM128 160h105.5l-20.1 17.2c-13.5 11.5-21.6 28.4-22.3 46.1-.7 17.8 6.1 35.2 18.7 47.7l78.2 78.2V432c0 17.7 14.3 32 32 32s32-14.3 32-32v-89.4c0-12.6-5.1-25-14.1-33.9l-61-61c.5-.4 1.2-.6 1.7-1.1l82.3-82.3c11.5-11.5 14.9-28.6 8.7-43.6-6.2-15-20.7-24.7-37-24.7H128c-17.7 0-32 14.3-32 32s14.3 32 32 32z\"]\n};\nvar faSkiing = {\n prefix: 'fas',\n iconName: 'skiing',\n icon: [512, 512, [], \"f7c9\", \"M432 96c26.5 0 48-21.5 48-48S458.5 0 432 0s-48 21.5-48 48 21.5 48 48 48zm73 356.1c-9.4-9.4-24.6-9.4-33.9 0-12.1 12.1-30.5 15.4-45.1 8.7l-135.8-70.2 49.2-73.8c12.7-19 10.2-44.5-6-60.6L293 215.7l-107-53.1c-2.9 19.9 3.4 40 17.7 54.4l75.1 75.2-45.9 68.8L35 258.7c-11.7-6-26.2-1.5-32.3 10.3-6.1 11.8-1.5 26.3 10.3 32.3l391.9 202.5c11.9 5.5 24.5 8.1 37.1 8.1 23.2 0 46-9 63-26 9.3-9.3 9.3-24.5 0-33.8zM120 91.6l-11.5 22.5c14.4 7.3 31.2 4.9 42.8-4.8l47.2 23.4c-.1.1-.1.2-.2.3l114.5 56.8 32.4-13 6.4 19.1c4 12.1 12.6 22 24 27.7l58.1 29c15.9 7.9 35 1.5 42.9-14.3 7.9-15.8 1.5-35-14.3-42.9l-52.1-26.1-17.1-51.2c-8.1-24.2-40.9-56.6-84.5-39.2l-81.2 32.5-62.5-31c.3-14.5-7.2-28.6-20.9-35.6l-11.1 21.7h-.2l-34.4-7c-1.8-.4-3.7.2-5 1.7-1.9 2.2-1.7 5.5.5 7.4l26.2 23z\"]\n};\nvar faSkiingNordic = {\n prefix: 'fas',\n iconName: 'skiing-nordic',\n icon: [576, 512, [], \"f7ca\", \"M336 96c26.5 0 48-21.5 48-48S362.5 0 336 0s-48 21.5-48 48 21.5 48 48 48zm216 320c-13.2 0-24 10.7-24 24 0 13.2-10.8 24-24 24h-69.5L460 285.6c11.7-4.7 20.1-16.2 20.1-29.6 0-17.7-14.3-32-32-32h-44L378 170.8c-12.5-25.5-35.5-44.2-61.8-50.9L245 98.7c-28.3-6.8-57.8-.5-80.8 17.1l-39.7 30.4c-14 10.7-16.7 30.8-5.9 44.9.7.9 1.7 1.3 2.4 2.1L66.9 464H24c-13.2 0-24 10.7-24 24s10.8 24 24 24h480c39.7 0 72-32.3 72-72 0-13.2-10.8-24-24-24zm-260.5 48h-96.9l43.1-91-22-13c-12.1-7.2-21.9-16.9-29.5-27.8L123.7 464H99.5l52.3-261.4c4.1-1 8.1-2.9 11.7-5.6l39.7-30.4c7.7-5.9 17.4-8 25.3-6.1l14.7 4.4-37.5 87.4c-12.6 29.5-1.3 64 26.3 80.3l85 50.2-25.5 81.2zm110.6 0h-43.6l23.6-75.5c5.9-20.8-2.9-43.1-21.6-54.4L299.3 298l31.3-78.3 20.3 41.4c8 16.3 24.9 26.9 43.1 26.9h33.3l-25.2 176z\"]\n};\nvar faSkull = {\n prefix: 'fas',\n iconName: 'skull',\n icon: [512, 512, [], \"f54c\", \"M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z\"]\n};\nvar faSkullCrossbones = {\n prefix: 'fas',\n iconName: 'skull-crossbones',\n icon: [448, 512, [], \"f714\", \"M439.15 453.06L297.17 384l141.99-69.06c7.9-3.95 11.11-13.56 7.15-21.46L432 264.85c-3.95-7.9-13.56-11.11-21.47-7.16L224 348.41 37.47 257.69c-7.9-3.95-17.51-.75-21.47 7.16L1.69 293.48c-3.95 7.9-.75 17.51 7.15 21.46L150.83 384 8.85 453.06c-7.9 3.95-11.11 13.56-7.15 21.47l14.31 28.63c3.95 7.9 13.56 11.11 21.47 7.15L224 419.59l186.53 90.72c7.9 3.95 17.51.75 21.47-7.15l14.31-28.63c3.95-7.91.74-17.52-7.16-21.47zM150 237.28l-5.48 25.87c-2.67 12.62 5.42 24.85 16.45 24.85h126.08c11.03 0 19.12-12.23 16.45-24.85l-5.5-25.87c41.78-22.41 70-62.75 70-109.28C368 57.31 303.53 0 224 0S80 57.31 80 128c0 46.53 28.22 86.87 70 109.28zM280 112c17.65 0 32 14.35 32 32s-14.35 32-32 32-32-14.35-32-32 14.35-32 32-32zm-112 0c17.65 0 32 14.35 32 32s-14.35 32-32 32-32-14.35-32-32 14.35-32 32-32z\"]\n};\nvar faSlash = {\n prefix: 'fas',\n iconName: 'slash',\n icon: [640, 512, [], \"f715\", \"M594.53 508.63L6.18 53.9c-6.97-5.42-8.23-15.47-2.81-22.45L23.01 6.18C28.43-.8 38.49-2.06 45.47 3.37L633.82 458.1c6.97 5.42 8.23 15.47 2.81 22.45l-19.64 25.27c-5.42 6.98-15.48 8.23-22.46 2.81z\"]\n};\nvar faSleigh = {\n prefix: 'fas',\n iconName: 'sleigh',\n icon: [640, 512, [], \"f7cc\", \"M612.7 350.7l-9.3-7.4c-6.9-5.5-17-4.4-22.5 2.5l-10 12.5c-5.5 6.9-4.4 17 2.5 22.5l9.3 7.4c5.9 4.7 9.2 11.7 9.2 19.2 0 13.6-11 24.6-24.6 24.6H48c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h516c39 0 73.7-29.3 75.9-68.3 1.4-23.8-8.7-46.3-27.2-61zM32 224c0 59.6 40.9 109.2 96 123.5V400h64v-48h192v48h64v-48c53 0 96-43 96-96v-96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-96v64c0 35.3-28.7 64-64 64h-20.7c-65.8 0-125.9-37.2-155.3-96-29.4-58.8-89.6-96-155.3-96H32C14.3 32 0 46.3 0 64s14.3 32 32 32v128z\"]\n};\nvar faSlidersH = {\n prefix: 'fas',\n iconName: 'sliders-h',\n icon: [512, 512, [], \"f1de\", \"M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z\"]\n};\nvar faSmile = {\n prefix: 'fas',\n iconName: 'smile',\n icon: [496, 512, [], \"f118\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z\"]\n};\nvar faSmileBeam = {\n prefix: 'fas',\n iconName: 'smile-beam',\n icon: [496, 512, [], \"f5b8\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM112 223.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zm250.8 122.8C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.3 24.6 20.5zm6.2-118.3l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.6 8.6-11 11.9-15.1 4.5z\"]\n};\nvar faSmileWink = {\n prefix: 'fas',\n iconName: 'smile-wink',\n icon: [496, 512, [], \"f4da\", \"M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm158.5 16.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.7 11.1-11.4 18.3-19.8 10.8l-9.7-8.5zM157.8 325.8C180.2 352.7 213 368 248 368s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.2 24.6 20.5C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11.2-36.7 24.6-20.4z\"]\n};\nvar faSmog = {\n prefix: 'fas',\n iconName: 'smog',\n icon: [640, 512, [], \"f75f\", \"M624 368H80c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zm-480 96H16c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h128c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zm416 0H224c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h336c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zM144 288h156.1c22.5 19.7 51.6 32 83.9 32s61.3-12.3 83.9-32H528c61.9 0 112-50.1 112-112S589.9 64 528 64c-18 0-34.7 4.6-49.7 12.1C454 31 406.8 0 352 0c-41 0-77.8 17.3-104 44.8C221.8 17.3 185 0 144 0 64.5 0 0 64.5 0 144s64.5 144 144 144z\"]\n};\nvar faSmoking = {\n prefix: 'fas',\n iconName: 'smoking',\n icon: [640, 512, [], \"f48d\", \"M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z\"]\n};\nvar faSmokingBan = {\n prefix: 'fas',\n iconName: 'smoking-ban',\n icon: [512, 512, [], \"f54d\", \"M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z\"]\n};\nvar faSms = {\n prefix: 'fas',\n iconName: 'sms',\n icon: [512, 512, [], \"f7cd\", \"M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7 1.3 3 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128.2 304H116c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h12.3c6 0 10.4-3.5 10.4-6.6 0-1.3-.8-2.7-2.1-3.8l-21.9-18.8c-8.5-7.2-13.3-17.5-13.3-28.1 0-21.3 19-38.6 42.4-38.6H156c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8h-12.3c-6 0-10.4 3.5-10.4 6.6 0 1.3.8 2.7 2.1 3.8l21.9 18.8c8.5 7.2 13.3 17.5 13.3 28.1.1 21.3-19 38.6-42.4 38.6zm191.8-8c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8v-68.2l-24.8 55.8c-2.9 5.9-11.4 5.9-14.3 0L224 227.8V296c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V192c0-8.8 7.2-16 16-16h16c6.1 0 11.6 3.4 14.3 8.8l17.7 35.4 17.7-35.4c2.7-5.4 8.3-8.8 14.3-8.8h16c8.8 0 16 7.2 16 16v104zm48.3 8H356c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h12.3c6 0 10.4-3.5 10.4-6.6 0-1.3-.8-2.7-2.1-3.8l-21.9-18.8c-8.5-7.2-13.3-17.5-13.3-28.1 0-21.3 19-38.6 42.4-38.6H396c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8h-12.3c-6 0-10.4 3.5-10.4 6.6 0 1.3.8 2.7 2.1 3.8l21.9 18.8c8.5 7.2 13.3 17.5 13.3 28.1.1 21.3-18.9 38.6-42.3 38.6z\"]\n};\nvar faSnowboarding = {\n prefix: 'fas',\n iconName: 'snowboarding',\n icon: [512, 512, [], \"f7ce\", \"M432 96c26.5 0 48-21.5 48-48S458.5 0 432 0s-48 21.5-48 48 21.5 48 48 48zm28.8 153.6c5.8 4.3 12.5 6.4 19.2 6.4 9.7 0 19.3-4.4 25.6-12.8 10.6-14.1 7.8-34.2-6.4-44.8l-111.4-83.5c-13.8-10.3-29.1-18.4-45.4-23.8l-63.7-21.2-26.1-52.1C244.7 2 225.5-4.4 209.7 3.5c-15.8 7.9-22.2 27.1-14.3 42.9l29.1 58.1c5.7 11.4 15.6 19.9 27.7 24l16.4 5.5-41.2 20.6c-21.8 10.9-35.4 32.8-35.4 57.2v53.1l-74.1 24.7c-16.8 5.6-25.8 23.7-20.2 40.5 1.7 5.2 4.9 9.4 8.7 12.9l-38.7-14.1c-9.7-3.5-17.4-10.6-21.8-20-5.6-12-19.9-17.2-31.9-11.6s-17.2 19.9-11.6 31.9c9.8 21 27.1 36.9 48.9 44.8l364.8 132.7c9.7 3.5 19.7 5.3 29.7 5.3 12.5 0 24.9-2.7 36.5-8.2 12-5.6 17.2-19.9 11.6-31.9S474 454.7 462 460.3c-9.3 4.4-19.8 4.8-29.5 1.3l-90.8-33.1c8.7-4.1 15.6-11.8 17.8-21.9l21.9-102c3.9-18.2-3.2-37.2-18.1-48.4l-52-39 66-30.5 83.5 62.9zm-144.4 51.7l-19.7 92c-1.5 7.1-.1 13.9 2.8 20l-169.4-61.6c2.7-.2 5.4-.4 8-1.3l85-28.4c19.6-6.5 32.8-24.8 32.8-45.5V256l60.5 45.3z\"]\n};\nvar faSnowflake = {\n prefix: 'fas',\n iconName: 'snowflake',\n icon: [448, 512, [], \"f2dc\", \"M440.3 345.2l-33.8-19.5 26-7c8.2-2.2 13.1-10.7 10.9-18.9l-4-14.9c-2.2-8.2-10.7-13.1-18.9-10.9l-70.8 19-63.9-37 63.8-36.9 70.8 19c8.2 2.2 16.7-2.7 18.9-10.9l4-14.9c2.2-8.2-2.7-16.7-10.9-18.9l-26-7 33.8-19.5c7.4-4.3 9.9-13.7 5.7-21.1L430.4 119c-4.3-7.4-13.7-9.9-21.1-5.7l-33.8 19.5 7-26c2.2-8.2-2.7-16.7-10.9-18.9l-14.9-4c-8.2-2.2-16.7 2.7-18.9 10.9l-19 70.8-62.8 36.2v-77.5l53.7-53.7c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-6.2-6.2-16.4-6.2-22.6 0L256 56.4V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v40.4l-19.7-19.7c-6.2-6.2-16.4-6.2-22.6 0L138.3 48c-6.3 6.2-6.3 16.4 0 22.6l53.7 53.7v77.5l-62.8-36.2-19-70.8c-2.2-8.2-10.7-13.1-18.9-10.9l-14.9 4c-8.2 2.2-13.1 10.7-10.9 18.9l7 26-33.8-19.5c-7.4-4.3-16.8-1.7-21.1 5.7L2.1 145.7c-4.3 7.4-1.7 16.8 5.7 21.1l33.8 19.5-26 7c-8.3 2.2-13.2 10.7-11 19l4 14.9c2.2 8.2 10.7 13.1 18.9 10.9l70.8-19 63.8 36.9-63.8 36.9-70.8-19c-8.2-2.2-16.7 2.7-18.9 10.9l-4 14.9c-2.2 8.2 2.7 16.7 10.9 18.9l26 7-33.8 19.6c-7.4 4.3-9.9 13.7-5.7 21.1l15.5 26.8c4.3 7.4 13.7 9.9 21.1 5.7l33.8-19.5-7 26c-2.2 8.2 2.7 16.7 10.9 18.9l14.9 4c8.2 2.2 16.7-2.7 18.9-10.9l19-70.8 62.8-36.2v77.5l-53.7 53.7c-6.3 6.2-6.3 16.4 0 22.6l11.3 11.3c6.2 6.2 16.4 6.2 22.6 0l19.7-19.7V496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-40.4l19.7 19.7c6.2 6.2 16.4 6.2 22.6 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6L256 387.7v-77.5l62.8 36.2 19 70.8c2.2 8.2 10.7 13.1 18.9 10.9l14.9-4c8.2-2.2 13.1-10.7 10.9-18.9l-7-26 33.8 19.5c7.4 4.3 16.8 1.7 21.1-5.7l15.5-26.8c4.3-7.3 1.8-16.8-5.6-21z\"]\n};\nvar faSnowman = {\n prefix: 'fas',\n iconName: 'snowman',\n icon: [512, 512, [], \"f7d0\", \"M510.9 152.3l-5.9-14.5c-3.3-8-12.6-11.9-20.8-8.7L456 140.6v-29c0-8.6-7.2-15.6-16-15.6h-16c-8.8 0-16 7-16 15.6v46.9c0 .5.3 1 .3 1.5l-56.4 23c-5.9-10-13.3-18.9-22-26.6 13.6-16.6 22-37.4 22-60.5 0-53-43-96-96-96s-96 43-96 96c0 23.1 8.5 43.9 22 60.5-8.7 7.7-16 16.6-22 26.6l-56.4-23c.1-.5.3-1 .3-1.5v-46.9C104 103 96.8 96 88 96H72c-8.8 0-16 7-16 15.6v29l-28.1-11.5c-8.2-3.2-17.5.7-20.8 8.7l-5.9 14.5c-3.3 8 .7 17.1 8.9 20.3l135.2 55.2c-.4 4-1.2 8-1.2 12.2 0 10.1 1.7 19.6 4.2 28.9C120.9 296.4 104 334.2 104 376c0 54 28.4 100.9 70.8 127.8 9.3 5.9 20.3 8.2 31.3 8.2h99.2c13.3 0 26.3-4.1 37.2-11.7 46.5-32.3 74.4-89.4 62.9-152.6-5.5-30.2-20.5-57.6-41.6-79 2.5-9.2 4.2-18.7 4.2-28.7 0-4.2-.8-8.1-1.2-12.2L502 172.6c8.1-3.1 12.1-12.2 8.9-20.3zM224 96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 272c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-88s-16-23.2-16-32 7.2-16 16-16 16 7.2 16 16-16 32-16 32zm32-56c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z\"]\n};\nvar faSnowplow = {\n prefix: 'fas',\n iconName: 'snowplow',\n icon: [640, 512, [], \"f7d2\", \"M120 376c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm238.6 49.4c-14.5-14.5-22.6-34.1-22.6-54.6V269.2c0-20.5 8.1-40.1 22.6-54.6l36.7-36.7c6.2-6.2 6.2-16.4 0-22.6l-22.6-22.6c-6.2-6.2-16.4-6.2-22.6 0l-36.7 36.7c-26.5 26.5-41.4 62.4-41.4 99.9V288h-64v-50.9c0-8.7-1.8-17.2-5.2-25.2L364.5 29.1C356.9 11.4 339.6 0 320.3 0H176c-26.5 0-48 21.5-48 48v112h-16c-26.5 0-48 21.5-48 48v91.2C26.3 317.2 0 355.4 0 400c0 61.9 50.1 112 112 112h256c61.9 0 112-50.1 112-112 0-17.3-4.2-33.4-11.2-48H512v18.7c0 37.5 14.9 73.4 41.4 99.9l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0l22.6-22.6c6.2-6.2 6.2-16.4 0-22.6l-36.7-36.7zM192 64h117.8l68.6 160H256l-64-64V64zm176 384H112c-26.5 0-48-21.5-48-48s21.5-48 48-48h256c26.5 0 48 21.5 48 48s-21.5 48-48 48z\"]\n};\nvar faSoap = {\n prefix: 'fas',\n iconName: 'soap',\n icon: [512, 512, [], \"e06e\", \"M416,192a95.42,95.42,0,0,1-30.94,70.21A95.8,95.8,0,0,1,352,448H160a96,96,0,0,1,0-192h88.91A95.3,95.3,0,0,1,224,192H96A96,96,0,0,0,0,288V416a96,96,0,0,0,96,96H416a96,96,0,0,0,96-96V288A96,96,0,0,0,416,192Zm-96,64a64,64,0,1,0-64-64A64,64,0,0,0,320,256ZM208,96a48,48,0,1,0-48-48A48,48,0,0,0,208,96ZM384,64a32,32,0,1,0-32-32A32,32,0,0,0,384,64ZM160,288a64,64,0,0,0,0,128H352a64,64,0,0,0,0-128Z\"]\n};\nvar faSocks = {\n prefix: 'fas',\n iconName: 'socks',\n icon: [512, 512, [], \"f696\", \"M214.66 311.01L288 256V96H128v176l-86.65 64.61c-39.4 29.56-53.86 84.42-29.21 127.06C30.39 495.25 63.27 512 96.08 512c20.03 0 40.25-6.25 57.52-19.2l21.86-16.39c-29.85-55.38-13.54-125.84 39.2-165.4zM288 32c0-11.05 3.07-21.3 8.02-30.38C293.4.92 290.85 0 288 0H160c-17.67 0-32 14.33-32 32v32h160V32zM480 0H352c-17.67 0-32 14.33-32 32v32h192V32c0-17.67-14.33-32-32-32zM320 272l-86.13 64.61c-39.4 29.56-53.86 84.42-29.21 127.06 18.25 31.58 50.61 48.33 83.42 48.33 20.03 0 40.25-6.25 57.52-19.2l115.2-86.4A127.997 127.997 0 0 0 512 304V96H320v176z\"]\n};\nvar faSolarPanel = {\n prefix: 'fas',\n iconName: 'solar-panel',\n icon: [640, 512, [], \"f5ba\", \"M431.98 448.01l-47.97.05V416h-128v32.21l-47.98.05c-8.82.01-15.97 7.16-15.98 15.99l-.05 31.73c-.01 8.85 7.17 16.03 16.02 16.02l223.96-.26c8.82-.01 15.97-7.16 15.98-15.98l.04-31.73c.01-8.85-7.17-16.03-16.02-16.02zM585.2 26.74C582.58 11.31 568.99 0 553.06 0H86.93C71 0 57.41 11.31 54.79 26.74-3.32 369.16.04 348.08.03 352c-.03 17.32 14.29 32 32.6 32h574.74c18.23 0 32.51-14.56 32.59-31.79.02-4.08 3.35 16.95-54.76-325.47zM259.83 64h120.33l9.77 96H250.06l9.77-96zm-75.17 256H71.09L90.1 208h105.97l-11.41 112zm16.29-160H98.24l16.29-96h96.19l-9.77 96zm32.82 160l11.4-112h149.65l11.4 112H233.77zm195.5-256h96.19l16.29 96H439.04l-9.77-96zm26.06 256l-11.4-112H549.9l19.01 112H455.33z\"]\n};\nvar faSort = {\n prefix: 'fas',\n iconName: 'sort',\n icon: [320, 512, [], \"f0dc\", \"M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z\"]\n};\nvar faSortAlphaDown = {\n prefix: 'fas',\n iconName: 'sort-alpha-down',\n icon: [448, 512, [], \"f15d\", \"M176 352h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm240-64H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 446.37V464a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 321.63V304a16 16 0 0 0-16-16zm31.06-85.38l-59.27-160A16 16 0 0 0 372.72 32h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 224h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 224H432a16 16 0 0 0 15.06-21.38zM335.61 144L352 96l16.39 48z\"]\n};\nvar faSortAlphaDownAlt = {\n prefix: 'fas',\n iconName: 'sort-alpha-down-alt',\n icon: [448, 512, [], \"f881\", \"M176 352h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm112-128h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 65.63V48a16 16 0 0 0-16-16H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 190.37V208a16 16 0 0 0 16 16zm159.06 234.62l-59.27-160A16 16 0 0 0 372.72 288h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 480h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 480H432a16 16 0 0 0 15.06-21.38zM335.61 400L352 352l16.39 48z\"]\n};\nvar faSortAlphaUp = {\n prefix: 'fas',\n iconName: 'sort-alpha-up',\n icon: [448, 512, [], \"f15e\", \"M16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160zm400 128H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 446.37V464a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 321.63V304a16 16 0 0 0-16-16zm31.06-85.38l-59.27-160A16 16 0 0 0 372.72 32h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 224h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 224H432a16 16 0 0 0 15.06-21.38zM335.61 144L352 96l16.39 48z\"]\n};\nvar faSortAlphaUpAlt = {\n prefix: 'fas',\n iconName: 'sort-alpha-up-alt',\n icon: [448, 512, [], \"f882\", \"M16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160zm272 64h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 65.63V48a16 16 0 0 0-16-16H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 190.37V208a16 16 0 0 0 16 16zm159.06 234.62l-59.27-160A16 16 0 0 0 372.72 288h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 480h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 480H432a16 16 0 0 0 15.06-21.38zM335.61 400L352 352l16.39 48z\"]\n};\nvar faSortAmountDown = {\n prefix: 'fas',\n iconName: 'sort-amount-down',\n icon: [512, 512, [], \"f160\", \"M304 416h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-128-64h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.37 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm256-192H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-64 128H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM496 32H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faSortAmountDownAlt = {\n prefix: 'fas',\n iconName: 'sort-amount-down-alt',\n icon: [512, 512, [], \"f884\", \"M240 96h64a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm0 128h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm256 192H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-256-64h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm-64 0h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.37 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352z\"]\n};\nvar faSortAmountUp = {\n prefix: 'fas',\n iconName: 'sort-amount-up',\n icon: [512, 512, [], \"f161\", \"M304 416h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.77 160 16 160zm416 0H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-64 128H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM496 32H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faSortAmountUpAlt = {\n prefix: 'fas',\n iconName: 'sort-amount-up-alt',\n icon: [512, 512, [], \"f885\", \"M240 96h64a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm0 128h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm256 192H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-256-64h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zM16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.39-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160z\"]\n};\nvar faSortDown = {\n prefix: 'fas',\n iconName: 'sort-down',\n icon: [320, 512, [], \"f0dd\", \"M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z\"]\n};\nvar faSortNumericDown = {\n prefix: 'fas',\n iconName: 'sort-numeric-down',\n icon: [448, 512, [], \"f162\", \"M304 96h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-16V48a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 96zm26.15 162.91a79 79 0 0 0-55 54.17c-14.25 51.05 21.21 97.77 68.85 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.76 86.25-61.61 86.25-132V336c-.02-51.21-48.4-91.34-101.85-77.09zM352 356a20 20 0 1 1 20-20 20 20 0 0 1-20 20zm-176-4h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352z\"]\n};\nvar faSortNumericDownAlt = {\n prefix: 'fas',\n iconName: 'sort-numeric-down-alt',\n icon: [448, 512, [], \"f886\", \"M176 352h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm224 64h-16V304a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 352h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM330.17 34.91a79 79 0 0 0-55 54.17c-14.27 51.05 21.19 97.77 68.83 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.77 86.25-61.61 86.25-132V112c-.02-51.21-48.4-91.34-101.85-77.09zM352 132a20 20 0 1 1 20-20 20 20 0 0 1-20 20z\"]\n};\nvar faSortNumericUp = {\n prefix: 'fas',\n iconName: 'sort-numeric-up',\n icon: [448, 512, [], \"f163\", \"M330.17 258.91a79 79 0 0 0-55 54.17c-14.27 51.05 21.19 97.77 68.83 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.76 86.25-61.61 86.25-132V336c-.02-51.21-48.4-91.34-101.85-77.09zM352 356a20 20 0 1 1 20-20 20 20 0 0 1-20 20zM304 96h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-16V48a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 96zM107.31 36.69a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31z\"]\n};\nvar faSortNumericUpAlt = {\n prefix: 'fas',\n iconName: 'sort-numeric-up-alt',\n icon: [448, 512, [], \"f887\", \"M107.31 36.69a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31zM400 416h-16V304a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 352h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM330.17 34.91a79 79 0 0 0-55 54.17c-14.27 51.05 21.19 97.77 68.83 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.77 86.25-61.61 86.25-132V112c-.02-51.21-48.4-91.34-101.85-77.09zM352 132a20 20 0 1 1 20-20 20 20 0 0 1-20 20z\"]\n};\nvar faSortUp = {\n prefix: 'fas',\n iconName: 'sort-up',\n icon: [320, 512, [], \"f0de\", \"M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z\"]\n};\nvar faSpa = {\n prefix: 'fas',\n iconName: 'spa',\n icon: [576, 512, [], \"f5bb\", \"M568.25 192c-29.04.13-135.01 6.16-213.84 83-33.12 29.63-53.36 63.3-66.41 94.86-13.05-31.56-33.29-65.23-66.41-94.86-78.83-76.84-184.8-82.87-213.84-83-4.41-.02-7.79 3.4-7.75 7.82.23 27.92 7.14 126.14 88.77 199.3C172.79 480.94 256 480 288 480s115.19.95 199.23-80.88c81.64-73.17 88.54-171.38 88.77-199.3.04-4.42-3.34-7.84-7.75-7.82zM287.98 302.6c12.82-18.85 27.6-35.78 44.09-50.52 19.09-18.61 39.58-33.3 60.26-45.18-16.44-70.5-51.72-133.05-96.73-172.22-4.11-3.58-11.02-3.58-15.14 0-44.99 39.14-80.27 101.63-96.74 172.07 20.37 11.7 40.5 26.14 59.22 44.39a282.768 282.768 0 0 1 45.04 51.46z\"]\n};\nvar faSpaceShuttle = {\n prefix: 'fas',\n iconName: 'space-shuttle',\n icon: [640, 512, [], \"f197\", \"M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z\"]\n};\nvar faSpellCheck = {\n prefix: 'fas',\n iconName: 'spell-check',\n icon: [576, 512, [], \"f891\", \"M272 256h91.36c43.2 0 82-32.2 84.51-75.34a79.82 79.82 0 0 0-25.26-63.07 79.81 79.81 0 0 0 9.06-44.91C427.9 30.57 389.3 0 347 0h-75a16 16 0 0 0-16 16v224a16 16 0 0 0 16 16zm40-200h40a24 24 0 0 1 0 48h-40zm0 96h56a24 24 0 0 1 0 48h-56zM155.12 22.25A32 32 0 0 0 124.64 0H99.36a32 32 0 0 0-30.48 22.25L.59 235.73A16 16 0 0 0 16 256h24.93a16 16 0 0 0 15.42-11.73L68.29 208h87.42l11.94 36.27A16 16 0 0 0 183.07 256H208a16 16 0 0 0 15.42-20.27zM89.37 144L112 75.3l22.63 68.7zm482 132.48l-45.21-45.3a15.88 15.88 0 0 0-22.59 0l-151.5 151.5-55.41-55.5a15.88 15.88 0 0 0-22.59 0l-45.3 45.3a16 16 0 0 0 0 22.59l112 112.21a15.89 15.89 0 0 0 22.6 0l208-208.21a16 16 0 0 0-.02-22.59z\"]\n};\nvar faSpider = {\n prefix: 'fas',\n iconName: 'spider',\n icon: [576, 512, [], \"f717\", \"M151.17 167.35L177.1 176h4.67l5.22-26.12c.72-3.58 1.8-7.58 3.21-11.79l-20.29-40.58 23.8-71.39c2.79-8.38-1.73-17.44-10.12-20.24L168.42.82c-8.38-2.8-17.45 1.73-20.24 10.12l-25.89 77.68a32.04 32.04 0 0 0 1.73 24.43l27.15 54.3zm422.14 182.03l-52.75-79.12a32.002 32.002 0 0 0-26.62-14.25H416l68.99-24.36a32.03 32.03 0 0 0 16.51-12.61l53.6-80.41c4.9-7.35 2.91-17.29-4.44-22.19l-13.31-8.88c-7.35-4.9-17.29-2.91-22.19 4.44l-50.56 75.83L404.1 208H368l-10.37-51.85C355.44 145.18 340.26 96 288 96c-52.26 0-67.44 49.18-69.63 60.15L208 208h-36.1l-60.49-20.17L60.84 112c-4.9-7.35-14.83-9.34-22.19-4.44l-13.31 8.88c-7.35 4.9-9.34 14.83-4.44 22.19l53.6 80.41a32.03 32.03 0 0 0 16.51 12.61L160 256H82.06a32.02 32.02 0 0 0-26.63 14.25L2.69 349.38c-4.9 7.35-2.92 17.29 4.44 22.19l13.31 8.88c7.35 4.9 17.29 2.91 22.19-4.44l48-72h47.06l-60.83 97.33A31.988 31.988 0 0 0 72 418.3V496c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-73.11l74.08-118.53c-1.01 14.05-2.08 28.11-2.08 42.21C192 399.64 232.76 448 288 448s96-48.36 96-101.43c0-14.1-1.08-28.16-2.08-42.21L456 422.89V496c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-77.71c0-6-1.69-11.88-4.86-16.96L438.31 304h47.06l48 72c4.9 7.35 14.84 9.34 22.19 4.44l13.31-8.88c7.36-4.9 9.34-14.83 4.44-22.18zM406.09 97.51l-20.29 40.58c1.41 4.21 2.49 8.21 3.21 11.79l5.22 26.12h4.67l25.93-8.65 27.15-54.3a31.995 31.995 0 0 0 1.73-24.43l-25.89-77.68C425.03 2.56 415.96-1.98 407.58.82l-15.17 5.06c-8.38 2.8-12.91 11.86-10.12 20.24l23.8 71.39z\"]\n};\nvar faSpinner = {\n prefix: 'fas',\n iconName: 'spinner',\n icon: [512, 512, [], \"f110\", \"M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z\"]\n};\nvar faSplotch = {\n prefix: 'fas',\n iconName: 'splotch',\n icon: [512, 512, [], \"f5bc\", \"M472.29 195.89l-67.06-22.95c-19.28-6.6-33.54-20.92-38.14-38.3L351.1 74.19c-11.58-43.77-76.57-57.13-109.98-22.62l-46.14 47.67c-13.26 13.71-33.54 20.93-54.2 19.31l-71.88-5.62c-52.05-4.07-86.93 44.88-59.03 82.83l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24L24.62 355.4c-20.59 41.25 22.84 84.87 73.49 73.81l69.96-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101.04 7.57 104.45-37.22l4.7-61.86c1.35-17.79 12.8-33.86 30.63-42.99l62-31.74c44.88-22.96 39.59-80.17-8.95-96.79z\"]\n};\nvar faSprayCan = {\n prefix: 'fas',\n iconName: 'spray-can',\n icon: [512, 512, [], \"f5bd\", \"M224 32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96h128V32zm256 96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-256 32H96c-53.02 0-96 42.98-96 96v224c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V256c0-53.02-42.98-96-96-96zm-64 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zM480 96c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm-96 32c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-96-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 0c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 192c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z\"]\n};\nvar faSquare = {\n prefix: 'fas',\n iconName: 'square',\n icon: [448, 512, [], \"f0c8\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z\"]\n};\nvar faSquareFull = {\n prefix: 'fas',\n iconName: 'square-full',\n icon: [512, 512, [], \"f45c\", \"M512 512H0V0h512v512z\"]\n};\nvar faSquareRootAlt = {\n prefix: 'fas',\n iconName: 'square-root-alt',\n icon: [576, 512, [], \"f698\", \"M571.31 251.31l-22.62-22.62c-6.25-6.25-16.38-6.25-22.63 0L480 274.75l-46.06-46.06c-6.25-6.25-16.38-6.25-22.63 0l-22.62 22.62c-6.25 6.25-6.25 16.38 0 22.63L434.75 320l-46.06 46.06c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0L480 365.25l46.06 46.06c6.25 6.25 16.38 6.25 22.63 0l22.62-22.62c6.25-6.25 6.25-16.38 0-22.63L525.25 320l46.06-46.06c6.25-6.25 6.25-16.38 0-22.63zM552 0H307.65c-14.54 0-27.26 9.8-30.95 23.87l-84.79 322.8-58.41-106.1A32.008 32.008 0 0 0 105.47 224H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h43.62l88.88 163.73C168.99 503.5 186.3 512 204.94 512c17.27 0 44.44-9 54.28-41.48L357.03 96H552c13.25 0 24-10.75 24-24V24c0-13.26-10.75-24-24-24z\"]\n};\nvar faStamp = {\n prefix: 'fas',\n iconName: 'stamp',\n icon: [512, 512, [], \"f5bf\", \"M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z\"]\n};\nvar faStar = {\n prefix: 'fas',\n iconName: 'star',\n icon: [576, 512, [], \"f005\", \"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"]\n};\nvar faStarAndCrescent = {\n prefix: 'fas',\n iconName: 'star-and-crescent',\n icon: [512, 512, [], \"f699\", \"M340.47 466.36c-1.45 0-6.89.46-9.18.46-116.25 0-210.82-94.57-210.82-210.82S215.04 45.18 331.29 45.18c2.32 0 7.7.46 9.18.46 7.13 0 13.33-5.03 14.75-12.07 1.46-7.25-2.55-14.49-9.47-17.09C316.58 5.54 286.39 0 256 0 114.84 0 0 114.84 0 256s114.84 256 256 256c30.23 0 60.28-5.49 89.32-16.32 5.96-2.02 10.28-7.64 10.28-14.26 0-8.09-6.39-15.06-15.13-15.06zm162.99-252.5l-76.38-11.1-34.16-69.21c-1.83-3.7-5.38-5.55-8.93-5.55s-7.1 1.85-8.93 5.55l-34.16 69.21-76.38 11.1c-8.17 1.18-11.43 11.22-5.52 16.99l55.27 53.87-13.05 76.07c-1.11 6.44 4.01 11.66 9.81 11.66 1.53 0 3.11-.36 4.64-1.17L384 335.37l68.31 35.91c1.53.8 3.11 1.17 4.64 1.17 5.8 0 10.92-5.23 9.81-11.66l-13.05-76.07 55.27-53.87c5.91-5.77 2.65-15.81-5.52-16.99z\"]\n};\nvar faStarHalf = {\n prefix: 'fas',\n iconName: 'star-half',\n icon: [576, 512, [], \"f089\", \"M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z\"]\n};\nvar faStarHalfAlt = {\n prefix: 'fas',\n iconName: 'star-half-alt',\n icon: [536, 512, [], \"f5c0\", \"M508.55 171.51L362.18 150.2 296.77 17.81C290.89 5.98 279.42 0 267.95 0c-11.4 0-22.79 5.9-28.69 17.81l-65.43 132.38-146.38 21.29c-26.25 3.8-36.77 36.09-17.74 54.59l105.89 103-25.06 145.48C86.98 495.33 103.57 512 122.15 512c4.93 0 10-1.17 14.87-3.75l130.95-68.68 130.94 68.7c4.86 2.55 9.92 3.71 14.83 3.71 18.6 0 35.22-16.61 31.66-37.4l-25.03-145.49 105.91-102.98c19.04-18.5 8.52-50.8-17.73-54.6zm-121.74 123.2l-18.12 17.62 4.28 24.88 19.52 113.45-102.13-53.59-22.38-11.74.03-317.19 51.03 103.29 11.18 22.63 25.01 3.64 114.23 16.63-82.65 80.38z\"]\n};\nvar faStarOfDavid = {\n prefix: 'fas',\n iconName: 'star-of-david',\n icon: [464, 512, [], \"f69a\", \"M405.68 256l53.21-89.39C473.3 142.4 455.48 112 426.88 112H319.96l-55.95-93.98C256.86 6.01 244.43 0 232 0s-24.86 6.01-32.01 18.02L144.04 112H37.11c-28.6 0-46.42 30.4-32.01 54.61L58.32 256 5.1 345.39C-9.31 369.6 8.51 400 37.11 400h106.93l55.95 93.98C207.14 505.99 219.57 512 232 512s24.86-6.01 32.01-18.02L319.96 400h106.93c28.6 0 46.42-30.4 32.01-54.61L405.68 256zm-12.78-88l-19.8 33.26L353.3 168h39.6zm-52.39 88l-52.39 88H175.88l-52.39-88 52.38-88h112.25l52.39 88zM232 73.72L254.79 112h-45.57L232 73.72zM71.1 168h39.6l-19.8 33.26L71.1 168zm0 176l19.8-33.26L110.7 344H71.1zM232 438.28L209.21 400h45.57L232 438.28zM353.29 344l19.8-33.26L392.9 344h-39.61z\"]\n};\nvar faStarOfLife = {\n prefix: 'fas',\n iconName: 'star-of-life',\n icon: [480, 512, [], \"f621\", \"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"]\n};\nvar faStepBackward = {\n prefix: 'fas',\n iconName: 'step-backward',\n icon: [448, 512, [], \"f048\", \"M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z\"]\n};\nvar faStepForward = {\n prefix: 'fas',\n iconName: 'step-forward',\n icon: [448, 512, [], \"f051\", \"M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z\"]\n};\nvar faStethoscope = {\n prefix: 'fas',\n iconName: 'stethoscope',\n icon: [512, 512, [], \"f0f1\", \"M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z\"]\n};\nvar faStickyNote = {\n prefix: 'fas',\n iconName: 'sticky-note',\n icon: [448, 512, [], \"f249\", \"M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z\"]\n};\nvar faStop = {\n prefix: 'fas',\n iconName: 'stop',\n icon: [448, 512, [], \"f04d\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z\"]\n};\nvar faStopCircle = {\n prefix: 'fas',\n iconName: 'stop-circle',\n icon: [512, 512, [], \"f28d\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z\"]\n};\nvar faStopwatch = {\n prefix: 'fas',\n iconName: 'stopwatch',\n icon: [448, 512, [], \"f2f2\", \"M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z\"]\n};\nvar faStopwatch20 = {\n prefix: 'fas',\n iconName: 'stopwatch-20',\n icon: [448, 512, [], \"e06f\", \"M398.5,190.91l.59-.61,26.59-26.58a16,16,0,0,0,0-22.63L403,118.41a16,16,0,0,0-22.63,0l-24.68,24.68A206.68,206.68,0,0,0,256,98.5V64h32a16,16,0,0,0,16-16V16A16,16,0,0,0,288,0H160a16.05,16.05,0,0,0-16,16V48a16.05,16.05,0,0,0,16,16h32V98.5A207.92,207.92,0,0,0,16.09,297.57C12.64,411.5,106.76,510.22,220.72,512,337.13,513.77,432,420,432,304A206,206,0,0,0,398.5,190.91ZM204.37,377.55a8.2,8.2,0,0,1,8.32,8.07v22.31a8.2,8.2,0,0,1-8.32,8.07H121.52a16.46,16.46,0,0,1-16.61-17.62c2.78-35.22,14.67-57.41,38.45-91.37,20.42-29.19,27.1-37.32,27.1-62.34,0-16.92-1.79-24.27-12.21-24.27-9.39,0-12.69,7.4-12.69,22.68v5.23a8.2,8.2,0,0,1-8.33,8.07h-24.9a8.2,8.2,0,0,1-8.33-8.07v-4.07c0-27.3,8.48-60.24,56.43-60.24,43,0,55.57,25.85,55.57,61,0,35.58-12.44,51.21-34.35,81.31-11.56,15-24.61,35.57-26.41,51.2ZM344,352.32c0,35.16-12.3,63.68-57.23,63.68C243.19,416,232,386.48,232,352.55V247.22c0-40.73,19.58-63.22,56.2-63.22C325,184,344,206.64,344,245.3ZM287.87,221.73c-9.41,0-13.23,7.5-13.23,20V357.68c0,13.11,3.59,20.59,13.23,20.59s13-8,13-21.27V241.06C300.89,229.79,297.88,221.73,287.87,221.73Z\"]\n};\nvar faStore = {\n prefix: 'fas',\n iconName: 'store',\n icon: [616, 512, [], \"f54e\", \"M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z\"]\n};\nvar faStoreAlt = {\n prefix: 'fas',\n iconName: 'store-alt',\n icon: [640, 512, [], \"f54f\", \"M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z\"]\n};\nvar faStoreAltSlash = {\n prefix: 'fas',\n iconName: 'store-alt-slash',\n icon: [640, 512, [], \"e070\", \"M17.89,123.62,5.51,142.2c-14.2,21.3,1,49.8,26.59,49.8h74.26ZM576,413.42V224H512V364L384,265V224H330.92l-41.4-32H608c25.5,0,40.7-28.5,26.59-49.8l-85.29-128A32.18,32.18,0,0,0,522.6,0H117.42A31.87,31.87,0,0,0,90.81,14.2l-10.66,16L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.46A16,16,0,0,0,6.18,53.91L594.53,508.63A16,16,0,0,0,617,505.81l19.64-25.26a16,16,0,0,0-2.81-22.45ZM320,384H128V224H64V480a32,32,0,0,0,32,32H352a32,32,0,0,0,32-32V406.59l-64-49.47Z\"]\n};\nvar faStoreSlash = {\n prefix: 'fas',\n iconName: 'store-slash',\n icon: [640, 512, [], \"e071\", \"M121.51,384V284.2a119.43,119.43,0,0,1-28,3.8,123.46,123.46,0,0,1-17.1-1.2,114.88,114.88,0,0,1-15.58-3.6V480c0,17.7,13.59,32,30.4,32H505.75L348.42,384Zm-28-128.09c25.1,0,47.29-10.72,64-27.24L24,120.05c-30.52,53.39-2.45,126.53,56.49,135A95.68,95.68,0,0,0,93.48,255.91ZM602.13,458.09,547.2,413.41V283.2a93.5,93.5,0,0,1-15.57,3.6,127.31,127.31,0,0,1-17.29,1.2,114.89,114.89,0,0,1-28-3.8v79.68L348.52,251.77a88.06,88.06,0,0,0,25.41,4.14c28.11,0,53-13,70.11-33.11,17.19,20.11,42.08,33.11,70.11,33.11a94.31,94.31,0,0,0,13-.91c59.66-8.41,88-82.8,56.06-136.4L521.55,15A30.1,30.1,0,0,0,495.81,0H112A30.11,30.11,0,0,0,86.27,15L76.88,30.78,43.19,3.38A14.68,14.68,0,0,0,21.86,6.19L3.2,31.45A16.58,16.58,0,0,0,5.87,53.91L564.81,508.63a14.69,14.69,0,0,0,21.33-2.82l18.66-25.26A16.58,16.58,0,0,0,602.13,458.09Z\"]\n};\nvar faStream = {\n prefix: 'fas',\n iconName: 'stream',\n icon: [512, 512, [], \"f550\", \"M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z\"]\n};\nvar faStreetView = {\n prefix: 'fas',\n iconName: 'street-view',\n icon: [512, 512, [], \"f21d\", \"M367.9 329.76c-4.62 5.3-9.78 10.1-15.9 13.65v22.94c66.52 9.34 112 28.05 112 49.65 0 30.93-93.12 56-208 56S48 446.93 48 416c0-21.6 45.48-40.3 112-49.65v-22.94c-6.12-3.55-11.28-8.35-15.9-13.65C58.87 345.34 0 378.05 0 416c0 53.02 114.62 96 256 96s256-42.98 256-96c0-37.95-58.87-70.66-144.1-86.24zM256 128c35.35 0 64-28.65 64-64S291.35 0 256 0s-64 28.65-64 64 28.65 64 64 64zm-64 192v96c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-96c17.67 0 32-14.33 32-32v-96c0-26.51-21.49-48-48-48h-11.8c-11.07 5.03-23.26 8-36.2 8s-25.13-2.97-36.2-8H208c-26.51 0-48 21.49-48 48v96c0 17.67 14.33 32 32 32z\"]\n};\nvar faStrikethrough = {\n prefix: 'fas',\n iconName: 'strikethrough',\n icon: [512, 512, [], \"f0cc\", \"M496 224H293.9l-87.17-26.83A43.55 43.55 0 0 1 219.55 112h66.79A49.89 49.89 0 0 1 331 139.58a16 16 0 0 0 21.46 7.15l42.94-21.47a16 16 0 0 0 7.16-21.46l-.53-1A128 128 0 0 0 287.51 32h-68a123.68 123.68 0 0 0-123 135.64c2 20.89 10.1 39.83 21.78 56.36H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h480a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-180.24 96A43 43 0 0 1 336 356.45 43.59 43.59 0 0 1 292.45 400h-66.79A49.89 49.89 0 0 1 181 372.42a16 16 0 0 0-21.46-7.15l-42.94 21.47a16 16 0 0 0-7.16 21.46l.53 1A128 128 0 0 0 224.49 480h68a123.68 123.68 0 0 0 123-135.64 114.25 114.25 0 0 0-5.34-24.36z\"]\n};\nvar faStroopwafel = {\n prefix: 'fas',\n iconName: 'stroopwafel',\n icon: [512, 512, [], \"f551\", \"M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z\"]\n};\nvar faSubscript = {\n prefix: 'fas',\n iconName: 'subscript',\n icon: [512, 512, [], \"f12c\", \"M496 448h-16V304a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 400 352h16v96h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM336 64h-67a16 16 0 0 0-13.14 6.87l-79.9 115-79.9-115A16 16 0 0 0 83 64H16A16 16 0 0 0 0 80v48a16 16 0 0 0 16 16h33.48l77.81 112-77.81 112H16a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h67a16 16 0 0 0 13.14-6.87l79.9-115 79.9 115A16 16 0 0 0 269 448h67a16 16 0 0 0 16-16v-48a16 16 0 0 0-16-16h-33.48l-77.81-112 77.81-112H336a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16z\"]\n};\nvar faSubway = {\n prefix: 'fas',\n iconName: 'subway',\n icon: [448, 512, [], \"f239\", \"M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z\"]\n};\nvar faSuitcase = {\n prefix: 'fas',\n iconName: 'suitcase',\n icon: [512, 512, [], \"f0f2\", \"M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z\"]\n};\nvar faSuitcaseRolling = {\n prefix: 'fas',\n iconName: 'suitcase-rolling',\n icon: [384, 512, [], \"f5c1\", \"M336 160H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h16v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h128v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h16c26.51 0 48-21.49 48-48V208c0-26.51-21.49-48-48-48zm-16 216c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zM144 48h96v80h48V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v80h48V48z\"]\n};\nvar faSun = {\n prefix: 'fas',\n iconName: 'sun',\n icon: [512, 512, [], \"f185\", \"M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm246.4 80.5l-94.7-47.3 33.5-100.4c4.5-13.6-8.4-26.5-21.9-21.9l-100.4 33.5-47.4-94.8c-6.4-12.8-24.6-12.8-31 0l-47.3 94.7L92.7 70.8c-13.6-4.5-26.5 8.4-21.9 21.9l33.5 100.4-94.7 47.4c-12.8 6.4-12.8 24.6 0 31l94.7 47.3-33.5 100.5c-4.5 13.6 8.4 26.5 21.9 21.9l100.4-33.5 47.3 94.7c6.4 12.8 24.6 12.8 31 0l47.3-94.7 100.4 33.5c13.6 4.5 26.5-8.4 21.9-21.9l-33.5-100.4 94.7-47.3c13-6.5 13-24.7.2-31.1zm-155.9 106c-49.9 49.9-131.1 49.9-181 0-49.9-49.9-49.9-131.1 0-181 49.9-49.9 131.1-49.9 181 0 49.9 49.9 49.9 131.1 0 181z\"]\n};\nvar faSuperscript = {\n prefix: 'fas',\n iconName: 'superscript',\n icon: [512, 512, [], \"f12b\", \"M496 160h-16V16a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 400 64h16v96h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM336 64h-67a16 16 0 0 0-13.14 6.87l-79.9 115-79.9-115A16 16 0 0 0 83 64H16A16 16 0 0 0 0 80v48a16 16 0 0 0 16 16h33.48l77.81 112-77.81 112H16a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h67a16 16 0 0 0 13.14-6.87l79.9-115 79.9 115A16 16 0 0 0 269 448h67a16 16 0 0 0 16-16v-48a16 16 0 0 0-16-16h-33.48l-77.81-112 77.81-112H336a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16z\"]\n};\nvar faSurprise = {\n prefix: 'fas',\n iconName: 'surprise',\n icon: [496, 512, [], \"f5c2\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm112 208c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm80-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faSwatchbook = {\n prefix: 'fas',\n iconName: 'swatchbook',\n icon: [512, 512, [], \"f5c3\", \"M434.66,167.71h0L344.5,77.36a31.83,31.83,0,0,0-45-.07h0l-.07.07L224,152.88V424L434.66,212.9A32,32,0,0,0,434.66,167.71ZM480,320H373.09L186.68,506.51c-2.06,2.07-4.5,3.58-6.68,5.49H480a32,32,0,0,0,32-32V352A32,32,0,0,0,480,320ZM192,32A32,32,0,0,0,160,0H32A32,32,0,0,0,0,32V416a96,96,0,0,0,192,0ZM96,440a24,24,0,1,1,24-24A24,24,0,0,1,96,440Zm32-184H64V192h64Zm0-128H64V64h64Z\"]\n};\nvar faSwimmer = {\n prefix: 'fas',\n iconName: 'swimmer',\n icon: [640, 512, [], \"f5c4\", \"M189.61 310.58c3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c16.02-14.77 34.5-22.58 53.46-22.58h16.3c18.96 0 37.45 7.81 53.46 22.58 3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c14.86-13.71 31.88-21.12 49.39-22.16l-112.84-80.6 18-12.86c3.64-2.58 8.28-3.52 12.62-2.61l100.35 21.53c25.91 5.53 51.44-10.97 57-36.88 5.55-25.92-10.95-51.44-36.88-57L437.68 98.47c-30.73-6.58-63.02.12-88.56 18.38l-80.02 57.17c-10.38 7.39-19.36 16.44-26.72 26.94L173.75 299c5.47 3.23 10.82 6.93 15.86 11.58zM624 352h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 343.58 442.04 352 416 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 343.58 250.04 352 224 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 343.58 58.04 352 32 352H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-512-96c44.18 0 80-35.82 80-80s-35.82-80-80-80-80 35.82-80 80 35.82 80 80 80z\"]\n};\nvar faSwimmingPool = {\n prefix: 'fas',\n iconName: 'swimming-pool',\n icon: [640, 512, [], \"f5c5\", \"M624 416h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 407.58 442.04 416 416 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 407.58 250.04 416 224 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 407.58 58.04 416 32 416H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-400-32v-96h192v96c19.12 0 30.86-6.16 34.39-9.42 9.17-8.46 19.2-14.34 29.61-18.07V128c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v96H224v-96c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v228.5c10.41 3.73 20.44 9.62 29.61 18.07 3.53 3.27 15.27 9.43 34.39 9.43z\"]\n};\nvar faSynagogue = {\n prefix: 'fas',\n iconName: 'synagogue',\n icon: [640, 512, [], \"f69b\", \"M70 196.51L6.67 268.29A26.643 26.643 0 0 0 0 285.93V512h128V239.58l-38-43.07c-5.31-6.01-14.69-6.01-20 0zm563.33 71.78L570 196.51c-5.31-6.02-14.69-6.02-20 0l-38 43.07V512h128V285.93c0-6.5-2.37-12.77-6.67-17.64zM339.99 7.01c-11.69-9.35-28.29-9.35-39.98 0l-128 102.4A32.005 32.005 0 0 0 160 134.4V512h96v-92.57c0-31.88 21.78-61.43 53.25-66.55C349.34 346.35 384 377.13 384 416v96h96V134.4c0-9.72-4.42-18.92-12.01-24.99l-128-102.4zm52.07 215.55c1.98 3.15-.29 7.24-4 7.24h-38.94L324 269.79c-1.85 2.95-6.15 2.95-8 0l-25.12-39.98h-38.94c-3.72 0-5.98-4.09-4-7.24l19.2-30.56-19.2-30.56c-1.98-3.15.29-7.24 4-7.24h38.94l25.12-40c1.85-2.95 6.15-2.95 8 0l25.12 39.98h38.95c3.71 0 5.98 4.09 4 7.24L372.87 192l19.19 30.56z\"]\n};\nvar faSync = {\n prefix: 'fas',\n iconName: 'sync',\n icon: [512, 512, [], \"f021\", \"M440.65 12.57l4 82.77A247.16 247.16 0 0 0 255.83 8C134.73 8 33.91 94.92 12.29 209.82A12 12 0 0 0 24.09 224h49.05a12 12 0 0 0 11.67-9.26 175.91 175.91 0 0 1 317-56.94l-101.46-4.86a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12H500a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12h-47.37a12 12 0 0 0-11.98 12.57zM255.83 432a175.61 175.61 0 0 1-146-77.8l101.8 4.87a12 12 0 0 0 12.57-12v-47.4a12 12 0 0 0-12-12H12a12 12 0 0 0-12 12V500a12 12 0 0 0 12 12h47.35a12 12 0 0 0 12-12.6l-4.15-82.57A247.17 247.17 0 0 0 255.83 504c121.11 0 221.93-86.92 243.55-201.82a12 12 0 0 0-11.8-14.18h-49.05a12 12 0 0 0-11.67 9.26A175.86 175.86 0 0 1 255.83 432z\"]\n};\nvar faSyncAlt = {\n prefix: 'fas',\n iconName: 'sync-alt',\n icon: [512, 512, [], \"f2f1\", \"M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z\"]\n};\nvar faSyringe = {\n prefix: 'fas',\n iconName: 'syringe',\n icon: [512, 512, [], \"f48e\", \"M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z\"]\n};\nvar faTable = {\n prefix: 'fas',\n iconName: 'table',\n icon: [512, 512, [], \"f0ce\", \"M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z\"]\n};\nvar faTableTennis = {\n prefix: 'fas',\n iconName: 'table-tennis',\n icon: [512, 512, [], \"f45d\", \"M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z\"]\n};\nvar faTablet = {\n prefix: 'fas',\n iconName: 'tablet',\n icon: [448, 512, [], \"f10a\", \"M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faTabletAlt = {\n prefix: 'fas',\n iconName: 'tablet-alt',\n icon: [448, 512, [], \"f3fa\", \"M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z\"]\n};\nvar faTablets = {\n prefix: 'fas',\n iconName: 'tablets',\n icon: [640, 512, [], \"f490\", \"M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z\"]\n};\nvar faTachometerAlt = {\n prefix: 'fas',\n iconName: 'tachometer-alt',\n icon: [576, 512, [], \"f3fd\", \"M288 32C128.94 32 0 160.94 0 320c0 52.8 14.25 102.26 39.06 144.8 5.61 9.62 16.3 15.2 27.44 15.2h443c11.14 0 21.83-5.58 27.44-15.2C561.75 422.26 576 372.8 576 320c0-159.06-128.94-288-288-288zm0 64c14.71 0 26.58 10.13 30.32 23.65-1.11 2.26-2.64 4.23-3.45 6.67l-9.22 27.67c-5.13 3.49-10.97 6.01-17.64 6.01-17.67 0-32-14.33-32-32S270.33 96 288 96zM96 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm48-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm246.77-72.41l-61.33 184C343.13 347.33 352 364.54 352 384c0 11.72-3.38 22.55-8.88 32H232.88c-5.5-9.45-8.88-20.28-8.88-32 0-33.94 26.5-61.43 59.9-63.59l61.34-184.01c4.17-12.56 17.73-19.45 30.36-15.17 12.57 4.19 19.35 17.79 15.17 30.36zm14.66 57.2l15.52-46.55c3.47-1.29 7.13-2.23 11.05-2.23 17.67 0 32 14.33 32 32s-14.33 32-32 32c-11.38-.01-20.89-6.28-26.57-15.22zM480 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faTag = {\n prefix: 'fas',\n iconName: 'tag',\n icon: [512, 512, [], \"f02b\", \"M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z\"]\n};\nvar faTags = {\n prefix: 'fas',\n iconName: 'tags',\n icon: [640, 512, [], \"f02c\", \"M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z\"]\n};\nvar faTape = {\n prefix: 'fas',\n iconName: 'tape',\n icon: [640, 512, [], \"f4db\", \"M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z\"]\n};\nvar faTasks = {\n prefix: 'fas',\n iconName: 'tasks',\n icon: [512, 512, [], \"f0ae\", \"M139.61 35.5a12 12 0 0 0-17 0L58.93 98.81l-22.7-22.12a12 12 0 0 0-17 0L3.53 92.41a12 12 0 0 0 0 17l47.59 47.4a12.78 12.78 0 0 0 17.61 0l15.59-15.62L156.52 69a12.09 12.09 0 0 0 .09-17zm0 159.19a12 12 0 0 0-17 0l-63.68 63.72-22.7-22.1a12 12 0 0 0-17 0L3.53 252a12 12 0 0 0 0 17L51 316.5a12.77 12.77 0 0 0 17.6 0l15.7-15.69 72.2-72.22a12 12 0 0 0 .09-16.9zM64 368c-26.49 0-48.59 21.5-48.59 48S37.53 464 64 464a48 48 0 0 0 0-96zm432 16H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faTaxi = {\n prefix: 'fas',\n iconName: 'taxi',\n icon: [512, 512, [], \"f1ba\", \"M462 241.64l-22-84.84c-9.6-35.2-41.6-60.8-76.8-60.8H352V64c0-17.67-14.33-32-32-32H192c-17.67 0-32 14.33-32 32v32h-11.2c-35.2 0-67.2 25.6-76.8 60.8l-22 84.84C21.41 248.04 0 273.47 0 304v48c0 23.63 12.95 44.04 32 55.12V448c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-40.88c19.05-11.09 32-31.5 32-55.12v-48c0-30.53-21.41-55.96-50-62.36zM96 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm20.55-112l17.2-66.36c2.23-8.16 9.59-13.64 15.06-13.64h214.4c5.47 0 12.83 5.48 14.85 12.86L395.45 240h-278.9zM416 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faTeeth = {\n prefix: 'fas',\n iconName: 'teeth',\n icon: [640, 512, [], \"f62e\", \"M544 0H96C42.98 0 0 42.98 0 96v320c0 53.02 42.98 96 96 96h448c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96zM160 368c0 26.51-21.49 48-48 48s-48-21.49-48-48v-64c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v64zm0-128c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-64c0-26.51 21.49-48 48-48s48 21.49 48 48v64zm144 120c0 30.93-25.07 56-56 56s-56-25.07-56-56v-56c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v56zm0-120c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-88c0-30.93 25.07-56 56-56s56 25.07 56 56v88zm144 120c0 30.93-25.07 56-56 56s-56-25.07-56-56v-56c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v56zm0-120c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-88c0-30.93 25.07-56 56-56s56 25.07 56 56v88zm128 128c0 26.51-21.49 48-48 48s-48-21.49-48-48v-64c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v64zm0-128c0 8.84-7.16 16-16 16h-64c-8.84 0-16-7.16-16-16v-64c0-26.51 21.49-48 48-48s48 21.49 48 48v64z\"]\n};\nvar faTeethOpen = {\n prefix: 'fas',\n iconName: 'teeth-open',\n icon: [640, 512, [], \"f62f\", \"M544 0H96C42.98 0 0 42.98 0 96v64c0 35.35 28.66 64 64 64h512c35.34 0 64-28.65 64-64V96c0-53.02-42.98-96-96-96zM160 176c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-32c0-26.51 21.49-48 48-48s48 21.49 48 48v32zm144 0c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-56c0-30.93 25.07-56 56-56s56 25.07 56 56v56zm144 0c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-56c0-30.93 25.07-56 56-56s56 25.07 56 56v56zm128 0c0 8.84-7.16 16-16 16h-64c-8.84 0-16-7.16-16-16v-32c0-26.51 21.49-48 48-48s48 21.49 48 48v32zm0 144H64c-35.34 0-64 28.65-64 64v32c0 53.02 42.98 96 96 96h448c53.02 0 96-42.98 96-96v-32c0-35.35-28.66-64-64-64zm-416 80c0 26.51-21.49 48-48 48s-48-21.49-48-48v-32c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v32zm144-8c0 30.93-25.07 56-56 56s-56-25.07-56-56v-24c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v24zm144 0c0 30.93-25.07 56-56 56s-56-25.07-56-56v-24c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v24zm128 8c0 26.51-21.49 48-48 48s-48-21.49-48-48v-32c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v32z\"]\n};\nvar faTemperatureHigh = {\n prefix: 'fas',\n iconName: 'temperature-high',\n icon: [512, 512, [], \"f769\", \"M416 0c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm0 128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-160-16C256 50.1 205.9 0 144 0S32 50.1 32 112v166.5C12.3 303.2 0 334 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-34-12.3-64.9-32-89.5V112zM144 448c-44.1 0-80-35.9-80-80 0-25.5 12.2-48.9 32-63.8V112c0-26.5 21.5-48 48-48s48 21.5 48 48v192.2c19.8 14.8 32 38.3 32 63.8 0 44.1-35.9 80-80 80zm16-125.1V112c0-8.8-7.2-16-16-16s-16 7.2-16 16v210.9c-18.6 6.6-32 24.2-32 45.1 0 26.5 21.5 48 48 48s48-21.5 48-48c0-20.9-13.4-38.5-32-45.1z\"]\n};\nvar faTemperatureLow = {\n prefix: 'fas',\n iconName: 'temperature-low',\n icon: [512, 512, [], \"f76b\", \"M416 0c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm0 128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-160-16C256 50.1 205.9 0 144 0S32 50.1 32 112v166.5C12.3 303.2 0 334 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-34-12.3-64.9-32-89.5V112zM144 448c-44.1 0-80-35.9-80-80 0-25.5 12.2-48.9 32-63.8V112c0-26.5 21.5-48 48-48s48 21.5 48 48v192.2c19.8 14.8 32 38.3 32 63.8 0 44.1-35.9 80-80 80zm16-125.1V304c0-8.8-7.2-16-16-16s-16 7.2-16 16v18.9c-18.6 6.6-32 24.2-32 45.1 0 26.5 21.5 48 48 48s48-21.5 48-48c0-20.9-13.4-38.5-32-45.1z\"]\n};\nvar faTenge = {\n prefix: 'fas',\n iconName: 'tenge',\n icon: [384, 512, [], \"f7d7\", \"M372 160H12c-6.6 0-12 5.4-12 12v56c0 6.6 5.4 12 12 12h140v228c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V240h140c6.6 0 12-5.4 12-12v-56c0-6.6-5.4-12-12-12zm0-128H12C5.4 32 0 37.4 0 44v56c0 6.6 5.4 12 12 12h360c6.6 0 12-5.4 12-12V44c0-6.6-5.4-12-12-12z\"]\n};\nvar faTerminal = {\n prefix: 'fas',\n iconName: 'terminal',\n icon: [640, 512, [], \"f120\", \"M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z\"]\n};\nvar faTextHeight = {\n prefix: 'fas',\n iconName: 'text-height',\n icon: [576, 512, [], \"f034\", \"M304 32H16A16 16 0 0 0 0 48v96a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32h56v304H80a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h160a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-40V112h56v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm256 336h-48V144h48c14.31 0 21.33-17.31 11.31-27.31l-80-80a16 16 0 0 0-22.62 0l-80 80C379.36 126 384.36 144 400 144h48v224h-48c-14.31 0-21.32 17.31-11.31 27.31l80 80a16 16 0 0 0 22.62 0l80-80C580.64 386 575.64 368 560 368z\"]\n};\nvar faTextWidth = {\n prefix: 'fas',\n iconName: 'text-width',\n icon: [448, 512, [], \"f035\", \"M432 32H16A16 16 0 0 0 0 48v80a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-16h120v112h-24a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-24V112h120v16a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm-68.69 260.69C354 283.36 336 288.36 336 304v48H112v-48c0-14.31-17.31-21.32-27.31-11.31l-80 80a16 16 0 0 0 0 22.62l80 80C94 484.64 112 479.64 112 464v-48h224v48c0 14.31 17.31 21.33 27.31 11.31l80-80a16 16 0 0 0 0-22.62z\"]\n};\nvar faTh = {\n prefix: 'fas',\n iconName: 'th',\n icon: [512, 512, [], \"f00a\", \"M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z\"]\n};\nvar faThLarge = {\n prefix: 'fas',\n iconName: 'th-large',\n icon: [512, 512, [], \"f009\", \"M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z\"]\n};\nvar faThList = {\n prefix: 'fas',\n iconName: 'th-list',\n icon: [512, 512, [], \"f00b\", \"M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z\"]\n};\nvar faTheaterMasks = {\n prefix: 'fas',\n iconName: 'theater-masks',\n icon: [640, 512, [], \"f630\", \"M206.86 245.15c-35.88 10.45-59.95 41.2-57.53 74.1 11.4-12.72 28.81-23.7 49.9-30.92l7.63-43.18zM95.81 295L64.08 115.49c-.29-1.62.28-2.62.24-2.65 57.76-32.06 123.12-49.01 189.01-49.01 1.61 0 3.23.17 4.85.19 13.95-13.47 31.73-22.83 51.59-26 18.89-3.02 38.05-4.55 57.18-5.32-9.99-13.95-24.48-24.23-41.77-27C301.27 1.89 277.24 0 253.32 0 176.66 0 101.02 19.42 33.2 57.06 9.03 70.48-3.92 98.48 1.05 126.58l31.73 179.51c14.23 80.52 136.33 142.08 204.45 142.08 3.59 0 6.75-.46 10.01-.8-13.52-17.08-28.94-40.48-39.5-67.58-47.61-12.98-106.06-51.62-111.93-84.79zm97.55-137.46c-.73-4.12-2.23-7.87-4.07-11.4-8.25 8.91-20.67 15.75-35.32 18.32-14.65 2.58-28.67.4-39.48-5.17-.52 3.94-.64 7.98.09 12.1 3.84 21.7 24.58 36.19 46.34 32.37 21.75-3.82 36.28-24.52 32.44-46.22zM606.8 120.9c-88.98-49.38-191.43-67.41-291.98-51.35-27.31 4.36-49.08 26.26-54.04 54.36l-31.73 179.51c-15.39 87.05 95.28 196.27 158.31 207.35 63.03 11.09 204.47-53.79 219.86-140.84l31.73-179.51c4.97-28.11-7.98-56.11-32.15-69.52zm-273.24 96.8c3.84-21.7 24.58-36.19 46.34-32.36 21.76 3.83 36.28 24.52 32.45 46.22-.73 4.12-2.23 7.87-4.07 11.4-8.25-8.91-20.67-15.75-35.32-18.32-14.65-2.58-28.67-.4-39.48 5.17-.53-3.95-.65-7.99.08-12.11zm70.47 198.76c-55.68-9.79-93.52-59.27-89.04-112.9 20.6 25.54 56.21 46.17 99.49 53.78 43.28 7.61 83.82.37 111.93-16.6-14.18 51.94-66.71 85.51-122.38 75.72zm130.3-151.34c-8.25-8.91-20.68-15.75-35.33-18.32-14.65-2.58-28.67-.4-39.48 5.17-.52-3.94-.64-7.98.09-12.1 3.84-21.7 24.58-36.19 46.34-32.37 21.75 3.83 36.28 24.52 32.45 46.22-.73 4.13-2.23 7.88-4.07 11.4z\"]\n};\nvar faThermometer = {\n prefix: 'fas',\n iconName: 'thermometer',\n icon: [512, 512, [], \"f491\", \"M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z\"]\n};\nvar faThermometerEmpty = {\n prefix: 'fas',\n iconName: 'thermometer-empty',\n icon: [256, 512, [], \"f2cb\", \"M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z\"]\n};\nvar faThermometerFull = {\n prefix: 'fas',\n iconName: 'thermometer-full',\n icon: [256, 512, [], \"f2c7\", \"M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z\"]\n};\nvar faThermometerHalf = {\n prefix: 'fas',\n iconName: 'thermometer-half',\n icon: [256, 512, [], \"f2c9\", \"M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z\"]\n};\nvar faThermometerQuarter = {\n prefix: 'fas',\n iconName: 'thermometer-quarter',\n icon: [256, 512, [], \"f2ca\", \"M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z\"]\n};\nvar faThermometerThreeQuarters = {\n prefix: 'fas',\n iconName: 'thermometer-three-quarters',\n icon: [256, 512, [], \"f2c8\", \"M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z\"]\n};\nvar faThumbsDown = {\n prefix: 'fas',\n iconName: 'thumbs-down',\n icon: [512, 512, [], \"f165\", \"M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z\"]\n};\nvar faThumbsUp = {\n prefix: 'fas',\n iconName: 'thumbs-up',\n icon: [512, 512, [], \"f164\", \"M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z\"]\n};\nvar faThumbtack = {\n prefix: 'fas',\n iconName: 'thumbtack',\n icon: [384, 512, [], \"f08d\", \"M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z\"]\n};\nvar faTicketAlt = {\n prefix: 'fas',\n iconName: 'ticket-alt',\n icon: [576, 512, [], \"f3ff\", \"M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z\"]\n};\nvar faTimes = {\n prefix: 'fas',\n iconName: 'times',\n icon: [352, 512, [], \"f00d\", \"M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z\"]\n};\nvar faTimesCircle = {\n prefix: 'fas',\n iconName: 'times-circle',\n icon: [512, 512, [], \"f057\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z\"]\n};\nvar faTint = {\n prefix: 'fas',\n iconName: 'tint',\n icon: [352, 512, [], \"f043\", \"M205.22 22.09c-7.94-28.78-49.44-30.12-58.44 0C100.01 179.85 0 222.72 0 333.91 0 432.35 78.72 512 176 512s176-79.65 176-178.09c0-111.75-99.79-153.34-146.78-311.82zM176 448c-61.75 0-112-50.25-112-112 0-8.84 7.16-16 16-16s16 7.16 16 16c0 44.11 35.89 80 80 80 8.84 0 16 7.16 16 16s-7.16 16-16 16z\"]\n};\nvar faTintSlash = {\n prefix: 'fas',\n iconName: 'tint-slash',\n icon: [640, 512, [], \"f5c7\", \"M633.82 458.1L494.97 350.78c.52-5.57 1.03-11.16 1.03-16.87 0-111.76-99.79-153.34-146.78-311.82-7.94-28.78-49.44-30.12-58.44 0-15.52 52.34-36.87 91.96-58.49 125.68L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM144 333.91C144 432.35 222.72 512 320 512c44.71 0 85.37-16.96 116.4-44.7L162.72 255.78c-11.41 23.5-18.72 48.35-18.72 78.13z\"]\n};\nvar faTired = {\n prefix: 'fas',\n iconName: 'tired',\n icon: [496, 512, [], \"f5c8\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z\"]\n};\nvar faToggleOff = {\n prefix: 'fas',\n iconName: 'toggle-off',\n icon: [576, 512, [], \"f204\", \"M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z\"]\n};\nvar faToggleOn = {\n prefix: 'fas',\n iconName: 'toggle-on',\n icon: [576, 512, [], \"f205\", \"M384 64H192C86 64 0 150 0 256s86 192 192 192h192c106 0 192-86 192-192S490 64 384 64zm0 320c-70.8 0-128-57.3-128-128 0-70.8 57.3-128 128-128 70.8 0 128 57.3 128 128 0 70.8-57.3 128-128 128z\"]\n};\nvar faToilet = {\n prefix: 'fas',\n iconName: 'toilet',\n icon: [384, 512, [], \"f7d8\", \"M368 48c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v16c0 8.8 7.2 16 16 16h16v156.7C11.8 214.8 0 226.9 0 240c0 67.2 34.6 126.2 86.8 160.5l-21.4 70.2C59.1 491.2 74.5 512 96 512h192c21.5 0 36.9-20.8 30.6-41.3l-21.4-70.2C349.4 366.2 384 307.2 384 240c0-13.1-11.8-25.2-32-35.3V48h16zM80 72c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H88c-4.4 0-8-3.6-8-8V72zm112 200c-77.1 0-139.6-14.3-139.6-32s62.5-32 139.6-32 139.6 14.3 139.6 32-62.5 32-139.6 32z\"]\n};\nvar faToiletPaper = {\n prefix: 'fas',\n iconName: 'toilet-paper',\n icon: [576, 512, [], \"f71e\", \"M128 0C74.98 0 32 85.96 32 192v172.07c0 41.12-9.8 62.77-31.17 126.87C-2.62 501.3 5.09 512 16.01 512h280.92c13.77 0 26-8.81 30.36-21.88 12.83-38.48 24.71-72.4 24.71-126.05V192c0-83.6 23.67-153.52 60.44-192H128zM96 224c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm64 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm64 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm64 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zM480 0c-53.02 0-96 85.96-96 192s42.98 192 96 192 96-85.96 96-192S533.02 0 480 0zm0 256c-17.67 0-32-28.65-32-64s14.33-64 32-64 32 28.65 32 64-14.33 64-32 64z\"]\n};\nvar faToiletPaperSlash = {\n prefix: 'fas',\n iconName: 'toilet-paper-slash',\n icon: [640, 512, [], \"e072\", \"M64,192V364.13c0,41.12-9.75,62.75-31.12,126.87A16,16,0,0,0,48,512H328.86a31.87,31.87,0,0,0,30.38-21.87c9.31-27.83,18-53.35,22.18-85.55l-316-244.25C64.53,170.66,64,181.19,64,192ZM633.82,458.09l-102-78.81C575.28,360.91,608,284.32,608,192,608,86,565,0,512,0s-96,86-96,192c0,42,7,80.4,18.43,112L384,265V192c0-83.62,23.63-153.5,60.5-192H160c-23.33,0-44.63,16.83-61.26,44.53L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.45A16,16,0,0,0,6.18,53.91L594.54,508.63A16,16,0,0,0,617,505.81l19.64-25.26A16,16,0,0,0,633.82,458.09ZM512,256c-17.63,0-32-28.62-32-64s14.37-64,32-64,32,28.63,32,64S529.62,256,512,256Z\"]\n};\nvar faToolbox = {\n prefix: 'fas',\n iconName: 'toolbox',\n icon: [512, 512, [], \"f552\", \"M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z\"]\n};\nvar faTools = {\n prefix: 'fas',\n iconName: 'tools',\n icon: [512, 512, [], \"f7d9\", \"M501.1 395.7L384 278.6c-23.1-23.1-57.6-27.6-85.4-13.9L192 158.1V96L64 0 0 64l96 128h62.1l106.6 106.6c-13.6 27.8-9.2 62.3 13.9 85.4l117.1 117.1c14.6 14.6 38.2 14.6 52.7 0l52.7-52.7c14.5-14.6 14.5-38.2 0-52.7zM331.7 225c28.3 0 54.9 11 74.9 31l19.4 19.4c15.8-6.9 30.8-16.5 43.8-29.5 37.1-37.1 49.7-89.3 37.9-136.7-2.2-9-13.5-12.1-20.1-5.5l-74.4 74.4-67.9-11.3L334 98.9l74.4-74.4c6.6-6.6 3.4-17.9-5.7-20.2-47.4-11.7-99.6.9-136.6 37.9-28.5 28.5-41.9 66.1-41.2 103.6l82.1 82.1c8.1-1.9 16.5-2.9 24.7-2.9zm-103.9 82l-56.7-56.7L18.7 402.8c-25 25-25 65.5 0 90.5s65.5 25 90.5 0l123.6-123.6c-7.6-19.9-9.9-41.6-5-62.7zM64 472c-13.2 0-24-10.8-24-24 0-13.3 10.7-24 24-24s24 10.7 24 24c0 13.2-10.7 24-24 24z\"]\n};\nvar faTooth = {\n prefix: 'fas',\n iconName: 'tooth',\n icon: [448, 512, [], \"f5c9\", \"M443.98 96.25c-11.01-45.22-47.11-82.06-92.01-93.72-32.19-8.36-63 5.1-89.14 24.33-3.25 2.39-6.96 3.73-10.5 5.48l28.32 18.21c7.42 4.77 9.58 14.67 4.8 22.11-4.46 6.95-14.27 9.86-22.11 4.8L162.83 12.84c-20.7-10.85-43.38-16.4-66.81-10.31-44.9 11.67-81 48.5-92.01 93.72-10.13 41.62-.42 80.81 21.5 110.43 23.36 31.57 32.68 68.66 36.29 107.35 4.4 47.16 10.33 94.16 20.94 140.32l7.8 33.95c3.19 13.87 15.49 23.7 29.67 23.7 13.97 0 26.15-9.55 29.54-23.16l34.47-138.42c4.56-18.32 20.96-31.16 39.76-31.16s35.2 12.85 39.76 31.16l34.47 138.42c3.39 13.61 15.57 23.16 29.54 23.16 14.18 0 26.48-9.83 29.67-23.7l7.8-33.95c10.61-46.15 16.53-93.16 20.94-140.32 3.61-38.7 12.93-75.78 36.29-107.35 21.95-29.61 31.66-68.8 21.53-110.43z\"]\n};\nvar faTorah = {\n prefix: 'fas',\n iconName: 'torah',\n icon: [640, 512, [], \"f6a0\", \"M320.05 366.48l17.72-29.64h-35.46zm99.21-166H382.4l18.46 30.82zM48 0C21.49 0 0 14.33 0 32v448c0 17.67 21.49 32 48 32s48-14.33 48-32V32C96 14.33 74.51 0 48 0zm172.74 311.5h36.85l-18.46-30.82zm161.71 0h36.86l-18.45-30.8zM128 464h384V48H128zm66.77-278.13a21.22 21.22 0 0 1 18.48-10.71h59.45l29.13-48.71a21.13 21.13 0 0 1 18.22-10.37A20.76 20.76 0 0 1 338 126.29l29.25 48.86h59.52a21.12 21.12 0 0 1 18.1 32L415.63 256 445 305a20.69 20.69 0 0 1 .24 21.12 21.25 21.25 0 0 1-18.48 10.72h-59.47l-29.13 48.7a21.13 21.13 0 0 1-18.16 10.4 20.79 20.79 0 0 1-18-10.22l-29.25-48.88h-59.5a21.11 21.11 0 0 1-18.1-32L224.36 256 195 207a20.7 20.7 0 0 1-.23-21.13zM592 0c-26.51 0-48 14.33-48 32v448c0 17.67 21.49 32 48 32s48-14.33 48-32V32c0-17.67-21.49-32-48-32zM320 145.53l-17.78 29.62h35.46zm-62.45 55h-36.81l18.44 30.8zm29.58 111h65.79L386.09 256l-33.23-55.52h-65.79L253.9 256z\"]\n};\nvar faToriiGate = {\n prefix: 'fas',\n iconName: 'torii-gate',\n icon: [512, 512, [], \"f6a1\", \"M376.45 32h-240.9A303.17 303.17 0 0 1 0 0v96c0 17.67 14.33 32 32 32h32v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v240c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V256h256v240c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V256h48c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-48v-64h32c17.67 0 32-14.33 32-32V0a303.17 303.17 0 0 1-135.55 32zM128 128h96v64h-96v-64zm256 64h-96v-64h96v64z\"]\n};\nvar faTractor = {\n prefix: 'fas',\n iconName: 'tractor',\n icon: [640, 512, [], \"f722\", \"M528 336c-48.6 0-88 39.4-88 88s39.4 88 88 88 88-39.4 88-88-39.4-88-88-88zm0 112c-13.23 0-24-10.77-24-24s10.77-24 24-24 24 10.77 24 24-10.77 24-24 24zm80-288h-64v-40.2c0-14.12 4.7-27.76 13.15-38.84 4.42-5.8 3.55-14.06-1.32-19.49L534.2 37.3c-6.66-7.45-18.32-6.92-24.7.78C490.58 60.9 480 89.81 480 119.8V160H377.67L321.58 29.14A47.914 47.914 0 0 0 277.45 0H144c-26.47 0-48 21.53-48 48v146.52c-8.63-6.73-20.96-6.46-28.89 1.47L36 227.1c-8.59 8.59-8.59 22.52 0 31.11l5.06 5.06c-4.99 9.26-8.96 18.82-11.91 28.72H22c-12.15 0-22 9.85-22 22v44c0 12.15 9.85 22 22 22h7.14c2.96 9.91 6.92 19.46 11.91 28.73l-5.06 5.06c-8.59 8.59-8.59 22.52 0 31.11L67.1 476c8.59 8.59 22.52 8.59 31.11 0l5.06-5.06c9.26 4.99 18.82 8.96 28.72 11.91V490c0 12.15 9.85 22 22 22h44c12.15 0 22-9.85 22-22v-7.14c9.9-2.95 19.46-6.92 28.72-11.91l5.06 5.06c8.59 8.59 22.52 8.59 31.11 0l31.11-31.11c8.59-8.59 8.59-22.52 0-31.11l-5.06-5.06c4.99-9.26 8.96-18.82 11.91-28.72H330c12.15 0 22-9.85 22-22v-6h80.54c21.91-28.99 56.32-48 95.46-48 18.64 0 36.07 4.61 51.8 12.2l50.82-50.82c6-6 9.37-14.14 9.37-22.63V192c.01-17.67-14.32-32-31.99-32zM176 416c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm22-256h-38V64h106.89l41.15 96H198z\"]\n};\nvar faTrademark = {\n prefix: 'fas',\n iconName: 'trademark',\n icon: [640, 512, [], \"f25c\", \"M260.6 96H12c-6.6 0-12 5.4-12 12v43.1c0 6.6 5.4 12 12 12h85.1V404c0 6.6 5.4 12 12 12h54.3c6.6 0 12-5.4 12-12V163.1h85.1c6.6 0 12-5.4 12-12V108c.1-6.6-5.3-12-11.9-12zM640 403l-24-296c-.5-6.2-5.7-11-12-11h-65.4c-5.1 0-9.7 3.3-11.3 8.1l-43.8 127.1c-7.2 20.6-16.1 52.8-16.1 52.8h-.9s-8.9-32.2-16.1-52.8l-43.8-127.1c-1.7-4.8-6.2-8.1-11.3-8.1h-65.4c-6.2 0-11.4 4.8-12 11l-24.4 296c-.6 7 4.9 13 12 13H360c6.3 0 11.5-4.9 12-11.2l9.1-132.9c1.8-24.2 0-53.7 0-53.7h.9s10.7 33.6 17.9 53.7l30.7 84.7c1.7 4.7 6.2 7.9 11.3 7.9h50.3c5.1 0 9.6-3.2 11.3-7.9l30.7-84.7c7.2-20.1 17.9-53.7 17.9-53.7h.9s-1.8 29.5 0 53.7l9.1 132.9c.4 6.3 5.7 11.2 12 11.2H628c7 0 12.5-6 12-13z\"]\n};\nvar faTrafficLight = {\n prefix: 'fas',\n iconName: 'traffic-light',\n icon: [384, 512, [], \"f637\", \"M384 192h-64v-37.88c37.2-13.22 64-48.38 64-90.12h-64V32c0-17.67-14.33-32-32-32H96C78.33 0 64 14.33 64 32v32H0c0 41.74 26.8 76.9 64 90.12V192H0c0 41.74 26.8 76.9 64 90.12V320H0c0 42.84 28.25 78.69 66.99 91.05C79.42 468.72 130.6 512 192 512s112.58-43.28 125.01-100.95C355.75 398.69 384 362.84 384 320h-64v-37.88c37.2-13.22 64-48.38 64-90.12zM192 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm0-128c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm0-128c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48z\"]\n};\nvar faTrailer = {\n prefix: 'fas',\n iconName: 'trailer',\n icon: [640, 512, [], \"e041\", \"M624,320H544V80a16,16,0,0,0-16-16H16A16,16,0,0,0,0,80V368a16,16,0,0,0,16,16H65.61c7.83-54.21,54-96,110.39-96s102.56,41.79,110.39,96H624a16,16,0,0,0,16-16V336A16,16,0,0,0,624,320ZM96,243.68a176.29,176.29,0,0,0-32,20.71V136a8,8,0,0,1,8-8H88a8,8,0,0,1,8,8Zm96-18.54c-5.31-.49-10.57-1.14-16-1.14s-10.69.65-16,1.14V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8Zm96,39.25a176.29,176.29,0,0,0-32-20.71V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8ZM384,320H352V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8Zm96,0H448V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8Zm-304,0a80,80,0,1,0,80,80A80,80,0,0,0,176,320Zm0,112a32,32,0,1,1,32-32A32,32,0,0,1,176,432Z\"]\n};\nvar faTrain = {\n prefix: 'fas',\n iconName: 'train',\n icon: [448, 512, [], \"f238\", \"M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z\"]\n};\nvar faTram = {\n prefix: 'fas',\n iconName: 'tram',\n icon: [512, 512, [], \"f7da\", \"M288 64c17.7 0 32-14.3 32-32S305.7 0 288 0s-32 14.3-32 32 14.3 32 32 32zm223.5-12.1c-2.3-8.6-11-13.6-19.6-11.3l-480 128c-8.5 2.3-13.6 11-11.3 19.6C2.5 195.3 8.9 200 16 200c1.4 0 2.8-.2 4.1-.5L240 140.8V224H64c-17.7 0-32 14.3-32 32v224c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32H272v-91.7l228.1-60.8c8.6-2.3 13.6-11.1 11.4-19.6zM176 384H80v-96h96v96zm160-96h96v96h-96v-96zm-32 0v96h-96v-96h96zM192 96c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z\"]\n};\nvar faTransgender = {\n prefix: 'fas',\n iconName: 'transgender',\n icon: [384, 512, [], \"f224\", \"M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faTransgenderAlt = {\n prefix: 'fas',\n iconName: 'transgender-alt',\n icon: [480, 512, [], \"f225\", \"M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faTrash = {\n prefix: 'fas',\n iconName: 'trash',\n icon: [448, 512, [], \"f1f8\", \"M432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32z\"]\n};\nvar faTrashAlt = {\n prefix: 'fas',\n iconName: 'trash-alt',\n icon: [448, 512, [], \"f2ed\", \"M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faTrashRestore = {\n prefix: 'fas',\n iconName: 'trash-restore',\n icon: [448, 512, [], \"f829\", \"M53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32zm70.11-175.8l89.38-94.26a15.41 15.41 0 0 1 22.62 0l89.38 94.26c10.08 10.62 2.94 28.8-11.32 28.8H256v112a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V320h-57.37c-14.26 0-21.4-18.18-11.32-28.8zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faTrashRestoreAlt = {\n prefix: 'fas',\n iconName: 'trash-restore-alt',\n icon: [448, 512, [], \"f82a\", \"M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm91.31-172.8l89.38-94.26a15.41 15.41 0 0 1 22.62 0l89.38 94.26c10.08 10.62 2.94 28.8-11.32 28.8H256v112a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V320h-57.37c-14.26 0-21.4-18.18-11.32-28.8zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faTree = {\n prefix: 'fas',\n iconName: 'tree',\n icon: [384, 512, [], \"f1bb\", \"M378.31 378.49L298.42 288h30.63c9.01 0 16.98-5 20.78-13.06 3.8-8.04 2.55-17.26-3.28-24.05L268.42 160h28.89c9.1 0 17.3-5.35 20.86-13.61 3.52-8.13 1.86-17.59-4.24-24.08L203.66 4.83c-6.03-6.45-17.28-6.45-23.32 0L70.06 122.31c-6.1 6.49-7.75 15.95-4.24 24.08C69.38 154.65 77.59 160 86.69 160h28.89l-78.14 90.91c-5.81 6.78-7.06 15.99-3.27 24.04C37.97 283 45.93 288 54.95 288h30.63L5.69 378.49c-6 6.79-7.36 16.09-3.56 24.26 3.75 8.05 12 13.25 21.01 13.25H160v24.45l-30.29 48.4c-5.32 10.64 2.42 23.16 14.31 23.16h95.96c11.89 0 19.63-12.52 14.31-23.16L224 440.45V416h136.86c9.01 0 17.26-5.2 21.01-13.25 3.8-8.17 2.44-17.47-3.56-24.26z\"]\n};\nvar faTrophy = {\n prefix: 'fas',\n iconName: 'trophy',\n icon: [576, 512, [], \"f091\", \"M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z\"]\n};\nvar faTruck = {\n prefix: 'fas',\n iconName: 'truck',\n icon: [640, 512, [], \"f0d1\", \"M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z\"]\n};\nvar faTruckLoading = {\n prefix: 'fas',\n iconName: 'truck-loading',\n icon: [640, 512, [], \"f4de\", \"M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z\"]\n};\nvar faTruckMonster = {\n prefix: 'fas',\n iconName: 'truck-monster',\n icon: [640, 512, [], \"f63b\", \"M624 224h-16v-64c0-17.67-14.33-32-32-32h-73.6L419.22 24.02A64.025 64.025 0 0 0 369.24 0H256c-17.67 0-32 14.33-32 32v96H48c-8.84 0-16 7.16-16 16v80H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16.72c29.21-38.65 75.1-64 127.28-64s98.07 25.35 127.28 64h65.45c29.21-38.65 75.1-64 127.28-64s98.07 25.35 127.28 64H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-336-96V64h81.24l51.2 64H288zm304 224h-5.2c-2.2-7.33-5.07-14.28-8.65-20.89l3.67-3.67c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0l-3.67 3.67A110.85 110.85 0 0 0 512 277.2V272c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v5.2c-7.33 2.2-14.28 5.07-20.89 8.65l-3.67-3.67c-6.25-6.25-16.38-6.25-22.63 0l-22.63 22.63c-6.25 6.25-6.25 16.38 0 22.63l3.67 3.67A110.85 110.85 0 0 0 373.2 352H368c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h5.2c2.2 7.33 5.07 14.28 8.65 20.89l-3.67 3.67c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l3.67-3.67c6.61 3.57 13.57 6.45 20.9 8.65v5.2c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-5.2c7.33-2.2 14.28-5.07 20.9-8.65l3.67 3.67c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63l-3.67-3.67a110.85 110.85 0 0 0 8.65-20.89h5.2c8.84 0 16-7.16 16-16v-32c-.02-8.84-7.18-16-16.02-16zm-112 80c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-208-80h-5.2c-2.2-7.33-5.07-14.28-8.65-20.89l3.67-3.67c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0l-3.67 3.67A110.85 110.85 0 0 0 192 277.2V272c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v5.2c-7.33 2.2-14.28 5.07-20.89 8.65l-3.67-3.67c-6.25-6.25-16.38-6.25-22.63 0L58.18 304.8c-6.25 6.25-6.25 16.38 0 22.63l3.67 3.67a110.85 110.85 0 0 0-8.65 20.89H48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h5.2c2.2 7.33 5.07 14.28 8.65 20.89l-3.67 3.67c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l3.67-3.67c6.61 3.57 13.57 6.45 20.9 8.65v5.2c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-5.2c7.33-2.2 14.28-5.07 20.9-8.65l3.67 3.67c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63l-3.67-3.67a110.85 110.85 0 0 0 8.65-20.89h5.2c8.84 0 16-7.16 16-16v-32C288 359.16 280.84 352 272 352zm-112 80c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48z\"]\n};\nvar faTruckMoving = {\n prefix: 'fas',\n iconName: 'truck-moving',\n icon: [640, 512, [], \"f4df\", \"M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z\"]\n};\nvar faTruckPickup = {\n prefix: 'fas',\n iconName: 'truck-pickup',\n icon: [640, 512, [], \"f63c\", \"M624 288h-16v-64c0-17.67-14.33-32-32-32h-48L419.22 56.02A64.025 64.025 0 0 0 369.24 32H256c-17.67 0-32 14.33-32 32v128H64c-17.67 0-32 14.33-32 32v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h49.61c-.76 5.27-1.61 10.52-1.61 16 0 61.86 50.14 112 112 112s112-50.14 112-112c0-5.48-.85-10.73-1.61-16h67.23c-.76 5.27-1.61 10.52-1.61 16 0 61.86 50.14 112 112 112s112-50.14 112-112c0-5.48-.85-10.73-1.61-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM288 96h81.24l76.8 96H288V96zM176 416c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48zm288 0c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48z\"]\n};\nvar faTshirt = {\n prefix: 'fas',\n iconName: 'tshirt',\n icon: [640, 512, [], \"f553\", \"M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z\"]\n};\nvar faTty = {\n prefix: 'fas',\n iconName: 'tty',\n icon: [512, 512, [], \"f1e4\", \"M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z\"]\n};\nvar faTv = {\n prefix: 'fas',\n iconName: 'tv',\n icon: [640, 512, [], \"f26c\", \"M592 0H48A48 48 0 0 0 0 48v320a48 48 0 0 0 48 48h240v32H112a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H352v-32h240a48 48 0 0 0 48-48V48a48 48 0 0 0-48-48zm-16 352H64V64h512z\"]\n};\nvar faUmbrella = {\n prefix: 'fas',\n iconName: 'umbrella',\n icon: [576, 512, [], \"f0e9\", \"M575.7 280.8C547.1 144.5 437.3 62.6 320 49.9V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v17.9C138.3 62.6 29.5 144.5.3 280.8c-2.2 10.1 8.5 21.3 18.7 11.4 52-55 107.7-52.4 158.6 37 5.3 9.5 14.9 8.6 19.7 0 20.2-35.4 44.9-73.2 90.7-73.2 58.5 0 88.2 68.8 90.7 73.2 4.8 8.6 14.4 9.5 19.7 0 51-89.5 107.1-91.4 158.6-37 10.3 10 20.9-1.3 18.7-11.4zM256 301.7V432c0 8.8-7.2 16-16 16-7.8 0-13.2-5.3-15.1-10.7-5.9-16.7-24.1-25.4-40.8-19.5-16.7 5.9-25.4 24.2-19.5 40.8 11.2 31.9 41.6 53.3 75.4 53.3 44.1 0 80-35.9 80-80V301.6c-9.1-7.9-19.8-13.6-32-13.6-12.3.1-22.4 4.8-32 13.7z\"]\n};\nvar faUmbrellaBeach = {\n prefix: 'fas',\n iconName: 'umbrella-beach',\n icon: [640, 512, [], \"f5ca\", \"M115.38 136.9l102.11 37.18c35.19-81.54 86.21-144.29 139-173.7-95.88-4.89-188.78 36.96-248.53 111.8-6.69 8.4-2.66 21.05 7.42 24.72zm132.25 48.16l238.48 86.83c35.76-121.38 18.7-231.66-42.63-253.98-7.4-2.7-15.13-4-23.09-4-58.02.01-128.27 69.17-172.76 171.15zM521.48 60.5c6.22 16.3 10.83 34.6 13.2 55.19 5.74 49.89-1.42 108.23-18.95 166.98l102.62 37.36c10.09 3.67 21.31-3.43 21.57-14.17 2.32-95.69-41.91-187.44-118.44-245.36zM560 447.98H321.06L386 269.5l-60.14-21.9-72.9 200.37H16c-8.84 0-16 7.16-16 16.01v32.01C0 504.83 7.16 512 16 512h544c8.84 0 16-7.17 16-16.01v-32.01c0-8.84-7.16-16-16-16z\"]\n};\nvar faUnderline = {\n prefix: 'fas',\n iconName: 'underline',\n icon: [448, 512, [], \"f0cd\", \"M32 64h32v160c0 88.22 71.78 160 160 160s160-71.78 160-160V64h32a16 16 0 0 0 16-16V16a16 16 0 0 0-16-16H272a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32v160a80 80 0 0 1-160 0V64h32a16 16 0 0 0 16-16V16a16 16 0 0 0-16-16H32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm400 384H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faUndo = {\n prefix: 'fas',\n iconName: 'undo',\n icon: [512, 512, [], \"f0e2\", \"M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z\"]\n};\nvar faUndoAlt = {\n prefix: 'fas',\n iconName: 'undo-alt',\n icon: [512, 512, [], \"f2ea\", \"M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z\"]\n};\nvar faUniversalAccess = {\n prefix: 'fas',\n iconName: 'universal-access',\n icon: [512, 512, [], \"f29a\", \"M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z\"]\n};\nvar faUniversity = {\n prefix: 'fas',\n iconName: 'university',\n icon: [512, 512, [], \"f19c\", \"M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z\"]\n};\nvar faUnlink = {\n prefix: 'fas',\n iconName: 'unlink',\n icon: [512, 512, [], \"f127\", \"M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z\"]\n};\nvar faUnlock = {\n prefix: 'fas',\n iconName: 'unlock',\n icon: [448, 512, [], \"f09c\", \"M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z\"]\n};\nvar faUnlockAlt = {\n prefix: 'fas',\n iconName: 'unlock-alt',\n icon: [448, 512, [], \"f13e\", \"M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z\"]\n};\nvar faUpload = {\n prefix: 'fas',\n iconName: 'upload',\n icon: [512, 512, [], \"f093\", \"M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z\"]\n};\nvar faUser = {\n prefix: 'fas',\n iconName: 'user',\n icon: [448, 512, [], \"f007\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z\"]\n};\nvar faUserAlt = {\n prefix: 'fas',\n iconName: 'user-alt',\n icon: [512, 512, [], \"f406\", \"M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z\"]\n};\nvar faUserAltSlash = {\n prefix: 'fas',\n iconName: 'user-alt-slash',\n icon: [640, 512, [], \"f4fa\", \"M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z\"]\n};\nvar faUserAstronaut = {\n prefix: 'fas',\n iconName: 'user-astronaut',\n icon: [448, 512, [], \"f4fb\", \"M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z\"]\n};\nvar faUserCheck = {\n prefix: 'fas',\n iconName: 'user-check',\n icon: [640, 512, [], \"f4fc\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z\"]\n};\nvar faUserCircle = {\n prefix: 'fas',\n iconName: 'user-circle',\n icon: [496, 512, [], \"f2bd\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z\"]\n};\nvar faUserClock = {\n prefix: 'fas',\n iconName: 'user-clock',\n icon: [640, 512, [], \"f4fd\", \"M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z\"]\n};\nvar faUserCog = {\n prefix: 'fas',\n iconName: 'user-cog',\n icon: [640, 512, [], \"f4fe\", \"M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z\"]\n};\nvar faUserEdit = {\n prefix: 'fas',\n iconName: 'user-edit',\n icon: [640, 512, [], \"f4ff\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z\"]\n};\nvar faUserFriends = {\n prefix: 'fas',\n iconName: 'user-friends',\n icon: [640, 512, [], \"f500\", \"M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z\"]\n};\nvar faUserGraduate = {\n prefix: 'fas',\n iconName: 'user-graduate',\n icon: [448, 512, [], \"f501\", \"M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z\"]\n};\nvar faUserInjured = {\n prefix: 'fas',\n iconName: 'user-injured',\n icon: [448, 512, [], \"f728\", \"M277.37 11.98C261.08 4.47 243.11 0 224 0c-53.69 0-99.5 33.13-118.51 80h81.19l90.69-68.02zM342.51 80c-7.9-19.47-20.67-36.2-36.49-49.52L239.99 80h102.52zM224 256c70.69 0 128-57.31 128-128 0-5.48-.95-10.7-1.61-16H97.61c-.67 5.3-1.61 10.52-1.61 16 0 70.69 57.31 128 128 128zM80 299.7V512h128.26l-98.45-221.52A132.835 132.835 0 0 0 80 299.7zM0 464c0 26.51 21.49 48 48 48V320.24C18.88 344.89 0 381.26 0 422.4V464zm256-48h-55.38l42.67 96H256c26.47 0 48-21.53 48-48s-21.53-48-48-48zm57.6-128h-16.71c-22.24 10.18-46.88 16-72.89 16s-50.65-5.82-72.89-16h-7.37l42.67 96H256c44.11 0 80 35.89 80 80 0 18.08-6.26 34.59-16.41 48H400c26.51 0 48-21.49 48-48v-41.6c0-74.23-60.17-134.4-134.4-134.4z\"]\n};\nvar faUserLock = {\n prefix: 'fas',\n iconName: 'user-lock',\n icon: [640, 512, [], \"f502\", \"M224 256A128 128 0 1 0 96 128a128 128 0 0 0 128 128zm96 64a63.08 63.08 0 0 1 8.1-30.5c-4.8-.5-9.5-1.5-14.5-1.5h-16.7a174.08 174.08 0 0 1-145.8 0h-16.7A134.43 134.43 0 0 0 0 422.4V464a48 48 0 0 0 48 48h280.9a63.54 63.54 0 0 1-8.9-32zm288-32h-32v-80a80 80 0 0 0-160 0v80h-32a32 32 0 0 0-32 32v160a32 32 0 0 0 32 32h224a32 32 0 0 0 32-32V320a32 32 0 0 0-32-32zM496 432a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm32-144h-64v-80a32 32 0 0 1 64 0z\"]\n};\nvar faUserMd = {\n prefix: 'fas',\n iconName: 'user-md',\n icon: [448, 512, [], \"f0f0\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z\"]\n};\nvar faUserMinus = {\n prefix: 'fas',\n iconName: 'user-minus',\n icon: [640, 512, [], \"f503\", \"M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z\"]\n};\nvar faUserNinja = {\n prefix: 'fas',\n iconName: 'user-ninja',\n icon: [448, 512, [], \"f504\", \"M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z\"]\n};\nvar faUserNurse = {\n prefix: 'fas',\n iconName: 'user-nurse',\n icon: [448, 512, [], \"f82f\", \"M319.41,320,224,415.39,128.59,320C57.1,323.1,0,381.6,0,453.79A58.21,58.21,0,0,0,58.21,512H389.79A58.21,58.21,0,0,0,448,453.79C448,381.6,390.9,323.1,319.41,320ZM224,304A128,128,0,0,0,352,176V65.82a32,32,0,0,0-20.76-30L246.47,4.07a64,64,0,0,0-44.94,0L116.76,35.86A32,32,0,0,0,96,65.82V176A128,128,0,0,0,224,304ZM184,71.67a5,5,0,0,1,5-5h21.67V45a5,5,0,0,1,5-5h16.66a5,5,0,0,1,5,5V66.67H259a5,5,0,0,1,5,5V88.33a5,5,0,0,1-5,5H237.33V115a5,5,0,0,1-5,5H215.67a5,5,0,0,1-5-5V93.33H189a5,5,0,0,1-5-5ZM144,160H304v16a80,80,0,0,1-160,0Z\"]\n};\nvar faUserPlus = {\n prefix: 'fas',\n iconName: 'user-plus',\n icon: [640, 512, [], \"f234\", \"M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z\"]\n};\nvar faUserSecret = {\n prefix: 'fas',\n iconName: 'user-secret',\n icon: [448, 512, [], \"f21b\", \"M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z\"]\n};\nvar faUserShield = {\n prefix: 'fas',\n iconName: 'user-shield',\n icon: [640, 512, [], \"f505\", \"M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z\"]\n};\nvar faUserSlash = {\n prefix: 'fas',\n iconName: 'user-slash',\n icon: [640, 512, [], \"f506\", \"M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z\"]\n};\nvar faUserTag = {\n prefix: 'fas',\n iconName: 'user-tag',\n icon: [640, 512, [], \"f507\", \"M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z\"]\n};\nvar faUserTie = {\n prefix: 'fas',\n iconName: 'user-tie',\n icon: [448, 512, [], \"f508\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z\"]\n};\nvar faUserTimes = {\n prefix: 'fas',\n iconName: 'user-times',\n icon: [640, 512, [], \"f235\", \"M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z\"]\n};\nvar faUsers = {\n prefix: 'fas',\n iconName: 'users',\n icon: [640, 512, [], \"f0c0\", \"M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z\"]\n};\nvar faUsersCog = {\n prefix: 'fas',\n iconName: 'users-cog',\n icon: [640, 512, [], \"f509\", \"M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z\"]\n};\nvar faUsersSlash = {\n prefix: 'fas',\n iconName: 'users-slash',\n icon: [640, 512, [], \"e073\", \"M132.65,212.32,36.21,137.78A63.4,63.4,0,0,0,32,160a63.84,63.84,0,0,0,100.65,52.32Zm40.44,62.28A63.79,63.79,0,0,0,128,256H64A64.06,64.06,0,0,0,0,320v32a32,32,0,0,0,32,32H97.91A146.62,146.62,0,0,1,173.09,274.6ZM544,224a64,64,0,1,0-64-64A64.06,64.06,0,0,0,544,224ZM500.56,355.11a114.24,114.24,0,0,0-84.47-65.28L361,247.23c41.46-16.3,71-55.92,71-103.23A111.93,111.93,0,0,0,320,32c-57.14,0-103.69,42.83-110.6,98.08L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.46A16,16,0,0,0,6.18,53.91L594.53,508.63A16,16,0,0,0,617,505.82l19.64-25.27a16,16,0,0,0-2.81-22.45ZM128,403.21V432a48,48,0,0,0,48,48H464a47.45,47.45,0,0,0,12.57-1.87L232,289.13C173.74,294.83,128,343.42,128,403.21ZM576,256H512a63.79,63.79,0,0,0-45.09,18.6A146.29,146.29,0,0,1,542,384h66a32,32,0,0,0,32-32V320A64.06,64.06,0,0,0,576,256Z\"]\n};\nvar faUtensilSpoon = {\n prefix: 'fas',\n iconName: 'utensil-spoon',\n icon: [512, 512, [], \"f2e5\", \"M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z\"]\n};\nvar faUtensils = {\n prefix: 'fas',\n iconName: 'utensils',\n icon: [416, 512, [], \"f2e7\", \"M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z\"]\n};\nvar faVectorSquare = {\n prefix: 'fas',\n iconName: 'vector-square',\n icon: [512, 512, [], \"f5cb\", \"M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z\"]\n};\nvar faVenus = {\n prefix: 'fas',\n iconName: 'venus',\n icon: [288, 512, [], \"f221\", \"M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z\"]\n};\nvar faVenusDouble = {\n prefix: 'fas',\n iconName: 'venus-double',\n icon: [512, 512, [], \"f226\", \"M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z\"]\n};\nvar faVenusMars = {\n prefix: 'fas',\n iconName: 'venus-mars',\n icon: [576, 512, [], \"f228\", \"M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faVest = {\n prefix: 'fas',\n iconName: 'vest',\n icon: [448, 512, [], \"e085\", \"M437.252,239.877,384,160V32A32,32,0,0,0,352,0H320a24.021,24.021,0,0,0-13.312,4.031l-25,16.672a103.794,103.794,0,0,1-115.376,0l-25-16.672A24.021,24.021,0,0,0,128,0H96A32,32,0,0,0,64,32V160L10.748,239.877A64,64,0,0,0,0,275.377V480a32,32,0,0,0,32,32H192V288a31.987,31.987,0,0,1,1.643-10.119L207.135,237.4,150.188,66.564A151.518,151.518,0,0,0,224,86.234a151.55,151.55,0,0,0,73.812-19.672L224,288V512H416a32,32,0,0,0,32-32V275.377A64,64,0,0,0,437.252,239.877ZM131.312,371.312l-48,48a16,16,0,0,1-22.624-22.624l48-48a16,16,0,0,1,22.624,22.624Zm256,48a15.992,15.992,0,0,1-22.624,0l-48-48a16,16,0,0,1,22.624-22.624l48,48A15.993,15.993,0,0,1,387.312,419.312Z\"]\n};\nvar faVestPatches = {\n prefix: 'fas',\n iconName: 'vest-patches',\n icon: [448, 512, [], \"e086\", \"M437.252,239.877,384,160V32A32,32,0,0,0,352,0H320a23.982,23.982,0,0,0-13.312,4.031l-25,16.672a103.794,103.794,0,0,1-115.376,0l-25-16.672A23.982,23.982,0,0,0,128,0H96A32,32,0,0,0,64,32V160L10.748,239.877A64,64,0,0,0,0,275.377V480a32,32,0,0,0,32,32H192V288a31.987,31.987,0,0,1,1.643-10.119L207.135,237.4,150.188,66.561A151.579,151.579,0,0,0,224,86.234a151.565,151.565,0,0,0,73.811-19.668L224,288V512H416a32,32,0,0,0,32-32V275.377A64,64,0,0,0,437.252,239.877ZM63.5,272.484a12.01,12.01,0,0,1,17-16.968l15.5,15.5,15.5-15.5a12.01,12.01,0,0,1,17,16.968L112.984,288,128.5,303.516a12.01,12.01,0,0,1-17,16.968L96,304.984l-15.5,15.5a12.01,12.01,0,0,1-17-16.968L79.016,288ZM96,456a40,40,0,1,1,40-40A40,40,0,0,1,96,456ZM359.227,335.785,310.7,336a6.671,6.671,0,0,1-6.7-6.7l.215-48.574A24.987,24.987,0,0,1,331.43,256.1c12.789,1.162,22.129,12.619,22.056,25.419l-.037,5.057,5.051-.037c12.826-.035,24.236,9.275,25.4,22.076A24.948,24.948,0,0,1,359.227,335.785Z\"]\n};\nvar faVial = {\n prefix: 'fas',\n iconName: 'vial',\n icon: [480, 512, [], \"f492\", \"M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z\"]\n};\nvar faVials = {\n prefix: 'fas',\n iconName: 'vials',\n icon: [640, 512, [], \"f493\", \"M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z\"]\n};\nvar faVideo = {\n prefix: 'fas',\n iconName: 'video',\n icon: [576, 512, [], \"f03d\", \"M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z\"]\n};\nvar faVideoSlash = {\n prefix: 'fas',\n iconName: 'video-slash',\n icon: [640, 512, [], \"f4e2\", \"M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z\"]\n};\nvar faVihara = {\n prefix: 'fas',\n iconName: 'vihara',\n icon: [640, 512, [], \"f6a7\", \"M632.88 400.71L544 352v-64l55.16-17.69c11.79-5.9 11.79-22.72 0-28.62L480 192v-64l27.31-16.3c7.72-7.72 5.61-20.74-4.16-25.62L320 0 136.85 86.07c-9.77 4.88-11.88 17.9-4.16 25.62L160 128v64L40.84 241.69c-11.79 5.9-11.79 22.72 0 28.62L96 288v64L7.12 400.71c-5.42 3.62-7.7 9.63-7 15.29.62 5.01 3.57 9.75 8.72 12.33L64 448v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h160v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h160v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48l55.15-19.67c5.16-2.58 8.1-7.32 8.72-12.33.71-5.67-1.57-11.68-6.99-15.29zM224 128h192v64H224v-64zm-64 224v-64h320v64H160z\"]\n};\nvar faVirus = {\n prefix: 'fas',\n iconName: 'virus',\n icon: [512, 512, [], \"e074\", \"M483.55,227.55H462c-50.68,0-76.07-61.27-40.23-97.11L437,115.19A28.44,28.44,0,0,0,396.8,75L381.56,90.22c-35.84,35.83-97.11,10.45-97.11-40.23V28.44a28.45,28.45,0,0,0-56.9,0V50c0,50.68-61.27,76.06-97.11,40.23L115.2,75A28.44,28.44,0,0,0,75,115.19l15.25,15.25c35.84,35.84,10.45,97.11-40.23,97.11H28.45a28.45,28.45,0,1,0,0,56.89H50c50.68,0,76.07,61.28,40.23,97.12L75,396.8A28.45,28.45,0,0,0,115.2,437l15.24-15.25c35.84-35.84,97.11-10.45,97.11,40.23v21.54a28.45,28.45,0,0,0,56.9,0V462c0-50.68,61.27-76.07,97.11-40.23L396.8,437A28.45,28.45,0,0,0,437,396.8l-15.25-15.24c-35.84-35.84-10.45-97.12,40.23-97.12h21.54a28.45,28.45,0,1,0,0-56.89ZM224,272a48,48,0,1,1,48-48A48,48,0,0,1,224,272Zm80,56a24,24,0,1,1,24-24A24,24,0,0,1,304,328Z\"]\n};\nvar faVirusSlash = {\n prefix: 'fas',\n iconName: 'virus-slash',\n icon: [640, 512, [], \"e075\", \"M114,227.6H92.4C76.7,227.6,64,240.3,64,256s12.7,28.4,28.4,28.4H114c50.7,0,76.1,61.3,40.2,97.1L139,396.8 c-11.5,10.7-12.2,28.7-1.6,40.2s28.7,12.2,40.2,1.6c0.5-0.5,1.1-1,1.6-1.6l15.2-15.2c35.8-35.8,97.1-10.5,97.1,40.2v21.5 c0,15.7,12.8,28.4,28.5,28.4c15.7,0,28.4-12.7,28.4-28.4V462c0-26.6,17-45.9,38.2-53.4l-244.5-189 C133.7,224.7,123.9,227.5,114,227.6z M617,505.8l19.6-25.3c5.4-7,4.2-17-2.8-22.5L470.6,332c4.2-25.4,24.9-47.5,55.4-47.5h21.5 c15.7,0,28.4-12.7,28.4-28.4s-12.7-28.4-28.4-28.4H526c-50.7,0-76.1-61.3-40.2-97.1l15.2-15.3c10.7-11.5,10-29.5-1.6-40.2 c-10.9-10.1-27.7-10.1-38.6,0l-15.2,15.2c-35.8,35.8-97.1,10.5-97.1-40.2V28.5C348.4,12.7,335.7,0,320,0 c-15.7,0-28.4,12.7-28.4,28.4V50c0,50.7-61.3,76.1-97.1,40.2L179.2,75c-11.1-11.1-29.4-10.6-40.5,0.5L45.5,3.4 c-7-5.4-17-4.2-22.5,2.8L3.4,31.5c-5.4,7-4.2,17,2.8,22.5l588.4,454.7C601.5,514.1,611.6,512.8,617,505.8z M335.4,227.5l-62.9-48.6 c4.9-1.8,10.2-2.8,15.4-2.9c26.5,0,48,21.5,48,48C336,225.2,335.5,226.3,335.4,227.5z\"]\n};\nvar faViruses = {\n prefix: 'fas',\n iconName: 'viruses',\n icon: [640, 512, [], \"e076\", \"M624,352H611.88c-28.51,0-42.79-34.47-22.63-54.63l8.58-8.57a16,16,0,1,0-22.63-22.63l-8.57,8.58C546.47,294.91,512,280.63,512,252.12V240a16,16,0,0,0-32,0v12.12c0,28.51-34.47,42.79-54.63,22.63l-8.57-8.58a16,16,0,0,0-22.63,22.63l8.58,8.57c20.16,20.16,5.88,54.63-22.63,54.63H368a16,16,0,0,0,0,32h12.12c28.51,0,42.79,34.47,22.63,54.63l-8.58,8.57a16,16,0,1,0,22.63,22.63l8.57-8.58c20.16-20.16,54.63-5.88,54.63,22.63V496a16,16,0,0,0,32,0V483.88c0-28.51,34.47-42.79,54.63-22.63l8.57,8.58a16,16,0,1,0,22.63-22.63l-8.58-8.57C569.09,418.47,583.37,384,611.88,384H624a16,16,0,0,0,0-32ZM480,384a32,32,0,1,1,32-32A32,32,0,0,1,480,384ZM346.51,213.33h16.16a21.33,21.33,0,0,0,0-42.66H346.51c-38,0-57.05-46-30.17-72.84l11.43-11.44A21.33,21.33,0,0,0,297.6,56.23L286.17,67.66c-26.88,26.88-72.84,7.85-72.84-30.17V21.33a21.33,21.33,0,0,0-42.66,0V37.49c0,38-46,57.05-72.84,30.17L86.4,56.23A21.33,21.33,0,0,0,56.23,86.39L67.66,97.83c26.88,26.88,7.85,72.84-30.17,72.84H21.33a21.33,21.33,0,0,0,0,42.66H37.49c38,0,57.05,46,30.17,72.84L56.23,297.6A21.33,21.33,0,1,0,86.4,327.77l11.43-11.43c26.88-26.88,72.84-7.85,72.84,30.17v16.16a21.33,21.33,0,0,0,42.66,0V346.51c0-38,46-57.05,72.84-30.17l11.43,11.43a21.33,21.33,0,0,0,30.17-30.17l-11.43-11.43C289.46,259.29,308.49,213.33,346.51,213.33ZM160,192a32,32,0,1,1,32-32A32,32,0,0,1,160,192Zm80,32a16,16,0,1,1,16-16A16,16,0,0,1,240,224Z\"]\n};\nvar faVoicemail = {\n prefix: 'fas',\n iconName: 'voicemail',\n icon: [640, 512, [], \"f897\", \"M496 128a144 144 0 0 0-119.74 224H263.74A144 144 0 1 0 144 416h352a144 144 0 0 0 0-288zM64 272a80 80 0 1 1 80 80 80 80 0 0 1-80-80zm432 80a80 80 0 1 1 80-80 80 80 0 0 1-80 80z\"]\n};\nvar faVolleyballBall = {\n prefix: 'fas',\n iconName: 'volleyball-ball',\n icon: [512, 512, [], \"f45f\", \"M231.39 243.48a285.56 285.56 0 0 0-22.7-105.7c-90.8 42.4-157.5 122.4-180.3 216.8a249 249 0 0 0 56.9 81.1 333.87 333.87 0 0 1 146.1-192.2zm-36.9-134.4a284.23 284.23 0 0 0-57.4-70.7c-91 49.8-144.8 152.9-125 262.2 33.4-83.1 98.4-152 182.4-191.5zm187.6 165.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5A333.87 333.87 0 0 1 279.19 241a285 285 0 0 0 102.9 33.18zm-124.7 9.5a286.33 286.33 0 0 0-80.2 72.6c82 57.3 184.5 75.1 277.5 47.8a247.15 247.15 0 0 0 42.2-89.9 336.1 336.1 0 0 1-80.9 10.4c-54.6-.1-108.9-14.1-158.6-40.9zm-98.3 99.7c-15.2 26-25.7 54.4-32.1 84.2a247.07 247.07 0 0 0 289-22.1c-112.9 16.1-203.3-24.8-256.9-62.1zm180.3-360.6c55.3 70.4 82.5 161.2 74.6 253.6a286.59 286.59 0 0 0 89.7-14.2c0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z\"]\n};\nvar faVolumeDown = {\n prefix: 'fas',\n iconName: 'volume-down',\n icon: [384, 512, [], \"f027\", \"M215.03 72.04L126.06 161H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V89.02c0-21.47-25.96-31.98-40.97-16.98zm123.2 108.08c-11.58-6.33-26.19-2.16-32.61 9.45-6.39 11.61-2.16 26.2 9.45 32.61C327.98 229.28 336 242.62 336 257c0 14.38-8.02 27.72-20.92 34.81-11.61 6.41-15.84 21-9.45 32.61 6.43 11.66 21.05 15.8 32.61 9.45 28.23-15.55 45.77-45 45.77-76.88s-17.54-61.32-45.78-76.87z\"]\n};\nvar faVolumeMute = {\n prefix: 'fas',\n iconName: 'volume-mute',\n icon: [512, 512, [], \"f6a9\", \"M215.03 71.05L126.06 160H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V88.02c0-21.46-25.96-31.98-40.97-16.97zM461.64 256l45.64-45.64c6.3-6.3 6.3-16.52 0-22.82l-22.82-22.82c-6.3-6.3-16.52-6.3-22.82 0L416 210.36l-45.64-45.64c-6.3-6.3-16.52-6.3-22.82 0l-22.82 22.82c-6.3 6.3-6.3 16.52 0 22.82L370.36 256l-45.63 45.63c-6.3 6.3-6.3 16.52 0 22.82l22.82 22.82c6.3 6.3 16.52 6.3 22.82 0L416 301.64l45.64 45.64c6.3 6.3 16.52 6.3 22.82 0l22.82-22.82c6.3-6.3 6.3-16.52 0-22.82L461.64 256z\"]\n};\nvar faVolumeOff = {\n prefix: 'fas',\n iconName: 'volume-off',\n icon: [256, 512, [], \"f026\", \"M215 71l-89 89H24a24 24 0 0 0-24 24v144a24 24 0 0 0 24 24h102.06L215 441c15 15 41 4.47 41-17V88c0-21.47-26-32-41-17z\"]\n};\nvar faVolumeUp = {\n prefix: 'fas',\n iconName: 'volume-up',\n icon: [576, 512, [], \"f028\", \"M215.03 71.05L126.06 160H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V88.02c0-21.46-25.96-31.98-40.97-16.97zm233.32-51.08c-11.17-7.33-26.18-4.24-33.51 6.95-7.34 11.17-4.22 26.18 6.95 33.51 66.27 43.49 105.82 116.6 105.82 195.58 0 78.98-39.55 152.09-105.82 195.58-11.17 7.32-14.29 22.34-6.95 33.5 7.04 10.71 21.93 14.56 33.51 6.95C528.27 439.58 576 351.33 576 256S528.27 72.43 448.35 19.97zM480 256c0-63.53-32.06-121.94-85.77-156.24-11.19-7.14-26.03-3.82-33.12 7.46s-3.78 26.21 7.41 33.36C408.27 165.97 432 209.11 432 256s-23.73 90.03-63.48 115.42c-11.19 7.14-14.5 22.07-7.41 33.36 6.51 10.36 21.12 15.14 33.12 7.46C447.94 377.94 480 319.54 480 256zm-141.77-76.87c-11.58-6.33-26.19-2.16-32.61 9.45-6.39 11.61-2.16 26.2 9.45 32.61C327.98 228.28 336 241.63 336 256c0 14.38-8.02 27.72-20.92 34.81-11.61 6.41-15.84 21-9.45 32.61 6.43 11.66 21.05 15.8 32.61 9.45 28.23-15.55 45.77-45 45.77-76.88s-17.54-61.32-45.78-76.86z\"]\n};\nvar faVoteYea = {\n prefix: 'fas',\n iconName: 'vote-yea',\n icon: [640, 512, [], \"f772\", \"M608 320h-64v64h22.4c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8H96v-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h576c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32zm-96 64V64.3c0-17.9-14.5-32.3-32.3-32.3H160.4C142.5 32 128 46.5 128 64.3V384h384zM211.2 202l25.5-25.3c4.2-4.2 11-4.2 15.2.1l41.3 41.6 95.2-94.4c4.2-4.2 11-4.2 15.2.1l25.3 25.5c4.2 4.2 4.2 11-.1 15.2L300.5 292c-4.2 4.2-11 4.2-15.2-.1l-74.1-74.7c-4.3-4.2-4.2-11 0-15.2z\"]\n};\nvar faVrCardboard = {\n prefix: 'fas',\n iconName: 'vr-cardboard',\n icon: [640, 512, [], \"f729\", \"M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h160.22c25.19 0 48.03-14.77 58.36-37.74l27.74-61.64C286.21 331.08 302.35 320 320 320s33.79 11.08 41.68 28.62l27.74 61.64C399.75 433.23 422.6 448 447.78 448H608c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM160 304c-35.35 0-64-28.65-64-64s28.65-64 64-64 64 28.65 64 64-28.65 64-64 64zm320 0c-35.35 0-64-28.65-64-64s28.65-64 64-64 64 28.65 64 64-28.65 64-64 64z\"]\n};\nvar faWalking = {\n prefix: 'fas',\n iconName: 'walking',\n icon: [320, 512, [], \"f554\", \"M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z\"]\n};\nvar faWallet = {\n prefix: 'fas',\n iconName: 'wallet',\n icon: [512, 512, [], \"f555\", \"M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faWarehouse = {\n prefix: 'fas',\n iconName: 'warehouse',\n icon: [640, 512, [], \"f494\", \"M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z\"]\n};\nvar faWater = {\n prefix: 'fas',\n iconName: 'water',\n icon: [576, 512, [], \"f773\", \"M562.1 383.9c-21.5-2.4-42.1-10.5-57.9-22.9-14.1-11.1-34.2-11.3-48.2 0-37.9 30.4-107.2 30.4-145.7-1.5-13.5-11.2-33-9.1-46.7 1.8-38 30.1-106.9 30-145.2-1.7-13.5-11.2-33.3-8.9-47.1 2-15.5 12.2-36 20.1-57.7 22.4-7.9.8-13.6 7.8-13.6 15.7v32.2c0 9.1 7.6 16.8 16.7 16 28.8-2.5 56.1-11.4 79.4-25.9 56.5 34.6 137 34.1 192 0 56.5 34.6 137 34.1 192 0 23.3 14.2 50.9 23.3 79.1 25.8 9.1.8 16.7-6.9 16.7-16v-31.6c.1-8-5.7-15.4-13.8-16.3zm0-144c-21.5-2.4-42.1-10.5-57.9-22.9-14.1-11.1-34.2-11.3-48.2 0-37.9 30.4-107.2 30.4-145.7-1.5-13.5-11.2-33-9.1-46.7 1.8-38 30.1-106.9 30-145.2-1.7-13.5-11.2-33.3-8.9-47.1 2-15.5 12.2-36 20.1-57.7 22.4-7.9.8-13.6 7.8-13.6 15.7v32.2c0 9.1 7.6 16.8 16.7 16 28.8-2.5 56.1-11.4 79.4-25.9 56.5 34.6 137 34.1 192 0 56.5 34.6 137 34.1 192 0 23.3 14.2 50.9 23.3 79.1 25.8 9.1.8 16.7-6.9 16.7-16v-31.6c.1-8-5.7-15.4-13.8-16.3zm0-144C540.6 93.4 520 85.4 504.2 73 490.1 61.9 470 61.7 456 73c-37.9 30.4-107.2 30.4-145.7-1.5-13.5-11.2-33-9.1-46.7 1.8-38 30.1-106.9 30-145.2-1.7-13.5-11.2-33.3-8.9-47.1 2-15.5 12.2-36 20.1-57.7 22.4-7.9.8-13.6 7.8-13.6 15.7v32.2c0 9.1 7.6 16.8 16.7 16 28.8-2.5 56.1-11.4 79.4-25.9 56.5 34.6 137 34.1 192 0 56.5 34.6 137 34.1 192 0 23.3 14.2 50.9 23.3 79.1 25.8 9.1.8 16.7-6.9 16.7-16v-31.6c.1-8-5.7-15.4-13.8-16.3z\"]\n};\nvar faWaveSquare = {\n prefix: 'fas',\n iconName: 'wave-square',\n icon: [640, 512, [], \"f83e\", \"M476 480H324a36 36 0 0 1-36-36V96h-96v156a36 36 0 0 1-36 36H16a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h112V68a36 36 0 0 1 36-36h152a36 36 0 0 1 36 36v348h96V260a36 36 0 0 1 36-36h140a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H512v156a36 36 0 0 1-36 36z\"]\n};\nvar faWeight = {\n prefix: 'fas',\n iconName: 'weight',\n icon: [512, 512, [], \"f496\", \"M448 64h-25.98C438.44 92.28 448 125.01 448 160c0 105.87-86.13 192-192 192S64 265.87 64 160c0-34.99 9.56-67.72 25.98-96H64C28.71 64 0 92.71 0 128v320c0 35.29 28.71 64 64 64h384c35.29 0 64-28.71 64-64V128c0-35.29-28.71-64-64-64zM256 320c88.37 0 160-71.63 160-160S344.37 0 256 0 96 71.63 96 160s71.63 160 160 160zm-.3-151.94l33.58-78.36c3.5-8.17 12.94-11.92 21.03-8.41 8.12 3.48 11.88 12.89 8.41 21l-33.67 78.55C291.73 188 296 197.45 296 208c0 22.09-17.91 40-40 40s-40-17.91-40-40c0-21.98 17.76-39.77 39.7-39.94z\"]\n};\nvar faWeightHanging = {\n prefix: 'fas',\n iconName: 'weight-hanging',\n icon: [512, 512, [], \"f5cd\", \"M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96s-96 42.98-96 96c0 11.28 2.3 21.95 5.88 32h-60.25c-14.43 0-27.08 10.54-30.87 25.72L1.72 445.86C-6.61 479.17 16.38 512 48.03 512h415.95c31.64 0 54.63-32.83 46.3-66.14zM256 128c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z\"]\n};\nvar faWheelchair = {\n prefix: 'fas',\n iconName: 'wheelchair',\n icon: [512, 512, [], \"f193\", \"M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z\"]\n};\nvar faWifi = {\n prefix: 'fas',\n iconName: 'wifi',\n icon: [640, 512, [], \"f1eb\", \"M634.91 154.88C457.74-8.99 182.19-8.93 5.09 154.88c-6.66 6.16-6.79 16.59-.35 22.98l34.24 33.97c6.14 6.1 16.02 6.23 22.4.38 145.92-133.68 371.3-133.71 517.25 0 6.38 5.85 16.26 5.71 22.4-.38l34.24-33.97c6.43-6.39 6.3-16.82-.36-22.98zM320 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm202.67-83.59c-115.26-101.93-290.21-101.82-405.34 0-6.9 6.1-7.12 16.69-.57 23.15l34.44 33.99c6 5.92 15.66 6.32 22.05.8 83.95-72.57 209.74-72.41 293.49 0 6.39 5.52 16.05 5.13 22.05-.8l34.44-33.99c6.56-6.46 6.33-17.06-.56-23.15z\"]\n};\nvar faWind = {\n prefix: 'fas',\n iconName: 'wind',\n icon: [512, 512, [], \"f72e\", \"M156.7 256H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h142.2c15.9 0 30.8 10.9 33.4 26.6 3.3 20-12.1 37.4-31.6 37.4-14.1 0-26.1-9.2-30.4-21.9-2.1-6.3-8.6-10.1-15.2-10.1H81.6c-9.8 0-17.7 8.8-15.9 18.4 8.6 44.1 47.6 77.6 94.2 77.6 57.1 0 102.7-50.1 95.2-108.6C249 291 205.4 256 156.7 256zM16 224h336c59.7 0 106.8-54.8 93.8-116.7-7.6-36.2-36.9-65.5-73.1-73.1-55.4-11.6-105.1 24.9-114.9 75.5-1.9 9.6 6.1 18.3 15.8 18.3h32.8c6.7 0 13.1-3.8 15.2-10.1C325.9 105.2 337.9 96 352 96c19.4 0 34.9 17.4 31.6 37.4-2.6 15.7-17.4 26.6-33.4 26.6H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16zm384 32H243.7c19.3 16.6 33.2 38.8 39.8 64H400c26.5 0 48 21.5 48 48s-21.5 48-48 48c-17.9 0-33.3-9.9-41.6-24.4-2.9-5-8.7-7.6-14.5-7.6h-33.8c-10.9 0-19 10.8-15.3 21.1 17.8 50.6 70.5 84.8 129.4 72.3 41.2-8.7 75.1-41.6 84.7-82.7C526 321.5 470.5 256 400 256z\"]\n};\nvar faWindowClose = {\n prefix: 'fas',\n iconName: 'window-close',\n icon: [512, 512, [], \"f410\", \"M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z\"]\n};\nvar faWindowMaximize = {\n prefix: 'fas',\n iconName: 'window-maximize',\n icon: [512, 512, [], \"f2d0\", \"M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z\"]\n};\nvar faWindowMinimize = {\n prefix: 'fas',\n iconName: 'window-minimize',\n icon: [512, 512, [], \"f2d1\", \"M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z\"]\n};\nvar faWindowRestore = {\n prefix: 'fas',\n iconName: 'window-restore',\n icon: [512, 512, [], \"f2d2\", \"M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z\"]\n};\nvar faWineBottle = {\n prefix: 'fas',\n iconName: 'wine-bottle',\n icon: [512, 512, [], \"f72f\", \"M507.31 72.57L439.43 4.69c-6.25-6.25-16.38-6.25-22.63 0l-22.63 22.63c-6.25 6.25-6.25 16.38 0 22.63l-76.67 76.67c-46.58-19.7-102.4-10.73-140.37 27.23L18.75 312.23c-24.99 24.99-24.99 65.52 0 90.51l90.51 90.51c24.99 24.99 65.52 24.99 90.51 0l158.39-158.39c37.96-37.96 46.93-93.79 27.23-140.37l76.67-76.67c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.24-6.24 6.24-16.37-.01-22.62zM179.22 423.29l-90.51-90.51 122.04-122.04 90.51 90.51-122.04 122.04z\"]\n};\nvar faWineGlass = {\n prefix: 'fas',\n iconName: 'wine-glass',\n icon: [288, 512, [], \"f4e3\", \"M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40z\"]\n};\nvar faWineGlassAlt = {\n prefix: 'fas',\n iconName: 'wine-glass-alt',\n icon: [288, 512, [], \"f5ce\", \"M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM61.75 48h164.5l7.17 80H54.58l7.17-80z\"]\n};\nvar faWonSign = {\n prefix: 'fas',\n iconName: 'won-sign',\n icon: [576, 512, [], \"f159\", \"M564 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-48l18.6-80.6c1.7-7.5-4-14.7-11.7-14.7h-46.1c-5.7 0-10.6 4-11.7 9.5L450.7 128H340.8l-19.7-86c-1.3-5.5-6.1-9.3-11.7-9.3h-44c-5.6 0-10.4 3.8-11.7 9.3l-20 86H125l-17.5-85.7c-1.1-5.6-6.1-9.6-11.8-9.6H53.6c-7.7 0-13.4 7.1-11.7 14.6L60 128H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h62.3l7.2 32H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h83.9l40.9 182.6c1.2 5.5 6.1 9.4 11.7 9.4h56.8c5.6 0 10.4-3.9 11.7-9.3L259.3 288h55.1l42.4 182.7c1.3 5.4 6.1 9.3 11.7 9.3h56.8c5.6 0 10.4-3.9 11.7-9.3L479.1 288H564c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-70.1l7.4-32zM183.8 342c-6.2 25.8-6.8 47.2-7.3 47.2h-1.1s-1.7-22-6.8-47.2l-11-54h38.8zm27.5-118h-66.8l-6.5-32h80.8zm62.9 0l2-8.6c1.9-8 3.5-16 4.8-23.4h11.8c1.3 7.4 2.9 15.4 4.8 23.4l2 8.6zm130.9 118c-5.1 25.2-6.8 47.2-6.8 47.2h-1.1c-.6 0-1.1-21.4-7.3-47.2l-12.4-54h39.1zm25.2-118h-67.4l-7.3-32h81.6z\"]\n};\nvar faWrench = {\n prefix: 'fas',\n iconName: 'wrench',\n icon: [512, 512, [], \"f0ad\", \"M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faXRay = {\n prefix: 'fas',\n iconName: 'x-ray',\n icon: [640, 512, [], \"f497\", \"M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faYenSign = {\n prefix: 'fas',\n iconName: 'yen-sign',\n icon: [384, 512, [], \"f157\", \"M351.2 32h-65.3c-4.6 0-8.8 2.6-10.8 6.7l-55.4 113.2c-14.5 34.7-27.1 71.9-27.1 71.9h-1.3s-12.6-37.2-27.1-71.9L108.8 38.7c-2-4.1-6.2-6.7-10.8-6.7H32.8c-9.1 0-14.8 9.7-10.6 17.6L102.3 200H44c-6.6 0-12 5.4-12 12v32c0 6.6 5.4 12 12 12h88.2l19.8 37.2V320H44c-6.6 0-12 5.4-12 12v32c0 6.6 5.4 12 12 12h108v92c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12v-92h108c6.6 0 12-5.4 12-12v-32c0-6.6-5.4-12-12-12H232v-26.8l19.8-37.2H340c6.6 0 12-5.4 12-12v-32c0-6.6-5.4-12-12-12h-58.3l80.1-150.4c4.3-7.9-1.5-17.6-10.6-17.6z\"]\n};\nvar faYinYang = {\n prefix: 'fas',\n iconName: 'yin-yang',\n icon: [496, 512, [], \"f6ad\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 376c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-128c-53.02 0-96 42.98-96 96s42.98 96 96 96c-106.04 0-192-85.96-192-192S141.96 64 248 64c53.02 0 96 42.98 96 96s-42.98 96-96 96zm0-128c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z\"]\n};\nvar _iconsCache = {\n faAd: faAd,\n faAddressBook: faAddressBook,\n faAddressCard: faAddressCard,\n faAdjust: faAdjust,\n faAirFreshener: faAirFreshener,\n faAlignCenter: faAlignCenter,\n faAlignJustify: faAlignJustify,\n faAlignLeft: faAlignLeft,\n faAlignRight: faAlignRight,\n faAllergies: faAllergies,\n faAmbulance: faAmbulance,\n faAmericanSignLanguageInterpreting: faAmericanSignLanguageInterpreting,\n faAnchor: faAnchor,\n faAngleDoubleDown: faAngleDoubleDown,\n faAngleDoubleLeft: faAngleDoubleLeft,\n faAngleDoubleRight: faAngleDoubleRight,\n faAngleDoubleUp: faAngleDoubleUp,\n faAngleDown: faAngleDown,\n faAngleLeft: faAngleLeft,\n faAngleRight: faAngleRight,\n faAngleUp: faAngleUp,\n faAngry: faAngry,\n faAnkh: faAnkh,\n faAppleAlt: faAppleAlt,\n faArchive: faArchive,\n faArchway: faArchway,\n faArrowAltCircleDown: faArrowAltCircleDown,\n faArrowAltCircleLeft: faArrowAltCircleLeft,\n faArrowAltCircleRight: faArrowAltCircleRight,\n faArrowAltCircleUp: faArrowAltCircleUp,\n faArrowCircleDown: faArrowCircleDown,\n faArrowCircleLeft: faArrowCircleLeft,\n faArrowCircleRight: faArrowCircleRight,\n faArrowCircleUp: faArrowCircleUp,\n faArrowDown: faArrowDown,\n faArrowLeft: faArrowLeft,\n faArrowRight: faArrowRight,\n faArrowUp: faArrowUp,\n faArrowsAlt: faArrowsAlt,\n faArrowsAltH: faArrowsAltH,\n faArrowsAltV: faArrowsAltV,\n faAssistiveListeningSystems: faAssistiveListeningSystems,\n faAsterisk: faAsterisk,\n faAt: faAt,\n faAtlas: faAtlas,\n faAtom: faAtom,\n faAudioDescription: faAudioDescription,\n faAward: faAward,\n faBaby: faBaby,\n faBabyCarriage: faBabyCarriage,\n faBackspace: faBackspace,\n faBackward: faBackward,\n faBacon: faBacon,\n faBacteria: faBacteria,\n faBacterium: faBacterium,\n faBahai: faBahai,\n faBalanceScale: faBalanceScale,\n faBalanceScaleLeft: faBalanceScaleLeft,\n faBalanceScaleRight: faBalanceScaleRight,\n faBan: faBan,\n faBandAid: faBandAid,\n faBarcode: faBarcode,\n faBars: faBars,\n faBaseballBall: faBaseballBall,\n faBasketballBall: faBasketballBall,\n faBath: faBath,\n faBatteryEmpty: faBatteryEmpty,\n faBatteryFull: faBatteryFull,\n faBatteryHalf: faBatteryHalf,\n faBatteryQuarter: faBatteryQuarter,\n faBatteryThreeQuarters: faBatteryThreeQuarters,\n faBed: faBed,\n faBeer: faBeer,\n faBell: faBell,\n faBellSlash: faBellSlash,\n faBezierCurve: faBezierCurve,\n faBible: faBible,\n faBicycle: faBicycle,\n faBiking: faBiking,\n faBinoculars: faBinoculars,\n faBiohazard: faBiohazard,\n faBirthdayCake: faBirthdayCake,\n faBlender: faBlender,\n faBlenderPhone: faBlenderPhone,\n faBlind: faBlind,\n faBlog: faBlog,\n faBold: faBold,\n faBolt: faBolt,\n faBomb: faBomb,\n faBone: faBone,\n faBong: faBong,\n faBook: faBook,\n faBookDead: faBookDead,\n faBookMedical: faBookMedical,\n faBookOpen: faBookOpen,\n faBookReader: faBookReader,\n faBookmark: faBookmark,\n faBorderAll: faBorderAll,\n faBorderNone: faBorderNone,\n faBorderStyle: faBorderStyle,\n faBowlingBall: faBowlingBall,\n faBox: faBox,\n faBoxOpen: faBoxOpen,\n faBoxTissue: faBoxTissue,\n faBoxes: faBoxes,\n faBraille: faBraille,\n faBrain: faBrain,\n faBreadSlice: faBreadSlice,\n faBriefcase: faBriefcase,\n faBriefcaseMedical: faBriefcaseMedical,\n faBroadcastTower: faBroadcastTower,\n faBroom: faBroom,\n faBrush: faBrush,\n faBug: faBug,\n faBuilding: faBuilding,\n faBullhorn: faBullhorn,\n faBullseye: faBullseye,\n faBurn: faBurn,\n faBus: faBus,\n faBusAlt: faBusAlt,\n faBusinessTime: faBusinessTime,\n faCalculator: faCalculator,\n faCalendar: faCalendar,\n faCalendarAlt: faCalendarAlt,\n faCalendarCheck: faCalendarCheck,\n faCalendarDay: faCalendarDay,\n faCalendarMinus: faCalendarMinus,\n faCalendarPlus: faCalendarPlus,\n faCalendarTimes: faCalendarTimes,\n faCalendarWeek: faCalendarWeek,\n faCamera: faCamera,\n faCameraRetro: faCameraRetro,\n faCampground: faCampground,\n faCandyCane: faCandyCane,\n faCannabis: faCannabis,\n faCapsules: faCapsules,\n faCar: faCar,\n faCarAlt: faCarAlt,\n faCarBattery: faCarBattery,\n faCarCrash: faCarCrash,\n faCarSide: faCarSide,\n faCaravan: faCaravan,\n faCaretDown: faCaretDown,\n faCaretLeft: faCaretLeft,\n faCaretRight: faCaretRight,\n faCaretSquareDown: faCaretSquareDown,\n faCaretSquareLeft: faCaretSquareLeft,\n faCaretSquareRight: faCaretSquareRight,\n faCaretSquareUp: faCaretSquareUp,\n faCaretUp: faCaretUp,\n faCarrot: faCarrot,\n faCartArrowDown: faCartArrowDown,\n faCartPlus: faCartPlus,\n faCashRegister: faCashRegister,\n faCat: faCat,\n faCertificate: faCertificate,\n faChair: faChair,\n faChalkboard: faChalkboard,\n faChalkboardTeacher: faChalkboardTeacher,\n faChargingStation: faChargingStation,\n faChartArea: faChartArea,\n faChartBar: faChartBar,\n faChartLine: faChartLine,\n faChartPie: faChartPie,\n faCheck: faCheck,\n faCheckCircle: faCheckCircle,\n faCheckDouble: faCheckDouble,\n faCheckSquare: faCheckSquare,\n faCheese: faCheese,\n faChess: faChess,\n faChessBishop: faChessBishop,\n faChessBoard: faChessBoard,\n faChessKing: faChessKing,\n faChessKnight: faChessKnight,\n faChessPawn: faChessPawn,\n faChessQueen: faChessQueen,\n faChessRook: faChessRook,\n faChevronCircleDown: faChevronCircleDown,\n faChevronCircleLeft: faChevronCircleLeft,\n faChevronCircleRight: faChevronCircleRight,\n faChevronCircleUp: faChevronCircleUp,\n faChevronDown: faChevronDown,\n faChevronLeft: faChevronLeft,\n faChevronRight: faChevronRight,\n faChevronUp: faChevronUp,\n faChild: faChild,\n faChurch: faChurch,\n faCircle: faCircle,\n faCircleNotch: faCircleNotch,\n faCity: faCity,\n faClinicMedical: faClinicMedical,\n faClipboard: faClipboard,\n faClipboardCheck: faClipboardCheck,\n faClipboardList: faClipboardList,\n faClock: faClock,\n faClone: faClone,\n faClosedCaptioning: faClosedCaptioning,\n faCloud: faCloud,\n faCloudDownloadAlt: faCloudDownloadAlt,\n faCloudMeatball: faCloudMeatball,\n faCloudMoon: faCloudMoon,\n faCloudMoonRain: faCloudMoonRain,\n faCloudRain: faCloudRain,\n faCloudShowersHeavy: faCloudShowersHeavy,\n faCloudSun: faCloudSun,\n faCloudSunRain: faCloudSunRain,\n faCloudUploadAlt: faCloudUploadAlt,\n faCocktail: faCocktail,\n faCode: faCode,\n faCodeBranch: faCodeBranch,\n faCoffee: faCoffee,\n faCog: faCog,\n faCogs: faCogs,\n faCoins: faCoins,\n faColumns: faColumns,\n faComment: faComment,\n faCommentAlt: faCommentAlt,\n faCommentDollar: faCommentDollar,\n faCommentDots: faCommentDots,\n faCommentMedical: faCommentMedical,\n faCommentSlash: faCommentSlash,\n faComments: faComments,\n faCommentsDollar: faCommentsDollar,\n faCompactDisc: faCompactDisc,\n faCompass: faCompass,\n faCompress: faCompress,\n faCompressAlt: faCompressAlt,\n faCompressArrowsAlt: faCompressArrowsAlt,\n faConciergeBell: faConciergeBell,\n faCookie: faCookie,\n faCookieBite: faCookieBite,\n faCopy: faCopy,\n faCopyright: faCopyright,\n faCouch: faCouch,\n faCreditCard: faCreditCard,\n faCrop: faCrop,\n faCropAlt: faCropAlt,\n faCross: faCross,\n faCrosshairs: faCrosshairs,\n faCrow: faCrow,\n faCrown: faCrown,\n faCrutch: faCrutch,\n faCube: faCube,\n faCubes: faCubes,\n faCut: faCut,\n faDatabase: faDatabase,\n faDeaf: faDeaf,\n faDemocrat: faDemocrat,\n faDesktop: faDesktop,\n faDharmachakra: faDharmachakra,\n faDiagnoses: faDiagnoses,\n faDice: faDice,\n faDiceD20: faDiceD20,\n faDiceD6: faDiceD6,\n faDiceFive: faDiceFive,\n faDiceFour: faDiceFour,\n faDiceOne: faDiceOne,\n faDiceSix: faDiceSix,\n faDiceThree: faDiceThree,\n faDiceTwo: faDiceTwo,\n faDigitalTachograph: faDigitalTachograph,\n faDirections: faDirections,\n faDisease: faDisease,\n faDivide: faDivide,\n faDizzy: faDizzy,\n faDna: faDna,\n faDog: faDog,\n faDollarSign: faDollarSign,\n faDolly: faDolly,\n faDollyFlatbed: faDollyFlatbed,\n faDonate: faDonate,\n faDoorClosed: faDoorClosed,\n faDoorOpen: faDoorOpen,\n faDotCircle: faDotCircle,\n faDove: faDove,\n faDownload: faDownload,\n faDraftingCompass: faDraftingCompass,\n faDragon: faDragon,\n faDrawPolygon: faDrawPolygon,\n faDrum: faDrum,\n faDrumSteelpan: faDrumSteelpan,\n faDrumstickBite: faDrumstickBite,\n faDumbbell: faDumbbell,\n faDumpster: faDumpster,\n faDumpsterFire: faDumpsterFire,\n faDungeon: faDungeon,\n faEdit: faEdit,\n faEgg: faEgg,\n faEject: faEject,\n faEllipsisH: faEllipsisH,\n faEllipsisV: faEllipsisV,\n faEnvelope: faEnvelope,\n faEnvelopeOpen: faEnvelopeOpen,\n faEnvelopeOpenText: faEnvelopeOpenText,\n faEnvelopeSquare: faEnvelopeSquare,\n faEquals: faEquals,\n faEraser: faEraser,\n faEthernet: faEthernet,\n faEuroSign: faEuroSign,\n faExchangeAlt: faExchangeAlt,\n faExclamation: faExclamation,\n faExclamationCircle: faExclamationCircle,\n faExclamationTriangle: faExclamationTriangle,\n faExpand: faExpand,\n faExpandAlt: faExpandAlt,\n faExpandArrowsAlt: faExpandArrowsAlt,\n faExternalLinkAlt: faExternalLinkAlt,\n faExternalLinkSquareAlt: faExternalLinkSquareAlt,\n faEye: faEye,\n faEyeDropper: faEyeDropper,\n faEyeSlash: faEyeSlash,\n faFan: faFan,\n faFastBackward: faFastBackward,\n faFastForward: faFastForward,\n faFaucet: faFaucet,\n faFax: faFax,\n faFeather: faFeather,\n faFeatherAlt: faFeatherAlt,\n faFemale: faFemale,\n faFighterJet: faFighterJet,\n faFile: faFile,\n faFileAlt: faFileAlt,\n faFileArchive: faFileArchive,\n faFileAudio: faFileAudio,\n faFileCode: faFileCode,\n faFileContract: faFileContract,\n faFileCsv: faFileCsv,\n faFileDownload: faFileDownload,\n faFileExcel: faFileExcel,\n faFileExport: faFileExport,\n faFileImage: faFileImage,\n faFileImport: faFileImport,\n faFileInvoice: faFileInvoice,\n faFileInvoiceDollar: faFileInvoiceDollar,\n faFileMedical: faFileMedical,\n faFileMedicalAlt: faFileMedicalAlt,\n faFilePdf: faFilePdf,\n faFilePowerpoint: faFilePowerpoint,\n faFilePrescription: faFilePrescription,\n faFileSignature: faFileSignature,\n faFileUpload: faFileUpload,\n faFileVideo: faFileVideo,\n faFileWord: faFileWord,\n faFill: faFill,\n faFillDrip: faFillDrip,\n faFilm: faFilm,\n faFilter: faFilter,\n faFingerprint: faFingerprint,\n faFire: faFire,\n faFireAlt: faFireAlt,\n faFireExtinguisher: faFireExtinguisher,\n faFirstAid: faFirstAid,\n faFish: faFish,\n faFistRaised: faFistRaised,\n faFlag: faFlag,\n faFlagCheckered: faFlagCheckered,\n faFlagUsa: faFlagUsa,\n faFlask: faFlask,\n faFlushed: faFlushed,\n faFolder: faFolder,\n faFolderMinus: faFolderMinus,\n faFolderOpen: faFolderOpen,\n faFolderPlus: faFolderPlus,\n faFont: faFont,\n faFontAwesomeLogoFull: faFontAwesomeLogoFull,\n faFootballBall: faFootballBall,\n faForward: faForward,\n faFrog: faFrog,\n faFrown: faFrown,\n faFrownOpen: faFrownOpen,\n faFunnelDollar: faFunnelDollar,\n faFutbol: faFutbol,\n faGamepad: faGamepad,\n faGasPump: faGasPump,\n faGavel: faGavel,\n faGem: faGem,\n faGenderless: faGenderless,\n faGhost: faGhost,\n faGift: faGift,\n faGifts: faGifts,\n faGlassCheers: faGlassCheers,\n faGlassMartini: faGlassMartini,\n faGlassMartiniAlt: faGlassMartiniAlt,\n faGlassWhiskey: faGlassWhiskey,\n faGlasses: faGlasses,\n faGlobe: faGlobe,\n faGlobeAfrica: faGlobeAfrica,\n faGlobeAmericas: faGlobeAmericas,\n faGlobeAsia: faGlobeAsia,\n faGlobeEurope: faGlobeEurope,\n faGolfBall: faGolfBall,\n faGopuram: faGopuram,\n faGraduationCap: faGraduationCap,\n faGreaterThan: faGreaterThan,\n faGreaterThanEqual: faGreaterThanEqual,\n faGrimace: faGrimace,\n faGrin: faGrin,\n faGrinAlt: faGrinAlt,\n faGrinBeam: faGrinBeam,\n faGrinBeamSweat: faGrinBeamSweat,\n faGrinHearts: faGrinHearts,\n faGrinSquint: faGrinSquint,\n faGrinSquintTears: faGrinSquintTears,\n faGrinStars: faGrinStars,\n faGrinTears: faGrinTears,\n faGrinTongue: faGrinTongue,\n faGrinTongueSquint: faGrinTongueSquint,\n faGrinTongueWink: faGrinTongueWink,\n faGrinWink: faGrinWink,\n faGripHorizontal: faGripHorizontal,\n faGripLines: faGripLines,\n faGripLinesVertical: faGripLinesVertical,\n faGripVertical: faGripVertical,\n faGuitar: faGuitar,\n faHSquare: faHSquare,\n faHamburger: faHamburger,\n faHammer: faHammer,\n faHamsa: faHamsa,\n faHandHolding: faHandHolding,\n faHandHoldingHeart: faHandHoldingHeart,\n faHandHoldingMedical: faHandHoldingMedical,\n faHandHoldingUsd: faHandHoldingUsd,\n faHandHoldingWater: faHandHoldingWater,\n faHandLizard: faHandLizard,\n faHandMiddleFinger: faHandMiddleFinger,\n faHandPaper: faHandPaper,\n faHandPeace: faHandPeace,\n faHandPointDown: faHandPointDown,\n faHandPointLeft: faHandPointLeft,\n faHandPointRight: faHandPointRight,\n faHandPointUp: faHandPointUp,\n faHandPointer: faHandPointer,\n faHandRock: faHandRock,\n faHandScissors: faHandScissors,\n faHandSparkles: faHandSparkles,\n faHandSpock: faHandSpock,\n faHands: faHands,\n faHandsHelping: faHandsHelping,\n faHandsWash: faHandsWash,\n faHandshake: faHandshake,\n faHandshakeAltSlash: faHandshakeAltSlash,\n faHandshakeSlash: faHandshakeSlash,\n faHanukiah: faHanukiah,\n faHardHat: faHardHat,\n faHashtag: faHashtag,\n faHatCowboy: faHatCowboy,\n faHatCowboySide: faHatCowboySide,\n faHatWizard: faHatWizard,\n faHdd: faHdd,\n faHeadSideCough: faHeadSideCough,\n faHeadSideCoughSlash: faHeadSideCoughSlash,\n faHeadSideMask: faHeadSideMask,\n faHeadSideVirus: faHeadSideVirus,\n faHeading: faHeading,\n faHeadphones: faHeadphones,\n faHeadphonesAlt: faHeadphonesAlt,\n faHeadset: faHeadset,\n faHeart: faHeart,\n faHeartBroken: faHeartBroken,\n faHeartbeat: faHeartbeat,\n faHelicopter: faHelicopter,\n faHighlighter: faHighlighter,\n faHiking: faHiking,\n faHippo: faHippo,\n faHistory: faHistory,\n faHockeyPuck: faHockeyPuck,\n faHollyBerry: faHollyBerry,\n faHome: faHome,\n faHorse: faHorse,\n faHorseHead: faHorseHead,\n faHospital: faHospital,\n faHospitalAlt: faHospitalAlt,\n faHospitalSymbol: faHospitalSymbol,\n faHospitalUser: faHospitalUser,\n faHotTub: faHotTub,\n faHotdog: faHotdog,\n faHotel: faHotel,\n faHourglass: faHourglass,\n faHourglassEnd: faHourglassEnd,\n faHourglassHalf: faHourglassHalf,\n faHourglassStart: faHourglassStart,\n faHouseDamage: faHouseDamage,\n faHouseUser: faHouseUser,\n faHryvnia: faHryvnia,\n faICursor: faICursor,\n faIceCream: faIceCream,\n faIcicles: faIcicles,\n faIcons: faIcons,\n faIdBadge: faIdBadge,\n faIdCard: faIdCard,\n faIdCardAlt: faIdCardAlt,\n faIgloo: faIgloo,\n faImage: faImage,\n faImages: faImages,\n faInbox: faInbox,\n faIndent: faIndent,\n faIndustry: faIndustry,\n faInfinity: faInfinity,\n faInfo: faInfo,\n faInfoCircle: faInfoCircle,\n faItalic: faItalic,\n faJedi: faJedi,\n faJoint: faJoint,\n faJournalWhills: faJournalWhills,\n faKaaba: faKaaba,\n faKey: faKey,\n faKeyboard: faKeyboard,\n faKhanda: faKhanda,\n faKiss: faKiss,\n faKissBeam: faKissBeam,\n faKissWinkHeart: faKissWinkHeart,\n faKiwiBird: faKiwiBird,\n faLandmark: faLandmark,\n faLanguage: faLanguage,\n faLaptop: faLaptop,\n faLaptopCode: faLaptopCode,\n faLaptopHouse: faLaptopHouse,\n faLaptopMedical: faLaptopMedical,\n faLaugh: faLaugh,\n faLaughBeam: faLaughBeam,\n faLaughSquint: faLaughSquint,\n faLaughWink: faLaughWink,\n faLayerGroup: faLayerGroup,\n faLeaf: faLeaf,\n faLemon: faLemon,\n faLessThan: faLessThan,\n faLessThanEqual: faLessThanEqual,\n faLevelDownAlt: faLevelDownAlt,\n faLevelUpAlt: faLevelUpAlt,\n faLifeRing: faLifeRing,\n faLightbulb: faLightbulb,\n faLink: faLink,\n faLiraSign: faLiraSign,\n faList: faList,\n faListAlt: faListAlt,\n faListOl: faListOl,\n faListUl: faListUl,\n faLocationArrow: faLocationArrow,\n faLock: faLock,\n faLockOpen: faLockOpen,\n faLongArrowAltDown: faLongArrowAltDown,\n faLongArrowAltLeft: faLongArrowAltLeft,\n faLongArrowAltRight: faLongArrowAltRight,\n faLongArrowAltUp: faLongArrowAltUp,\n faLowVision: faLowVision,\n faLuggageCart: faLuggageCart,\n faLungs: faLungs,\n faLungsVirus: faLungsVirus,\n faMagic: faMagic,\n faMagnet: faMagnet,\n faMailBulk: faMailBulk,\n faMale: faMale,\n faMap: faMap,\n faMapMarked: faMapMarked,\n faMapMarkedAlt: faMapMarkedAlt,\n faMapMarker: faMapMarker,\n faMapMarkerAlt: faMapMarkerAlt,\n faMapPin: faMapPin,\n faMapSigns: faMapSigns,\n faMarker: faMarker,\n faMars: faMars,\n faMarsDouble: faMarsDouble,\n faMarsStroke: faMarsStroke,\n faMarsStrokeH: faMarsStrokeH,\n faMarsStrokeV: faMarsStrokeV,\n faMask: faMask,\n faMedal: faMedal,\n faMedkit: faMedkit,\n faMeh: faMeh,\n faMehBlank: faMehBlank,\n faMehRollingEyes: faMehRollingEyes,\n faMemory: faMemory,\n faMenorah: faMenorah,\n faMercury: faMercury,\n faMeteor: faMeteor,\n faMicrochip: faMicrochip,\n faMicrophone: faMicrophone,\n faMicrophoneAlt: faMicrophoneAlt,\n faMicrophoneAltSlash: faMicrophoneAltSlash,\n faMicrophoneSlash: faMicrophoneSlash,\n faMicroscope: faMicroscope,\n faMinus: faMinus,\n faMinusCircle: faMinusCircle,\n faMinusSquare: faMinusSquare,\n faMitten: faMitten,\n faMobile: faMobile,\n faMobileAlt: faMobileAlt,\n faMoneyBill: faMoneyBill,\n faMoneyBillAlt: faMoneyBillAlt,\n faMoneyBillWave: faMoneyBillWave,\n faMoneyBillWaveAlt: faMoneyBillWaveAlt,\n faMoneyCheck: faMoneyCheck,\n faMoneyCheckAlt: faMoneyCheckAlt,\n faMonument: faMonument,\n faMoon: faMoon,\n faMortarPestle: faMortarPestle,\n faMosque: faMosque,\n faMotorcycle: faMotorcycle,\n faMountain: faMountain,\n faMouse: faMouse,\n faMousePointer: faMousePointer,\n faMugHot: faMugHot,\n faMusic: faMusic,\n faNetworkWired: faNetworkWired,\n faNeuter: faNeuter,\n faNewspaper: faNewspaper,\n faNotEqual: faNotEqual,\n faNotesMedical: faNotesMedical,\n faObjectGroup: faObjectGroup,\n faObjectUngroup: faObjectUngroup,\n faOilCan: faOilCan,\n faOm: faOm,\n faOtter: faOtter,\n faOutdent: faOutdent,\n faPager: faPager,\n faPaintBrush: faPaintBrush,\n faPaintRoller: faPaintRoller,\n faPalette: faPalette,\n faPallet: faPallet,\n faPaperPlane: faPaperPlane,\n faPaperclip: faPaperclip,\n faParachuteBox: faParachuteBox,\n faParagraph: faParagraph,\n faParking: faParking,\n faPassport: faPassport,\n faPastafarianism: faPastafarianism,\n faPaste: faPaste,\n faPause: faPause,\n faPauseCircle: faPauseCircle,\n faPaw: faPaw,\n faPeace: faPeace,\n faPen: faPen,\n faPenAlt: faPenAlt,\n faPenFancy: faPenFancy,\n faPenNib: faPenNib,\n faPenSquare: faPenSquare,\n faPencilAlt: faPencilAlt,\n faPencilRuler: faPencilRuler,\n faPeopleArrows: faPeopleArrows,\n faPeopleCarry: faPeopleCarry,\n faPepperHot: faPepperHot,\n faPercent: faPercent,\n faPercentage: faPercentage,\n faPersonBooth: faPersonBooth,\n faPhone: faPhone,\n faPhoneAlt: faPhoneAlt,\n faPhoneSlash: faPhoneSlash,\n faPhoneSquare: faPhoneSquare,\n faPhoneSquareAlt: faPhoneSquareAlt,\n faPhoneVolume: faPhoneVolume,\n faPhotoVideo: faPhotoVideo,\n faPiggyBank: faPiggyBank,\n faPills: faPills,\n faPizzaSlice: faPizzaSlice,\n faPlaceOfWorship: faPlaceOfWorship,\n faPlane: faPlane,\n faPlaneArrival: faPlaneArrival,\n faPlaneDeparture: faPlaneDeparture,\n faPlaneSlash: faPlaneSlash,\n faPlay: faPlay,\n faPlayCircle: faPlayCircle,\n faPlug: faPlug,\n faPlus: faPlus,\n faPlusCircle: faPlusCircle,\n faPlusSquare: faPlusSquare,\n faPodcast: faPodcast,\n faPoll: faPoll,\n faPollH: faPollH,\n faPoo: faPoo,\n faPooStorm: faPooStorm,\n faPoop: faPoop,\n faPortrait: faPortrait,\n faPoundSign: faPoundSign,\n faPowerOff: faPowerOff,\n faPray: faPray,\n faPrayingHands: faPrayingHands,\n faPrescription: faPrescription,\n faPrescriptionBottle: faPrescriptionBottle,\n faPrescriptionBottleAlt: faPrescriptionBottleAlt,\n faPrint: faPrint,\n faProcedures: faProcedures,\n faProjectDiagram: faProjectDiagram,\n faPumpMedical: faPumpMedical,\n faPumpSoap: faPumpSoap,\n faPuzzlePiece: faPuzzlePiece,\n faQrcode: faQrcode,\n faQuestion: faQuestion,\n faQuestionCircle: faQuestionCircle,\n faQuidditch: faQuidditch,\n faQuoteLeft: faQuoteLeft,\n faQuoteRight: faQuoteRight,\n faQuran: faQuran,\n faRadiation: faRadiation,\n faRadiationAlt: faRadiationAlt,\n faRainbow: faRainbow,\n faRandom: faRandom,\n faReceipt: faReceipt,\n faRecordVinyl: faRecordVinyl,\n faRecycle: faRecycle,\n faRedo: faRedo,\n faRedoAlt: faRedoAlt,\n faRegistered: faRegistered,\n faRemoveFormat: faRemoveFormat,\n faReply: faReply,\n faReplyAll: faReplyAll,\n faRepublican: faRepublican,\n faRestroom: faRestroom,\n faRetweet: faRetweet,\n faRibbon: faRibbon,\n faRing: faRing,\n faRoad: faRoad,\n faRobot: faRobot,\n faRocket: faRocket,\n faRoute: faRoute,\n faRss: faRss,\n faRssSquare: faRssSquare,\n faRubleSign: faRubleSign,\n faRuler: faRuler,\n faRulerCombined: faRulerCombined,\n faRulerHorizontal: faRulerHorizontal,\n faRulerVertical: faRulerVertical,\n faRunning: faRunning,\n faRupeeSign: faRupeeSign,\n faSadCry: faSadCry,\n faSadTear: faSadTear,\n faSatellite: faSatellite,\n faSatelliteDish: faSatelliteDish,\n faSave: faSave,\n faSchool: faSchool,\n faScrewdriver: faScrewdriver,\n faScroll: faScroll,\n faSdCard: faSdCard,\n faSearch: faSearch,\n faSearchDollar: faSearchDollar,\n faSearchLocation: faSearchLocation,\n faSearchMinus: faSearchMinus,\n faSearchPlus: faSearchPlus,\n faSeedling: faSeedling,\n faServer: faServer,\n faShapes: faShapes,\n faShare: faShare,\n faShareAlt: faShareAlt,\n faShareAltSquare: faShareAltSquare,\n faShareSquare: faShareSquare,\n faShekelSign: faShekelSign,\n faShieldAlt: faShieldAlt,\n faShieldVirus: faShieldVirus,\n faShip: faShip,\n faShippingFast: faShippingFast,\n faShoePrints: faShoePrints,\n faShoppingBag: faShoppingBag,\n faShoppingBasket: faShoppingBasket,\n faShoppingCart: faShoppingCart,\n faShower: faShower,\n faShuttleVan: faShuttleVan,\n faSign: faSign,\n faSignInAlt: faSignInAlt,\n faSignLanguage: faSignLanguage,\n faSignOutAlt: faSignOutAlt,\n faSignal: faSignal,\n faSignature: faSignature,\n faSimCard: faSimCard,\n faSink: faSink,\n faSitemap: faSitemap,\n faSkating: faSkating,\n faSkiing: faSkiing,\n faSkiingNordic: faSkiingNordic,\n faSkull: faSkull,\n faSkullCrossbones: faSkullCrossbones,\n faSlash: faSlash,\n faSleigh: faSleigh,\n faSlidersH: faSlidersH,\n faSmile: faSmile,\n faSmileBeam: faSmileBeam,\n faSmileWink: faSmileWink,\n faSmog: faSmog,\n faSmoking: faSmoking,\n faSmokingBan: faSmokingBan,\n faSms: faSms,\n faSnowboarding: faSnowboarding,\n faSnowflake: faSnowflake,\n faSnowman: faSnowman,\n faSnowplow: faSnowplow,\n faSoap: faSoap,\n faSocks: faSocks,\n faSolarPanel: faSolarPanel,\n faSort: faSort,\n faSortAlphaDown: faSortAlphaDown,\n faSortAlphaDownAlt: faSortAlphaDownAlt,\n faSortAlphaUp: faSortAlphaUp,\n faSortAlphaUpAlt: faSortAlphaUpAlt,\n faSortAmountDown: faSortAmountDown,\n faSortAmountDownAlt: faSortAmountDownAlt,\n faSortAmountUp: faSortAmountUp,\n faSortAmountUpAlt: faSortAmountUpAlt,\n faSortDown: faSortDown,\n faSortNumericDown: faSortNumericDown,\n faSortNumericDownAlt: faSortNumericDownAlt,\n faSortNumericUp: faSortNumericUp,\n faSortNumericUpAlt: faSortNumericUpAlt,\n faSortUp: faSortUp,\n faSpa: faSpa,\n faSpaceShuttle: faSpaceShuttle,\n faSpellCheck: faSpellCheck,\n faSpider: faSpider,\n faSpinner: faSpinner,\n faSplotch: faSplotch,\n faSprayCan: faSprayCan,\n faSquare: faSquare,\n faSquareFull: faSquareFull,\n faSquareRootAlt: faSquareRootAlt,\n faStamp: faStamp,\n faStar: faStar,\n faStarAndCrescent: faStarAndCrescent,\n faStarHalf: faStarHalf,\n faStarHalfAlt: faStarHalfAlt,\n faStarOfDavid: faStarOfDavid,\n faStarOfLife: faStarOfLife,\n faStepBackward: faStepBackward,\n faStepForward: faStepForward,\n faStethoscope: faStethoscope,\n faStickyNote: faStickyNote,\n faStop: faStop,\n faStopCircle: faStopCircle,\n faStopwatch: faStopwatch,\n faStopwatch20: faStopwatch20,\n faStore: faStore,\n faStoreAlt: faStoreAlt,\n faStoreAltSlash: faStoreAltSlash,\n faStoreSlash: faStoreSlash,\n faStream: faStream,\n faStreetView: faStreetView,\n faStrikethrough: faStrikethrough,\n faStroopwafel: faStroopwafel,\n faSubscript: faSubscript,\n faSubway: faSubway,\n faSuitcase: faSuitcase,\n faSuitcaseRolling: faSuitcaseRolling,\n faSun: faSun,\n faSuperscript: faSuperscript,\n faSurprise: faSurprise,\n faSwatchbook: faSwatchbook,\n faSwimmer: faSwimmer,\n faSwimmingPool: faSwimmingPool,\n faSynagogue: faSynagogue,\n faSync: faSync,\n faSyncAlt: faSyncAlt,\n faSyringe: faSyringe,\n faTable: faTable,\n faTableTennis: faTableTennis,\n faTablet: faTablet,\n faTabletAlt: faTabletAlt,\n faTablets: faTablets,\n faTachometerAlt: faTachometerAlt,\n faTag: faTag,\n faTags: faTags,\n faTape: faTape,\n faTasks: faTasks,\n faTaxi: faTaxi,\n faTeeth: faTeeth,\n faTeethOpen: faTeethOpen,\n faTemperatureHigh: faTemperatureHigh,\n faTemperatureLow: faTemperatureLow,\n faTenge: faTenge,\n faTerminal: faTerminal,\n faTextHeight: faTextHeight,\n faTextWidth: faTextWidth,\n faTh: faTh,\n faThLarge: faThLarge,\n faThList: faThList,\n faTheaterMasks: faTheaterMasks,\n faThermometer: faThermometer,\n faThermometerEmpty: faThermometerEmpty,\n faThermometerFull: faThermometerFull,\n faThermometerHalf: faThermometerHalf,\n faThermometerQuarter: faThermometerQuarter,\n faThermometerThreeQuarters: faThermometerThreeQuarters,\n faThumbsDown: faThumbsDown,\n faThumbsUp: faThumbsUp,\n faThumbtack: faThumbtack,\n faTicketAlt: faTicketAlt,\n faTimes: faTimes,\n faTimesCircle: faTimesCircle,\n faTint: faTint,\n faTintSlash: faTintSlash,\n faTired: faTired,\n faToggleOff: faToggleOff,\n faToggleOn: faToggleOn,\n faToilet: faToilet,\n faToiletPaper: faToiletPaper,\n faToiletPaperSlash: faToiletPaperSlash,\n faToolbox: faToolbox,\n faTools: faTools,\n faTooth: faTooth,\n faTorah: faTorah,\n faToriiGate: faToriiGate,\n faTractor: faTractor,\n faTrademark: faTrademark,\n faTrafficLight: faTrafficLight,\n faTrailer: faTrailer,\n faTrain: faTrain,\n faTram: faTram,\n faTransgender: faTransgender,\n faTransgenderAlt: faTransgenderAlt,\n faTrash: faTrash,\n faTrashAlt: faTrashAlt,\n faTrashRestore: faTrashRestore,\n faTrashRestoreAlt: faTrashRestoreAlt,\n faTree: faTree,\n faTrophy: faTrophy,\n faTruck: faTruck,\n faTruckLoading: faTruckLoading,\n faTruckMonster: faTruckMonster,\n faTruckMoving: faTruckMoving,\n faTruckPickup: faTruckPickup,\n faTshirt: faTshirt,\n faTty: faTty,\n faTv: faTv,\n faUmbrella: faUmbrella,\n faUmbrellaBeach: faUmbrellaBeach,\n faUnderline: faUnderline,\n faUndo: faUndo,\n faUndoAlt: faUndoAlt,\n faUniversalAccess: faUniversalAccess,\n faUniversity: faUniversity,\n faUnlink: faUnlink,\n faUnlock: faUnlock,\n faUnlockAlt: faUnlockAlt,\n faUpload: faUpload,\n faUser: faUser,\n faUserAlt: faUserAlt,\n faUserAltSlash: faUserAltSlash,\n faUserAstronaut: faUserAstronaut,\n faUserCheck: faUserCheck,\n faUserCircle: faUserCircle,\n faUserClock: faUserClock,\n faUserCog: faUserCog,\n faUserEdit: faUserEdit,\n faUserFriends: faUserFriends,\n faUserGraduate: faUserGraduate,\n faUserInjured: faUserInjured,\n faUserLock: faUserLock,\n faUserMd: faUserMd,\n faUserMinus: faUserMinus,\n faUserNinja: faUserNinja,\n faUserNurse: faUserNurse,\n faUserPlus: faUserPlus,\n faUserSecret: faUserSecret,\n faUserShield: faUserShield,\n faUserSlash: faUserSlash,\n faUserTag: faUserTag,\n faUserTie: faUserTie,\n faUserTimes: faUserTimes,\n faUsers: faUsers,\n faUsersCog: faUsersCog,\n faUsersSlash: faUsersSlash,\n faUtensilSpoon: faUtensilSpoon,\n faUtensils: faUtensils,\n faVectorSquare: faVectorSquare,\n faVenus: faVenus,\n faVenusDouble: faVenusDouble,\n faVenusMars: faVenusMars,\n faVest: faVest,\n faVestPatches: faVestPatches,\n faVial: faVial,\n faVials: faVials,\n faVideo: faVideo,\n faVideoSlash: faVideoSlash,\n faVihara: faVihara,\n faVirus: faVirus,\n faVirusSlash: faVirusSlash,\n faViruses: faViruses,\n faVoicemail: faVoicemail,\n faVolleyballBall: faVolleyballBall,\n faVolumeDown: faVolumeDown,\n faVolumeMute: faVolumeMute,\n faVolumeOff: faVolumeOff,\n faVolumeUp: faVolumeUp,\n faVoteYea: faVoteYea,\n faVrCardboard: faVrCardboard,\n faWalking: faWalking,\n faWallet: faWallet,\n faWarehouse: faWarehouse,\n faWater: faWater,\n faWaveSquare: faWaveSquare,\n faWeight: faWeight,\n faWeightHanging: faWeightHanging,\n faWheelchair: faWheelchair,\n faWifi: faWifi,\n faWind: faWind,\n faWindowClose: faWindowClose,\n faWindowMaximize: faWindowMaximize,\n faWindowMinimize: faWindowMinimize,\n faWindowRestore: faWindowRestore,\n faWineBottle: faWineBottle,\n faWineGlass: faWineGlass,\n faWineGlassAlt: faWineGlassAlt,\n faWonSign: faWonSign,\n faWrench: faWrench,\n faXRay: faXRay,\n faYenSign: faYenSign,\n faYinYang: faYinYang\n};\n\nexport { _iconsCache as fas, prefix, faAd, faAddressBook, faAddressCard, faAdjust, faAirFreshener, faAlignCenter, faAlignJustify, faAlignLeft, faAlignRight, faAllergies, faAmbulance, faAmericanSignLanguageInterpreting, faAnchor, faAngleDoubleDown, faAngleDoubleLeft, faAngleDoubleRight, faAngleDoubleUp, faAngleDown, faAngleLeft, faAngleRight, faAngleUp, faAngry, faAnkh, faAppleAlt, faArchive, faArchway, faArrowAltCircleDown, faArrowAltCircleLeft, faArrowAltCircleRight, faArrowAltCircleUp, faArrowCircleDown, faArrowCircleLeft, faArrowCircleRight, faArrowCircleUp, faArrowDown, faArrowLeft, faArrowRight, faArrowUp, faArrowsAlt, faArrowsAltH, faArrowsAltV, faAssistiveListeningSystems, faAsterisk, faAt, faAtlas, faAtom, faAudioDescription, faAward, faBaby, faBabyCarriage, faBackspace, faBackward, faBacon, faBacteria, faBacterium, faBahai, faBalanceScale, faBalanceScaleLeft, faBalanceScaleRight, faBan, faBandAid, faBarcode, faBars, faBaseballBall, faBasketballBall, faBath, faBatteryEmpty, faBatteryFull, faBatteryHalf, faBatteryQuarter, faBatteryThreeQuarters, faBed, faBeer, faBell, faBellSlash, faBezierCurve, faBible, faBicycle, faBiking, faBinoculars, faBiohazard, faBirthdayCake, faBlender, faBlenderPhone, faBlind, faBlog, faBold, faBolt, faBomb, faBone, faBong, faBook, faBookDead, faBookMedical, faBookOpen, faBookReader, faBookmark, faBorderAll, faBorderNone, faBorderStyle, faBowlingBall, faBox, faBoxOpen, faBoxTissue, faBoxes, faBraille, faBrain, faBreadSlice, faBriefcase, faBriefcaseMedical, faBroadcastTower, faBroom, faBrush, faBug, faBuilding, faBullhorn, faBullseye, faBurn, faBus, faBusAlt, faBusinessTime, faCalculator, faCalendar, faCalendarAlt, faCalendarCheck, faCalendarDay, faCalendarMinus, faCalendarPlus, faCalendarTimes, faCalendarWeek, faCamera, faCameraRetro, faCampground, faCandyCane, faCannabis, faCapsules, faCar, faCarAlt, faCarBattery, faCarCrash, faCarSide, faCaravan, faCaretDown, faCaretLeft, faCaretRight, faCaretSquareDown, faCaretSquareLeft, faCaretSquareRight, faCaretSquareUp, faCaretUp, faCarrot, faCartArrowDown, faCartPlus, faCashRegister, faCat, faCertificate, faChair, faChalkboard, faChalkboardTeacher, faChargingStation, faChartArea, faChartBar, faChartLine, faChartPie, faCheck, faCheckCircle, faCheckDouble, faCheckSquare, faCheese, faChess, faChessBishop, faChessBoard, faChessKing, faChessKnight, faChessPawn, faChessQueen, faChessRook, faChevronCircleDown, faChevronCircleLeft, faChevronCircleRight, faChevronCircleUp, faChevronDown, faChevronLeft, faChevronRight, faChevronUp, faChild, faChurch, faCircle, faCircleNotch, faCity, faClinicMedical, faClipboard, faClipboardCheck, faClipboardList, faClock, faClone, faClosedCaptioning, faCloud, faCloudDownloadAlt, faCloudMeatball, faCloudMoon, faCloudMoonRain, faCloudRain, faCloudShowersHeavy, faCloudSun, faCloudSunRain, faCloudUploadAlt, faCocktail, faCode, faCodeBranch, faCoffee, faCog, faCogs, faCoins, faColumns, faComment, faCommentAlt, faCommentDollar, faCommentDots, faCommentMedical, faCommentSlash, faComments, faCommentsDollar, faCompactDisc, faCompass, faCompress, faCompressAlt, faCompressArrowsAlt, faConciergeBell, faCookie, faCookieBite, faCopy, faCopyright, faCouch, faCreditCard, faCrop, faCropAlt, faCross, faCrosshairs, faCrow, faCrown, faCrutch, faCube, faCubes, faCut, faDatabase, faDeaf, faDemocrat, faDesktop, faDharmachakra, faDiagnoses, faDice, faDiceD20, faDiceD6, faDiceFive, faDiceFour, faDiceOne, faDiceSix, faDiceThree, faDiceTwo, faDigitalTachograph, faDirections, faDisease, faDivide, faDizzy, faDna, faDog, faDollarSign, faDolly, faDollyFlatbed, faDonate, faDoorClosed, faDoorOpen, faDotCircle, faDove, faDownload, faDraftingCompass, faDragon, faDrawPolygon, faDrum, faDrumSteelpan, faDrumstickBite, faDumbbell, faDumpster, faDumpsterFire, faDungeon, faEdit, faEgg, faEject, faEllipsisH, faEllipsisV, faEnvelope, faEnvelopeOpen, faEnvelopeOpenText, faEnvelopeSquare, faEquals, faEraser, faEthernet, faEuroSign, faExchangeAlt, faExclamation, faExclamationCircle, faExclamationTriangle, faExpand, faExpandAlt, faExpandArrowsAlt, faExternalLinkAlt, faExternalLinkSquareAlt, faEye, faEyeDropper, faEyeSlash, faFan, faFastBackward, faFastForward, faFaucet, faFax, faFeather, faFeatherAlt, faFemale, faFighterJet, faFile, faFileAlt, faFileArchive, faFileAudio, faFileCode, faFileContract, faFileCsv, faFileDownload, faFileExcel, faFileExport, faFileImage, faFileImport, faFileInvoice, faFileInvoiceDollar, faFileMedical, faFileMedicalAlt, faFilePdf, faFilePowerpoint, faFilePrescription, faFileSignature, faFileUpload, faFileVideo, faFileWord, faFill, faFillDrip, faFilm, faFilter, faFingerprint, faFire, faFireAlt, faFireExtinguisher, faFirstAid, faFish, faFistRaised, faFlag, faFlagCheckered, faFlagUsa, faFlask, faFlushed, faFolder, faFolderMinus, faFolderOpen, faFolderPlus, faFont, faFontAwesomeLogoFull, faFootballBall, faForward, faFrog, faFrown, faFrownOpen, faFunnelDollar, faFutbol, faGamepad, faGasPump, faGavel, faGem, faGenderless, faGhost, faGift, faGifts, faGlassCheers, faGlassMartini, faGlassMartiniAlt, faGlassWhiskey, faGlasses, faGlobe, faGlobeAfrica, faGlobeAmericas, faGlobeAsia, faGlobeEurope, faGolfBall, faGopuram, faGraduationCap, faGreaterThan, faGreaterThanEqual, faGrimace, faGrin, faGrinAlt, faGrinBeam, faGrinBeamSweat, faGrinHearts, faGrinSquint, faGrinSquintTears, faGrinStars, faGrinTears, faGrinTongue, faGrinTongueSquint, faGrinTongueWink, faGrinWink, faGripHorizontal, faGripLines, faGripLinesVertical, faGripVertical, faGuitar, faHSquare, faHamburger, faHammer, faHamsa, faHandHolding, faHandHoldingHeart, faHandHoldingMedical, faHandHoldingUsd, faHandHoldingWater, faHandLizard, faHandMiddleFinger, faHandPaper, faHandPeace, faHandPointDown, faHandPointLeft, faHandPointRight, faHandPointUp, faHandPointer, faHandRock, faHandScissors, faHandSparkles, faHandSpock, faHands, faHandsHelping, faHandsWash, faHandshake, faHandshakeAltSlash, faHandshakeSlash, faHanukiah, faHardHat, faHashtag, faHatCowboy, faHatCowboySide, faHatWizard, faHdd, faHeadSideCough, faHeadSideCoughSlash, faHeadSideMask, faHeadSideVirus, faHeading, faHeadphones, faHeadphonesAlt, faHeadset, faHeart, faHeartBroken, faHeartbeat, faHelicopter, faHighlighter, faHiking, faHippo, faHistory, faHockeyPuck, faHollyBerry, faHome, faHorse, faHorseHead, faHospital, faHospitalAlt, faHospitalSymbol, faHospitalUser, faHotTub, faHotdog, faHotel, faHourglass, faHourglassEnd, faHourglassHalf, faHourglassStart, faHouseDamage, faHouseUser, faHryvnia, faICursor, faIceCream, faIcicles, faIcons, faIdBadge, faIdCard, faIdCardAlt, faIgloo, faImage, faImages, faInbox, faIndent, faIndustry, faInfinity, faInfo, faInfoCircle, faItalic, faJedi, faJoint, faJournalWhills, faKaaba, faKey, faKeyboard, faKhanda, faKiss, faKissBeam, faKissWinkHeart, faKiwiBird, faLandmark, faLanguage, faLaptop, faLaptopCode, faLaptopHouse, faLaptopMedical, faLaugh, faLaughBeam, faLaughSquint, faLaughWink, faLayerGroup, faLeaf, faLemon, faLessThan, faLessThanEqual, faLevelDownAlt, faLevelUpAlt, faLifeRing, faLightbulb, faLink, faLiraSign, faList, faListAlt, faListOl, faListUl, faLocationArrow, faLock, faLockOpen, faLongArrowAltDown, faLongArrowAltLeft, faLongArrowAltRight, faLongArrowAltUp, faLowVision, faLuggageCart, faLungs, faLungsVirus, faMagic, faMagnet, faMailBulk, faMale, faMap, faMapMarked, faMapMarkedAlt, faMapMarker, faMapMarkerAlt, faMapPin, faMapSigns, faMarker, faMars, faMarsDouble, faMarsStroke, faMarsStrokeH, faMarsStrokeV, faMask, faMedal, faMedkit, faMeh, faMehBlank, faMehRollingEyes, faMemory, faMenorah, faMercury, faMeteor, faMicrochip, faMicrophone, faMicrophoneAlt, faMicrophoneAltSlash, faMicrophoneSlash, faMicroscope, faMinus, faMinusCircle, faMinusSquare, faMitten, faMobile, faMobileAlt, faMoneyBill, faMoneyBillAlt, faMoneyBillWave, faMoneyBillWaveAlt, faMoneyCheck, faMoneyCheckAlt, faMonument, faMoon, faMortarPestle, faMosque, faMotorcycle, faMountain, faMouse, faMousePointer, faMugHot, faMusic, faNetworkWired, faNeuter, faNewspaper, faNotEqual, faNotesMedical, faObjectGroup, faObjectUngroup, faOilCan, faOm, faOtter, faOutdent, faPager, faPaintBrush, faPaintRoller, faPalette, faPallet, faPaperPlane, faPaperclip, faParachuteBox, faParagraph, faParking, faPassport, faPastafarianism, faPaste, faPause, faPauseCircle, faPaw, faPeace, faPen, faPenAlt, faPenFancy, faPenNib, faPenSquare, faPencilAlt, faPencilRuler, faPeopleArrows, faPeopleCarry, faPepperHot, faPercent, faPercentage, faPersonBooth, faPhone, faPhoneAlt, faPhoneSlash, faPhoneSquare, faPhoneSquareAlt, faPhoneVolume, faPhotoVideo, faPiggyBank, faPills, faPizzaSlice, faPlaceOfWorship, faPlane, faPlaneArrival, faPlaneDeparture, faPlaneSlash, faPlay, faPlayCircle, faPlug, faPlus, faPlusCircle, faPlusSquare, faPodcast, faPoll, faPollH, faPoo, faPooStorm, faPoop, faPortrait, faPoundSign, faPowerOff, faPray, faPrayingHands, faPrescription, faPrescriptionBottle, faPrescriptionBottleAlt, faPrint, faProcedures, faProjectDiagram, faPumpMedical, faPumpSoap, faPuzzlePiece, faQrcode, faQuestion, faQuestionCircle, faQuidditch, faQuoteLeft, faQuoteRight, faQuran, faRadiation, faRadiationAlt, faRainbow, faRandom, faReceipt, faRecordVinyl, faRecycle, faRedo, faRedoAlt, faRegistered, faRemoveFormat, faReply, faReplyAll, faRepublican, faRestroom, faRetweet, faRibbon, faRing, faRoad, faRobot, faRocket, faRoute, faRss, faRssSquare, faRubleSign, faRuler, faRulerCombined, faRulerHorizontal, faRulerVertical, faRunning, faRupeeSign, faSadCry, faSadTear, faSatellite, faSatelliteDish, faSave, faSchool, faScrewdriver, faScroll, faSdCard, faSearch, faSearchDollar, faSearchLocation, faSearchMinus, faSearchPlus, faSeedling, faServer, faShapes, faShare, faShareAlt, faShareAltSquare, faShareSquare, faShekelSign, faShieldAlt, faShieldVirus, faShip, faShippingFast, faShoePrints, faShoppingBag, faShoppingBasket, faShoppingCart, faShower, faShuttleVan, faSign, faSignInAlt, faSignLanguage, faSignOutAlt, faSignal, faSignature, faSimCard, faSink, faSitemap, faSkating, faSkiing, faSkiingNordic, faSkull, faSkullCrossbones, faSlash, faSleigh, faSlidersH, faSmile, faSmileBeam, faSmileWink, faSmog, faSmoking, faSmokingBan, faSms, faSnowboarding, faSnowflake, faSnowman, faSnowplow, faSoap, faSocks, faSolarPanel, faSort, faSortAlphaDown, faSortAlphaDownAlt, faSortAlphaUp, faSortAlphaUpAlt, faSortAmountDown, faSortAmountDownAlt, faSortAmountUp, faSortAmountUpAlt, faSortDown, faSortNumericDown, faSortNumericDownAlt, faSortNumericUp, faSortNumericUpAlt, faSortUp, faSpa, faSpaceShuttle, faSpellCheck, faSpider, faSpinner, faSplotch, faSprayCan, faSquare, faSquareFull, faSquareRootAlt, faStamp, faStar, faStarAndCrescent, faStarHalf, faStarHalfAlt, faStarOfDavid, faStarOfLife, faStepBackward, faStepForward, faStethoscope, faStickyNote, faStop, faStopCircle, faStopwatch, faStopwatch20, faStore, faStoreAlt, faStoreAltSlash, faStoreSlash, faStream, faStreetView, faStrikethrough, faStroopwafel, faSubscript, faSubway, faSuitcase, faSuitcaseRolling, faSun, faSuperscript, faSurprise, faSwatchbook, faSwimmer, faSwimmingPool, faSynagogue, faSync, faSyncAlt, faSyringe, faTable, faTableTennis, faTablet, faTabletAlt, faTablets, faTachometerAlt, faTag, faTags, faTape, faTasks, faTaxi, faTeeth, faTeethOpen, faTemperatureHigh, faTemperatureLow, faTenge, faTerminal, faTextHeight, faTextWidth, faTh, faThLarge, faThList, faTheaterMasks, faThermometer, faThermometerEmpty, faThermometerFull, faThermometerHalf, faThermometerQuarter, faThermometerThreeQuarters, faThumbsDown, faThumbsUp, faThumbtack, faTicketAlt, faTimes, faTimesCircle, faTint, faTintSlash, faTired, faToggleOff, faToggleOn, faToilet, faToiletPaper, faToiletPaperSlash, faToolbox, faTools, faTooth, faTorah, faToriiGate, faTractor, faTrademark, faTrafficLight, faTrailer, faTrain, faTram, faTransgender, faTransgenderAlt, faTrash, faTrashAlt, faTrashRestore, faTrashRestoreAlt, faTree, faTrophy, faTruck, faTruckLoading, faTruckMonster, faTruckMoving, faTruckPickup, faTshirt, faTty, faTv, faUmbrella, faUmbrellaBeach, faUnderline, faUndo, faUndoAlt, faUniversalAccess, faUniversity, faUnlink, faUnlock, faUnlockAlt, faUpload, faUser, faUserAlt, faUserAltSlash, faUserAstronaut, faUserCheck, faUserCircle, faUserClock, faUserCog, faUserEdit, faUserFriends, faUserGraduate, faUserInjured, faUserLock, faUserMd, faUserMinus, faUserNinja, faUserNurse, faUserPlus, faUserSecret, faUserShield, faUserSlash, faUserTag, faUserTie, faUserTimes, faUsers, faUsersCog, faUsersSlash, faUtensilSpoon, faUtensils, faVectorSquare, faVenus, faVenusDouble, faVenusMars, faVest, faVestPatches, faVial, faVials, faVideo, faVideoSlash, faVihara, faVirus, faVirusSlash, faViruses, faVoicemail, faVolleyballBall, faVolumeDown, faVolumeMute, faVolumeOff, faVolumeUp, faVoteYea, faVrCardboard, faWalking, faWallet, faWarehouse, faWater, faWaveSquare, faWeight, faWeightHanging, faWheelchair, faWifi, faWind, faWindowClose, faWindowMaximize, faWindowMinimize, faWindowRestore, faWineBottle, faWineGlass, faWineGlassAlt, faWonSign, faWrench, faXRay, faYenSign, faYinYang };\n","import {\n WithModuleProps,\n LinkedVisualConsoleProps,\n AnyObject,\n WithAgentProps\n} from \"../lib/types\";\nimport { modulePropsDecoder, linkedVCPropsDecoder, t } from \"../lib\";\nimport Item, { itemBasePropsDecoder, ItemType, ItemProps } from \"../Item\";\nimport { FormContainer, InputGroup } from \"../Form\";\nimport fontAwesomeIcon from \"../lib/FontAwesomeIcon\";\nimport { faTrashAlt, faPlusCircle } from \"@fortawesome/free-solid-svg-icons\";\n\nexport type ColorCloudProps = {\n type: ItemType.COLOR_CLOUD;\n color: string;\n defaultColor: string;\n colorRanges: {\n color: string;\n fromValue: number;\n toValue: number;\n }[];\n // TODO: Add the rest of the color cloud values?\n} & ItemProps &\n WithAgentProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the static graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function colorCloudPropsDecoder(\n data: AnyObject\n): ColorCloudProps | never {\n // TODO: Validate the color.\n if (typeof data.color !== \"string\" || data.color.length === 0) {\n throw new TypeError(\"invalid color.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.COLOR_CLOUD,\n color: data.color,\n defaultColor: data.defaultColor,\n colorRanges: data.colorRanges,\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\n/**\n * Class to add item to the Color cloud item form\n * This item consists of a label and a color type input color.\n * Element default color is stored in the color property\n */\nclass ColorInputGroup extends InputGroup> {\n protected createContent(): HTMLElement | HTMLElement[] {\n const generalDiv = document.createElement(\"div\");\n generalDiv.className = \"div-input-group\";\n\n const colorLabel = document.createElement(\"label\");\n colorLabel.textContent = t(\"Default color\");\n\n generalDiv.appendChild(colorLabel);\n\n const ColorInput = document.createElement(\"input\");\n ColorInput.type = \"color\";\n ColorInput.required = true;\n\n ColorInput.value = `${this.currentData.defaultColor ||\n this.initialData.defaultColor ||\n \"#000000\"}`;\n\n ColorInput.addEventListener(\"change\", e => {\n this.updateData({\n defaultColor: (e.target as HTMLInputElement).value\n });\n });\n\n generalDiv.appendChild(ColorInput);\n\n return generalDiv;\n }\n}\n\ntype ColorRanges = ColorCloudProps[\"colorRanges\"];\ntype ColorRange = ColorRanges[0];\n\nclass RangesInputGroup extends InputGroup> {\n protected createContent(): HTMLElement | HTMLElement[] {\n const generalDiv = document.createElement(\"div\");\n generalDiv.className = \"div-input-group div-ranges-input-group\";\n\n const rangesLabel = this.createLabel(\"Ranges\");\n\n generalDiv.appendChild(rangesLabel);\n\n const rangesControlsContainer = document.createElement(\"div\");\n const createdRangesContainer = document.createElement(\"div\");\n\n generalDiv.appendChild(createdRangesContainer);\n generalDiv.appendChild(rangesControlsContainer);\n\n const colorRanges =\n this.currentData.colorRanges || this.initialData.colorRanges || [];\n\n let buildRanges: (ranges: ColorRanges) => void;\n\n const handleRangeUpdatePartial = (index: number) => (\n range: ColorRange\n ): void => {\n const colorRanges =\n this.currentData.colorRanges || this.initialData.colorRanges || [];\n this.updateData({\n colorRanges: [\n ...colorRanges.slice(0, index),\n range,\n ...colorRanges.slice(index + 1)\n ]\n });\n };\n\n const handleDelete = (index: number) => () => {\n const colorRanges =\n this.currentData.colorRanges || this.initialData.colorRanges || [];\n const newRanges = [\n ...colorRanges.slice(0, index),\n ...colorRanges.slice(index + 1)\n ];\n\n this.updateData({ colorRanges: newRanges });\n buildRanges(newRanges);\n };\n\n const handleCreate = (range: ColorRange): void => {\n const colorRanges =\n this.currentData.colorRanges || this.initialData.colorRanges || [];\n const newRanges = [...colorRanges, range];\n this.updateData({ colorRanges: newRanges });\n buildRanges(newRanges);\n };\n\n buildRanges = ranges => {\n createdRangesContainer.innerHTML = \"\";\n ranges.forEach((colorRange, index) =>\n createdRangesContainer.appendChild(\n this.rangeContainer(\n colorRange,\n handleRangeUpdatePartial(index),\n handleDelete(index)\n )\n )\n );\n };\n\n buildRanges(colorRanges);\n\n rangesControlsContainer.appendChild(\n this.initialRangeContainer(handleCreate)\n );\n\n return generalDiv;\n }\n\n private initialRangeContainer(onCreate: (range: ColorRange) => void) {\n // TODO: Document\n const initialState = { color: \"#ffffff\" };\n\n let state: Partial = { ...initialState };\n\n const handleFromValue = (value: ColorRange[\"fromValue\"]): void => {\n state.fromValue = value;\n };\n const handleToValue = (value: ColorRange[\"toValue\"]): void => {\n state.toValue = value;\n };\n const handleColor = (value: ColorRange[\"color\"]): void => {\n state.color = value;\n };\n\n // User defined type guard.\n // Docs: https://www.typescriptlang.org/docs/handbook/advanced-types.html#user-defined-type-guards\n const isValid = (range: Partial): range is ColorRange =>\n typeof range.color !== \"undefined\" &&\n typeof range.toValue !== \"undefined\" &&\n typeof range.fromValue !== \"undefined\";\n\n const rangesContainer = document.createElement(\"div\");\n\n // Div From value.\n const rangesContainerFromValue = document.createElement(\"div\");\n const rangesLabelFromValue = this.createLabel(\"From Value\");\n const rangesInputFromValue = this.createInputNumber(null, handleFromValue);\n rangesContainerFromValue.appendChild(rangesLabelFromValue);\n rangesContainerFromValue.appendChild(rangesInputFromValue);\n rangesContainer.appendChild(rangesContainerFromValue);\n\n // Div To Value.\n const rangesDivContainerToValue = document.createElement(\"div\");\n const rangesLabelToValue = this.createLabel(\"To Value\");\n const rangesInputToValue = this.createInputNumber(null, handleToValue);\n rangesContainerFromValue.appendChild(rangesLabelToValue);\n rangesContainerFromValue.appendChild(rangesInputToValue);\n rangesContainer.appendChild(rangesDivContainerToValue);\n\n // Div Color.\n const rangesDivContainerColor = document.createElement(\"div\");\n const rangesLabelColor = this.createLabel(\"Color\");\n const rangesInputColor = this.createInputColor(\n initialState.color,\n handleColor\n );\n rangesContainerFromValue.appendChild(rangesLabelColor);\n rangesContainerFromValue.appendChild(rangesInputColor);\n rangesContainer.appendChild(rangesDivContainerColor);\n\n // Button delete.\n const createBtn = document.createElement(\"a\");\n createBtn.appendChild(\n fontAwesomeIcon(faPlusCircle, t(\"Create color range\"), {\n size: \"small\",\n color: \"#565656\"\n })\n );\n\n const handleCreate = () => {\n if (isValid(state)) onCreate(state);\n state = initialState;\n rangesInputFromValue.value = `${state.fromValue || \"\"}`;\n rangesInputToValue.value = `${state.toValue || \"\"}`;\n rangesInputColor.value = `${state.color}`;\n };\n\n createBtn.addEventListener(\"click\", handleCreate);\n\n rangesContainer.appendChild(createBtn);\n\n return rangesContainer;\n }\n\n private rangeContainer(\n colorRange: ColorRange,\n onUpdate: (range: ColorRange) => void,\n onDelete: () => void\n ): HTMLDivElement {\n // TODO: Document\n const state = { ...colorRange };\n\n const handleFromValue = (value: ColorRange[\"fromValue\"]): void => {\n state.fromValue = value;\n onUpdate({ ...state });\n };\n const handleToValue = (value: ColorRange[\"toValue\"]): void => {\n state.toValue = value;\n onUpdate({ ...state });\n };\n const handleColor = (value: ColorRange[\"color\"]): void => {\n state.color = value;\n onUpdate({ ...state });\n };\n\n const rangesContainer = document.createElement(\"div\");\n\n // Div From value.\n const rangesContainerFromValue = document.createElement(\"div\");\n const rangesLabelFromValue = this.createLabel(\"From Value\");\n const rangesInputFromValue = this.createInputNumber(\n colorRange.fromValue,\n handleFromValue\n );\n rangesContainerFromValue.appendChild(rangesLabelFromValue);\n rangesContainerFromValue.appendChild(rangesInputFromValue);\n rangesContainer.appendChild(rangesContainerFromValue);\n\n // Div To Value.\n const rangesDivContainerToValue = document.createElement(\"div\");\n const rangesLabelToValue = this.createLabel(\"To Value\");\n const rangesInputToValue = this.createInputNumber(\n colorRange.toValue,\n handleToValue\n );\n rangesContainerFromValue.appendChild(rangesLabelToValue);\n rangesContainerFromValue.appendChild(rangesInputToValue);\n rangesContainer.appendChild(rangesDivContainerToValue);\n\n // Div Color.\n const rangesDivContainerColor = document.createElement(\"div\");\n const rangesLabelColor = this.createLabel(\"Color\");\n const rangesInputColor = this.createInputColor(\n colorRange.color,\n handleColor\n );\n rangesContainerFromValue.appendChild(rangesLabelColor);\n rangesContainerFromValue.appendChild(rangesInputColor);\n rangesContainer.appendChild(rangesDivContainerColor);\n\n // Button delete.\n const deleteBtn = document.createElement(\"a\");\n deleteBtn.appendChild(\n fontAwesomeIcon(faTrashAlt, t(\"Delete color range\"), {\n size: \"small\",\n color: \"#565656\"\n })\n );\n deleteBtn.addEventListener(\"click\", onDelete);\n\n rangesContainer.appendChild(deleteBtn);\n\n return rangesContainer;\n }\n\n private createLabel(text: string): HTMLLabelElement {\n const label = document.createElement(\"label\");\n label.textContent = t(text);\n return label;\n }\n\n private createInputNumber(\n value: number | null,\n onUpdate: (value: number) => void\n ): HTMLInputElement {\n const input = document.createElement(\"input\");\n input.type = \"number\";\n if (value !== null) input.value = `${value}`;\n input.addEventListener(\"change\", e => {\n const value = parseInt((e.target as HTMLInputElement).value);\n if (!isNaN(value)) onUpdate(value);\n });\n\n return input;\n }\n\n private createInputColor(\n value: string | null,\n onUpdate: (value: string) => void\n ): HTMLInputElement {\n const input = document.createElement(\"input\");\n input.type = \"color\";\n if (value !== null) input.value = value;\n input.addEventListener(\"change\", e =>\n onUpdate((e.target as HTMLInputElement).value)\n );\n\n return input;\n }\n}\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\nexport default class ColorCloud extends Item {\n protected createDomElement(): HTMLElement {\n const container: HTMLDivElement = document.createElement(\"div\");\n container.className = \"color-cloud\";\n\n // Add the SVG.\n container.append(this.createSvgElement());\n\n return container;\n }\n\n protected resizeElement(width: number): void {\n super.resizeElement(width, width);\n }\n\n public createSvgElement(): SVGSVGElement {\n const gradientId = `grad_${this.props.id}`;\n // SVG container.\n const svg = document.createElementNS(svgNS, \"svg\");\n // Auto resize SVG using the view box magic: https://css-tricks.com/scale-svg/\n svg.setAttribute(\"viewBox\", \"0 0 100 100\");\n\n // Defs.\n const defs = document.createElementNS(svgNS, \"defs\");\n // Radial gradient.\n const radialGradient = document.createElementNS(svgNS, \"radialGradient\");\n radialGradient.setAttribute(\"id\", gradientId);\n radialGradient.setAttribute(\"cx\", \"50%\");\n radialGradient.setAttribute(\"cy\", \"50%\");\n radialGradient.setAttribute(\"r\", \"50%\");\n radialGradient.setAttribute(\"fx\", \"50%\");\n radialGradient.setAttribute(\"fy\", \"50%\");\n // Stops.\n const stop0 = document.createElementNS(svgNS, \"stop\");\n stop0.setAttribute(\"offset\", \"0%\");\n stop0.setAttribute(\n \"style\",\n `stop-color:${this.props.color};stop-opacity:0.9`\n );\n const stop100 = document.createElementNS(svgNS, \"stop\");\n stop100.setAttribute(\"offset\", \"100%\");\n stop100.setAttribute(\n \"style\",\n `stop-color:${this.props.color};stop-opacity:0`\n );\n // Circle.\n const circle = document.createElementNS(svgNS, \"circle\");\n circle.setAttribute(\"fill\", `url(#${gradientId})`);\n circle.setAttribute(\"cx\", \"50%\");\n circle.setAttribute(\"cy\", \"50%\");\n circle.setAttribute(\"r\", \"50%\");\n\n // Append elements.\n radialGradient.append(stop0, stop100);\n defs.append(radialGradient);\n svg.append(defs, circle);\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n svg.setAttribute(\"opacity\", \"0.2\");\n }\n\n return svg;\n }\n\n /**\n * @override function to add or remove inputsGroups those that are not necessary.\n * Add to:\n * ColorInputGroup\n * RangesInputGroup\n */\n public getFormContainer(): FormContainer {\n return ColorCloud.getFormContainer(this.props);\n }\n\n public static getFormContainer(\n props: Partial\n ): FormContainer {\n const formContainer = super.getFormContainer(props);\n formContainer.removeInputGroup(\"label\");\n\n formContainer.addInputGroup(new ColorInputGroup(\"color-cloud\", props), 3);\n formContainer.addInputGroup(new RangesInputGroup(\"ranges-cloud\", props), 4);\n\n return formContainer;\n }\n}\n","import { AnyObject, Position, Size, ItemMeta } from \"../lib/types\";\nimport {\n parseIntOr,\n notEmptyStringOr,\n debounce,\n addMovementListener\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\nimport TypedEvent, { Listener, Disposable } from \"../lib/TypedEvent\";\n\nexport interface LineProps extends ItemProps {\n // Overrided properties.\n type: number;\n label: null;\n isLinkEnabled: false;\n parentId: null;\n aclGroupId: null;\n // Custom properties.\n startPosition: Position;\n endPosition: Position;\n lineWidth: number;\n color: string | null;\n viewportOffsetX: number;\n viewportOffsetY: number;\n labelEnd: string;\n labelStart: string;\n linkedEnd: number | null;\n linkedStart: number | null;\n labelEndWidth: number;\n labelEndHeight: number;\n labelStartWidth: number;\n labelStartHeight: number;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the item props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function linePropsDecoder(data: AnyObject): LineProps | never {\n const props: LineProps = {\n ...itemBasePropsDecoder({ ...data, width: 1, height: 1 }), // Object spread. It will merge the properties of the two objects.\n type: ItemType.LINE_ITEM,\n label: null,\n isLinkEnabled: false,\n parentId: null,\n aclGroupId: null,\n // Initialize Position & Size.\n x: 0,\n y: 0,\n width: 0,\n height: 0,\n // Custom properties.\n startPosition: {\n x: parseIntOr(data.startX, 0),\n y: parseIntOr(data.startY, 0)\n },\n endPosition: {\n x: parseIntOr(data.endX, 0),\n y: parseIntOr(data.endY, 0)\n },\n lineWidth: parseIntOr(data.lineWidth || data.borderWidth, 1),\n color: notEmptyStringOr(data.borderColor || data.color, null),\n viewportOffsetX: 0,\n viewportOffsetY: 0,\n labelEnd: notEmptyStringOr(data.labelEnd, \"\"),\n labelEndWidth: parseIntOr(data.labelEndWidth, 0),\n linkedEnd: data.linkedEnd,\n linkedStart: data.linkedStart,\n labelEndHeight: parseIntOr(data.labelEndHeight, 0),\n labelStart: notEmptyStringOr(data.labelStart, \"\"),\n labelStartWidth: parseIntOr(data.labelStartWidth, 0),\n labelStartHeight: parseIntOr(data.labelStartHeight, 0)\n };\n\n /*\n * We need to enhance the props with the extracted size and position\n * of the box cause there are missing at the props update. A better\n * solution would be overriding the props setter to do it there, but\n * the language doesn't allow it while targetting ES5.\n * TODO: We need to figure out a more consistent solution.\n */\n\n return {\n ...props,\n // Enhance the props extracting the box size and position.\n // eslint-disable-next-line @typescript-eslint/no-use-before-define\n ...Line.extractBoxSizeAndPosition(props.startPosition, props.endPosition)\n };\n}\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\nexport interface LineMovedEvent {\n item: Line;\n startPosition: LineProps[\"startPosition\"];\n endPosition: LineProps[\"endPosition\"];\n}\n\nexport default class Line extends Item {\n protected circleRadius = 8;\n // To control if the line movement is enabled.\n protected moveMode: boolean = false;\n // To control if the line is moving.\n protected isMoving: boolean = false;\n\n // Event manager for moved events.\n public readonly lineMovedEventManager = new TypedEvent();\n // List of references to clean the event listeners.\n protected readonly lineMovedEventDisposables: Disposable[] = [];\n\n // This function will only run the 2nd arg function after the time\n // of the first arg have passed after its last execution.\n protected debouncedStartPositionMovementSave = debounce(\n 500, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n this.isMoving = false;\n const startPosition = { x, y };\n // Emit the movement event.\n this.lineMovedEventManager.emit({\n item: this,\n startPosition,\n endPosition: this.props.endPosition\n });\n }\n );\n // This property will store the function\n // to clean the movement listener.\n protected removeStartPositionMovement: Function | null = null;\n\n /**\n * Start the movement funtionality for the start position.\n * @param element Element to move inside its container.\n */\n protected initStartPositionMovementListener(\n element: HTMLElement,\n container: HTMLElement\n ): void {\n this.removeStartPositionMovement = addMovementListener(\n element,\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n // Calculate the center of the circle.\n x += this.circleRadius - this.props.viewportOffsetX / 2;\n y += this.circleRadius - this.props.viewportOffsetY / 2;\n\n const startPosition = { x, y };\n\n this.isMoving = true;\n this.props = {\n ...this.props,\n startPosition\n };\n\n // Run the end function.\n this.debouncedStartPositionMovementSave(x, y);\n },\n container\n );\n }\n /**\n * Stop the movement fun\n */\n private stopStartPositionMovementListener(): void {\n if (this.removeStartPositionMovement) {\n this.removeStartPositionMovement();\n this.removeStartPositionMovement = null;\n }\n }\n\n // This function will only run the 2nd arg function after the time\n // of the first arg have passed after its last execution.\n protected debouncedEndPositionMovementSave = debounce(\n 500, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n this.isMoving = false;\n const endPosition = { x, y };\n // Emit the movement event.\n this.lineMovedEventManager.emit({\n item: this,\n endPosition,\n startPosition: this.props.startPosition\n });\n }\n );\n // This property will store the function\n // to clean the movement listener.\n protected removeEndPositionMovement: Function | null = null;\n\n /**\n * End the movement funtionality for the end position.\n * @param element Element to move inside its container.\n */\n protected initEndPositionMovementListener(\n element: HTMLElement,\n container: HTMLElement\n ): void {\n this.removeEndPositionMovement = addMovementListener(\n element,\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n // Calculate the center of the circle.\n x += this.circleRadius - this.props.viewportOffsetX / 2;\n y += this.circleRadius - this.props.viewportOffsetY / 2;\n\n this.isMoving = true;\n this.props = {\n ...this.props,\n endPosition: { x, y }\n };\n\n // Run the end function.\n this.debouncedEndPositionMovementSave(x, y);\n },\n container\n );\n }\n /**\n * Stop the movement function.\n */\n private stopEndPositionMovementListener(): void {\n if (this.removeEndPositionMovement) {\n this.removeEndPositionMovement();\n this.removeEndPositionMovement = null;\n }\n }\n\n /**\n * @override\n */\n public constructor(props: LineProps, meta: ItemMeta) {\n /*\n * We need to override the constructor cause we need to obtain the\n * box size and position from the start and finish points of the line.\n */\n super(\n {\n ...props,\n ...Line.extractBoxSizeAndPosition(\n props.startPosition,\n props.endPosition\n )\n },\n {\n ...meta\n },\n true\n );\n\n this.moveMode = meta.editMode;\n this.init();\n\n super.resizeElement(\n Math.max(props.width, props.viewportOffsetX),\n Math.max(props.height, props.viewportOffsetY)\n );\n }\n\n /**\n * Classic and protected version of the setter of the `props` property.\n * Useful to override it from children classes.\n * @param newProps\n * @override Item.setProps\n */\n public setProps(newProps: LineProps) {\n super.setProps({\n ...newProps,\n ...Line.extractBoxSizeAndPosition(\n newProps.startPosition,\n newProps.endPosition\n )\n });\n }\n\n /**\n * Classic and protected version of the setter of the `meta` property.\n * Useful to override it from children classes.\n * @param newMetadata\n * @override Item.setMeta\n */\n public setMeta(newMetadata: ItemMeta) {\n this.moveMode = newMetadata.editMode;\n super.setMeta({\n ...newMetadata,\n lineMode: true\n });\n }\n\n /**\n * @override\n * To create the item's DOM representation.\n * @return Item.\n */\n protected createDomElement(): HTMLElement {\n const element: HTMLDivElement = document.createElement(\"div\");\n element.className = \"line\";\n\n let {\n x, // Box x\n y, // Box y\n width, // Box width\n height, // Box height\n lineWidth, // Line thickness,\n viewportOffsetX, // viewport width,\n viewportOffsetY, // viewport heigth,\n startPosition, // Line start position\n endPosition, // Line end position\n color // Line color\n } = this.props;\n\n width = width + viewportOffsetX;\n height = height + viewportOffsetY;\n\n const x1 = startPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const y1 = startPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n const x2 = endPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const y2 = endPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n\n // SVG container.\n const svg = document.createElementNS(svgNS, \"svg\");\n // Set SVG size.\n svg.setAttribute(\"width\", `${width + lineWidth}`);\n svg.setAttribute(\"height\", `${height + lineWidth}`);\n\n const line = document.createElementNS(svgNS, \"line\");\n line.setAttribute(\"x1\", `${x1}`);\n line.setAttribute(\"y1\", `${y1}`);\n line.setAttribute(\"x2\", `${x2}`);\n line.setAttribute(\"y2\", `${y2}`);\n line.setAttribute(\"stroke\", color || \"black\");\n line.setAttribute(\"stroke-width\", `${lineWidth}`);\n\n svg.append(line);\n element.append(svg);\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n if (element.parentElement != null) {\n element.parentElement.style.cursor = \"default\";\n }\n\n let {\n x, // Box x\n y, // Box y\n width, // Box width\n height, // Box height\n lineWidth, // Line thickness\n viewportOffsetX, // viewport width,\n viewportOffsetY, // viewport heigth,\n startPosition, // Line start position\n endPosition, // Line end position\n color // Line color\n } = this.props;\n\n width = width + viewportOffsetX;\n height = height + viewportOffsetY;\n\n const x1 = startPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const y1 = startPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n const x2 = endPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const y2 = endPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n\n const svgs = element.getElementsByTagName(\"svg\");\n\n if (svgs.length > 0) {\n const svg = svgs.item(0);\n\n if (svg != null) {\n // Set SVG size.\n svg.setAttribute(\"width\", `${width + lineWidth}`);\n svg.setAttribute(\"height\", `${height + lineWidth}`);\n\n const lines = svg.getElementsByTagNameNS(svgNS, \"line\");\n\n if (lines.length > 0) {\n const line = lines.item(0);\n\n if (line != null) {\n line.setAttribute(\"x1\", `${x1}`);\n line.setAttribute(\"y1\", `${y1}`);\n line.setAttribute(\"x2\", `${x2}`);\n line.setAttribute(\"y2\", `${y2}`);\n line.setAttribute(\"stroke\", color || \"black\");\n line.setAttribute(\"stroke-width\", `${lineWidth}`);\n }\n }\n }\n }\n\n if (this.moveMode) {\n let startCircle: HTMLElement = document.createElement(\"div\");\n let endCircle: HTMLElement = document.createElement(\"div\");\n\n if (this.isMoving) {\n const circlesStart = element.getElementsByClassName(\n \"visual-console-item-line-circle-start\"\n );\n if (circlesStart.length > 0) {\n const circle = circlesStart.item(0) as HTMLElement;\n if (circle) startCircle = circle;\n }\n const circlesEnd = element.getElementsByClassName(\n \"visual-console-item-line-circle-end\"\n );\n if (circlesEnd.length > 0) {\n const circle = circlesEnd.item(0) as HTMLElement;\n if (circle) endCircle = circle;\n }\n }\n\n startCircle.classList.add(\n \"visual-console-item-line-circle\",\n \"visual-console-item-line-circle-start\"\n );\n startCircle.style.width = `${this.circleRadius * 2}px`;\n startCircle.style.height = `${this.circleRadius * 2}px`;\n startCircle.style.borderRadius = \"50%\";\n startCircle.style.backgroundColor = `${color}`;\n startCircle.style.position = \"absolute\";\n startCircle.style.left = `${x1 - this.circleRadius}px`;\n startCircle.style.top = `${y1 - this.circleRadius}px`;\n startCircle.style.cursor = `move`;\n\n endCircle.classList.add(\n \"visual-console-item-line-circle\",\n \"visual-console-item-line-circle-end\"\n );\n endCircle.style.width = `${this.circleRadius * 2}px`;\n endCircle.style.height = `${this.circleRadius * 2}px`;\n endCircle.style.borderRadius = \"50%\";\n endCircle.style.backgroundColor = `${color}`;\n endCircle.style.position = \"absolute\";\n endCircle.style.left = `${x2 - this.circleRadius}px`;\n endCircle.style.top = `${y2 - this.circleRadius}px`;\n endCircle.style.cursor = `move`;\n\n if (element.parentElement !== null) {\n const circles = element.parentElement.getElementsByClassName(\n \"visual-console-item-line-circle\"\n );\n while (circles.length > 0) {\n const circle = circles.item(0);\n if (circle) circle.remove();\n }\n\n element.parentElement.appendChild(startCircle);\n element.parentElement.appendChild(endCircle);\n }\n\n // Init the movement listeners.\n this.initStartPositionMovementListener(\n startCircle,\n this.elementRef.parentElement as HTMLElement\n );\n this.initEndPositionMovementListener(\n endCircle,\n this.elementRef.parentElement as HTMLElement\n );\n } else if (!this.moveMode) {\n this.stopStartPositionMovementListener();\n // Remove circles.\n if (element.parentElement !== null) {\n const circles = element.parentElement.getElementsByClassName(\n \"visual-console-item-line-circle\"\n );\n\n while (circles.length > 0) {\n const circle = circles.item(0);\n if (circle) circle.remove();\n }\n }\n } else {\n this.stopStartPositionMovementListener();\n }\n }\n\n /**\n * Extract the size and position of the box from\n * the start and the finish of the line.\n * @param props Item properties.\n */\n public static extractBoxSizeAndPosition(\n startPosition: Position,\n endPosition: Position\n ): Size & Position {\n return {\n width: Math.abs(startPosition.x - endPosition.x),\n height: Math.abs(startPosition.y - endPosition.y),\n x: Math.min(startPosition.x, endPosition.x),\n y: Math.min(startPosition.y, endPosition.y)\n };\n }\n\n /**\n * Update the position into the properties and move the DOM container.\n * @param x Horizontal axis position.\n * @param y Vertical axis position.\n * @override item function\n */\n public move(x: number, y: number): void {\n super.moveElement(x, y);\n const startIsLeft =\n this.props.startPosition.x - this.props.endPosition.x <= 0;\n const startIsTop =\n this.props.startPosition.y - this.props.endPosition.y <= 0;\n\n const start = {\n x: startIsLeft ? x : this.props.width + x,\n y: startIsTop ? y : this.props.height + y\n };\n\n const end = {\n x: startIsLeft ? this.props.width + x : x,\n y: startIsTop ? this.props.height + y : y\n };\n\n this.props = {\n ...this.props,\n startPosition: start,\n endPosition: end\n };\n }\n\n /**\n * To remove the event listeners and the elements from the DOM.\n * @override Item.remove\n */\n public remove(): void {\n // Clear the item's event listeners.\n this.stopStartPositionMovementListener();\n // Call the parent's .remove()\n super.remove();\n }\n\n /**\n * To add an event handler to the movement of visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n *\n * @override Item.onMoved\n */\n public onLineMovementFinished(\n listener: Listener\n ): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.lineMovedEventManager.on(listener);\n this.lineMovedEventDisposables.push(disposable);\n\n return disposable;\n }\n}\n","import { AnyObject, Position, ItemMeta } from \"../lib/types\";\nimport { debounce, notEmptyStringOr, parseIntOr } from \"../lib\";\nimport { ItemType } from \"../Item\";\nimport Line, { LineProps, linePropsDecoder } from \"./Line\";\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\nexport interface NetworkLinkProps extends LineProps {\n // Overrided properties.\n type: number;\n labelStart: string;\n labelEnd: string;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the item props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function networkLinkPropsDecoder(\n data: AnyObject\n): NetworkLinkProps | never {\n return {\n ...linePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.NETWORK_LINK,\n viewportOffsetX: 0,\n viewportOffsetY: 0,\n labelEnd: notEmptyStringOr(data.labelEnd, \"\"),\n labelEndWidth: parseIntOr(data.labelEndWidth, 0),\n labelEndHeight: parseIntOr(data.labelEndHeight, 0),\n labelStart: notEmptyStringOr(data.labelStart, \"\"),\n labelStartWidth: parseIntOr(data.labelStartWidth, 0),\n labelStartHeight: parseIntOr(data.labelStartHeight, 0)\n };\n}\n\nexport default class NetworkLink extends Line {\n /**\n * @override\n */\n public constructor(props: NetworkLinkProps, meta: ItemMeta) {\n /*\n * We need to override the constructor cause we need to obtain the\n * box size and position from the start and finish points of the line.\n */\n super(\n {\n ...props\n },\n {\n ...meta\n }\n );\n\n this.render();\n }\n\n /**\n * @override\n */\n protected debouncedStartPositionMovementSave = debounce(\n 50, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n this.isMoving = false;\n\n const startPosition = { x, y };\n\n // Re-Paint after move.\n this.render();\n\n // Emit the movement event.\n this.lineMovedEventManager.emit({\n item: this,\n startPosition,\n endPosition: this.props.endPosition\n });\n }\n );\n\n protected debouncedEndPositionMovementSave = debounce(\n 50, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n this.isMoving = false;\n const endPosition = { x, y };\n\n // Re-Paint after move.\n this.render();\n\n // Emit the movement event.\n this.lineMovedEventManager.emit({\n item: this,\n endPosition,\n startPosition: this.props.startPosition\n });\n }\n );\n\n protected updateDomElement(element: HTMLElement): void {\n super.updateDomElement(element);\n\n let {\n x, // Box x\n y, // Box y\n lineWidth, // Line thickness\n viewportOffsetX, // viewport width,\n viewportOffsetY, // viewport heigth,\n startPosition, // Line start position\n endPosition, // Line end position\n color, // Line color\n labelEnd,\n labelStart,\n labelEndWidth,\n labelEndHeight,\n labelStartWidth,\n labelStartHeight\n } = this.props;\n\n const svgs = element.getElementsByTagName(\"svg\");\n let line;\n let svg;\n\n if (svgs.length > 0) {\n svg = svgs.item(0);\n\n if (svg != null) {\n // Set SVG size.\n const lines = svg.getElementsByTagNameNS(svgNS, \"line\");\n let groups = svg.getElementsByTagNameNS(svgNS, \"g\");\n while (groups.length > 0) {\n groups[0].remove();\n }\n\n if (lines.length > 0) {\n line = lines.item(0);\n }\n }\n } else {\n // No line or svg, no more actions are required.\n return;\n }\n\n if (svg == null || line == null) {\n // No more actionas are required.\n return;\n }\n\n // Font size and text adjustments.\n const fontsize = 10;\n const adjustment = 25;\n\n const lineX1 = startPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const lineY1 = startPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n const lineX2 = endPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const lineY2 = endPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n\n let x1 = startPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n let y1 = startPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n let x2 = endPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n let y2 = endPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n\n // Calculate angle (rotation).\n let rad = Math.atan2(lineY2 - lineY1, lineX2 - lineX1);\n let g = (rad * 180) / Math.PI;\n\n // Calculate effective 'text' box sizes.\n const fontheight = 25;\n if (labelStartWidth <= 0) {\n let lines = labelStart.split(\"
\");\n labelStartWidth = 0;\n lines.forEach(l => {\n if (l.length > labelStartWidth) {\n labelStartWidth = l.length * fontsize;\n }\n });\n if (labelStartHeight <= 0) {\n labelStartHeight = lines.length * fontheight;\n }\n }\n\n if (labelEndWidth <= 0) {\n let lines = labelEnd.split(\"
\");\n labelEndWidth = 0;\n lines.forEach(l => {\n if (l.length > labelEndWidth) {\n labelEndWidth = l.length * fontsize;\n }\n });\n if (labelEndHeight <= 0) {\n labelEndHeight = lines.length * fontheight;\n }\n }\n\n if (x1 < x2) {\n // x1 on left of x2.\n x1 += adjustment;\n x2 -= adjustment + labelEndWidth;\n }\n\n if (x1 > x2) {\n // x1 on right of x2.\n x1 -= adjustment + labelStartWidth;\n x2 += adjustment;\n }\n\n if (y1 < y2) {\n // y1 on y2.\n y1 += adjustment;\n y2 -= adjustment + labelEndHeight;\n }\n\n if (y1 > y2) {\n // y1 under y2.\n y1 -= adjustment + labelStartHeight;\n y2 += adjustment;\n }\n\n if (typeof color == \"undefined\") {\n color = \"#000\";\n }\n\n // Clean.\n if (element.parentElement !== null) {\n const labels = element.parentElement.getElementsByClassName(\n \"vc-item-nl-label\"\n );\n while (labels.length > 0) {\n const label = labels.item(0);\n if (label) label.remove();\n }\n\n const arrows = element.parentElement.getElementsByClassName(\n \"vc-item-nl-arrow\"\n );\n while (arrows.length > 0) {\n const arrow = arrows.item(0);\n if (arrow) arrow.remove();\n }\n }\n\n let arrowSize = lineWidth * 2;\n\n let arrowPosX = lineX1 + (lineX2 - lineX1) / 2 - arrowSize;\n let arrowPosY = lineY1 + (lineY2 - lineY1) / 2 - arrowSize;\n\n let arrowStart: HTMLElement = document.createElement(\"div\");\n arrowStart.classList.add(\"vc-item-nl-arrow\");\n arrowStart.style.position = \"absolute\";\n arrowStart.style.border = `${arrowSize}px solid transparent`;\n arrowStart.style.borderBottom = `${arrowSize}px solid ${color}`;\n arrowStart.style.left = `${arrowPosX}px`;\n arrowStart.style.top = `${arrowPosY}px`;\n arrowStart.style.transform = `rotate(${90 + g}deg)`;\n\n let arrowEnd: HTMLElement = document.createElement(\"div\");\n arrowEnd.classList.add(\"vc-item-nl-arrow\");\n arrowEnd.style.position = \"absolute\";\n arrowEnd.style.border = `${arrowSize}px solid transparent`;\n arrowEnd.style.borderBottom = `${arrowSize}px solid ${color}`;\n arrowEnd.style.left = `${arrowPosX}px`;\n arrowEnd.style.top = `${arrowPosY}px`;\n arrowEnd.style.transform = `rotate(${270 + g}deg)`;\n\n if (element.parentElement !== null) {\n element.parentElement.appendChild(arrowStart);\n element.parentElement.appendChild(arrowEnd);\n }\n\n if (labelStart != \"\") {\n let htmlLabelStart: HTMLElement = document.createElement(\"div\");\n\n try {\n htmlLabelStart.innerHTML = labelStart;\n htmlLabelStart.style.position = \"absolute\";\n htmlLabelStart.style.left = `${x1}px`;\n htmlLabelStart.style.top = `${y1}px`;\n htmlLabelStart.style.width = `${labelStartWidth}px`;\n htmlLabelStart.style.border = `2px solid ${color}`;\n\n htmlLabelStart.classList.add(\"vc-item-nl-label\", \"label-start\");\n } catch (error) {\n console.error(error);\n }\n\n if (element.parentElement !== null) {\n element.parentElement.appendChild(htmlLabelStart);\n }\n }\n\n if (labelEnd != \"\") {\n let htmlLabelEnd: HTMLElement = document.createElement(\"div\");\n\n try {\n htmlLabelEnd.innerHTML = labelEnd;\n htmlLabelEnd.style.position = \"absolute\";\n htmlLabelEnd.style.left = `${x2}px`;\n htmlLabelEnd.style.top = `${y2}px`;\n htmlLabelEnd.style.width = `${labelEndWidth}px`;\n htmlLabelEnd.style.border = `2px solid ${color}`;\n\n htmlLabelEnd.classList.add(\"vc-item-nl-label\", \"label-end\");\n } catch (error) {\n console.error(error);\n }\n\n if (element.parentElement !== null) {\n element.parentElement.appendChild(htmlLabelEnd);\n }\n }\n }\n}\n","import { LinkedVisualConsoleProps, AnyObject } from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n parseIntOr,\n notEmptyStringOr,\n stringIsEmpty,\n decodeBase64,\n parseBoolean,\n t\n} from \"../lib\";\nimport Item, { ItemProps, itemBasePropsDecoder, ItemType } from \"../Item\";\n\nexport type GroupProps = {\n type: ItemType.GROUP_ITEM;\n groupId: number;\n imageSrc: string | null; // URL?\n statusImageSrc: string | null;\n showStatistics: boolean;\n html?: string | null;\n} & ItemProps &\n LinkedVisualConsoleProps;\n\nfunction extractHtml(data: AnyObject): string | null {\n if (!stringIsEmpty(data.html)) return data.html;\n if (!stringIsEmpty(data.encodedHtml)) return decodeBase64(data.encodedHtml);\n return null;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the group props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function groupPropsDecoder(data: AnyObject): GroupProps | never {\n if (\n (typeof data.imageSrc !== \"string\" || data.imageSrc.length === 0) &&\n data.encodedHtml === null\n ) {\n throw new TypeError(\"invalid image src.\");\n }\n if (parseIntOr(data.groupId, null) === null) {\n throw new TypeError(\"invalid group Id.\");\n }\n\n const showStatistics = parseBoolean(data.showStatistics);\n const html = showStatistics ? extractHtml(data) : null;\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.GROUP_ITEM,\n groupId: parseInt(data.groupId),\n imageSrc: notEmptyStringOr(data.imageSrc, null),\n statusImageSrc: notEmptyStringOr(data.statusImageSrc, null),\n showStatistics,\n html,\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\nexport default class Group extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"group\";\n\n if (!this.props.showStatistics && this.props.statusImageSrc !== null) {\n // Icon with status.\n element.style.backgroundImage = `url(${this.props.statusImageSrc})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n } else if (this.props.showStatistics && this.props.html != null) {\n // Stats table.\n element.style.backgroundImage = \"none\";\n element.innerHTML = this.props.html;\n }\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n if (!this.props.showStatistics && this.props.statusImageSrc !== null) {\n // Icon with status.\n element.style.backgroundImage = `url(${this.props.statusImageSrc})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n element.innerHTML = \"\";\n } else if (this.props.showStatistics && this.props.html != null) {\n // Stats table.\n element.style.backgroundImage = \"none\";\n element.innerHTML = this.props.html;\n }\n }\n}\n","import \"./styles.css\";\n\nimport {\n LinkedVisualConsoleProps,\n AnyObject,\n Size,\n ItemMeta\n} from \"../../lib/types\";\nimport {\n linkedVCPropsDecoder,\n parseIntOr,\n parseBoolean,\n prefixedCssRules,\n notEmptyStringOr,\n humanDate,\n humanTime,\n t\n} from \"../../lib\";\nimport Item, { ItemProps, itemBasePropsDecoder, ItemType } from \"../../Item\";\n\nexport type ClockProps = {\n type: ItemType.CLOCK;\n clockType: \"analogic\" | \"digital\";\n clockFormat: \"datetime\" | \"time\";\n clockTimezone: string;\n clockTimezoneOffset: number; // Offset of the timezone to UTC in seconds.\n showClockTimezone: boolean;\n color?: string | null;\n} & ItemProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param clockType Raw value.\n */\nconst parseClockType = (clockType: unknown): ClockProps[\"clockType\"] => {\n switch (clockType) {\n case \"analogic\":\n case \"digital\":\n return clockType;\n default:\n return \"analogic\";\n }\n};\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param clockFormat Raw value.\n */\nconst parseClockFormat = (clockFormat: unknown): ClockProps[\"clockFormat\"] => {\n switch (clockFormat) {\n case \"datetime\":\n case \"time\":\n return clockFormat;\n default:\n return \"datetime\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the clock props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function clockPropsDecoder(data: AnyObject): ClockProps | never {\n if (\n typeof data.clockTimezone !== \"string\" ||\n data.clockTimezone.length === 0\n ) {\n throw new TypeError(\"invalid timezone.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.CLOCK,\n clockType: parseClockType(data.clockType),\n clockFormat: parseClockFormat(data.clockFormat),\n clockTimezone: data.clockTimezone,\n clockTimezoneOffset: parseIntOr(data.clockTimezoneOffset, 0),\n showClockTimezone: parseBoolean(data.showClockTimezone),\n color: notEmptyStringOr(data.color, null),\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class Clock extends Item {\n public static readonly TICK_INTERVAL = 1000; // In ms.\n private intervalRef: number | null = null;\n\n public constructor(props: ClockProps, meta: ItemMeta) {\n // Call the superclass constructor.\n super(props, meta);\n\n /* The item is already loaded and inserted into the DOM.\n * The class properties are now initialized.\n * Now you can modify the item, add event handlers, timers, etc.\n */\n\n /* The use of the arrow function is important here. startTick will\n * use the function passed as an argument to call the global setInterval\n * function. The interval, timeout or event functions, among other, are\n * called into another execution loop and using a different context.\n * The arrow functions, unlike the classic functions, doesn't create\n * their own context (this), so their context at execution time will be\n * use the current context at the declaration time.\n * http://es6-features.org/#Lexicalthis\n */\n this.startTick(\n () => {\n // Replace the old element with the updated date.\n this.childElementRef.innerHTML = this.createClock().innerHTML;\n },\n /* The analogic clock doesn't need to tick,\n * but it will be refreshed every 20 seconds\n * to avoid a desync caused by page freezes.\n */\n this.props.clockType === \"analogic\" ? 20000 : Clock.TICK_INTERVAL\n );\n }\n\n /**\n * Wrap a window.clearInterval call.\n */\n private stopTick(): void {\n if (this.intervalRef !== null) {\n window.clearInterval(this.intervalRef);\n this.intervalRef = null;\n }\n }\n\n /**\n * Wrap a window.setInterval call.\n * @param handler Function to be called every time the interval\n * timer is reached.\n * @param interval Number in milliseconds for the interval timer.\n */\n private startTick(\n handler: TimerHandler,\n interval: number = Clock.TICK_INTERVAL\n ): void {\n this.stopTick();\n this.intervalRef = window.setInterval(handler, interval);\n }\n\n /**\n * Create a element which contains the DOM representation of the item.\n * @return DOM Element.\n * @override\n */\n protected createDomElement(): HTMLElement | never {\n return this.createClock();\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n // Destructuring assigment: http://es6-features.org/#ObjectMatchingShorthandNotation\n const { width: newWidth, height: newHeight } = this.getElementSize(\n this.props.width,\n this.props.height\n );\n\n if (this.props.clockType === \"digital\") {\n if (this.meta.isBeingResized === false) {\n super.resizeElement(this.props.width, this.props.height);\n }\n element.classList.replace(\"analogic-clock\", \"digital-clock\");\n } else {\n if (this.meta.isBeingResized === false) {\n super.resizeElement(newWidth, newHeight);\n }\n element.classList.replace(\"digital-clock\", \"analogic-clock\");\n }\n element.innerHTML = this.createDomElement().innerHTML;\n }\n\n /**\n * To remove the event listeners and the elements from the DOM.\n * @override\n */\n public remove(): void {\n // Clear the interval.\n this.stopTick();\n // Call to the parent clean function.\n super.remove();\n }\n\n /**\n * @override Item.resizeElement\n * Resize the DOM content container.\n * @param width\n * @param height\n */\n protected resizeElement(width: number, height: number): void {\n // Destructuring assigment: http://es6-features.org/#ObjectMatchingShorthandNotation\n const { width: newWidth, height: newHeight } = this.getElementSize(\n width,\n height\n );\n\n // Re-render the item to force it calculate a new font size.\n if (this.props.clockType === \"digital\") {\n super.resizeElement(width, height);\n // Replace the old element with the updated date.\n //this.childElementRef.innerHTML = this.createClock().innerHTML;\n } else {\n super.resizeElement(newWidth, newHeight);\n }\n }\n\n /**\n * Create a element which contains a representation of a clock.\n * It choose between the clock types.\n * @return DOM Element.\n * @throws Error.\n */\n private createClock(): HTMLElement | never {\n switch (this.props.clockType) {\n case \"analogic\":\n return this.createAnalogicClock();\n case \"digital\":\n return this.createDigitalClock();\n default:\n throw new Error(\"invalid clock type.\");\n }\n }\n\n /**\n * Create a element which contains a representation of an analogic clock.\n * @return DOM Element.\n */\n private createAnalogicClock(): HTMLElement {\n const svgNS = \"http://www.w3.org/2000/svg\";\n const colors = {\n watchFace: \"#FFFFF0\",\n watchFaceBorder: \"#242124\",\n mark: \"#242124\",\n handDark: \"#242124\",\n handLight: \"#525252\",\n secondHand: \"#DC143C\"\n };\n\n const { width, height } = this.getElementSize(); // Destructuring assigment: http://es6-features.org/#ObjectMatchingShorthandNotation\n\n // Calculate font size to adapt the font to the item size.\n const baseTimeFontSize = 20; // Per 100px of width.\n const dateFontSizeMultiplier = 0.5;\n const dateFontSize =\n (baseTimeFontSize * dateFontSizeMultiplier * width) / 100;\n\n const div = document.createElement(\"div\");\n div.className = \"analogic-clock\";\n div.style.width = `${width}px`;\n div.style.height = `${height}px`;\n\n // SVG container.\n const svg = document.createElementNS(svgNS, \"svg\");\n // Auto resize SVG using the view box magic: https://css-tricks.com/scale-svg/\n svg.setAttribute(\"viewBox\", \"0 0 100 100\");\n\n // Clock face.\n const clockFace = document.createElementNS(svgNS, \"g\");\n clockFace.setAttribute(\"class\", \"clockface\");\n const clockFaceBackground = document.createElementNS(svgNS, \"circle\");\n clockFaceBackground.setAttribute(\"cx\", \"50\");\n clockFaceBackground.setAttribute(\"cy\", \"50\");\n clockFaceBackground.setAttribute(\"r\", \"48\");\n clockFaceBackground.setAttribute(\"fill\", colors.watchFace);\n clockFaceBackground.setAttribute(\"stroke\", colors.watchFaceBorder);\n clockFaceBackground.setAttribute(\"stroke-width\", \"2\");\n clockFaceBackground.setAttribute(\"stroke-linecap\", \"round\");\n // Insert the clockface background into the clockface group.\n clockFace.append(clockFaceBackground);\n\n // Timezone complication.\n const city = this.getHumanTimezone();\n if (city.length > 0) {\n const timezoneComplication = document.createElementNS(svgNS, \"text\");\n timezoneComplication.setAttribute(\"text-anchor\", \"middle\");\n timezoneComplication.setAttribute(\"font-size\", \"8\");\n timezoneComplication.setAttribute(\n \"transform\",\n \"translate(30 50) rotate(90)\" // Rotate to counter the clock rotation.\n );\n timezoneComplication.setAttribute(\"fill\", colors.mark);\n timezoneComplication.textContent = city;\n clockFace.append(timezoneComplication);\n }\n\n // Marks group.\n const marksGroup = document.createElementNS(svgNS, \"g\");\n marksGroup.setAttribute(\"class\", \"marks\");\n // Build the 12 hours mark.\n const mainMarkGroup = document.createElementNS(svgNS, \"g\");\n mainMarkGroup.setAttribute(\"class\", \"mark\");\n mainMarkGroup.setAttribute(\"transform\", \"translate(50 50)\");\n const mark1a = document.createElementNS(svgNS, \"line\");\n mark1a.setAttribute(\"x1\", \"36\");\n mark1a.setAttribute(\"y1\", \"0\");\n mark1a.setAttribute(\"x2\", \"46\");\n mark1a.setAttribute(\"y2\", \"0\");\n mark1a.setAttribute(\"stroke\", colors.mark);\n mark1a.setAttribute(\"stroke-width\", \"5\");\n const mark1b = document.createElementNS(svgNS, \"line\");\n mark1b.setAttribute(\"x1\", \"36\");\n mark1b.setAttribute(\"y1\", \"0\");\n mark1b.setAttribute(\"x2\", \"46\");\n mark1b.setAttribute(\"y2\", \"0\");\n mark1b.setAttribute(\"stroke\", colors.watchFace);\n mark1b.setAttribute(\"stroke-width\", \"1\");\n // Insert the 12 mark lines into their group.\n mainMarkGroup.append(mark1a, mark1b);\n // Insert the main mark into the marks group.\n marksGroup.append(mainMarkGroup);\n // Build the rest of the marks.\n for (let i = 1; i < 60; i++) {\n const mark = document.createElementNS(svgNS, \"line\");\n mark.setAttribute(\"y1\", \"0\");\n mark.setAttribute(\"y2\", \"0\");\n mark.setAttribute(\"stroke\", colors.mark);\n mark.setAttribute(\"transform\", `translate(50 50) rotate(${i * 6})`);\n\n if (i % 5 === 0) {\n mark.setAttribute(\"x1\", \"38\");\n mark.setAttribute(\"x2\", \"46\");\n mark.setAttribute(\"stroke-width\", i % 15 === 0 ? \"2\" : \"1\");\n } else {\n mark.setAttribute(\"x1\", \"42\");\n mark.setAttribute(\"x2\", \"46\");\n mark.setAttribute(\"stroke-width\", \"0.5\");\n }\n\n // Insert the mark into the marks group.\n marksGroup.append(mark);\n }\n\n /* Clock hands */\n\n // Hour hand.\n const hourHand = document.createElementNS(svgNS, \"g\");\n hourHand.setAttribute(\"class\", \"hour-hand\");\n hourHand.setAttribute(\"transform\", \"translate(50 50)\");\n // This will go back and will act like a border.\n const hourHandA = document.createElementNS(svgNS, \"line\");\n hourHandA.setAttribute(\"class\", \"hour-hand-a\");\n hourHandA.setAttribute(\"x1\", \"0\");\n hourHandA.setAttribute(\"y1\", \"0\");\n hourHandA.setAttribute(\"x2\", \"30\");\n hourHandA.setAttribute(\"y2\", \"0\");\n hourHandA.setAttribute(\"stroke\", colors.handLight);\n hourHandA.setAttribute(\"stroke-width\", \"4\");\n hourHandA.setAttribute(\"stroke-linecap\", \"round\");\n // This will go in front of the previous line.\n const hourHandB = document.createElementNS(svgNS, \"line\");\n hourHandB.setAttribute(\"class\", \"hour-hand-b\");\n hourHandB.setAttribute(\"x1\", \"0\");\n hourHandB.setAttribute(\"y1\", \"0\");\n hourHandB.setAttribute(\"x2\", \"29.9\");\n hourHandB.setAttribute(\"y2\", \"0\");\n hourHandB.setAttribute(\"stroke\", colors.handDark);\n hourHandB.setAttribute(\"stroke-width\", \"3.1\");\n hourHandB.setAttribute(\"stroke-linecap\", \"round\");\n // Append the elements to finish the hour hand.\n hourHand.append(hourHandA, hourHandB);\n\n // Minute hand.\n const minuteHand = document.createElementNS(svgNS, \"g\");\n minuteHand.setAttribute(\"class\", \"minute-hand\");\n minuteHand.setAttribute(\"transform\", \"translate(50 50)\");\n // This will go back and will act like a border.\n const minuteHandA = document.createElementNS(svgNS, \"line\");\n minuteHandA.setAttribute(\"class\", \"minute-hand-a\");\n minuteHandA.setAttribute(\"x1\", \"0\");\n minuteHandA.setAttribute(\"y1\", \"0\");\n minuteHandA.setAttribute(\"x2\", \"40\");\n minuteHandA.setAttribute(\"y2\", \"0\");\n minuteHandA.setAttribute(\"stroke\", colors.handLight);\n minuteHandA.setAttribute(\"stroke-width\", \"2\");\n minuteHandA.setAttribute(\"stroke-linecap\", \"round\");\n // This will go in front of the previous line.\n const minuteHandB = document.createElementNS(svgNS, \"line\");\n minuteHandB.setAttribute(\"class\", \"minute-hand-b\");\n minuteHandB.setAttribute(\"x1\", \"0\");\n minuteHandB.setAttribute(\"y1\", \"0\");\n minuteHandB.setAttribute(\"x2\", \"39.9\");\n minuteHandB.setAttribute(\"y2\", \"0\");\n minuteHandB.setAttribute(\"stroke\", colors.handDark);\n minuteHandB.setAttribute(\"stroke-width\", \"1.5\");\n minuteHandB.setAttribute(\"stroke-linecap\", \"round\");\n const minuteHandPin = document.createElementNS(svgNS, \"circle\");\n minuteHandPin.setAttribute(\"r\", \"3\");\n minuteHandPin.setAttribute(\"fill\", colors.handDark);\n // Append the elements to finish the minute hand.\n minuteHand.append(minuteHandA, minuteHandB, minuteHandPin);\n\n // Second hand.\n const secondHand = document.createElementNS(svgNS, \"g\");\n secondHand.setAttribute(\"class\", \"second-hand\");\n secondHand.setAttribute(\"transform\", \"translate(50 50)\");\n const secondHandBar = document.createElementNS(svgNS, \"line\");\n secondHandBar.setAttribute(\"x1\", \"0\");\n secondHandBar.setAttribute(\"y1\", \"0\");\n secondHandBar.setAttribute(\"x2\", \"46\");\n secondHandBar.setAttribute(\"y2\", \"0\");\n secondHandBar.setAttribute(\"stroke\", colors.secondHand);\n secondHandBar.setAttribute(\"stroke-width\", \"1\");\n secondHandBar.setAttribute(\"stroke-linecap\", \"round\");\n const secondHandPin = document.createElementNS(svgNS, \"circle\");\n secondHandPin.setAttribute(\"r\", \"2\");\n secondHandPin.setAttribute(\"fill\", colors.secondHand);\n // Append the elements to finish the second hand.\n secondHand.append(secondHandBar, secondHandPin);\n\n // Pin.\n const pin = document.createElementNS(svgNS, \"circle\");\n pin.setAttribute(\"cx\", \"50\");\n pin.setAttribute(\"cy\", \"50\");\n pin.setAttribute(\"r\", \"0.3\");\n pin.setAttribute(\"fill\", colors.handDark);\n\n // Get the hand angles.\n const date = this.getOriginDate();\n const seconds = date.getSeconds();\n const minutes = date.getMinutes();\n const hours = date.getHours();\n const secAngle = (360 / 60) * seconds;\n const minuteAngle = (360 / 60) * minutes + (360 / 60) * (seconds / 60);\n const hourAngle = (360 / 12) * hours + (360 / 12) * (minutes / 60);\n // Set the clock time by moving the hands.\n hourHand.setAttribute(\"transform\", `translate(50 50) rotate(${hourAngle})`);\n minuteHand.setAttribute(\n \"transform\",\n `translate(50 50) rotate(${minuteAngle})`\n );\n secondHand.setAttribute(\n \"transform\",\n `translate(50 50) rotate(${secAngle})`\n );\n\n // Build the clock\n svg.append(clockFace, marksGroup, hourHand, minuteHand, secondHand, pin);\n // Rotate the clock to its normal position.\n svg.setAttribute(\"transform\", \"rotate(-90)\");\n\n /* Add the animation declaration to the container.\n * Since the animation keyframes need to know the\n * start angle, this angle is dynamic (current time),\n * and we can't edit keyframes through javascript\n * safely and with backwards compatibility, we need\n * to inject it.\n */\n div.innerHTML = `\n \n `;\n // Add the clock to the container\n div.append(svg);\n\n // Date.\n if (this.props.clockFormat === \"datetime\") {\n const dateElem: HTMLSpanElement = document.createElement(\"span\");\n dateElem.className = \"date\";\n dateElem.textContent = humanDate(date, \"default\");\n dateElem.style.fontSize = `${dateFontSize}px`;\n if (this.props.color) dateElem.style.color = this.props.color;\n div.append(dateElem);\n }\n\n return div;\n }\n\n /**\n * Create a element which contains a representation of a digital clock.\n * @return DOM Element.\n */\n private createDigitalClock(): HTMLElement {\n const element: HTMLDivElement = document.createElement(\"div\");\n element.className = \"digital-clock\";\n\n const { width, height } = this.getElementSize(); // Destructuring assigment: http://es6-features.org/#ObjectMatchingShorthandNotation\n let modified = width;\n if (height < width) {\n modified = height;\n }\n\n // Calculate font size to adapt the font to the item size.\n const baseTimeFontSize = 35; // Per 100px of width.\n const dateFontSizeMultiplier = 0.5;\n const tzFontSizeMultiplier = 6 / this.props.clockTimezone.length;\n const timeFontSize = (baseTimeFontSize * modified) / 100;\n const dateFontSize =\n (baseTimeFontSize * dateFontSizeMultiplier * modified) / 100;\n const tzFontSize = Math.min(\n (baseTimeFontSize * tzFontSizeMultiplier * modified) / 100,\n (width / 100) * 10\n );\n\n // Date calculated using the original timezone.\n const date = this.getOriginDate();\n\n // Date.\n if (this.props.clockFormat === \"datetime\") {\n const dateElem: HTMLSpanElement = document.createElement(\"span\");\n dateElem.className = \"date\";\n dateElem.textContent = humanDate(date, \"default\");\n dateElem.style.fontSize = `${dateFontSize}px`;\n if (this.props.color) dateElem.style.color = this.props.color;\n element.append(dateElem);\n }\n\n // Time.\n const timeElem: HTMLSpanElement = document.createElement(\"span\");\n timeElem.className = \"time\";\n timeElem.textContent = humanTime(date);\n timeElem.style.fontSize = `${timeFontSize}px`;\n if (this.props.color) timeElem.style.color = this.props.color;\n element.append(timeElem);\n\n // City name.\n const city = this.getHumanTimezone();\n if (city.length > 0) {\n const tzElem: HTMLSpanElement = document.createElement(\"span\");\n tzElem.className = \"timezone\";\n tzElem.textContent = city;\n tzElem.style.fontSize = `${tzFontSize}px`;\n if (this.props.color) tzElem.style.color = this.props.color;\n element.append(tzElem);\n }\n\n return element;\n }\n\n /**\n * Generate the current date using the timezone offset stored into the properties.\n * @return The current date.\n */\n private getOriginDate(initialDate: Date | null = null): Date {\n const d = initialDate ? initialDate : new Date();\n const targetTZOffset = this.props.clockTimezoneOffset * 1000; // In ms.\n const localTZOffset = d.getTimezoneOffset() * 60 * 1000; // In ms.\n const utimestamp = d.getTime() + targetTZOffset + localTZOffset;\n\n return new Date(utimestamp);\n }\n\n /**\n * Extract a human readable city name from the timezone text.\n * @param timezone Timezone text.\n */\n public getHumanTimezone(timezone: string = this.props.clockTimezone): string {\n const [, city = \"\"] = timezone.split(\"/\");\n return city.replace(\"_\", \" \");\n }\n\n /**\n * Generate a element size using the current size and the default values.\n * @return The size.\n */\n private getElementSize(\n width: number = this.props.width,\n height: number = this.props.height\n ): Size {\n switch (this.props.clockType) {\n case \"analogic\": {\n let diameter = 100; // Default value.\n\n if (width > 0 && height > 0) {\n diameter = Math.min(width, height);\n } else if (width > 0) {\n diameter = width;\n } else if (height > 0) {\n diameter = height;\n }\n\n let extraHeigth = 0;\n if (this.props.clockFormat === \"datetime\") {\n extraHeigth = height / 8;\n }\n\n return {\n width: diameter,\n height: diameter + extraHeigth\n };\n }\n case \"digital\": {\n if (width > 0 && height > 0) {\n // The proportion of the clock should be (width = height / 2) aproximately.\n height = width / 2 < height ? width / 2 : height;\n } else if (width > 0) {\n height = width / 2;\n } else if (height > 0) {\n // The proportion of the clock should be (height * 2 = width) aproximately.\n width = height * 2;\n } else {\n width = 100; // Default value.\n height = 50; // Default value.\n }\n\n return {\n width,\n height\n };\n }\n default:\n throw new Error(\"invalid clock type.\");\n }\n }\n}\n","import { AnyObject } from \"../lib/types\";\nimport { parseIntOr, notEmptyStringOr, t } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\ninterface BoxProps extends ItemProps {\n // Overrided properties.\n readonly type: ItemType.BOX_ITEM;\n label: null;\n isLinkEnabled: false;\n parentId: null;\n aclGroupId: null;\n // Custom properties.\n borderWidth: number;\n borderColor: string | null;\n fillColor: string | null;\n fillTransparent: boolean | null;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the item props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function boxPropsDecoder(data: AnyObject): BoxProps | never {\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.BOX_ITEM,\n label: null,\n isLinkEnabled: false,\n parentId: null,\n aclGroupId: null,\n // Custom properties.\n borderWidth: parseIntOr(data.borderWidth, 0),\n borderColor: notEmptyStringOr(data.borderColor, null),\n fillColor: notEmptyStringOr(data.fillColor, null),\n fillTransparent: data.fillTransparent\n };\n}\n\nexport default class Box extends Item {\n protected createDomElement(): HTMLElement {\n const box: HTMLDivElement = document.createElement(\"div\");\n box.className = \"box\";\n // To prevent this item to expand beyond its parent.\n box.style.boxSizing = \"border-box\";\n\n if (this.props.fillTransparent) {\n box.style.backgroundColor = \"transparent\";\n } else {\n if (this.props.fillColor) {\n box.style.backgroundColor = this.props.fillColor;\n }\n }\n\n // Border.\n if (this.props.borderWidth > 0) {\n box.style.borderStyle = \"solid\";\n // Control the max width to prevent this item to expand beyond its parent.\n const maxBorderWidth = Math.min(this.props.width, this.props.height) / 2;\n const borderWidth = Math.min(this.props.borderWidth, maxBorderWidth);\n box.style.borderWidth = `${borderWidth}px`;\n\n if (this.props.borderColor) {\n box.style.borderColor = this.props.borderColor;\n }\n }\n\n return box;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n if (this.props.fillTransparent) {\n element.style.backgroundColor = \"transparent\";\n } else {\n if (this.props.fillColor) {\n element.style.backgroundColor = this.props.fillColor;\n }\n }\n\n // Border.\n if (this.props.borderWidth > 0) {\n element.style.borderStyle = \"solid\";\n // Control the max width to prevent this item to expand beyond its parent.\n const maxBorderWidth = Math.min(this.props.width, this.props.height) / 2;\n const borderWidth = Math.min(this.props.borderWidth, maxBorderWidth);\n element.style.borderWidth = `${borderWidth}px`;\n\n if (this.props.borderColor) {\n element.style.borderColor = this.props.borderColor;\n }\n }\n }\n}\n","import { LinkedVisualConsoleProps, AnyObject } from \"../lib/types\";\nimport { linkedVCPropsDecoder } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type LabelProps = {\n type: ItemType.LABEL;\n} & ItemProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the label props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function labelPropsDecoder(data: AnyObject): LabelProps | never {\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.LABEL,\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class Label extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"label\";\n element.innerHTML = this.getLabelWithMacrosReplaced();\n\n return element;\n }\n\n /**\n * @override Item.createLabelDomElement\n * Create a new label for the visual console item.\n * @return Item label.\n */\n public createLabelDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"visual-console-item-label\";\n // Always return an empty label.\n return element;\n }\n}\n","import {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n parseIntOr,\n modulePropsDecoder,\n replaceMacros\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type SimpleValueProps = {\n type: ItemType.SIMPLE_VALUE;\n valueType: \"string\" | \"image\";\n value: string;\n} & (\n | {\n processValue: \"none\";\n }\n | {\n processValue: \"avg\" | \"max\" | \"min\";\n period: number;\n }\n) &\n ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw value type.\n * @param valueType Raw value.\n */\nconst parseValueType = (valueType: unknown): SimpleValueProps[\"valueType\"] => {\n switch (valueType) {\n case \"string\":\n case \"image\":\n return valueType;\n default:\n return \"string\";\n }\n};\n\n/**\n * Extract a valid enum value from a raw process value.\n * @param processValue Raw value.\n */\nconst parseProcessValue = (\n processValue: unknown\n): SimpleValueProps[\"processValue\"] => {\n switch (processValue) {\n case \"none\":\n case \"avg\":\n case \"max\":\n case \"min\":\n return processValue;\n default:\n return \"none\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the simple value props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function simpleValuePropsDecoder(\n data: AnyObject\n): SimpleValueProps | never {\n if (typeof data.value !== \"string\" || data.value.length === 0) {\n throw new TypeError(\"invalid value\");\n }\n\n const processValue = parseProcessValue(data.processValue);\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.SIMPLE_VALUE,\n valueType: parseValueType(data.valueType),\n value: data.value,\n ...(processValue === \"none\"\n ? { processValue }\n : { processValue, period: parseIntOr(data.period, 0) }), // Object spread. It will merge the properties of the two objects.\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class SimpleValue extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"simple-value\";\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n if (this.props.valueType === \"image\") {\n const img = document.createElement(\"img\");\n img.src = this.props.value;\n element.append(img);\n } else {\n // Add the value to the label and show it.\n let text = this.props.value;\n let label = this.getLabelWithMacrosReplaced();\n if (label.length > 0) {\n text = replaceMacros([{ macro: /\\(?_VALUE_\\)?/i, value: text }], label);\n }\n\n element.innerHTML = text;\n }\n\n return element;\n }\n\n /**\n * Generate a element size\n * using the current size and the default values.\n * @return The size.\n */ protected createLabelDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"visual-console-item-label\";\n // Always return an empty label.\n return element;\n }\n}\n","var pi = Math.PI,\n tau = 2 * pi,\n epsilon = 1e-6,\n tauEpsilon = tau - epsilon;\n\nfunction Path() {\n this._x0 = this._y0 = // start of current subpath\n this._x1 = this._y1 = null; // end of current subpath\n this._ = \"\";\n}\n\nfunction path() {\n return new Path;\n}\n\nPath.prototype = path.prototype = {\n constructor: Path,\n moveTo: function(x, y) {\n this._ += \"M\" + (this._x0 = this._x1 = +x) + \",\" + (this._y0 = this._y1 = +y);\n },\n closePath: function() {\n if (this._x1 !== null) {\n this._x1 = this._x0, this._y1 = this._y0;\n this._ += \"Z\";\n }\n },\n lineTo: function(x, y) {\n this._ += \"L\" + (this._x1 = +x) + \",\" + (this._y1 = +y);\n },\n quadraticCurveTo: function(x1, y1, x, y) {\n this._ += \"Q\" + (+x1) + \",\" + (+y1) + \",\" + (this._x1 = +x) + \",\" + (this._y1 = +y);\n },\n bezierCurveTo: function(x1, y1, x2, y2, x, y) {\n this._ += \"C\" + (+x1) + \",\" + (+y1) + \",\" + (+x2) + \",\" + (+y2) + \",\" + (this._x1 = +x) + \",\" + (this._y1 = +y);\n },\n arcTo: function(x1, y1, x2, y2, r) {\n x1 = +x1, y1 = +y1, x2 = +x2, y2 = +y2, r = +r;\n var x0 = this._x1,\n y0 = this._y1,\n x21 = x2 - x1,\n y21 = y2 - y1,\n x01 = x0 - x1,\n y01 = y0 - y1,\n l01_2 = x01 * x01 + y01 * y01;\n\n // Is the radius negative? Error.\n if (r < 0) throw new Error(\"negative radius: \" + r);\n\n // Is this path empty? Move to (x1,y1).\n if (this._x1 === null) {\n this._ += \"M\" + (this._x1 = x1) + \",\" + (this._y1 = y1);\n }\n\n // Or, is (x1,y1) coincident with (x0,y0)? Do nothing.\n else if (!(l01_2 > epsilon));\n\n // Or, are (x0,y0), (x1,y1) and (x2,y2) collinear?\n // Equivalently, is (x1,y1) coincident with (x2,y2)?\n // Or, is the radius zero? Line to (x1,y1).\n else if (!(Math.abs(y01 * x21 - y21 * x01) > epsilon) || !r) {\n this._ += \"L\" + (this._x1 = x1) + \",\" + (this._y1 = y1);\n }\n\n // Otherwise, draw an arc!\n else {\n var x20 = x2 - x0,\n y20 = y2 - y0,\n l21_2 = x21 * x21 + y21 * y21,\n l20_2 = x20 * x20 + y20 * y20,\n l21 = Math.sqrt(l21_2),\n l01 = Math.sqrt(l01_2),\n l = r * Math.tan((pi - Math.acos((l21_2 + l01_2 - l20_2) / (2 * l21 * l01))) / 2),\n t01 = l / l01,\n t21 = l / l21;\n\n // If the start tangent is not coincident with (x0,y0), line to.\n if (Math.abs(t01 - 1) > epsilon) {\n this._ += \"L\" + (x1 + t01 * x01) + \",\" + (y1 + t01 * y01);\n }\n\n this._ += \"A\" + r + \",\" + r + \",0,0,\" + (+(y01 * x20 > x01 * y20)) + \",\" + (this._x1 = x1 + t21 * x21) + \",\" + (this._y1 = y1 + t21 * y21);\n }\n },\n arc: function(x, y, r, a0, a1, ccw) {\n x = +x, y = +y, r = +r, ccw = !!ccw;\n var dx = r * Math.cos(a0),\n dy = r * Math.sin(a0),\n x0 = x + dx,\n y0 = y + dy,\n cw = 1 ^ ccw,\n da = ccw ? a0 - a1 : a1 - a0;\n\n // Is the radius negative? Error.\n if (r < 0) throw new Error(\"negative radius: \" + r);\n\n // Is this path empty? Move to (x0,y0).\n if (this._x1 === null) {\n this._ += \"M\" + x0 + \",\" + y0;\n }\n\n // Or, is (x0,y0) not coincident with the previous point? Line to (x0,y0).\n else if (Math.abs(this._x1 - x0) > epsilon || Math.abs(this._y1 - y0) > epsilon) {\n this._ += \"L\" + x0 + \",\" + y0;\n }\n\n // Is this arc empty? We’re done.\n if (!r) return;\n\n // Does the angle go the wrong way? Flip the direction.\n if (da < 0) da = da % tau + tau;\n\n // Is this a complete circle? Draw two arcs to complete the circle.\n if (da > tauEpsilon) {\n this._ += \"A\" + r + \",\" + r + \",0,1,\" + cw + \",\" + (x - dx) + \",\" + (y - dy) + \"A\" + r + \",\" + r + \",0,1,\" + cw + \",\" + (this._x1 = x0) + \",\" + (this._y1 = y0);\n }\n\n // Is this arc non-empty? Draw an arc!\n else if (da > epsilon) {\n this._ += \"A\" + r + \",\" + r + \",0,\" + (+(da >= pi)) + \",\" + cw + \",\" + (this._x1 = x + r * Math.cos(a1)) + \",\" + (this._y1 = y + r * Math.sin(a1));\n }\n },\n rect: function(x, y, w, h) {\n this._ += \"M\" + (this._x0 = this._x1 = +x) + \",\" + (this._y0 = this._y1 = +y) + \"h\" + (+w) + \"v\" + (+h) + \"h\" + (-w) + \"Z\";\n },\n toString: function() {\n return this._;\n }\n};\n\nexport default path;\n","export default function(x) {\n return function constant() {\n return x;\n };\n}\n","export var abs = Math.abs;\nexport var atan2 = Math.atan2;\nexport var cos = Math.cos;\nexport var max = Math.max;\nexport var min = Math.min;\nexport var sin = Math.sin;\nexport var sqrt = Math.sqrt;\n\nexport var epsilon = 1e-12;\nexport var pi = Math.PI;\nexport var halfPi = pi / 2;\nexport var tau = 2 * pi;\n\nexport function acos(x) {\n return x > 1 ? 0 : x < -1 ? pi : Math.acos(x);\n}\n\nexport function asin(x) {\n return x >= 1 ? halfPi : x <= -1 ? -halfPi : Math.asin(x);\n}\n","import {path} from \"d3-path\";\nimport constant from \"./constant.js\";\nimport {abs, acos, asin, atan2, cos, epsilon, halfPi, max, min, pi, sin, sqrt, tau} from \"./math.js\";\n\nfunction arcInnerRadius(d) {\n return d.innerRadius;\n}\n\nfunction arcOuterRadius(d) {\n return d.outerRadius;\n}\n\nfunction arcStartAngle(d) {\n return d.startAngle;\n}\n\nfunction arcEndAngle(d) {\n return d.endAngle;\n}\n\nfunction arcPadAngle(d) {\n return d && d.padAngle; // Note: optional!\n}\n\nfunction intersect(x0, y0, x1, y1, x2, y2, x3, y3) {\n var x10 = x1 - x0, y10 = y1 - y0,\n x32 = x3 - x2, y32 = y3 - y2,\n t = y32 * x10 - x32 * y10;\n if (t * t < epsilon) return;\n t = (x32 * (y0 - y2) - y32 * (x0 - x2)) / t;\n return [x0 + t * x10, y0 + t * y10];\n}\n\n// Compute perpendicular offset line of length rc.\n// http://mathworld.wolfram.com/Circle-LineIntersection.html\nfunction cornerTangents(x0, y0, x1, y1, r1, rc, cw) {\n var x01 = x0 - x1,\n y01 = y0 - y1,\n lo = (cw ? rc : -rc) / sqrt(x01 * x01 + y01 * y01),\n ox = lo * y01,\n oy = -lo * x01,\n x11 = x0 + ox,\n y11 = y0 + oy,\n x10 = x1 + ox,\n y10 = y1 + oy,\n x00 = (x11 + x10) / 2,\n y00 = (y11 + y10) / 2,\n dx = x10 - x11,\n dy = y10 - y11,\n d2 = dx * dx + dy * dy,\n r = r1 - rc,\n D = x11 * y10 - x10 * y11,\n d = (dy < 0 ? -1 : 1) * sqrt(max(0, r * r * d2 - D * D)),\n cx0 = (D * dy - dx * d) / d2,\n cy0 = (-D * dx - dy * d) / d2,\n cx1 = (D * dy + dx * d) / d2,\n cy1 = (-D * dx + dy * d) / d2,\n dx0 = cx0 - x00,\n dy0 = cy0 - y00,\n dx1 = cx1 - x00,\n dy1 = cy1 - y00;\n\n // Pick the closer of the two intersection points.\n // TODO Is there a faster way to determine which intersection to use?\n if (dx0 * dx0 + dy0 * dy0 > dx1 * dx1 + dy1 * dy1) cx0 = cx1, cy0 = cy1;\n\n return {\n cx: cx0,\n cy: cy0,\n x01: -ox,\n y01: -oy,\n x11: cx0 * (r1 / r - 1),\n y11: cy0 * (r1 / r - 1)\n };\n}\n\nexport default function() {\n var innerRadius = arcInnerRadius,\n outerRadius = arcOuterRadius,\n cornerRadius = constant(0),\n padRadius = null,\n startAngle = arcStartAngle,\n endAngle = arcEndAngle,\n padAngle = arcPadAngle,\n context = null;\n\n function arc() {\n var buffer,\n r,\n r0 = +innerRadius.apply(this, arguments),\n r1 = +outerRadius.apply(this, arguments),\n a0 = startAngle.apply(this, arguments) - halfPi,\n a1 = endAngle.apply(this, arguments) - halfPi,\n da = abs(a1 - a0),\n cw = a1 > a0;\n\n if (!context) context = buffer = path();\n\n // Ensure that the outer radius is always larger than the inner radius.\n if (r1 < r0) r = r1, r1 = r0, r0 = r;\n\n // Is it a point?\n if (!(r1 > epsilon)) context.moveTo(0, 0);\n\n // Or is it a circle or annulus?\n else if (da > tau - epsilon) {\n context.moveTo(r1 * cos(a0), r1 * sin(a0));\n context.arc(0, 0, r1, a0, a1, !cw);\n if (r0 > epsilon) {\n context.moveTo(r0 * cos(a1), r0 * sin(a1));\n context.arc(0, 0, r0, a1, a0, cw);\n }\n }\n\n // Or is it a circular or annular sector?\n else {\n var a01 = a0,\n a11 = a1,\n a00 = a0,\n a10 = a1,\n da0 = da,\n da1 = da,\n ap = padAngle.apply(this, arguments) / 2,\n rp = (ap > epsilon) && (padRadius ? +padRadius.apply(this, arguments) : sqrt(r0 * r0 + r1 * r1)),\n rc = min(abs(r1 - r0) / 2, +cornerRadius.apply(this, arguments)),\n rc0 = rc,\n rc1 = rc,\n t0,\n t1;\n\n // Apply padding? Note that since r1 ≥ r0, da1 ≥ da0.\n if (rp > epsilon) {\n var p0 = asin(rp / r0 * sin(ap)),\n p1 = asin(rp / r1 * sin(ap));\n if ((da0 -= p0 * 2) > epsilon) p0 *= (cw ? 1 : -1), a00 += p0, a10 -= p0;\n else da0 = 0, a00 = a10 = (a0 + a1) / 2;\n if ((da1 -= p1 * 2) > epsilon) p1 *= (cw ? 1 : -1), a01 += p1, a11 -= p1;\n else da1 = 0, a01 = a11 = (a0 + a1) / 2;\n }\n\n var x01 = r1 * cos(a01),\n y01 = r1 * sin(a01),\n x10 = r0 * cos(a10),\n y10 = r0 * sin(a10);\n\n // Apply rounded corners?\n if (rc > epsilon) {\n var x11 = r1 * cos(a11),\n y11 = r1 * sin(a11),\n x00 = r0 * cos(a00),\n y00 = r0 * sin(a00),\n oc;\n\n // Restrict the corner radius according to the sector angle.\n if (da < pi && (oc = intersect(x01, y01, x00, y00, x11, y11, x10, y10))) {\n var ax = x01 - oc[0],\n ay = y01 - oc[1],\n bx = x11 - oc[0],\n by = y11 - oc[1],\n kc = 1 / sin(acos((ax * bx + ay * by) / (sqrt(ax * ax + ay * ay) * sqrt(bx * bx + by * by))) / 2),\n lc = sqrt(oc[0] * oc[0] + oc[1] * oc[1]);\n rc0 = min(rc, (r0 - lc) / (kc - 1));\n rc1 = min(rc, (r1 - lc) / (kc + 1));\n }\n }\n\n // Is the sector collapsed to a line?\n if (!(da1 > epsilon)) context.moveTo(x01, y01);\n\n // Does the sector’s outer ring have rounded corners?\n else if (rc1 > epsilon) {\n t0 = cornerTangents(x00, y00, x01, y01, r1, rc1, cw);\n t1 = cornerTangents(x11, y11, x10, y10, r1, rc1, cw);\n\n context.moveTo(t0.cx + t0.x01, t0.cy + t0.y01);\n\n // Have the corners merged?\n if (rc1 < rc) context.arc(t0.cx, t0.cy, rc1, atan2(t0.y01, t0.x01), atan2(t1.y01, t1.x01), !cw);\n\n // Otherwise, draw the two corners and the ring.\n else {\n context.arc(t0.cx, t0.cy, rc1, atan2(t0.y01, t0.x01), atan2(t0.y11, t0.x11), !cw);\n context.arc(0, 0, r1, atan2(t0.cy + t0.y11, t0.cx + t0.x11), atan2(t1.cy + t1.y11, t1.cx + t1.x11), !cw);\n context.arc(t1.cx, t1.cy, rc1, atan2(t1.y11, t1.x11), atan2(t1.y01, t1.x01), !cw);\n }\n }\n\n // Or is the outer ring just a circular arc?\n else context.moveTo(x01, y01), context.arc(0, 0, r1, a01, a11, !cw);\n\n // Is there no inner ring, and it’s a circular sector?\n // Or perhaps it’s an annular sector collapsed due to padding?\n if (!(r0 > epsilon) || !(da0 > epsilon)) context.lineTo(x10, y10);\n\n // Does the sector’s inner ring (or point) have rounded corners?\n else if (rc0 > epsilon) {\n t0 = cornerTangents(x10, y10, x11, y11, r0, -rc0, cw);\n t1 = cornerTangents(x01, y01, x00, y00, r0, -rc0, cw);\n\n context.lineTo(t0.cx + t0.x01, t0.cy + t0.y01);\n\n // Have the corners merged?\n if (rc0 < rc) context.arc(t0.cx, t0.cy, rc0, atan2(t0.y01, t0.x01), atan2(t1.y01, t1.x01), !cw);\n\n // Otherwise, draw the two corners and the ring.\n else {\n context.arc(t0.cx, t0.cy, rc0, atan2(t0.y01, t0.x01), atan2(t0.y11, t0.x11), !cw);\n context.arc(0, 0, r0, atan2(t0.cy + t0.y11, t0.cx + t0.x11), atan2(t1.cy + t1.y11, t1.cx + t1.x11), cw);\n context.arc(t1.cx, t1.cy, rc0, atan2(t1.y11, t1.x11), atan2(t1.y01, t1.x01), !cw);\n }\n }\n\n // Or is the inner ring just a circular arc?\n else context.arc(0, 0, r0, a10, a00, cw);\n }\n\n context.closePath();\n\n if (buffer) return context = null, buffer + \"\" || null;\n }\n\n arc.centroid = function() {\n var r = (+innerRadius.apply(this, arguments) + +outerRadius.apply(this, arguments)) / 2,\n a = (+startAngle.apply(this, arguments) + +endAngle.apply(this, arguments)) / 2 - pi / 2;\n return [cos(a) * r, sin(a) * r];\n };\n\n arc.innerRadius = function(_) {\n return arguments.length ? (innerRadius = typeof _ === \"function\" ? _ : constant(+_), arc) : innerRadius;\n };\n\n arc.outerRadius = function(_) {\n return arguments.length ? (outerRadius = typeof _ === \"function\" ? _ : constant(+_), arc) : outerRadius;\n };\n\n arc.cornerRadius = function(_) {\n return arguments.length ? (cornerRadius = typeof _ === \"function\" ? _ : constant(+_), arc) : cornerRadius;\n };\n\n arc.padRadius = function(_) {\n return arguments.length ? (padRadius = _ == null ? null : typeof _ === \"function\" ? _ : constant(+_), arc) : padRadius;\n };\n\n arc.startAngle = function(_) {\n return arguments.length ? (startAngle = typeof _ === \"function\" ? _ : constant(+_), arc) : startAngle;\n };\n\n arc.endAngle = function(_) {\n return arguments.length ? (endAngle = typeof _ === \"function\" ? _ : constant(+_), arc) : endAngle;\n };\n\n arc.padAngle = function(_) {\n return arguments.length ? (padAngle = typeof _ === \"function\" ? _ : constant(+_), arc) : padAngle;\n };\n\n arc.context = function(_) {\n return arguments.length ? ((context = _ == null ? null : _), arc) : context;\n };\n\n return arc;\n}\n","import { arc as arcFactory } from \"d3-shape\";\n\nimport {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n modulePropsDecoder,\n notEmptyStringOr,\n parseIntOr,\n parseFloatOr\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type PercentileProps = {\n type: ItemType.PERCENTILE_BAR;\n percentileType:\n | \"progress-bar\"\n | \"bubble\"\n | \"circular-progress-bar\"\n | \"circular-progress-bar-alt\";\n valueType: \"percent\" | \"value\";\n minValue: number | null;\n maxValue: number | null;\n color: string | null;\n labelColor: string | null;\n value: number | null;\n unit: string | null;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw type value.\n * @param type Raw value.\n */\nfunction extractPercentileType(\n type: unknown\n): PercentileProps[\"percentileType\"] {\n switch (type) {\n case \"progress-bar\":\n case \"bubble\":\n case \"circular-progress-bar\":\n case \"circular-progress-bar-alt\":\n return type;\n default:\n case ItemType.PERCENTILE_BAR:\n return \"progress-bar\";\n case ItemType.PERCENTILE_BUBBLE:\n return \"bubble\";\n case ItemType.CIRCULAR_PROGRESS_BAR:\n return \"circular-progress-bar\";\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n return \"circular-progress-bar-alt\";\n }\n}\n\n/**\n * Extract a valid enum value from a raw value type value.\n * @param type Raw value.\n */\nfunction extractValueType(valueType: unknown): PercentileProps[\"valueType\"] {\n switch (valueType) {\n case \"percent\":\n case \"value\":\n return valueType;\n default:\n return \"percent\";\n }\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the percentile props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function percentilePropsDecoder(\n data: AnyObject\n): PercentileProps | never {\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.PERCENTILE_BAR,\n percentileType: extractPercentileType(data.percentileType || data.type),\n valueType: extractValueType(data.valueType),\n minValue: parseIntOr(data.minValue, null),\n maxValue: parseIntOr(data.maxValue, null),\n color: notEmptyStringOr(data.color, null),\n labelColor: notEmptyStringOr(data.labelColor, null),\n value: parseFloatOr(data.value, null),\n unit: notEmptyStringOr(data.unit, null),\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\nexport default class Percentile extends Item {\n protected createDomElement(): HTMLElement {\n const colors = {\n background: \"#000000\",\n progress: this.props.color || \"#000000\",\n text: this.props.labelColor || \"#bcbcbc\"\n };\n // Progress.\n const progress = this.getProgress();\n // Main element.\n const element = document.createElement(\"div\");\n\n var formatValue;\n if (this.props.value != null) {\n if (Intl) {\n formatValue = Intl.NumberFormat(\"en-EN\").format(this.props.value);\n } else {\n formatValue = this.props.value;\n }\n }\n\n // SVG container.\n const svg = document.createElementNS(svgNS, \"svg\");\n\n switch (this.props.percentileType) {\n case \"progress-bar\":\n {\n const backgroundRect = document.createElementNS(svgNS, \"rect\");\n backgroundRect.setAttribute(\"fill\", colors.background);\n backgroundRect.setAttribute(\"fill-opacity\", \"0.5\");\n backgroundRect.setAttribute(\"width\", \"100%\");\n backgroundRect.setAttribute(\"height\", \"100%\");\n backgroundRect.setAttribute(\"rx\", \"5\");\n backgroundRect.setAttribute(\"ry\", \"5\");\n const progressRect = document.createElementNS(svgNS, \"rect\");\n progressRect.setAttribute(\"fill\", colors.progress);\n progressRect.setAttribute(\"fill-opacity\", \"1\");\n progressRect.setAttribute(\"width\", `${progress}%`);\n progressRect.setAttribute(\"height\", \"100%\");\n progressRect.setAttribute(\"rx\", \"5\");\n progressRect.setAttribute(\"ry\", \"5\");\n const text = document.createElementNS(svgNS, \"text\");\n text.setAttribute(\"text-anchor\", \"middle\");\n text.setAttribute(\"alignment-baseline\", \"middle\");\n text.setAttribute(\"font-size\", \"15\");\n text.setAttribute(\"font-family\", \"lato\");\n text.setAttribute(\"font-weight\", \"bold\");\n text.setAttribute(\"text-anchor\", `middle`);\n text.setAttribute(\"alignment-baseline\", `middle`);\n text.setAttribute(\"x\", `50%`);\n text.setAttribute(\"y\", `50%`);\n text.setAttribute(\"fill\", colors.text);\n\n if (this.props.valueType === \"value\") {\n text.style.fontSize = \"6pt\";\n\n text.textContent = this.props.unit\n ? `${formatValue} ${this.props.unit}`\n : `${formatValue}`;\n } else {\n text.textContent = `${progress}%`;\n }\n\n svg.setAttribute(\"width\", \"100%\");\n svg.setAttribute(\"height\", \"100%\");\n svg.append(backgroundRect, progressRect, text);\n }\n break;\n case \"bubble\":\n case \"circular-progress-bar\":\n case \"circular-progress-bar-alt\":\n {\n // Auto resize SVG using the view box magic: https://css-tricks.com/scale-svg/\n svg.setAttribute(\"viewBox\", \"0 0 100 100\");\n\n if (this.props.percentileType === \"bubble\") {\n // Create and append the circles.\n const backgroundCircle = document.createElementNS(svgNS, \"circle\");\n backgroundCircle.setAttribute(\"transform\", \"translate(50 50)\");\n backgroundCircle.setAttribute(\"fill\", colors.background);\n backgroundCircle.setAttribute(\"fill-opacity\", \"0.5\");\n backgroundCircle.setAttribute(\"r\", \"50\");\n const progressCircle = document.createElementNS(svgNS, \"circle\");\n progressCircle.setAttribute(\"transform\", \"translate(50 50)\");\n progressCircle.setAttribute(\"fill\", colors.progress);\n progressCircle.setAttribute(\"fill-opacity\", \"1\");\n progressCircle.setAttribute(\"r\", `${progress / 2}`);\n\n svg.append(backgroundCircle, progressCircle);\n } else {\n // Create and append the circles.\n const arcProps = {\n innerRadius:\n this.props.percentileType === \"circular-progress-bar\" ? 30 : 0,\n outerRadius: 50,\n startAngle: 0,\n endAngle: Math.PI * 2\n };\n const arc = arcFactory();\n\n const backgroundCircle = document.createElementNS(svgNS, \"path\");\n backgroundCircle.setAttribute(\"transform\", \"translate(50 50)\");\n backgroundCircle.setAttribute(\"fill\", colors.background);\n backgroundCircle.setAttribute(\"fill-opacity\", \"0.5\");\n backgroundCircle.setAttribute(\"d\", `${arc(arcProps)}`);\n const progressCircle = document.createElementNS(svgNS, \"path\");\n progressCircle.setAttribute(\"transform\", \"translate(50 50)\");\n progressCircle.setAttribute(\"fill\", colors.progress);\n progressCircle.setAttribute(\"fill-opacity\", \"1\");\n progressCircle.setAttribute(\n \"d\",\n `${arc({\n ...arcProps,\n endAngle: arcProps.endAngle * (progress / 100)\n })}`\n );\n\n svg.append(backgroundCircle, progressCircle);\n }\n\n // Create and append the text.\n const text = document.createElementNS(svgNS, \"text\");\n text.setAttribute(\"text-anchor\", \"middle\");\n text.setAttribute(\"alignment-baseline\", \"middle\");\n text.setAttribute(\"font-size\", \"16\");\n text.setAttribute(\"font-family\", \"lato\");\n text.setAttribute(\"font-weight\", \"bold\");\n text.setAttribute(\"fill\", colors.text);\n\n if (this.props.valueType === \"value\" && this.props.value != null) {\n // Show value and unit in 1 (no unit) or 2 lines.\n if (this.props.unit && this.props.unit.length > 0) {\n const value = document.createElementNS(svgNS, \"tspan\");\n value.setAttribute(\"x\", \"0\");\n value.setAttribute(\"dy\", \"1em\");\n value.textContent = `${formatValue}`;\n value.style.fontSize = \"8pt\";\n const unit = document.createElementNS(svgNS, \"tspan\");\n unit.setAttribute(\"x\", \"0\");\n unit.setAttribute(\"dy\", \"1em\");\n unit.textContent = `${this.props.unit}`;\n unit.style.fontSize = \"8pt\";\n text.append(value, unit);\n text.setAttribute(\"transform\", \"translate(50 33)\");\n } else {\n text.textContent = `${formatValue}`;\n text.style.fontSize = \"8pt\";\n text.setAttribute(\"transform\", \"translate(50 50)\");\n }\n } else {\n // Percentage.\n text.textContent = `${progress}%`;\n text.setAttribute(\"transform\", \"translate(50 50)\");\n }\n\n svg.append(text);\n }\n break;\n }\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n svg.setAttribute(\"opacity\", \"0.2\");\n }\n\n if (svg !== null) element.append(svg);\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n if (this.meta.isBeingResized === false) {\n this.resizeElement(this.props.width, this.props.height);\n }\n element.innerHTML = this.createDomElement().innerHTML;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected resizeElement(width: number, height: number): void {\n if (this.props.percentileType === \"progress-bar\") {\n super.resizeElement(width, 35);\n } else {\n super.resizeElement(width, width);\n }\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n public resize(width: number): void {\n this.resizeElement(width, width);\n let height = this.props.maxValue || 0;\n if (this.props.percentileType === \"progress-bar\") {\n height = 35;\n }\n super.setProps({\n ...this.props, // Object spread: http://es6-features.org/#SpreadOperator\n width,\n height\n });\n }\n\n private getProgress(): number {\n const minValue = this.props.minValue || 0;\n const maxValue = this.props.maxValue || 100;\n const value = this.props.value == null ? 0 : this.props.value;\n\n if (value <= minValue) return 0;\n else if (value >= maxValue) return 100;\n else return Math.trunc(((value - minValue) / (maxValue - minValue)) * 100);\n }\n}\n","import { AnyObject } from \"../lib/types\";\nimport {\n stringIsEmpty,\n notEmptyStringOr,\n decodeBase64,\n parseIntOr,\n t\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\nimport { FormContainer, InputGroup } from \"../Form\";\nimport fontAwesomeIcon from \"../lib/FontAwesomeIcon\";\nimport {\n faCircleNotch,\n faExclamationCircle\n} from \"@fortawesome/free-solid-svg-icons\";\n\nexport type ServiceProps = {\n type: ItemType.SERVICE;\n serviceId: number;\n imageSrc: string | null;\n statusImageSrc: string | null;\n encodedTitle: string | null;\n} & ItemProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the service props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function servicePropsDecoder(data: AnyObject): ServiceProps | never {\n if (data.imageSrc !== null) {\n if (\n typeof data.statusImageSrc !== \"string\" ||\n data.imageSrc.statusImageSrc === 0\n ) {\n throw new TypeError(\"invalid status image src.\");\n }\n } else {\n if (stringIsEmpty(data.encodedTitle)) {\n throw new TypeError(\"missing encode tittle content.\");\n }\n }\n\n if (parseIntOr(data.serviceId, null) === null) {\n throw new TypeError(\"invalid service id.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.SERVICE,\n serviceId: data.serviceId,\n imageSrc: notEmptyStringOr(data.imageSrc, null),\n statusImageSrc: notEmptyStringOr(data.statusImageSrc, null),\n encodedTitle: notEmptyStringOr(data.encodedTitle, null)\n };\n}\n\nexport default class Service extends Item {\n public createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"service\";\n\n if (this.props.statusImageSrc !== null) {\n element.style.background = `url(${this.props.statusImageSrc}) no-repeat`;\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n if (this.props.encodedTitle !== null) {\n element.className = \"service image forced_title\";\n element.setAttribute(\"data-use_title_for_force_title\", \"1\");\n element.setAttribute(\n \"data-title\",\n decodeBase64(this.props.encodedTitle)\n );\n }\n } else if (this.props.encodedTitle !== null) {\n element.innerHTML = decodeBase64(this.props.encodedTitle);\n }\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n if (this.props.statusImageSrc !== null) {\n element.style.background = `url(${this.props.statusImageSrc}) no-repeat`;\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n if (this.props.encodedTitle !== null) {\n element.className = \"service image forced_title\";\n element.setAttribute(\"data-use_title_for_force_title\", \"1\");\n element.setAttribute(\n \"data-title\",\n decodeBase64(this.props.encodedTitle)\n );\n }\n element.innerHTML = \"\";\n } else if (this.props.encodedTitle !== null) {\n element.innerHTML = decodeBase64(this.props.encodedTitle);\n }\n }\n}\n","import { AnyObject, WithModuleProps } from \"../lib/types\";\n\nimport { modulePropsDecoder, parseIntOr, stringIsEmpty, t } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type OdometerProps = {\n type: ItemType.ODOMETER;\n value: number;\n status: string;\n title: string | null;\n titleModule: string;\n titleColor: string;\n odometerType: string;\n thresholds: string | any;\n minMaxValue: string;\n} & ItemProps &\n WithModuleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the events history props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function odometerPropsDecoder(data: AnyObject): OdometerProps | never {\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.ODOMETER,\n value: parseIntOr(data.value, 0),\n status: stringIsEmpty(data.status) ? \"#B2B2B2\" : data.status,\n titleColor: stringIsEmpty(data.titleColor) ? \"#3f3f3f\" : data.titleColor,\n title: stringIsEmpty(data.title) ? \"\" : data.title,\n titleModule: stringIsEmpty(data.titleModule) ? \"\" : data.titleModule,\n thresholds: stringIsEmpty(data.thresholds) ? \"\" : data.thresholds,\n minMaxValue: stringIsEmpty(data.minMaxValue) ? \"\" : data.minMaxValue,\n odometerType: stringIsEmpty(data.odometerType)\n ? \"percent\"\n : data.odometerType,\n ...modulePropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class Odometer extends Item {\n protected createDomElement(): HTMLElement {\n let lineWarning = \"\";\n let lineWarning2 = \"\";\n let lineCritical = \"\";\n let lineCritical2 = \"\";\n\n if (this.props.thresholds !== \"\") {\n const thresholds = JSON.parse(this.props.thresholds);\n\n if (thresholds !== null) {\n if (thresholds.min_warning != 0 || thresholds.max_warning != 0) {\n lineWarning = this.getCoords(\n thresholds.min_warning,\n this.props.width / 2\n );\n if (thresholds.max_warning == 0) {\n lineWarning2 = this.getCoords(100, this.props.width / 2);\n } else {\n lineWarning2 = this.getCoords(\n thresholds.max_warning,\n this.props.width / 2\n );\n }\n }\n\n if (thresholds.min_critical != 0 || thresholds.max_critical != 0) {\n lineCritical = this.getCoords(\n thresholds.min_critical,\n this.props.width / 2\n );\n if (thresholds.max_critical == 0) {\n lineCritical2 = this.getCoords(100, this.props.width / 2);\n } else {\n lineCritical2 = this.getCoords(\n thresholds.max_critical,\n this.props.width / 2\n );\n }\n }\n }\n }\n\n let percent = \"\";\n let number;\n // Float\n if (\n Number(this.props.value) === this.props.value &&\n this.props.value % 1 !== 0\n ) {\n number = this.props.value.toFixed(1);\n } else {\n if (this.props.minMaxValue === \"\") {\n percent = \" %\";\n } else {\n percent = this.getSubfix(this.props.value);\n }\n number = new Intl.NumberFormat(\"es\", {\n maximumSignificantDigits: 4,\n maximumFractionDigits: 3\n }).format(this.props.value);\n }\n\n var numb = number.match(/\\d*\\.\\d/);\n if (numb !== null) {\n number = numb[0];\n }\n\n const rotate = this.getRotate(this.props.value);\n\n let backgroundColor = document.getElementById(\n \"visual-console-container\"\n ) as HTMLElement;\n\n if (backgroundColor === null) {\n backgroundColor = document.getElementById(\n `visual-console-container-${this.props.cellId}`\n ) as HTMLElement;\n }\n\n if (backgroundColor.style.backgroundColor == \"\") {\n backgroundColor.style.backgroundColor = \"#fff\";\n }\n\n const anchoB = this.props.width * 0.7;\n\n const element = document.createElement(\"div\");\n element.className = \"odometer\";\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Odometer container.\n const odometerContainer = document.createElement(\"div\");\n odometerContainer.className = \"odometer-container\";\n\n // Central semicircle.\n const odometerA = document.createElement(\"div\");\n odometerA.className = \"odometer-a\";\n odometerA.style.backgroundColor = `${backgroundColor.style.backgroundColor}`;\n\n // Semicircle rotating with the value.\n const odometerB = document.createElement(\"div\");\n odometerB.className = \"odometer-b\";\n odometerB.id = `odometerB-${this.props.id}`;\n odometerB.style.backgroundColor = `${this.props.status}`;\n\n // Dark semicircle.\n const odometerC = document.createElement(\"div\");\n odometerC.className = \"odometer-c\";\n\n // Green outer semicircle.\n const gaugeE = document.createElement(\"div\");\n gaugeE.className = \"odometer-d\";\n\n const SVG_NS = \"http://www.w3.org/2000/svg\";\n // Portion of threshold warning\n if (lineWarning != \"\") {\n const svgWarning = document.createElementNS(SVG_NS, \"svg\");\n svgWarning.setAttributeNS(null, \"width\", \"100%\");\n svgWarning.setAttributeNS(null, \"height\", \"100%\");\n svgWarning.setAttributeNS(null, \"style\", \"position:absolute;z-index:1\");\n const pathWarning = document.createElementNS(SVG_NS, \"path\");\n pathWarning.setAttributeNS(null, \"id\", `svgWarning-${this.props.id}`);\n pathWarning.setAttributeNS(\n null,\n \"d\",\n `M${this.props.width / 2},${this.props.width / 2}L${lineWarning}A${this\n .props.width / 2},${this.props.width / 2},0,0,1,${lineWarning2}Z`\n );\n pathWarning.setAttributeNS(null, \"class\", \"svg_warning\");\n svgWarning.appendChild(pathWarning);\n odometerContainer.appendChild(svgWarning);\n }\n\n // Portion of threshold critical\n if (lineCritical != \"\") {\n const svgCritical = document.createElementNS(SVG_NS, \"svg\");\n svgCritical.setAttributeNS(null, \"width\", \"100%\");\n svgCritical.setAttributeNS(null, \"height\", \"100%\");\n svgCritical.setAttributeNS(null, \"style\", \"position:absolute;z-index:2\");\n const pathCritical = document.createElementNS(SVG_NS, \"path\");\n pathCritical.setAttributeNS(null, \"id\", `svgCritical-${this.props.id}`);\n pathCritical.setAttributeNS(\n null,\n \"d\",\n `M${this.props.width / 2},${this.props.width / 2}L${lineCritical}A${this\n .props.width / 2},${this.props.width / 2},0,0,1,${lineCritical2}Z`\n );\n pathCritical.setAttributeNS(null, \"fill\", \"#E63C52\");\n svgCritical.appendChild(pathCritical);\n odometerContainer.appendChild(svgCritical);\n }\n\n // Text.\n const h1 = document.createElement(\"h1\");\n h1.innerText = number + percent;\n h1.style.fontSize = `${anchoB * 0.17}px`;\n h1.style.color = `${this.props.status}`;\n h1.style.lineHeight = \"0\";\n\n const h2 = document.createElement(\"h2\");\n if (this.props.title == \"\") {\n h2.textContent = this.truncateTitle(this.props.moduleName);\n } else {\n h2.textContent = this.truncateTitle(this.props.title);\n }\n h2.title = this.props.titleModule;\n h2.setAttribute(\"title\", this.props.titleModule);\n\n h2.style.fontSize = `${anchoB * 0.06}px`;\n h2.style.color = `${this.props.titleColor}`;\n h2.style.lineHeight = \"0\";\n\n let script = document.createElement(\"script\");\n script.type = \"text/javascript\";\n script.onload = () => {\n odometerB.style.transform = `rotate(${rotate}turn)`;\n };\n var url_pandora = window.location.pathname.split(\"/\")[1];\n script.src = `${document.dir}/${url_pandora}/include/javascript/pandora_alerts.js`;\n odometerA.appendChild(h1);\n odometerA.appendChild(h2);\n odometerContainer.appendChild(odometerB);\n odometerContainer.appendChild(odometerC);\n odometerContainer.appendChild(gaugeE);\n odometerContainer.appendChild(odometerA);\n odometerContainer.appendChild(script);\n element.appendChild(odometerContainer);\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.createDomElement().innerHTML;\n\n let rotate = this.getRotate(this.props.value);\n\n const svgWarning = document.getElementById(`svgWarning-${this.props.id}`);\n if (svgWarning != null) {\n svgWarning.style.display = \"none\";\n }\n\n const svgCritical = document.getElementById(`svgCritical-${this.props.id}`);\n if (svgCritical != null) {\n svgCritical.style.display = \"none\";\n }\n\n setTimeout(() => {\n if (svgWarning != null) {\n svgWarning.style.display = \"block\";\n }\n\n if (svgCritical != null) {\n svgCritical.style.display = \"block\";\n }\n\n var odometerB = document.getElementById(`odometerB-${this.props.id}`);\n if (odometerB) {\n odometerB.style.transform = `rotate(${rotate}turn)`;\n }\n }, 500);\n }\n\n protected resizeElement(width: number): void {\n super.resizeElement(width, width / 2);\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n public resize(width: number): void {\n this.resizeElement(this.props.width);\n }\n\n private getRotate(value: number): number {\n let rotate = 0;\n if (this.props.minMaxValue === \"\") {\n rotate = value / 2 / 100;\n } else {\n const minMax = JSON.parse(this.props.minMaxValue);\n if (minMax[\"min\"] === value) {\n rotate = 0;\n } else if (minMax[\"max\"] === value) {\n rotate = 0.5;\n } else {\n const limit = minMax[\"max\"] - minMax[\"min\"];\n const valueMax = minMax[\"max\"] - value;\n rotate = (100 - (valueMax * 100) / limit) / 100 / 2;\n }\n }\n\n return rotate;\n }\n\n private getSubfix(value: number): string {\n let subfix = \"\";\n const length = (value + \"\").length;\n if (length > 3 && length <= 6) {\n subfix = \" K\";\n } else if (length > 6 && length <= 9) {\n subfix = \" M\";\n } else if (length > 9 && length <= 12) {\n subfix = \" G\";\n } else if (length > 12 && length <= 15) {\n subfix = \" T\";\n }\n\n return subfix;\n }\n\n private getCoords(percent: number, radio: number): string {\n if (this.props.minMaxValue !== \"\") {\n const minMax = JSON.parse(this.props.minMaxValue);\n if (minMax[\"min\"] === percent) {\n percent = 0;\n } else if (minMax[\"max\"] === percent || percent === 100) {\n percent = 100;\n } else {\n const limit = minMax[\"max\"] - minMax[\"min\"];\n let valueMax = minMax[\"max\"] - percent;\n percent = 100 - (valueMax * 100) / limit;\n }\n }\n\n percent = 180 - percent * 1.8;\n const x = radio + Math.cos((percent * Math.PI) / 180) * radio;\n const y = radio - Math.sin((percent * Math.PI) / 180) * radio;\n return `${x},${y}`;\n }\n\n private truncateTitle(title: any): string {\n if (title != null && title.length > 22) {\n const halfLength = title.length / 2;\n const diff = halfLength - 9;\n const stringBefore = title.substr(0, halfLength - diff);\n const stringAfter = title.substr(halfLength + diff);\n\n return `${stringBefore}...${stringAfter}`;\n } else {\n return title;\n }\n }\n}\n","import { AnyObject, Size, Position, WithModuleProps } from \"./lib/types\";\nimport {\n parseBoolean,\n sizePropsDecoder,\n parseIntOr,\n notEmptyStringOr,\n itemMetaDecoder,\n t,\n ellipsize,\n debounce\n} from \"./lib\";\nimport Item, {\n ItemType,\n ItemProps,\n ItemClickEvent,\n ItemRemoveEvent,\n ItemMovedEvent,\n ItemResizedEvent,\n ItemSelectionChangedEvent\n} from \"./Item\";\nimport StaticGraph, { staticGraphPropsDecoder } from \"./items/StaticGraph\";\nimport Icon, { iconPropsDecoder } from \"./items/Icon\";\nimport ColorCloud, { colorCloudPropsDecoder } from \"./items/ColorCloud\";\nimport NetworkLink, { networkLinkPropsDecoder } from \"./items/NetworkLink\";\nimport Group, { groupPropsDecoder } from \"./items/Group\";\nimport Clock, { clockPropsDecoder } from \"./items/Clock\";\nimport Box, { boxPropsDecoder } from \"./items/Box\";\nimport Line, { linePropsDecoder, LineMovedEvent } from \"./items/Line\";\nimport Label, { labelPropsDecoder } from \"./items/Label\";\nimport SimpleValue, { simpleValuePropsDecoder } from \"./items/SimpleValue\";\nimport EventsHistory, {\n eventsHistoryPropsDecoder\n} from \"./items/EventsHistory\";\nimport Percentile, { percentilePropsDecoder } from \"./items/Percentile\";\nimport TypedEvent, { Disposable, Listener } from \"./lib/TypedEvent\";\nimport DonutGraph, { donutGraphPropsDecoder } from \"./items/DonutGraph\";\nimport BarsGraph, { barsGraphPropsDecoder } from \"./items/BarsGraph\";\nimport ModuleGraph, { moduleGraphPropsDecoder } from \"./items/ModuleGraph\";\nimport Service, { servicePropsDecoder } from \"./items/Service\";\nimport Odometer, { odometerPropsDecoder } from \"./items/Odometer\";\nimport BasicChart, { basicChartPropsDecoder } from \"./items/BasicChart\";\n\n// TODO: Document.\n// eslint-disable-next-line @typescript-eslint/explicit-function-return-type\nfunction itemInstanceFrom(data: AnyObject) {\n const type = parseIntOr(data.type, null);\n if (type == null) throw new TypeError(\"missing item type.\");\n\n const meta = itemMetaDecoder(data);\n\n switch (type as ItemType) {\n case ItemType.STATIC_GRAPH:\n return new StaticGraph(staticGraphPropsDecoder(data), meta);\n case ItemType.MODULE_GRAPH:\n return new ModuleGraph(moduleGraphPropsDecoder(data), meta);\n case ItemType.SIMPLE_VALUE:\n case ItemType.SIMPLE_VALUE_MAX:\n case ItemType.SIMPLE_VALUE_MIN:\n case ItemType.SIMPLE_VALUE_AVG:\n return new SimpleValue(simpleValuePropsDecoder(data), meta);\n case ItemType.PERCENTILE_BAR:\n case ItemType.PERCENTILE_BUBBLE:\n case ItemType.CIRCULAR_PROGRESS_BAR:\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n return new Percentile(percentilePropsDecoder(data), meta);\n case ItemType.LABEL:\n return new Label(labelPropsDecoder(data), meta);\n case ItemType.ICON:\n return new Icon(iconPropsDecoder(data), meta);\n case ItemType.SERVICE:\n return new Service(servicePropsDecoder(data), meta);\n case ItemType.GROUP_ITEM:\n return new Group(groupPropsDecoder(data), meta);\n case ItemType.BOX_ITEM:\n return new Box(boxPropsDecoder(data), meta);\n case ItemType.LINE_ITEM:\n return new Line(linePropsDecoder(data), meta);\n case ItemType.AUTO_SLA_GRAPH:\n return new EventsHistory(eventsHistoryPropsDecoder(data), meta);\n case ItemType.DONUT_GRAPH:\n return new DonutGraph(donutGraphPropsDecoder(data), meta);\n case ItemType.BARS_GRAPH:\n return new BarsGraph(barsGraphPropsDecoder(data), meta);\n case ItemType.CLOCK:\n return new Clock(clockPropsDecoder(data), meta);\n case ItemType.COLOR_CLOUD:\n return new ColorCloud(colorCloudPropsDecoder(data), meta);\n case ItemType.NETWORK_LINK:\n return new NetworkLink(networkLinkPropsDecoder(data), meta);\n case ItemType.ODOMETER:\n return new Odometer(odometerPropsDecoder(data), meta);\n case ItemType.BASIC_CHART:\n return new BasicChart(basicChartPropsDecoder(data), meta);\n default:\n throw new TypeError(\"item not found\");\n }\n}\n\n// TODO: Document.\n// eslint-disable-next-line @typescript-eslint/explicit-function-return-type\nfunction decodeProps(data: AnyObject) {\n const type = parseIntOr(data.type, null);\n if (type == null) throw new TypeError(\"missing item type.\");\n\n switch (type as ItemType) {\n case ItemType.STATIC_GRAPH:\n return staticGraphPropsDecoder(data);\n case ItemType.MODULE_GRAPH:\n return moduleGraphPropsDecoder(data);\n case ItemType.SIMPLE_VALUE:\n case ItemType.SIMPLE_VALUE_MAX:\n case ItemType.SIMPLE_VALUE_MIN:\n case ItemType.SIMPLE_VALUE_AVG:\n return simpleValuePropsDecoder(data);\n case ItemType.PERCENTILE_BAR:\n case ItemType.PERCENTILE_BUBBLE:\n case ItemType.CIRCULAR_PROGRESS_BAR:\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n return percentilePropsDecoder(data);\n case ItemType.LABEL:\n return labelPropsDecoder(data);\n case ItemType.ICON:\n return iconPropsDecoder(data);\n case ItemType.SERVICE:\n return servicePropsDecoder(data);\n case ItemType.GROUP_ITEM:\n return groupPropsDecoder(data);\n case ItemType.BOX_ITEM:\n return boxPropsDecoder(data);\n case ItemType.LINE_ITEM:\n return linePropsDecoder(data);\n case ItemType.AUTO_SLA_GRAPH:\n return eventsHistoryPropsDecoder(data);\n case ItemType.DONUT_GRAPH:\n return donutGraphPropsDecoder(data);\n case ItemType.BARS_GRAPH:\n return barsGraphPropsDecoder(data);\n case ItemType.CLOCK:\n return clockPropsDecoder(data);\n case ItemType.COLOR_CLOUD:\n return colorCloudPropsDecoder(data);\n case ItemType.NETWORK_LINK:\n return networkLinkPropsDecoder(data);\n case ItemType.ODOMETER:\n return odometerPropsDecoder(data);\n case ItemType.BASIC_CHART:\n return basicChartPropsDecoder(data);\n default:\n throw new TypeError(\"decoder not found\");\n }\n}\n\n// Base properties.\nexport interface VisualConsoleProps extends Size {\n readonly id: number;\n name: string;\n groupId: number;\n backgroundURL: string | null; // URL?\n backgroundColor: string | null;\n isFavorite: boolean;\n relationLineWidth: number;\n maintenanceMode: MaintenanceModeInterface | null;\n}\n\nexport interface MaintenanceModeInterface {\n user: string;\n timestamp: number;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the Visual Console props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function visualConsolePropsDecoder(\n data: AnyObject\n): VisualConsoleProps | never {\n // Object destructuring: http://es6-features.org/#ObjectMatchingShorthandNotation\n const {\n id,\n name,\n groupId,\n backgroundURL,\n backgroundColor,\n isFavorite,\n relationLineWidth,\n maintenanceMode\n } = data;\n\n if (id == null || isNaN(parseInt(id))) {\n throw new TypeError(\"invalid Id.\");\n }\n if (typeof name !== \"string\" || name.length === 0) {\n throw new TypeError(\"invalid name.\");\n }\n if (groupId == null || isNaN(parseInt(groupId))) {\n throw new TypeError(\"invalid group Id.\");\n }\n\n return {\n id: parseInt(id),\n name,\n groupId: parseInt(groupId),\n backgroundURL: notEmptyStringOr(backgroundURL, null),\n backgroundColor: notEmptyStringOr(backgroundColor, null),\n isFavorite: parseBoolean(isFavorite),\n relationLineWidth: parseIntOr(relationLineWidth, 0),\n maintenanceMode: maintenanceMode,\n ...sizePropsDecoder(data)\n };\n}\n\nexport default class VisualConsole {\n // Reference to the DOM element which will contain the items.\n private readonly containerRef: HTMLElement;\n // Properties.\n private _props: VisualConsoleProps;\n // Visual Console Item instances by their Id.\n private elementsById: {\n [key: number]: Item;\n } = {};\n // Visual Console Item Ids.\n private elementIds: ItemProps[\"id\"][] = [];\n // Dictionary which store the created lines.\n private relations: {\n [key: string]: Line;\n } = {};\n\n // Dictionary which store the related items (by ID).\n private lineLinks: {\n [key: number]: { [key: number]: { [key: string]: number } };\n } = {};\n\n private lines: {\n [key: number]: { [key: string]: number };\n } = {};\n\n // Event manager for click events.\n private readonly clickEventManager = new TypedEvent();\n // Event manager for double click events.\n private readonly dblClickEventManager = new TypedEvent();\n // Event manager for move events.\n private readonly movedEventManager = new TypedEvent();\n // Event manager for line move events.\n private readonly lineMovedEventManager = new TypedEvent();\n // Event manager for resize events.\n private readonly resizedEventManager = new TypedEvent();\n // Event manager for remove events.\n private readonly selectionChangedEventManager = new TypedEvent<\n ItemSelectionChangedEvent\n >();\n // List of references to clean the event listeners.\n private readonly disposables: Disposable[] = [];\n\n /**\n * React to a click on an element.\n * @param e Event object.\n */\n private handleElementClick: (e: ItemClickEvent) => void = e => {\n this.clickEventManager.emit(e);\n // console.log(`Clicked element #${e.data.id}`, e);\n };\n\n /**\n * React to a double click on an element.\n * @param e Event object.\n */\n private handleElementDblClick: (e: ItemClickEvent) => void = e => {\n this.dblClickEventManager.emit(e);\n // console.log(`Double clicked element #${e.data.id}`, e);\n };\n\n /**\n * React to a movement on an element.\n * @param e Event object.\n */\n private handleElementMovement: (e: ItemMovedEvent) => void = e => {\n // Move their relation lines.\n const itemId = e.item.props.id;\n const relations = this.getItemRelations(itemId);\n\n relations.forEach(relation => {\n if (relation.parentId === itemId) {\n // Move the line start.\n relation.line.props = {\n ...relation.line.props,\n startPosition: this.getVisualCenter(e.newPosition, e.item)\n };\n } else if (relation.childId === itemId) {\n // Move the line end.\n relation.line.props = {\n ...relation.line.props,\n endPosition: this.getVisualCenter(e.newPosition, e.item)\n };\n }\n });\n\n // Move lines conneted with this item.\n this.updateLinesConnected(e.item.props, e.newPosition, false);\n\n // console.log(`Moved element #${e.item.props.id}`, e);\n };\n\n /**\n * React to a movement finished on an element.\n * @param e Event object.\n */\n private handleElementMovementFinished: (e: ItemMovedEvent) => void = e => {\n this.movedEventManager.emit(e);\n // Move lines conneted with this item.\n this.updateLinesConnected(e.item.props, e.newPosition, true);\n // console.log(`Movement finished for element #${e.item.props.id}`, e);\n };\n\n /**\n * Verifies if x,y are inside item coordinates.\n * @param x Coordinate X\n * @param y Coordinate Y\n * @param item ItemProps instance.\n */\n private coordinatesInItem(x: number, y: number, props: ItemProps) {\n if (\n props.type == ItemType.LINE_ITEM ||\n props.type == ItemType.NETWORK_LINK\n ) {\n return false;\n }\n\n if (\n x > props.x &&\n x < props.x + props.width &&\n y > props.y &&\n y < props.y + props.height\n ) {\n return true;\n }\n return false;\n }\n\n /**\n * React to a line movement.\n * @param e Event object.\n */\n private handleLineElementMovementFinished: (\n e: LineMovedEvent\n ) => void = e => {\n // Update links.\n this.refreshLink(e.item);\n\n // Build line relationships between items and lines.\n this.lineMovedEventManager.emit(e);\n\n // console.log(`Movement finished for element #${e.item.props.id}`, e);\n };\n\n /**\n * React to a resizement on an element.\n * @param e Event object.\n */\n private handleElementResizement: (e: ItemResizedEvent) => void = e => {\n // Move their relation lines.\n const item = e.item;\n const props = item.props;\n const itemId = props.id;\n const relations = this.getItemRelations(itemId);\n\n const position = {\n x: props.x,\n y: props.y\n };\n\n const meta = this.elementsById[itemId].meta;\n\n this.elementsById[itemId].meta = {\n ...meta,\n isUpdating: true\n };\n\n relations.forEach(relation => {\n if (relation.parentId === itemId) {\n // Move the line start.\n relation.line.props = {\n ...relation.line.props,\n startPosition: this.getVisualCenter(position, item)\n };\n } else if (relation.childId === itemId) {\n // Move the line end.\n relation.line.props = {\n ...relation.line.props,\n endPosition: this.getVisualCenter(position, item)\n };\n }\n });\n\n // console.log(`Resized element #${e.item.props.id}`, e);\n };\n\n /**\n * React to a finished resizement on an element.\n * @param e Event object.\n */\n private handleElementResizementFinished: (\n e: ItemResizedEvent\n ) => void = e => {\n this.resizedEventManager.emit(e);\n // console.log(`Resize fonished for element #${e.item.props.id}`, e);\n };\n\n /**\n * Clear some element references.\n * @param e Event object.\n */\n private handleElementRemove: (e: ItemRemoveEvent) => void = e => {\n // Remove the element from the list and its relations.\n this.elementIds = this.elementIds.filter(id => id !== e.item.props.id);\n delete this.elementsById[e.item.props.id];\n this.clearRelations(e.item.props.id);\n };\n\n /**\n * React to element selection change\n * @param e Event object.\n */\n private handleElementSelectionChanged: (\n e: ItemSelectionChangedEvent\n ) => void = e => {\n if (this.elements.filter(item => item.meta.isSelected == true).length > 0) {\n e.selected = true;\n } else {\n e.selected = false;\n }\n this.selectionChangedEventManager.emit(e);\n };\n\n // TODO: Document\n private handleContainerClick: (e: MouseEvent) => void = () => {\n this.unSelectItems();\n };\n\n /**\n * Refresh link for given line.\n *\n * @param line Line.\n */\n protected refreshLink(l: Line) {\n let line: number = l.props.id;\n let itemAtStart = 0;\n let itemAtEnd = 0;\n\n try {\n for (let i in this.elementsById) {\n if (\n this.coordinatesInItem(\n l.props.startPosition.x,\n l.props.startPosition.y,\n this.elementsById[i].props\n )\n ) {\n // Start position at element i.\n itemAtStart = parseInt(i);\n }\n\n if (\n this.coordinatesInItem(\n l.props.endPosition.x,\n l.props.endPosition.y,\n this.elementsById[i].props\n )\n ) {\n // Start position at element i.\n itemAtEnd = parseInt(i);\n }\n }\n\n if (this.lineLinks == null) {\n this.lineLinks = {};\n }\n\n if (this.lines == null) {\n this.lines = {};\n }\n\n if (itemAtStart == line) {\n itemAtStart = 0;\n }\n\n if (itemAtEnd == line) {\n itemAtEnd = 0;\n }\n\n // Initialize line if not registered.\n if (this.lines[line] == null) {\n this.lines[line] = {\n start: itemAtStart,\n end: itemAtEnd\n };\n }\n\n // Register 'start' side of the line.\n if (itemAtStart > 0) {\n // Initialize.\n if (this.lineLinks[itemAtStart] == null) {\n this.lineLinks[itemAtStart] = {};\n }\n\n // Assign.\n this.lineLinks[itemAtStart][line] = {\n start: itemAtStart,\n end: itemAtEnd\n };\n\n // Register line if not exists prviously.\n } else {\n // Clean previous line relationship.\n if (this.lines[line][\"start\"] > 0) {\n this.lineLinks[this.lines[line][\"start\"]][line][\"start\"] = 0;\n this.lines[line][\"start\"] = 0;\n }\n }\n\n if (itemAtEnd > 0) {\n if (this.lineLinks[itemAtEnd] == null) {\n this.lineLinks[itemAtEnd] = {};\n }\n\n this.lineLinks[itemAtEnd][line] = {\n start: itemAtStart,\n end: itemAtEnd\n };\n } else {\n // Clean previous line relationship.\n if (this.lines[line][\"end\"] > 0) {\n this.lineLinks[this.lines[line][\"end\"]][line][\"end\"] = 0;\n this.lines[line][\"end\"] = 0;\n }\n }\n\n this.lines[line] = {\n start: itemAtStart,\n end: itemAtEnd\n };\n\n // Cleanup.\n for (let i in this.lineLinks) {\n if (this.lineLinks[i][line]) {\n if (\n this.lineLinks[i][line].start == 0 &&\n this.lineLinks[i][line].end == 0\n ) {\n // Object not connected to a line.\n delete this.lineLinks[i][line];\n\n if (Object.keys(this.lineLinks[i]).length === 0) {\n delete this.lineLinks[i];\n }\n }\n\n if (\n (this.lineLinks[i][line].start != itemAtStart &&\n this.lineLinks[i][line].end == itemAtEnd) ||\n (this.lineLinks[i][line].start == itemAtStart &&\n this.lineLinks[i][line].end != itemAtEnd)\n ) {\n // Object not connected to a line.\n delete this.lineLinks[i][line];\n\n if (Object.keys(this.lineLinks[i]).length === 0) {\n delete this.lineLinks[i];\n }\n }\n }\n }\n } catch (error) {\n console.error(error);\n }\n }\n\n /**\n * Updates lines connected to this item.\n *\n * @param item Item moved.\n * @param newPosition New location for item.\n * @param oldPosition Old location for item.\n * @param save Save to ajax or not.\n */\n protected updateLinesConnected(item: ItemProps, to: Position, save: boolean) {\n if (this.lineLinks[item.id] == null) {\n return;\n }\n\n Object.keys(this.lineLinks[item.id]).forEach(i => {\n let lineId = parseInt(i);\n const found = this.elementIds.indexOf(lineId);\n if (found === -1) {\n return;\n }\n let line = this.elementsById[lineId] as Line;\n if (line.props) {\n let startX = line.props.startPosition.x;\n let startY = line.props.startPosition.y;\n let endX = line.props.endPosition.x;\n let endY = line.props.endPosition.y;\n\n if (item.id == this.lineLinks[item.id][lineId][\"start\"]) {\n startX = to.x + item.width / 2;\n startY = to.y + item.height / 2;\n }\n\n if (item.id == this.lineLinks[item.id][lineId][\"end\"]) {\n endX = to.x + item.width / 2;\n endY = to.y + item.height / 2;\n }\n\n // Update line movement.\n this.updateElement({\n ...line.props,\n startX: startX,\n startY: startY,\n endX: endX,\n endY: endY\n });\n\n if (save) {\n let debouncedLinePositionSave = debounce(\n 500,\n (options: AnyObject) => {\n this.lineMovedEventManager.emit({\n item: options.line,\n startPosition: {\n x: options.startX,\n y: options.startY\n },\n endPosition: {\n x: options.endX,\n y: options.endY\n }\n });\n }\n );\n\n // Save line positon.\n debouncedLinePositionSave({\n line: line,\n startX: startX,\n startY: startY,\n endX: endX,\n endY: endY\n });\n }\n }\n });\n\n // Update parents...\n this.buildRelations(item.id, to.x + item.width / 2, to.y + item.height / 2);\n }\n\n public constructor(\n container: HTMLElement,\n props: AnyObject,\n items: AnyObject[]\n ) {\n this.containerRef = container;\n this._props = visualConsolePropsDecoder(props);\n\n // Force the first render.\n this.render();\n\n // Sort by id ASC\n items = items.sort(function(a, b) {\n if (a.id == null || b.id == null) return 0;\n else if (a.id > b.id) return 1;\n else return -1;\n });\n\n // Initialize the items.\n items.forEach(item => this.addElement(item, this));\n\n // Create lines.\n this.buildRelations();\n\n // Re-attach all connected lines if any.\n this.elements.forEach(item => {\n if (item instanceof Line) {\n this.refreshLink(item);\n }\n });\n\n this.containerRef.addEventListener(\"click\", this.handleContainerClick);\n }\n\n /**\n * Public accessor of the `elements` property.\n * @return Properties.\n */\n public get elements(): Item[] {\n // Ensure the type cause Typescript doesn't know the filter removes null items.\n return this.elementIds\n .map(id => this.elementsById[id])\n .filter(_ => _ != null) as Item[];\n }\n\n /**\n * To create a new element add it to the DOM.\n * @param item. Raw representation of the item's data.\n */\n public addElement(item: AnyObject, context: this = this) {\n try {\n const itemInstance = itemInstanceFrom(item);\n // Add the item to the list.\n context.elementsById[itemInstance.props.id] = itemInstance;\n context.elementIds.push(itemInstance.props.id);\n // Item event handlers.\n itemInstance.onRemove(context.handleElementRemove);\n itemInstance.onSelectionChanged(context.handleElementSelectionChanged);\n itemInstance.onClick(context.handleElementClick);\n itemInstance.onDblClick(context.handleElementDblClick);\n\n // TODO:Continue\n if (itemInstance instanceof Line) {\n itemInstance.onLineMovementFinished(\n context.handleLineElementMovementFinished\n );\n this.refreshLink(itemInstance);\n } else {\n itemInstance.onMoved(context.handleElementMovement);\n itemInstance.onMovementFinished(context.handleElementMovementFinished);\n itemInstance.onResized(context.handleElementResizement);\n itemInstance.onResizeFinished(context.handleElementResizementFinished);\n }\n\n // Add the item to the DOM.\n context.containerRef.append(itemInstance.elementRef);\n return itemInstance;\n } catch (error) {\n console.error(\"Error creating a new element:\", (error as Error).message);\n }\n return;\n }\n\n /**\n * Public setter of the `elements` property.\n * @param items.\n */\n public updateElements(items: AnyObject[]): void {\n // Ensure the type cause Typescript doesn't know the filter removes null items.\n const itemIds = items\n .map(item => item.id || null)\n .filter(id => id != null) as number[];\n // Get the elements we should delete.\n const deletedIds = this.elementIds.filter(id => itemIds.indexOf(id) < 0);\n // Delete the elements.\n deletedIds.forEach(id => {\n if (this.elementsById[id] != null) {\n this.elementsById[id].remove();\n delete this.elementsById[id];\n }\n });\n // Replace the element ids.\n this.elementIds = itemIds;\n\n // Initialize the items.\n items.forEach(item => {\n if (item.id) {\n if (this.elementsById[item.id] == null) {\n // New item.\n this.addElement(item);\n } else {\n // Update item.\n try {\n this.elementsById[item.id].props = decodeProps(item);\n } catch (error) {\n console.error(\n \"Error updating an element:\",\n (error as Error).message\n );\n }\n }\n }\n });\n\n // Re-build relations.\n this.buildRelations();\n }\n\n /**\n * Public setter of the `element` property.\n * @param item.\n */\n public updateElement(item: AnyObject): void {\n // Update item.\n try {\n this.elementsById[item.id].props = {\n ...decodeProps(item)\n };\n } catch (error) {\n console.error(\"Error updating element:\", (error as Error).message);\n }\n\n // Re-build relations.\n this.buildRelations();\n }\n\n /**\n * Public accessor of the `props` property.\n * @return Properties.\n */\n public get props(): VisualConsoleProps {\n return { ...this._props }; // Return a copy.\n }\n\n /**\n * Public setter of the `props` property.\n * If the new props are different enough than the\n * stored props, a render would be fired.\n * @param newProps\n */\n public set props(newProps: VisualConsoleProps) {\n const prevProps = this.props;\n // Update the internal props.\n this._props = newProps;\n\n // From this point, things which rely on this.props can access to the changes.\n\n // Re-render.\n this.render(prevProps);\n }\n\n /**\n * Recreate or update the HTMLElement which represents the Visual Console into the DOM.\n * @param prevProps If exists it will be used to only DOM updates instead of a full replace.\n */\n public render(prevProps: VisualConsoleProps | null = null): void {\n if (prevProps) {\n if (prevProps.backgroundURL !== this.props.backgroundURL) {\n this.containerRef.style.backgroundImage =\n this.props.backgroundURL !== null\n ? `url(${this.props.backgroundURL})`\n : \"\";\n }\n if (this.props.backgroundColor != null)\n if (prevProps.backgroundColor !== this.props.backgroundColor) {\n this.containerRef.style.backgroundColor = this.props.backgroundColor;\n }\n if (this.sizeChanged(prevProps, this.props)) {\n this.resizeElement(this.props.width, this.props.height);\n }\n } else {\n if (this.props.backgroundURL)\n this.containerRef.style.backgroundImage =\n this.props.backgroundURL !== null\n ? `url(${this.props.backgroundURL})`\n : \"\";\n\n if (this.props.backgroundColor)\n this.containerRef.style.backgroundColor = this.props.backgroundColor;\n this.resizeElement(this.props.width, this.props.height);\n }\n }\n\n /**\n * Compare the previous and the new size and return\n * a boolean value in case the size changed.\n * @param prevSize\n * @param newSize\n * @return Whether the size changed or not.\n */\n public sizeChanged(prevSize: Size, newSize: Size): boolean {\n return (\n prevSize.width !== newSize.width || prevSize.height !== newSize.height\n );\n }\n\n /**\n * Resize the DOM container.\n * @param width\n * @param height\n */\n public resizeElement(width: number, height: number): void {\n this.containerRef.style.width = `${width}px`;\n this.containerRef.style.height = `${height}px`;\n }\n\n /**\n * Update the size into the properties and resize the DOM container.\n * @param width\n * @param height\n */\n public resize(width: number, height: number): void {\n this.props = {\n ...this.props, // Object spread: http://es6-features.org/#SpreadOperator\n width,\n height\n };\n }\n\n /**\n * To remove the event listeners and the elements from the DOM.\n */\n public remove(): void {\n this.disposables.forEach(d => d.dispose()); // Arrow function.\n this.elements.forEach(e => e.remove()); // Arrow function.\n this.elementsById = {};\n this.elementIds = [];\n // Clear relations.\n this.clearRelations();\n // Remove the click event listener.\n this.containerRef.removeEventListener(\"click\", this.handleContainerClick);\n // Clean container.\n this.containerRef.innerHTML = \"\";\n }\n\n /**\n * Create line elements which connect the elements with their parents.\n *\n * When itemId is being moved, overwrite position of the 'parent' or 'child'\n * endpoints of the line, using X and Y values.\n */\n public buildRelations(itemId?: number, x?: number, y?: number): void {\n // Clear relations.\n this.clearRelations();\n // Add relations.\n this.elements.forEach(item => {\n if (item.props.parentId !== null) {\n const parent = this.elementsById[item.props.parentId];\n const child = this.elementsById[item.props.id];\n\n if (parent && child) {\n if (itemId != undefined) {\n if (item.props.parentId == itemId) {\n // Update parent line position.\n this.addRelationLine(parent, child, x, y);\n } else if (item.props.id == itemId) {\n // Update child line position.\n this.addRelationLine(parent, child, undefined, undefined, x, y);\n } else {\n this.addRelationLine(parent, child);\n }\n } else {\n // No movements default behaviour.\n this.addRelationLine(parent, child);\n }\n }\n }\n });\n }\n\n /**\n * @param itemId Optional identifier of a parent or child item.\n * Remove the line elements which connect the elements with their parents.\n */\n private clearRelations(itemId?: number): void {\n if (itemId != null) {\n for (let key in this.relations) {\n const ids = key.split(\"|\");\n const parentId = Number.parseInt(ids[0]);\n const childId = Number.parseInt(ids[1]);\n\n if (itemId === parentId || itemId === childId) {\n this.relations[key].remove();\n delete this.relations[key];\n }\n }\n } else {\n for (let key in this.relations) {\n this.relations[key].remove();\n delete this.relations[key];\n }\n }\n }\n\n /**\n * Retrieve the line element which represent the relation between items.\n * @param parentId Identifier of the parent item.\n * @param childId Itentifier of the child item.\n * @return The line element or nothing.\n */\n private getRelationLine(parentId: number, childId: number): Line | null {\n const identifier = `${parentId}|${childId}`;\n return this.relations[identifier] || null;\n }\n\n // TODO: Document.\n private getItemRelations(\n itemId: number\n ): {\n parentId: number;\n childId: number;\n line: Line;\n }[] {\n const itemRelations = [];\n\n for (let key in this.relations) {\n const ids = key.split(\"|\");\n const parentId = Number.parseInt(ids[0]);\n const childId = Number.parseInt(ids[1]);\n\n if (itemId === parentId || itemId === childId) {\n itemRelations.push({\n parentId,\n childId,\n line: this.relations[key]\n });\n }\n }\n\n return itemRelations;\n }\n\n /**\n * Retrieve the visual center of the item. It's ussually the center of the\n * content, like the label doesn't exist.\n * @param position Initial position.\n * @param element Element we want to use.\n */\n private getVisualCenter(\n position: Position,\n element: Item\n ): Position {\n let x = position.x + element.elementRef.clientWidth / 2;\n let y = position.y + element.elementRef.clientHeight / 2;\n if (\n typeof element.props.label !== \"undefined\" ||\n element.props.label !== \"\" ||\n element.props.label !== null\n ) {\n switch (element.props.labelPosition) {\n case \"up\":\n y =\n position.y +\n (element.elementRef.clientHeight +\n element.labelElementRef.clientHeight) /\n 2;\n break;\n case \"down\":\n y =\n position.y +\n (element.elementRef.clientHeight -\n element.labelElementRef.clientHeight) /\n 2;\n break;\n case \"right\":\n x =\n position.x +\n (element.elementRef.clientWidth -\n element.labelElementRef.clientWidth) /\n 2;\n break;\n case \"left\":\n x =\n position.x +\n (element.elementRef.clientWidth +\n element.labelElementRef.clientWidth) /\n 2;\n break;\n }\n }\n return { x, y };\n }\n\n /**\n * Add a new line item to represent a relation between the items.\n * @param parent Parent item.\n * @param child Child item.\n * @return Whether the line was added or not.\n */\n private addRelationLine(\n parent: Item,\n child: Item,\n parentX?: number,\n parentY?: number,\n childX?: number,\n childY?: number\n ): Line {\n const identifier = `${parent.props.id}|${child.props.id}`;\n if (this.relations[identifier] != null) {\n this.relations[identifier].remove();\n }\n\n // Get the items center.\n let { x: startX, y: startY } = this.getVisualCenter(parent.props, parent);\n let { x: endX, y: endY } = this.getVisualCenter(child.props, child);\n\n // Overwrite positions if needed (while moving it!).\n if (parentX != null) {\n startX = parentX;\n }\n\n if (parentY != null) {\n startY = parentY;\n }\n\n if (childX != null) {\n endX = childX;\n }\n\n if (childY != null) {\n endY = childY;\n }\n\n // Line inherits child element status.\n const line = new Line(\n linePropsDecoder({\n id: 0,\n type: ItemType.LINE_ITEM,\n startX,\n startY,\n endX,\n endY,\n width: 0,\n height: 0,\n lineWidth: this.props.relationLineWidth,\n color: notEmptyStringOr(child.props.colorStatus, \"#CCC\")\n }),\n itemMetaDecoder({\n receivedAt: new Date()\n })\n );\n // Save a reference to the line item.\n this.relations[identifier] = line;\n\n // Add the line to the DOM.\n line.elementRef.style.zIndex = \"0\";\n this.containerRef.append(line.elementRef);\n\n return line;\n }\n\n /**\n * Add an event handler to the click of the linked visual console elements.\n * @param listener Function which is going to be executed when a linked console is clicked.\n */\n public onItemClick(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.clickEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the double click of the linked visual console elements.\n * @param listener Function which is going to be executed when a linked console is double clicked.\n */\n public onItemDblClick(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.dblClickEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the movement of the visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onItemMoved(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.movedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the movement of the visual console line elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onLineMoved(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.lineMovedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the resizement of the visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onItemResized(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.resizedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the elements selection change of the visual console .\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onItemSelectionChanged(\n listener: Listener\n ): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.selectionChangedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Enable the edition mode.\n */\n public enableEditMode(): void {\n this.elements.forEach(item => {\n item.meta = { ...item.meta, editMode: true };\n });\n this.containerRef.classList.add(\"is-editing\");\n }\n\n /**\n * Disable the edition mode.\n */\n public disableEditMode(): void {\n this.elements.forEach(item => {\n item.meta = { ...item.meta, editMode: false };\n });\n this.containerRef.classList.remove(\"is-editing\");\n }\n\n /**\n * Enable the maintenance mode.\n */\n public enableMaintenanceMode(): void {\n this.elements.forEach(item => {\n item.meta = { ...item.meta, maintenanceMode: true };\n });\n this.containerRef.classList.add(\"is-maintenance\");\n this.containerRef.classList.remove(\"is-editing\");\n }\n\n /**\n * Disable the maintenance mode.\n */\n public disableMaintenanceMode(): void {\n this.elements.forEach(item => {\n item.meta = { ...item.meta, maintenanceMode: false };\n });\n this.containerRef.classList.remove(\"is-maintenance\");\n this.containerRef.classList.add(\"is-editing\");\n }\n\n /**\n * Select an item.\n * @param itemId Item Id.\n * @param unique To remove the selection of other items or not.\n */\n public selectItem(itemId: number, unique: boolean = false): void {\n if (unique) {\n this.elementIds.forEach(currentItemId => {\n const meta = this.elementsById[currentItemId].meta;\n\n if (currentItemId !== itemId && meta.isSelected) {\n this.elementsById[currentItemId].unSelectItem();\n } else if (currentItemId === itemId && !meta.isSelected) {\n this.elementsById[currentItemId].selectItem();\n }\n });\n } else if (this.elementsById[itemId]) {\n this.elementsById[itemId].selectItem();\n }\n }\n\n /**\n * Unselect an item.\n * @param itemId Item Id.\n */\n public unSelectItem(itemId: number): void {\n if (this.elementsById[itemId]) {\n const meta = this.elementsById[itemId].meta;\n\n if (meta.isSelected) {\n this.elementsById[itemId].unSelectItem();\n }\n }\n }\n\n /**\n * Unselect all items.\n */\n public unSelectItems(): void {\n this.elementIds.forEach(itemId => {\n if (this.elementsById[itemId]) {\n this.elementsById[itemId].unSelectItem();\n }\n });\n }\n\n // TODO: Document.\n public static items = {\n [ItemType.STATIC_GRAPH]: StaticGraph,\n [ItemType.MODULE_GRAPH]: ModuleGraph,\n [ItemType.SIMPLE_VALUE]: SimpleValue,\n [ItemType.SIMPLE_VALUE_MAX]: SimpleValue,\n [ItemType.SIMPLE_VALUE_MIN]: SimpleValue,\n [ItemType.SIMPLE_VALUE_AVG]: SimpleValue,\n [ItemType.PERCENTILE_BAR]: Percentile,\n [ItemType.PERCENTILE_BUBBLE]: Percentile,\n [ItemType.CIRCULAR_PROGRESS_BAR]: Percentile,\n [ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR]: Percentile,\n [ItemType.LABEL]: Label,\n [ItemType.ICON]: Icon,\n [ItemType.SERVICE]: Service,\n [ItemType.GROUP_ITEM]: Group,\n [ItemType.BOX_ITEM]: Box,\n [ItemType.LINE_ITEM]: Line,\n [ItemType.AUTO_SLA_GRAPH]: EventsHistory,\n [ItemType.DONUT_GRAPH]: DonutGraph,\n [ItemType.BARS_GRAPH]: BarsGraph,\n [ItemType.CLOCK]: Clock,\n [ItemType.COLOR_CLOUD]: ColorCloud,\n [ItemType.NETWORK_LINK]: NetworkLink,\n [ItemType.ODOMETER]: Odometer,\n [ItemType.BASIC_CHART]: BasicChart\n };\n\n /**\n * Relying type item and srcimg and agent and module\n * name convert name item representative.\n *\n * @param item Instance item from extract name.\n *\n * @return Name item.\n */\n public static itemDescriptiveName(item: Item): string {\n let text: string;\n switch (item.props.type) {\n case ItemType.STATIC_GRAPH:\n text = `${t(\"Static graph\")} - ${(item as StaticGraph).props.imageSrc}`;\n break;\n case ItemType.MODULE_GRAPH:\n text = t(\"Module graph\");\n break;\n case ItemType.CLOCK:\n text = t(\"Clock\");\n break;\n case ItemType.BARS_GRAPH:\n text = t(\"Bars graph\");\n break;\n case ItemType.AUTO_SLA_GRAPH:\n text = t(\"Event history graph\");\n break;\n case ItemType.PERCENTILE_BAR:\n text = t(\"Percentile bar\");\n break;\n case ItemType.CIRCULAR_PROGRESS_BAR:\n text = t(\"Circular progress bar\");\n break;\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n text = t(\"Circular progress bar (interior)\");\n break;\n case ItemType.SIMPLE_VALUE:\n text = t(\"Simple Value\");\n break;\n case ItemType.LABEL:\n text = t(\"Label\");\n break;\n case ItemType.GROUP_ITEM:\n text = t(\"Group\");\n break;\n case ItemType.COLOR_CLOUD:\n text = t(\"Color cloud\");\n break;\n case ItemType.ICON:\n text = `${t(\"Icon\")} - ${(item as Icon).props.imageSrc}`;\n break;\n case ItemType.ODOMETER:\n text = t(\"Odometer\");\n break;\n case ItemType.BASIC_CHART:\n text = t(\"BasicChart\");\n break;\n default:\n text = t(\"Item\");\n break;\n }\n\n const linkedAgentAndModuleProps = item.props as Partial;\n if (\n linkedAgentAndModuleProps.agentAlias != null &&\n linkedAgentAndModuleProps.moduleName != null\n ) {\n text += ` (${ellipsize(\n linkedAgentAndModuleProps.agentAlias,\n 18\n )} - ${ellipsize(linkedAgentAndModuleProps.moduleName, 25)})`;\n } else if (linkedAgentAndModuleProps.agentAlias != null) {\n text += ` (${ellipsize(linkedAgentAndModuleProps.agentAlias, 25)})`;\n }\n\n return text;\n }\n}\n","import TypedEvent, { Disposable, Listener } from \"./TypedEvent\";\n\ninterface Cancellable {\n cancel(): void;\n}\n\ntype AsyncTaskStatus = \"waiting\" | \"started\" | \"cancelled\" | \"finished\";\ntype AsyncTaskInitiator = (done: () => void) => Cancellable;\n\n/**\n * Defines an async task which can be started and cancelled.\n * It's possible to observe the status changes of the task.\n */\nclass AsyncTask {\n private readonly taskInitiator: AsyncTaskInitiator;\n private cancellable: Cancellable = { cancel: () => {} };\n private _status: AsyncTaskStatus = \"waiting\";\n\n // Event manager for status change events.\n private readonly statusChangeEventManager = new TypedEvent();\n // List of references to clean the event listeners.\n private readonly disposables: Disposable[] = [];\n\n public constructor(taskInitiator: AsyncTaskInitiator) {\n this.taskInitiator = taskInitiator;\n }\n\n /**\n * Public setter of the `status` property.\n * @param status.\n */\n public set status(status: AsyncTaskStatus) {\n this._status = status;\n this.statusChangeEventManager.emit(status);\n }\n\n /**\n * Public accessor of the `status` property.\n * @return status.\n */\n public get status() {\n return this._status;\n }\n\n /**\n * Start the async task.\n */\n public init(): void {\n this.cancellable = this.taskInitiator(() => {\n this.status = \"finished\";\n });\n this.status = \"started\";\n }\n\n /**\n * Cancel the async task.\n */\n public cancel(): void {\n this.cancellable.cancel();\n this.status = \"cancelled\";\n }\n\n /**\n * Add an event handler to the status change.\n * @param listener Function which is going to be executed when the status changes.\n */\n public onStatusChange(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.statusChangeEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n}\n\n/**\n * Wrap an async task into another which will execute that task indefinitely\n * every time the tash finnish and the chosen period ends.\n * Will last until cancellation.\n *\n * @param task Async task to execute.\n * @param period Time in milliseconds to wait until the next async esecution.\n *\n * @return A new async task.\n */\nfunction asyncPeriodic(task: AsyncTask, period: number): AsyncTask {\n return new AsyncTask(() => {\n let ref: number | null = null;\n\n task.onStatusChange(status => {\n if (status === \"finished\") {\n ref = window.setTimeout(() => {\n task.init();\n }, period);\n }\n });\n\n task.init();\n\n return {\n cancel: () => {\n if (ref) clearTimeout(ref);\n task.cancel();\n }\n };\n });\n}\n\n/**\n * Manages a list of async tasks.\n */\nexport default class AsyncTaskManager {\n private tasks: { [identifier: string]: AsyncTask } = {};\n\n /**\n * Adds an async task to the manager.\n *\n * @param identifier Unique identifier.\n * @param taskInitiator Function to initialize the async task.\n * Should return a structure to cancel the task.\n * @param period Optional period to repeat the task indefinitely.\n */\n public add(\n identifier: string,\n taskInitiator: AsyncTaskInitiator,\n period: number = 0\n ): AsyncTask {\n if (this.tasks[identifier] && this.tasks[identifier].status === \"started\") {\n this.tasks[identifier].cancel();\n }\n\n const asyncTask =\n period > 0\n ? asyncPeriodic(new AsyncTask(taskInitiator), period)\n : new AsyncTask(taskInitiator);\n\n this.tasks[identifier] = asyncTask;\n\n return this.tasks[identifier];\n }\n\n /**\n * Starts an async task.\n *\n * @param identifier Unique identifier.\n */\n public init(identifier: string) {\n if (\n this.tasks[identifier] &&\n (this.tasks[identifier].status === \"waiting\" ||\n this.tasks[identifier].status === \"cancelled\" ||\n this.tasks[identifier].status === \"finished\")\n ) {\n this.tasks[identifier].init();\n }\n }\n\n /**\n * Cancel a running async task.\n *\n * @param identifier Unique identifier.\n */\n public cancel(identifier: string) {\n if (this.tasks[identifier] && this.tasks[identifier].status === \"started\") {\n this.tasks[identifier].cancel();\n }\n }\n}\n","/*\n * Useful resources.\n * http://es6-features.org/\n * http://exploringjs.com/es6\n * https://www.typescriptlang.org/\n */\n\nimport \"./main.css\"; // CSS import.\nimport VisualConsole from \"./VisualConsole\";\nimport * as Form from \"./Form\";\nimport AsyncTaskManager from \"./lib/AsyncTaskManager\";\n\n// Export the VisualConsole class to the global object.\n// eslint-disable-next-line\n(window as any).VisualConsole = VisualConsole;\n\n// Export the VisualConsole's Form classes to the global object.\n// eslint-disable-next-line\n(window as any).VisualConsole.Form = Form;\n\n// Export the AsyncTaskManager class to the global object.\n// eslint-disable-next-line\n(window as any).AsyncTaskManager = AsyncTaskManager;\n"],"names":["name","initialData","_name","currentData","dataRequestedEventManager","this","length","RangeError","_element","element","document","createElement","className","content","createContent","Array","forEach","appendChild","reset","updateData","data","requestData","identifier","params","done","emit","onDataRequested","listener","on","title","inputGroups","enabledInputGroups","inputGroupsByName","enabledInputGroupNames","submitEventManager","itemDataRequestedEventManager","handleItemDataRequested","reduce","prevVal","inputGroup","filter","getInputGroup","inputGroupName","addInputGroup","index","slice","removeInputGroup","getFormElement","type","form","id","addEventListener","e","preventDefault","nativeEvent","formContent","onSubmit","onInputGroupDataRequested","parseLabelPosition","labelPosition","itemBasePropsDecoder","isNaN","parseInt","TypeError","label","isLinkEnabled","link","isOnTop","parentId","aclGroupId","cacheExpiration","colorStatus","cellId","alertOutline","props","metadata","deferInit","elementRef","labelElementRef","childElementRef","clickEventManager","dblClickEventManager","movedEventManager","movementFinishedEventManager","resizedEventManager","resizeFinishedEventManager","removeEventManager","selectionChangedEventManager","disposables","debouncedMovementSave","x","y","_metadata","isBeingMoved","prevPosition","newPosition","positionChanged","move","item","removeMovement","debouncedResizementSave","width","height","isBeingResized","prevSize","newSize","sizeChanged","resize","removeResizement","itemProps","init","initMovementListener","meta","isSelected","moveElement","stopMovementListener","initResizementListener","getBoundingClientRect","labelWidth","labelHeight","resizeElement","stopResizementListener","createContainerDomElement","createLabelDomElement","createDomElement","changeLabelPosition","box","href","classList","add","style","left","top","unSelectItem","selectItem","editMode","stopPropagation","divParent","divSpinner","path","composedPath","containerId","undefined","includes","containerVC","getElementById","maintenanceMode","isFetching","isUpdating","getLabelWithMacrosReplaced","table","row","emptyRow1","emptyRow2","cell","innerHTML","textAlign","macro","value","Date","agentAlias","agentDescription","agentAddress","moduleName","moduleDescription","updateDomElement","newProps","setProps","prevProps","shouldBeUpdated","render","newMetadata","setMeta","prevMetadata","selected","prevMeta","oldLabelHtml","newLabelHtml","remove","container","attrs","attributes","i","nodeName","cloneIsNeeded","getAttributeNode","setAttributeNode","cloneNode","parentNode","replaceChild","setAttribute","div","querySelector","parentElement","removeChild","disposable","dispose","ignored","position","flexDirection","tables","getElementsByTagName","onClick","push","onDblClick","onMoved","onMovementFinished","onResized","onResizeFinished","onRemove","onSelectionChanged","getFormContainer","VisualConsoleItem","t","titleItem","FormContainer","parseBarsGraphProps","backgroundColor","parseTypeGraph","typeGraph","barsGraphPropsDecoder","html","encodedHtml","gridColor","agentDisabled","moduleDisabled","opacity","scripts","src","setTimeout","eval","trim","basicChartPropsDecoder","period","parseFloat","status","moduleNameColor","header","textContent","color","number_format","moduleValue","legendP","margin","overviewGraphs","getElementsByClassName","insertBefore","firstChild","number","force_integer","unit","short_data","divisor","Math","round","aux_decimals","pad","Number","pos","abs","input","padding","str","donutGraphPropsDecoder","legendBackgroundColor","eventsHistoryPropsDecoder","maxTime","legendColor","flotText","aux","parseBackgroundType","backgroundType","parseGraphType","graphType","moduleGraphPropsDecoder","customGraphId","svgNS","iconDefinition","size","spin","pulse","iconName","icon","createElementNS","pathData","listeners","listenersOncer","off","once","callbackIndex","indexOf","splice","event","pipe","te","parseIntOr","defaultValue","parseFloatOr","stringIsEmpty","notEmptyStringOr","parseBoolean","leftPad","diffLength","substr","substring","repeatTimes","floor","restLength","newPad","positionPropsDecoder","sizePropsDecoder","modulePropsDecoder","moduleId","agentProps","agentId","agentName","metaconsoleId","agentPropsDecoder","linkedVCPropsDecoder","linkedLayoutStatusProps","linkedLayoutStatusType","weight","linkedLayoutStatusTypeWeight","warningThreshold","linkedLayoutStatusTypeWarningThreshold","criticalThreshold","linkedLayoutStatusTypeCriticalThreshold","linkedLayoutId","linkedLayoutNodeId","itemMetaDecoder","receivedAt","getTime","error","Error","isFromCache","lineMode","prefixedCssRules","ruleName","ruleValue","rule","decodeBase64","decodeURIComponent","escape","window","atob","humanDate","date","locale","Intl","DateTimeFormat","day","month","year","format","getDate","getMonth","getFullYear","humanTime","hours","getHours","minutes","getMinutes","seconds","getSeconds","replaceMacros","macros","text","acc","replace","throttle","delay","fn","last","now","args","debounce","timerRef","clearTimeout","getOffset","el","parent","offsetLeft","offsetTop","scrollLeft","scrollTop","offsetParent","addMovementListener","altContainer","isDraggable","draggable","lastX","lastY","lastMouseX","lastMouseY","mouseElementOffsetX","mouseElementOffsetY","containerBounds","containerOffset","containerTop","containerBottom","containerLeft","containerRight","elementBounds","borderWidth","getComputedStyle","borderFix","debouncedMovement","throttledMovement","handleMove","mouseX","pageX","mouseY","pageY","mouseDeltaX","mouseDeltaY","maxX","maxY","outOfBoundsLeft","outOfBoundsRight","outOfBoundsTop","outOfBoundsBottom","handleEnd","removeEventListener","body","userSelect","handleStart","button","elementOffset","offsetX","offsetY","addResizementListener","resizeDraggable","lastWidth","lastHeight","elementTop","elementLeft","debouncedResizement","throttledResizement","handleResize","ellipsize","max","ellipse","__webpack_module_cache__","__webpack_require__","cachedModule","exports","module","__webpack_modules__","d","definition","key","o","Object","defineProperty","enumerable","get","obj","prop","prototype","hasOwnProperty","call","r","Symbol","toStringTag","parseShowLastValueTooltip","showLastValueTooltip","staticGraphPropsDecoder","imageSrc","statusImageSrc","lastValue","imgSrc","backgroundImage","backgroundRepeat","backgroundSize","backgroundPosition","Item","iconPropsDecoder","image","faPlusCircle","prefix","faTrashAlt","colorCloudPropsDecoder","defaultColor","colorRanges","generalDiv","colorLabel","ColorInput","required","target","InputGroup","rangesLabel","createLabel","rangesControlsContainer","createdRangesContainer","buildRanges","ranges","colorRange","rangeContainer","range","handleRangeUpdatePartial","newRanges","handleDelete","initialRangeContainer","onCreate","initialState","state","rangesContainer","rangesContainerFromValue","rangesLabelFromValue","rangesInputFromValue","createInputNumber","fromValue","rangesDivContainerToValue","rangesLabelToValue","rangesInputToValue","toValue","rangesDivContainerColor","rangesLabelColor","rangesInputColor","createInputColor","createBtn","onUpdate","onDelete","deleteBtn","append","createSvgElement","gradientId","svg","defs","radialGradient","stop0","stop100","circle","ColorCloud","formContainer","ColorInputGroup","RangesInputGroup","linePropsDecoder","startPosition","startX","startY","endPosition","endX","endY","lineWidth","borderColor","viewportOffsetX","viewportOffsetY","labelEnd","labelEndWidth","linkedEnd","linkedStart","labelEndHeight","labelStart","labelStartWidth","labelStartHeight","Line","extractBoxSizeAndPosition","circleRadius","moveMode","isMoving","lineMovedEventManager","TypedEvent","lineMovedEventDisposables","debouncedStartPositionMovementSave","removeStartPositionMovement","debouncedEndPositionMovementSave","removeEndPositionMovement","initStartPositionMovementListener","stopStartPositionMovementListener","initEndPositionMovementListener","stopEndPositionMovementListener","x1","y1","x2","y2","line","cursor","svgs","lines","getElementsByTagNameNS","startCircle","endCircle","circlesStart","circlesEnd","borderRadius","circles","min","startIsLeft","startIsTop","start","end","onLineMovementFinished","networkLinkPropsDecoder","groups","adjustment","lineX1","lineY1","lineX2","lineY2","g","atan2","PI","split","l","labels","arrows","arrow","arrowSize","arrowPosX","arrowPosY","arrowStart","border","borderBottom","transform","arrowEnd","htmlLabelStart","console","htmlLabelEnd","groupPropsDecoder","groupId","showStatistics","extractHtml","parseClockType","clockType","parseClockFormat","clockFormat","clockPropsDecoder","clockTimezone","clockTimezoneOffset","showClockTimezone","intervalRef","startTick","createClock","Clock","TICK_INTERVAL","stopTick","clearInterval","handler","interval","setInterval","getElementSize","newWidth","newHeight","createAnalogicClock","createDigitalClock","colors","dateFontSize","baseTimeFontSize","clockFace","clockFaceBackground","city","getHumanTimezone","timezoneComplication","marksGroup","mainMarkGroup","mark1a","mark1b","mark","hourHand","hourHandA","hourHandB","minuteHand","minuteHandA","minuteHandB","minuteHandPin","secondHand","secondHandBar","secondHandPin","pin","getOriginDate","secAngle","minuteAngle","hourAngle","join","dateElem","fontSize","modified","tzFontSizeMultiplier","timeFontSize","tzFontSize","timeElem","tzElem","initialDate","targetTZOffset","localTZOffset","getTimezoneOffset","utimestamp","timezone","diameter","extraHeigth","boxPropsDecoder","fillColor","fillTransparent","boxSizing","borderStyle","maxBorderWidth","labelPropsDecoder","parseValueType","valueType","simpleValuePropsDecoder","processValue","parseProcessValue","img","pi","tau","epsilon","tauEpsilon","Path","_x0","_y0","_x1","_y1","_","constructor","moveTo","closePath","lineTo","quadraticCurveTo","bezierCurveTo","arcTo","x0","y0","x21","y21","x01","y01","l01_2","x20","y20","l21_2","l20_2","l21","sqrt","l01","tan","acos","t01","t21","arc","a0","a1","ccw","dx","cos","dy","sin","cw","da","rect","w","h","toString","halfPi","asin","arcInnerRadius","innerRadius","arcOuterRadius","outerRadius","arcStartAngle","startAngle","arcEndAngle","endAngle","arcPadAngle","padAngle","intersect","x3","y3","x10","y10","x32","y32","cornerTangents","r1","rc","lo","ox","oy","x11","y11","x00","y00","d2","D","cx0","cy0","cx1","cy1","dx0","dy0","dx1","dy1","cx","cy","extractPercentileType","extractValueType","percentilePropsDecoder","percentileType","minValue","maxValue","labelColor","formatValue","background","progress","getProgress","NumberFormat","backgroundRect","progressRect","backgroundCircle","progressCircle","arcProps","cornerRadius","constant","padRadius","context","buffer","r0","apply","arguments","t0","t1","a01","a11","a00","a10","da0","da1","ap","rp","rc0","rc1","p0","p1","oc","ax","ay","bx","by","kc","lc","centroid","a","trunc","servicePropsDecoder","encodedTitle","serviceId","odometerPropsDecoder","titleColor","titleModule","thresholds","minMaxValue","odometerType","lineWarning","lineWarning2","lineCritical","lineCritical2","JSON","parse","min_warning","max_warning","getCoords","min_critical","max_critical","percent","toFixed","getSubfix","maximumSignificantDigits","maximumFractionDigits","numb","match","rotate","getRotate","anchoB","odometerContainer","odometerA","odometerB","odometerC","gaugeE","SVG_NS","svgWarning","setAttributeNS","pathWarning","svgCritical","pathCritical","h1","innerText","lineHeight","h2","truncateTitle","script","onload","url_pandora","location","pathname","dir","display","minMax","limit","subfix","radio","halfLength","diff","stringBefore","stringAfter","decodeProps","items","elementsById","elementIds","relations","lineLinks","handleElementClick","handleElementDblClick","handleElementMovement","itemId","getItemRelations","relation","getVisualCenter","childId","updateLinesConnected","handleElementMovementFinished","handleLineElementMovementFinished","refreshLink","handleElementResizement","handleElementResizementFinished","handleElementRemove","clearRelations","handleElementSelectionChanged","elements","handleContainerClick","unSelectItems","containerRef","_props","backgroundURL","isFavorite","relationLineWidth","visualConsolePropsDecoder","sort","b","addElement","buildRelations","coordinatesInItem","itemAtStart","itemAtEnd","keys","to","save","lineId","updateElement","options","debouncedLinePositionSave","map","itemInstance","ModuleGraph","EventsHistory","DonutGraph","BarsGraph","BasicChart","itemInstanceFrom","message","updateElements","itemIds","child","addRelationLine","ids","getRelationLine","itemRelations","clientWidth","clientHeight","parentX","parentY","childX","childY","zIndex","onItemClick","onItemDblClick","onItemMoved","onLineMoved","onItemResized","onItemSelectionChanged","enableEditMode","disableEditMode","enableMaintenanceMode","disableMaintenanceMode","unique","currentItemId","itemDescriptiveName","linkedAgentAndModuleProps","taskInitiator","cancellable","cancel","_status","statusChangeEventManager","onStatusChange","tasks","asyncTask","task","AsyncTask","ref","asyncPeriodic","VisualConsole","Form","AsyncTaskManager"],"sourceRoot":""} \ No newline at end of file diff --git a/visual_console_client/src/items/Percentile.ts b/visual_console_client/src/items/Percentile.ts index 17140f65d2..9709440960 100644 --- a/visual_console_client/src/items/Percentile.ts +++ b/visual_console_client/src/items/Percentile.ts @@ -105,8 +105,8 @@ export default class Percentile extends Item { protected createDomElement(): HTMLElement { const colors = { background: "#000000", - progress: this.props.color || "#F0F0F0", - text: this.props.labelColor || "#444444" + progress: this.props.color || "#000000", + text: this.props.labelColor || "#bcbcbc" }; // Progress. const progress = this.getProgress(); @@ -148,10 +148,10 @@ export default class Percentile extends Item { text.setAttribute("font-size", "15"); text.setAttribute("font-family", "lato"); text.setAttribute("font-weight", "bold"); - text.setAttribute( - "transform", - `translate(${this.props.width / 2}, 17.5)` - ); + text.setAttribute("text-anchor", `middle`); + text.setAttribute("alignment-baseline", `middle`); + text.setAttribute("x", `50%`); + text.setAttribute("y", `50%`); text.setAttribute("fill", colors.text); if (this.props.valueType === "value") { From af75f3a027e71824b33b6bea45b56fb2a3249abe Mon Sep 17 00:00:00 2001 From: artica Date: Sat, 10 Jun 2023 01:01:00 +0200 Subject: [PATCH 33/80] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index fcc92f95d0..cb67fcd3a0 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230609 +Version: 7.0NG.771-230610 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index c290ca23d6..05277e1987 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.771-230609" +pandora_version="7.0NG.771-230610" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index db9e29df76..0474848559 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230609'; +use constant AGENT_BUILD => '230610'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index e5650695da..787d3138ea 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230609 +%define release 230610 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index a154909e56..0decec99d9 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230609 +%define release 230610 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 0b7d06ec0e..2642082a7a 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230609" +PI_BUILD="230610" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 094e48f85d..ffa64cf1e7 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230609} +{230610} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 929669bf83..fc3b34e593 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.771 Build 230609") +#define PANDORA_VERSION ("7.0NG.771 Build 230610") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index f4a12c6595..815d41d18b 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.771(Build 230609))" + VALUE "ProductVersion", "(7.0NG.771(Build 230610))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index c3d6fe9d73..15f0379dbe 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230609 +Version: 7.0NG.771-230610 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index cb01453f59..1b9608eace 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.771-230609" +pandora_version="7.0NG.771-230610" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 4899e52039..7193ab7f8d 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230609'; +$build_version = 'PC230610'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 64d3cd5c86..e16036f0bd 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 1903cb90b7..5d7c3f9943 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230609 +%define release 230610 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 4fd792a980..8aaa692066 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230609 +%define release 230610 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 020ddf6300..c3de367f29 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230609" +PI_BUILD="230610" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 6c383f5893..2a64e1bbf4 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.771 Build 230609"; +my $version = "7.0NG.771 Build 230610"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 0b7d07dfa0..90f73cc1a4 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.771 Build 230609"; +my $version = "7.0NG.771 Build 230610"; # save program name for logging my $progname = basename($0); From 8c48f8a685b3510ec5d34e24a840206dff3e9436 Mon Sep 17 00:00:00 2001 From: artica Date: Sun, 11 Jun 2023 01:00:46 +0200 Subject: [PATCH 34/80] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index cb67fcd3a0..c05b36e6d8 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230610 +Version: 7.0NG.771-230611 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 05277e1987..d678ccd10a 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.771-230610" +pandora_version="7.0NG.771-230611" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 0474848559..54c503279b 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230610'; +use constant AGENT_BUILD => '230611'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 787d3138ea..7a8cf8adea 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230610 +%define release 230611 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 0decec99d9..cde574ce72 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230610 +%define release 230611 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 2642082a7a..c906c84321 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230610" +PI_BUILD="230611" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index ffa64cf1e7..5223448bb3 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230610} +{230611} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index fc3b34e593..120233e70a 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.771 Build 230610") +#define PANDORA_VERSION ("7.0NG.771 Build 230611") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 815d41d18b..e124d04813 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.771(Build 230610))" + VALUE "ProductVersion", "(7.0NG.771(Build 230611))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 15f0379dbe..5be0fb402f 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230610 +Version: 7.0NG.771-230611 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index 1b9608eace..d0fe9a35c1 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.771-230610" +pandora_version="7.0NG.771-230611" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 7193ab7f8d..f8573752f0 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230610'; +$build_version = 'PC230611'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index e16036f0bd..56078b9cef 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 5d7c3f9943..d80b62a68f 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230610 +%define release 230611 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 8aaa692066..d15011ded7 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230610 +%define release 230611 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index c3de367f29..15592087cb 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230610" +PI_BUILD="230611" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 2a64e1bbf4..7d2e168410 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.771 Build 230610"; +my $version = "7.0NG.771 Build 230611"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 90f73cc1a4..7f1e0ce2f3 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.771 Build 230610"; +my $version = "7.0NG.771 Build 230611"; # save program name for logging my $progname = basename($0); From 28c08d34df7a0c64aa5b5c4f0ca07c6776a54702 Mon Sep 17 00:00:00 2001 From: artica Date: Mon, 12 Jun 2023 01:00:46 +0200 Subject: [PATCH 35/80] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index c05b36e6d8..1d4149635d 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230611 +Version: 7.0NG.771-230612 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index d678ccd10a..c3a8fd2ca6 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.771-230611" +pandora_version="7.0NG.771-230612" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 54c503279b..a352c0b4a0 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230611'; +use constant AGENT_BUILD => '230612'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 7a8cf8adea..907710352a 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230611 +%define release 230612 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index cde574ce72..a2a534dc38 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230611 +%define release 230612 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index c906c84321..d37b7546ae 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230611" +PI_BUILD="230612" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 5223448bb3..2b6c7e973b 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230611} +{230612} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 120233e70a..17ecf772e6 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.771 Build 230611") +#define PANDORA_VERSION ("7.0NG.771 Build 230612") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index e124d04813..60f98109e0 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.771(Build 230611))" + VALUE "ProductVersion", "(7.0NG.771(Build 230612))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 5be0fb402f..69740c6039 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230611 +Version: 7.0NG.771-230612 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index d0fe9a35c1..b49b86bafe 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.771-230611" +pandora_version="7.0NG.771-230612" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index f8573752f0..46af878b44 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230611'; +$build_version = 'PC230612'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 56078b9cef..6a344564ef 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index d80b62a68f..b5df2f09c4 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230611 +%define release 230612 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index d15011ded7..0585f3ef32 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230611 +%define release 230612 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 15592087cb..16fa64c656 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230611" +PI_BUILD="230612" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 7d2e168410..ef6031d11d 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.771 Build 230611"; +my $version = "7.0NG.771 Build 230612"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 7f1e0ce2f3..43d36797b1 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.771 Build 230611"; +my $version = "7.0NG.771 Build 230612"; # save program name for logging my $progname = basename($0); From f04b700574ca122558dc35c3a400b4c4709fbd60 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 12 Jun 2023 14:17:12 +0200 Subject: [PATCH 36/80] #11542 fixed width module graph --- .../include/lib/Dashboard/Widgets/single_graph.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/lib/Dashboard/Widgets/single_graph.php b/pandora_console/include/lib/Dashboard/Widgets/single_graph.php index 09f1c15a16..facce0a161 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/single_graph.php +++ b/pandora_console/include/lib/Dashboard/Widgets/single_graph.php @@ -397,7 +397,7 @@ class SingleGraphWidget extends Widget $module_name = \modules_get_agentmodule_name($this->values['moduleId']); $units_name = \modules_get_unit($this->values['moduleId']); - $trickHight = 10; + $trickHight = 0; if ($this->values['showLegend'] === 1) { // Needed for legend. $trickHight = 40; @@ -405,7 +405,7 @@ class SingleGraphWidget extends Widget $params = [ 'agent_module_id' => $this->values['moduleId'], - 'width' => ((int) $size['width'] - 5), + 'width' => '100%', 'height' => ((int) $size['height'] - $trickHight), 'period' => $this->values['period'], 'title' => $module_name, From 6a941f6cda7069866976d45eaf711351394fecd4 Mon Sep 17 00:00:00 2001 From: artica Date: Tue, 13 Jun 2023 01:01:02 +0200 Subject: [PATCH 37/80] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 1d4149635d..66a03b4e71 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230612 +Version: 7.0NG.771-230613 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index c3a8fd2ca6..858a45fdeb 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.771-230612" +pandora_version="7.0NG.771-230613" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index a352c0b4a0..ef16efc904 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230612'; +use constant AGENT_BUILD => '230613'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 907710352a..6fd33d580c 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230612 +%define release 230613 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index a2a534dc38..9e9680eae3 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230612 +%define release 230613 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index d37b7546ae..aa805c8686 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230612" +PI_BUILD="230613" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 2b6c7e973b..287524b70c 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230612} +{230613} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 17ecf772e6..bb87ce5cc6 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.771 Build 230612") +#define PANDORA_VERSION ("7.0NG.771 Build 230613") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 60f98109e0..ef8804ffd4 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.771(Build 230612))" + VALUE "ProductVersion", "(7.0NG.771(Build 230613))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 69740c6039..355799260a 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230612 +Version: 7.0NG.771-230613 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index b49b86bafe..6308d9e02c 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.771-230612" +pandora_version="7.0NG.771-230613" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 46af878b44..335b6ccd5b 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230612'; +$build_version = 'PC230613'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 6a344564ef..5d6bbccc44 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index b5df2f09c4..e7cb8ac1e2 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230612 +%define release 230613 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 0585f3ef32..7cedfd718b 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230612 +%define release 230613 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 16fa64c656..b02bb10a64 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230612" +PI_BUILD="230613" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index ef6031d11d..226f680445 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.771 Build 230612"; +my $version = "7.0NG.771 Build 230613"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 43d36797b1..9bf780ab25 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.771 Build 230612"; +my $version = "7.0NG.771 Build 230613"; # save program name for logging my $progname = basename($0); From eea9a9e47b697be5f38de5af66dc3f6f4f849566 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Tue, 13 Jun 2023 09:12:32 +0200 Subject: [PATCH 38/80] #11538 Fixed styles for dark theme --- .../operation/events/sound_events.php | 124 +++--------------- 1 file changed, 19 insertions(+), 105 deletions(-) diff --git a/pandora_console/operation/events/sound_events.php b/pandora_console/operation/events/sound_events.php index bae7c0cdd2..2e9650ecb7 100644 --- a/pandora_console/operation/events/sound_events.php +++ b/pandora_console/operation/events/sound_events.php @@ -60,119 +60,33 @@ echo ''; ?> <?php echo __('Acoustic console'); ?> - - - - - - - - - - - - + + + + + + + + + + + + - '; if ($config['style'] === 'pandora_black' && !is_metaconsole()) { - echo ''; + echo ''; } else { - echo ''; + echo ''; } echo ''; echo ''; -echo ui_require_css_file('wizard', 'include/styles/', true); -echo ui_require_css_file('discovery', 'include/styles/', true); -echo ui_require_css_file('sound_events', 'include/styles/', true); $output = '
'; // Header tabs. $output .= '